From 7ec4ee6e8c08b207b06a9a75244f8a668481dd99 Mon Sep 17 00:00:00 2001 From: Andrei Ashikhmin Date: Fri, 31 Jan 2025 20:46:48 +0800 Subject: [PATCH 1/2] fix: leaking continuation --- DashWallet/Sources/Utils/TimeUtils.swift | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/DashWallet/Sources/Utils/TimeUtils.swift b/DashWallet/Sources/Utils/TimeUtils.swift index 4d245f433..680780c05 100644 --- a/DashWallet/Sources/Utils/TimeUtils.swift +++ b/DashWallet/Sources/Utils/TimeUtils.swift @@ -15,14 +15,17 @@ class TimeUtils { return await withCheckedContinuation { continuation in let timeout = DispatchTime.now() + .seconds(5) - DispatchQueue.global().asyncAfter(deadline: timeout) { + let timeoutWorkItem = DispatchWorkItem { connection.cancel() + continuation.resume(returning: nil) } + DispatchQueue.global().asyncAfter(deadline: timeout, execute: timeoutWorkItem) connection.send(content: message, completion: .contentProcessed({ error in if error != nil { connection.cancel() continuation.resume(returning: nil) + timeoutWorkItem.cancel() return } @@ -31,11 +34,13 @@ class TimeUtils { if error != nil { continuation.resume(returning: nil) + timeoutWorkItem.cancel() return } guard let message = content else { continuation.resume(returning: nil) + timeoutWorkItem.cancel() return } @@ -50,6 +55,7 @@ class TimeUtils { let result = (seconds - 2_208_988_800) * 1000 continuation.resume(returning: result) + timeoutWorkItem.cancel() } })) } From 351bb338f705eea5476ab8115b65c485d2f5c328 Mon Sep 17 00:00:00 2001 From: Andrei Ashikhmin Date: Sun, 2 Feb 2025 16:19:50 +0700 Subject: [PATCH 2/2] feat: update voting UI --- DashSyncCurrentCommit | 2 +- .../icon_thumbs_up.imageset/Contents.json | 26 ++++++ .../icon_thumbs_up.imageset/Vector.png | Bin 0 -> 290 bytes .../icon_thumbs_up.imageset/Vector@2x.png | Bin 0 -> 434 bytes .../icon_thumbs_up.imageset/Vector@3x.png | Bin 0 -> 576 bytes .../Models/Uphold/DWUpholdMainnetConstants.m | 1 + .../Models/Voting/VotingFiltersModel.swift | 44 ++++++---- .../Voting/Cells/GroupedRequestCell.swift | 70 +++++++++------- .../Voting/Cells/UsernameRequestCell.swift | 76 +++++++++++------- .../Voting/UsernameVotingViewController.swift | 57 +++++++++++-- .../Voting/VotingFiltersViewController.swift | 2 +- .../UI/DashPay/Voting/VotingHeaderView.swift | 4 +- .../UI/DashPay/Voting/VotingHeaderView.xib | 28 +++---- .../UI/DashPay/Voting/VotingViewModel.swift | 12 +-- .../Sources/UI/Home/Views/HomeView.swift | 24 +++++- .../Sources/UI/Home/Views/HomeViewModel.swift | 2 + .../UI/SwiftUI Components/Color+DWStyle.swift | 9 ++- DashWallet/Sources/Utils/TimeUtils.swift | 28 ++++--- DashWallet/ar.lproj/Localizable.strings | 63 +++++++++------ DashWallet/bg.lproj/Localizable.strings | 63 +++++++++------ DashWallet/ca.lproj/Localizable.strings | 63 +++++++++------ DashWallet/cs.lproj/Localizable.strings | 63 +++++++++------ DashWallet/da.lproj/Localizable.strings | 63 +++++++++------ DashWallet/de.lproj/Localizable.strings | 63 +++++++++------ DashWallet/el.lproj/Localizable.strings | 63 +++++++++------ DashWallet/en.lproj/Localizable.strings | 63 +++++++++------ DashWallet/eo.lproj/Localizable.strings | 63 +++++++++------ DashWallet/es.lproj/Localizable.strings | 63 +++++++++------ DashWallet/et.lproj/Localizable.strings | 63 +++++++++------ DashWallet/fa.lproj/Localizable.strings | 63 +++++++++------ DashWallet/fi.lproj/Localizable.strings | 63 +++++++++------ DashWallet/fil.lproj/Localizable.strings | 63 +++++++++------ DashWallet/fr.lproj/Localizable.strings | 63 +++++++++------ DashWallet/hr.lproj/Localizable.strings | 63 +++++++++------ DashWallet/hu.lproj/Localizable.strings | 63 +++++++++------ DashWallet/id.lproj/Localizable.strings | 63 +++++++++------ DashWallet/it.lproj/Localizable.strings | 63 +++++++++------ DashWallet/ja.lproj/Localizable.strings | 63 +++++++++------ DashWallet/ko.lproj/Localizable.strings | 63 +++++++++------ DashWallet/mk.lproj/Localizable.strings | 63 +++++++++------ DashWallet/ms.lproj/Localizable.strings | 63 +++++++++------ DashWallet/nb.lproj/Localizable.strings | 63 +++++++++------ DashWallet/nl.lproj/Localizable.strings | 63 +++++++++------ DashWallet/pl.lproj/Localizable.strings | 63 +++++++++------ DashWallet/pt.lproj/Localizable.strings | 63 +++++++++------ DashWallet/ro.lproj/Localizable.strings | 63 +++++++++------ DashWallet/ru.lproj/Localizable.strings | 63 +++++++++------ DashWallet/sk.lproj/Localizable.strings | 63 +++++++++------ DashWallet/sl.lproj/Localizable.strings | 63 +++++++++------ DashWallet/sl_SI.lproj/Localizable.strings | 63 +++++++++------ DashWallet/sq.lproj/Localizable.strings | 63 +++++++++------ DashWallet/sr.lproj/Localizable.strings | 63 +++++++++------ DashWallet/sv.lproj/Localizable.strings | 63 +++++++++------ DashWallet/th.lproj/Localizable.strings | 63 +++++++++------ DashWallet/tr.lproj/Localizable.strings | 63 +++++++++------ DashWallet/uk.lproj/Localizable.strings | 63 +++++++++------ DashWallet/vi.lproj/Localizable.strings | 63 +++++++++------ DashWallet/zh-Hans.lproj/Localizable.strings | 63 +++++++++------ .../zh-Hant-TW.lproj/Localizable.strings | 63 +++++++++------ DashWallet/zh.lproj/Localizable.strings | 63 +++++++++------ DashWallet/zh_TW.lproj/Localizable.strings | 63 +++++++++------ 61 files changed, 1947 insertions(+), 1147 deletions(-) create mode 100644 DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Contents.json create mode 100644 DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Vector.png create mode 100644 DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Vector@2x.png create mode 100644 DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Vector@3x.png diff --git a/DashSyncCurrentCommit b/DashSyncCurrentCommit index f5db9ed5d..28520adb7 100644 --- a/DashSyncCurrentCommit +++ b/DashSyncCurrentCommit @@ -1 +1 @@ -d92d814f3f9a3d40126a9359b578831d8eb97293 +60ac6c26f8391fed4e59d07b6439642976e45d88 diff --git a/DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Contents.json b/DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Contents.json new file mode 100644 index 000000000..713667a8c --- /dev/null +++ b/DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Contents.json @@ -0,0 +1,26 @@ +{ + "images" : [ + { + "filename" : "Vector.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "Vector@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "Vector@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "template" + } +} diff --git a/DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Vector.png b/DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Vector.png new file mode 100644 index 0000000000000000000000000000000000000000..a96e47389647d3920368f1274d46d89ffe2512e1 GIT binary patch literal 290 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkP>``W z$lZxy-8q?;Kn_c~qpu?a!^VE@KZ&eB{&r6n$B+ufrIUGi4;cuw-WOwe&|sAy^ol`6 zfsy?|!-9kd4D6E+1RMxp;5)VZ$+Rh-jH`Z6(vP0JyL@{NbDi;0IX9WTmmQ=fCM=6; zc6z54H+#;!^(9|dZuld#VIljigAM-6zDu_p*?dJLD&p~1$?qkyb7O@x-n`(wr6WA; zVo87EwkB%QMtkim_SCC5pYm5* kFYCHx(&7JGc3I8~erC*g=+g6YpcfcCUHx3vIVCg!0L1WbkpKVy literal 0 HcmV?d00001 diff --git a/DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Vector@2x.png b/DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Vector@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..394f815ce7dc7c45fa4ea63d07b2ed50af917e78 GIT binary patch literal 434 zcmV;j0ZsmiP)u!v5h%Ey?ArJDU(Z;kTq+pO>i_@%07*qoM6N<$f`q}f3jhEB literal 0 HcmV?d00001 diff --git a/DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Vector@3x.png b/DashWallet/Resources/AppAssets.xcassets/icon_thumbs_up.imageset/Vector@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..50dfd79ea8e08ca69d0936c870a4a7c52cae752b GIT binary patch literal 576 zcmV-G0>AxG~8e~5@T~?s%(E6%ZzD6%*@!@*pI{ZD1K11oDyEQ1QC+pyl`tf6kjMR zax_I|C`2k_8@jhZL?mc?S9RRa5fSY5l}Dc_hE9rZuUEWMKZPFLA`DAvzr!8R57buZ zK?w0Fnj$oci8?qT#QSlM-qP8Zf=RZ`V9440^iJFXCBGiYdA;{=-s#d>eE*w2(jB9tw63I7Gl8fdq~x!S$} O0000t^2S5 literal 0 HcmV?d00001 diff --git a/DashWallet/Sources/Models/Uphold/DWUpholdMainnetConstants.m b/DashWallet/Sources/Models/Uphold/DWUpholdMainnetConstants.m index a7f171e16..15830fe78 100644 --- a/DashWallet/Sources/Models/Uphold/DWUpholdMainnetConstants.m +++ b/DashWallet/Sources/Models/Uphold/DWUpholdMainnetConstants.m @@ -47,6 +47,7 @@ + (NSString *)transactionURLFormat { + (NSString *)logoutURLString { return @"https://uphold.com/"; + } @end diff --git a/DashWallet/Sources/Models/Voting/VotingFiltersModel.swift b/DashWallet/Sources/Models/Voting/VotingFiltersModel.swift index 84110136c..219fb7c28 100644 --- a/DashWallet/Sources/Models/Voting/VotingFiltersModel.swift +++ b/DashWallet/Sources/Models/Voting/VotingFiltersModel.swift @@ -44,7 +44,8 @@ struct VotingFilters: Equatable { enum FilterBy { case all case approved - case notApproved + case notVoted + case hasBlockVotes var localizedString: String { switch self { @@ -52,8 +53,10 @@ struct VotingFilters: Equatable { return NSLocalizedString("All", comment: "Voting") case .approved: return NSLocalizedString("I have approved", comment: "Voting") - case .notApproved: - return NSLocalizedString("I have not approved", comment: "Voting") + case .notVoted: + return NSLocalizedString("I have not voted", comment: "Voting") + case .hasBlockVotes: + return NSLocalizedString("Has blocked votes", comment: "Voting") } } } @@ -63,7 +66,7 @@ struct VotingFilters: Equatable { var onlyDuplicates: Bool? var onlyWithLinks: Bool? - static let defaultFilters = VotingFilters(sortBy: .datesDesc, filterBy: .notApproved, onlyDuplicates: true, onlyWithLinks: false) + static let defaultFilters = VotingFilters(sortBy: .datesDesc, filterBy: .notVoted, onlyDuplicates: true, onlyWithLinks: false) var localizedDescription: String? { var string: [String] = [] @@ -107,8 +110,10 @@ extension VotingFilters { set.insert(.typeAll) case .approved: set.insert(.typeApproved) - case .notApproved: - set.insert(.typeNotApproved) + case .notVoted: + set.insert(.typeNotVoted) + case .hasBlockVotes: + set.insert(.typeHasBlockVotes) } } @@ -133,7 +138,8 @@ enum VotingFilterItem: String { case votesDesc case typeAll case typeApproved - case typeNotApproved + case typeNotVoted + case typeHasBlockVotes case onlyDuplicates case onlyRequestsWithLinks case reset @@ -149,11 +155,13 @@ enum VotingFilterItem: String { case .votesDesc: return [.dateAsc, .dateDesc, .votesAsc] case .typeAll: - return [.typeApproved, .typeNotApproved] + return [.typeApproved, .typeNotVoted, .typeHasBlockVotes] case .typeApproved: - return [.typeAll, .typeNotApproved] - case .typeNotApproved: - return [.typeApproved, .typeAll] + return [.typeAll, .typeNotVoted, .typeHasBlockVotes] + case .typeNotVoted: + return [.typeApproved, .typeAll, .typeHasBlockVotes] + case .typeHasBlockVotes: + return [.typeApproved, .typeAll, .typeNotVoted] default: return [] } @@ -184,8 +192,10 @@ enum VotingFilterItem: String { return NSLocalizedString("All", comment: "Voting") case .typeApproved: return NSLocalizedString("I have approved", comment: "Voting") - case .typeNotApproved: - return NSLocalizedString("I have not approved", comment: "Voting") + case .typeNotVoted: + return NSLocalizedString("I have not voted", comment: "Voting") + case .typeHasBlockVotes: + return NSLocalizedString("Has blocked votes", comment: "Voting") case .reset: return NSLocalizedString("Reset Filters", comment: "") case .onlyDuplicates: @@ -273,8 +283,12 @@ extension VotingFiltersModel { filters.filterBy = .approved } - if selected.contains(.typeNotApproved) { - filters.filterBy = .notApproved + if selected.contains(.typeNotVoted) { + filters.filterBy = .notVoted + } + + if selected.contains(.typeHasBlockVotes) { + filters.filterBy = .hasBlockVotes } if selected.contains(.onlyDuplicates) { diff --git a/DashWallet/Sources/UI/DashPay/Voting/Cells/GroupedRequestCell.swift b/DashWallet/Sources/UI/DashPay/Voting/Cells/GroupedRequestCell.swift index ab6864937..7b2c137fb 100644 --- a/DashWallet/Sources/UI/DashPay/Voting/Cells/GroupedRequestCell.swift +++ b/DashWallet/Sources/UI/DashPay/Voting/Cells/GroupedRequestCell.swift @@ -60,12 +60,16 @@ final class GroupedRequestCell: UITableViewCell { return label }() - private let chevron: UIImageView = { - let image = UIImageView(image: UIImage(systemName: "chevron.down")) - image.contentMode = .scaleAspectFill - image.tintColor = .dw_label() - image.translatesAutoresizingMaskIntoConstraints = false - return image + private let chevronButton: UIButton = { + let button = UIButton() + button.translatesAutoresizingMaskIntoConstraints = false + let image = UIImage(systemName: "chevron.down")!.withConfiguration(UIImage.SymbolConfiguration(scale: .small)) + button.setImage(image, for: .normal) + button.tintColor = .dw_label() + button.backgroundColor = .dw_secondaryBackground() + button.layer.cornerRadius = 7 + button.isUserInteractionEnabled = false + return button }() private let container: UIStackView = { @@ -86,14 +90,25 @@ final class GroupedRequestCell: UITableViewCell { tableView.register(UsernameRequestCell.self, forCellReuseIdentifier: UsernameRequestCell.description()) tableView.translatesAutoresizingMaskIntoConstraints = false tableView.tableFooterView = UIView(frame: .zero) + tableView.backgroundColor = .dw_background() return tableView }() - private let blockButton: VoteButton = { - let button = VoteButton() - button.selectedBackgroundColor = .dw_red() - button.buttonText = NSLocalizedString("Block", comment: "Voting") - button.value = 0 + private let blockButton: UIButton = { + let button = UIButton(type: .system) + button.translatesAutoresizingMaskIntoConstraints = false + button.setTitle("0", for: .normal) + let image = UIImage(named: "icon_thumbs_up")! + button.setImage(image.withRenderingMode(.alwaysTemplate), for: .normal) + button.imageView?.transform = CGAffineTransform(rotationAngle: .pi) + button.tintColor = .dw_label() + button.backgroundColor = .dw_secondaryBackground() + button.layer.cornerRadius = 7 + button.semanticContentAttribute = .forceRightToLeft + button.contentHorizontalAlignment = .center + button.titleEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 6) + button.imageEdgeInsets = UIEdgeInsets(top: 0, left: 6, bottom: 0, right: 0) + return button }() } @@ -103,10 +118,9 @@ private extension GroupedRequestCell { toggleArea.addTarget(self, action: #selector(expandOrCollapse), for: .touchUpInside) toggleArea.addSubview(username) toggleArea.addSubview(requestsAmount) - toggleArea.addSubview(chevron) + toggleArea.addSubview(chevronButton) toggleArea.addSubview(blockButton) - blockButton.isUserInteractionEnabled = true blockButton.addTarget(self, action: #selector(blockButtonTapped), for: .touchUpInside) container.addArrangedSubview(toggleArea) @@ -134,11 +148,10 @@ private extension GroupedRequestCell { requestsAmount.leadingAnchor.constraint(equalTo: username.trailingAnchor, constant: 6), requestsAmount.bottomAnchor.constraint(equalTo: username.bottomAnchor), - chevron.heightAnchor.constraint(equalToConstant: 14), - chevron.widthAnchor.constraint(equalToConstant: 14), - chevron.topAnchor.constraint(equalTo: username.topAnchor), - chevron.trailingAnchor.constraint(equalTo: toggleArea.trailingAnchor, constant: -15), - chevron.bottomAnchor.constraint(equalTo: username.bottomAnchor), + chevronButton.heightAnchor.constraint(equalToConstant: 30), + chevronButton.widthAnchor.constraint(equalToConstant: 70), + chevronButton.centerYAnchor.constraint(equalTo: username.centerYAnchor), + chevronButton.trailingAnchor.constraint(equalTo: toggleArea.trailingAnchor, constant: -10), containerHeightConstraint, container.topAnchor.constraint(equalTo: contentView.topAnchor), @@ -146,10 +159,10 @@ private extension GroupedRequestCell { container.trailingAnchor.constraint(equalTo: contentView.trailingAnchor, constant: -20), container.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: -15), - blockButton.heightAnchor.constraint(equalToConstant: 35), - blockButton.widthAnchor.constraint(equalToConstant: 65), + blockButton.heightAnchor.constraint(equalToConstant: 30), + blockButton.widthAnchor.constraint(equalToConstant: 70), blockButton.centerYAnchor.constraint(equalTo: username.centerYAnchor), - blockButton.trailingAnchor.constraint(equalTo: chevron.leadingAnchor, constant: -8) + blockButton.trailingAnchor.constraint(equalTo: chevronButton.leadingAnchor, constant: -10), ]) } @@ -167,11 +180,11 @@ private extension GroupedRequestCell { self.container.setNeedsLayout() self.onHeightChanged?() - UIView.transition(with: container, + UIView.transition(with: chevronButton.imageView ?? chevronButton, duration: 0.3, options: .curveEaseInOut) { [weak self] in let transform = expand ? CGAffineTransform(rotationAngle: CGFloat.pi) : CGAffineTransform.identity - self?.chevron.transform = transform + self?.chevronButton.imageView?.transform = transform } } @@ -193,9 +206,9 @@ extension GroupedRequestCell { let blockVotes = model.last?.blockVotes ?? 0 let isBlocked = blockVotes > 0 - blockButton.isSelected = isBlocked - blockButton.value = blockVotes - blockButton.buttonText = isBlocked ? NSLocalizedString("Unblock", comment: "Voting") : NSLocalizedString("Block", comment: "Voting") + blockButton.backgroundColor = isBlocked ? .dw_red() : .dw_secondaryBackground() + blockButton.tintColor = isBlocked ? .white : .dw_label() + blockButton.setTitle("\(blockVotes)", for: .normal) } private func updateInnerTableViewHeight() { @@ -246,5 +259,8 @@ extension GroupedRequestCell: UITableViewDelegate { let request = model[indexPath.row] onRequestSelected?(request) } + + func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat { + return 0 + } } - diff --git a/DashWallet/Sources/UI/DashPay/Voting/Cells/UsernameRequestCell.swift b/DashWallet/Sources/UI/DashPay/Voting/Cells/UsernameRequestCell.swift index 59ddd07ba..1070e3e06 100644 --- a/DashWallet/Sources/UI/DashPay/Voting/Cells/UsernameRequestCell.swift +++ b/DashWallet/Sources/UI/DashPay/Voting/Cells/UsernameRequestCell.swift @@ -57,19 +57,37 @@ final class UsernameRequestCell: UITableViewCell { return label }() - private let approveButton: VoteButton = { - let button = VoteButton() - button.selectedBackgroundColor = .dw_dashBlue() - button.buttonText = NSLocalizedString("Approve", comment: "Voting") - button.value = 0 + private let approveButton: UIButton = { + let button = UIButton(type: .system) + button.translatesAutoresizingMaskIntoConstraints = false + button.setTitle("0", for: .normal) + button.setImage(UIImage(named: "icon_thumbs_up")!, for: .normal) + button.tintColor = .dw_label() + button.backgroundColor = .dw_secondaryBackground() + button.layer.cornerRadius = 7 + button.semanticContentAttribute = .forceRightToLeft + button.contentHorizontalAlignment = .center + button.titleEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 6) + button.imageEdgeInsets = UIEdgeInsets(top: 0, left: 6, bottom: 0, right: 0) + return button }() - private let blockButton: VoteButton = { - let button = VoteButton() - button.selectedBackgroundColor = .dw_red() - button.buttonText = NSLocalizedString("Block", comment: "Voting") - button.value = 0 + private let blockButton: UIButton = { + let button = UIButton(type: .system) + button.translatesAutoresizingMaskIntoConstraints = false + button.setTitle("0", for: .normal) + let image = UIImage(named: "icon_thumbs_up")! + button.setImage(image.withRenderingMode(.alwaysTemplate), for: .normal) + button.imageView?.transform = CGAffineTransform(rotationAngle: .pi) + button.tintColor = .dw_label() + button.backgroundColor = .dw_secondaryBackground() + button.layer.cornerRadius = 7 + button.semanticContentAttribute = .forceRightToLeft + button.contentHorizontalAlignment = .center + button.titleEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 6) + button.imageEdgeInsets = UIEdgeInsets(top: 0, left: 6, bottom: 0, right: 0) + return button }() @@ -117,15 +135,15 @@ private extension UsernameRequestCell { linkLabel.trailingAnchor.constraint(equalTo: containerView.trailingAnchor), linkLabel.bottomAnchor.constraint(equalTo: containerView.bottomAnchor, constant: -8), - approveButton.heightAnchor.constraint(equalToConstant: 35), - approveButton.widthAnchor.constraint(greaterThanOrEqualToConstant: 65), + approveButton.heightAnchor.constraint(equalToConstant: 30), + approveButton.widthAnchor.constraint(greaterThanOrEqualToConstant: 70), approveButton.centerYAnchor.constraint(equalTo: containerView.centerYAnchor), - approveButton.trailingAnchor.constraint(equalTo: containerView.trailingAnchor, constant: -8), + approveButton.trailingAnchor.constraint(equalTo: containerView.trailingAnchor, constant: -10), - blockButton.heightAnchor.constraint(equalToConstant: 35), - blockButton.widthAnchor.constraint(greaterThanOrEqualToConstant: 65), + blockButton.heightAnchor.constraint(equalToConstant: 30), + blockButton.widthAnchor.constraint(greaterThanOrEqualToConstant: 70), blockButton.centerYAnchor.constraint(equalTo: containerView.centerYAnchor), - blockButton.trailingAnchor.constraint(equalTo: approveButton.leadingAnchor, constant: -8) + blockButton.trailingAnchor.constraint(equalTo: approveButton.leadingAnchor, constant: -10) ]) } } @@ -142,7 +160,7 @@ extension UsernameRequestCell { if isInGroup { containerView.backgroundColor = .clear containerView.layer.cornerRadius = 10 - contentView.backgroundColor = .clear + contentView.backgroundColor = .dw_background() containerView.layer.borderWidth = 0.5 containerView.layer.borderColor = UIColor.dw_separatorLine().cgColor @@ -205,11 +223,11 @@ extension UsernameRequestCell { self.username.text = model.username self.username.isHidden = false self.dateCreated.isHidden = true - self.blockButton.value = model.blockVotes - self.approveButton.value = model.votes + self.blockButton.setTitle("\(model.blockVotes)", for: .normal) self.blockButton.isHidden = false } + self.approveButton.setTitle("\(model.votes)", for: .normal) let attachment = NSTextAttachment() attachment.image = UIImage(named: "link.badge")?.withRenderingMode(.alwaysTemplate) attachment.bounds = CGRect(x: 0, y: -3, width: 14, height: 14) @@ -219,19 +237,23 @@ extension UsernameRequestCell { linkLabel.isHidden = model.link == nil if model.isApproved { - approveButton.isSelected = true - approveButton.buttonText = NSLocalizedString("Approvals", comment: "Voting") + approveButton.backgroundColor = .dw_dashBlue() + approveButton.tintColor = .white + } else if model.votes > 0 { + approveButton.backgroundColor = .dw_dashBlue().withAlphaComponent(0.05) + approveButton.tintColor = .dw_dashBlue() } else { - approveButton.isSelected = false - approveButton.buttonText = NSLocalizedString("Approve", comment: "Voting") + approveButton.backgroundColor = .dw_secondaryBackground() + approveButton.tintColor = .dw_label() } if model.blockVotes > 0 { - blockButton.isSelected = true - blockButton.buttonText = NSLocalizedString("Unblock", comment: "Voting") + blockButton.backgroundColor = .dw_red() + blockButton.tintColor = .white } else { - blockButton.isSelected = false - blockButton.buttonText = NSLocalizedString("Block", comment: "Voting") + blockButton.backgroundColor = .dw_secondaryBackground() + blockButton.tintColor = .dw_label() } + // TODO: pink block button } } diff --git a/DashWallet/Sources/UI/DashPay/Voting/UsernameVotingViewController.swift b/DashWallet/Sources/UI/DashPay/Voting/UsernameVotingViewController.swift index c66b9ce9f..c50875772 100644 --- a/DashWallet/Sources/UI/DashPay/Voting/UsernameVotingViewController.swift +++ b/DashWallet/Sources/UI/DashPay/Voting/UsernameVotingViewController.swift @@ -46,7 +46,7 @@ class UsernameVotingViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() - + viewModel.refresh() apply(filters: VotingFilters.defaultFilters) configureLayout() @@ -87,6 +87,7 @@ extension UsernameVotingViewController { tableView.allowsSelection = true tableView.keyboardDismissMode = .onDrag tableView.contentInset.bottom = 50 + tableView.sectionHeaderTopPadding = 12 tableView.register(GroupedRequestCell.self, forCellReuseIdentifier: GroupedRequestCell.description()) tableView.register(UsernameRequestCell.self, forCellReuseIdentifier: UsernameRequestCell.description()) @@ -190,17 +191,45 @@ extension UsernameVotingViewController: VotingFiltersViewControllerDelegate { extension UsernameVotingViewController: UITableViewDelegate { func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { tableView.deselectRow(at: indexPath, animated: true) + guard let item = dataSource.itemIdentifier(for: indexPath), item.requests.count == 1 else { return } - guard let item = dataSource.itemIdentifier(for: indexPath), - item.requests.count == 1 else { return } - openDetails(for: item.requests[0]) } + + func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { + let headerView = UIView() + headerView.backgroundColor = .clear + + let label = UILabel() + label.translatesAutoresizingMaskIntoConstraints = false + label.text = String.localizedStringWithFormat(NSLocalizedString("Voting ends in %dd", comment: "Voting"), dataSource.snapshot().sectionIdentifiers[section].votingEndsInDays) + label.font = UIFont.preferredFont(forTextStyle: .caption1) + label.textColor = .dw_tertiaryText() + label.textAlignment = .center + + headerView.addSubview(label) + NSLayoutConstraint.activate([ + label.leadingAnchor.constraint(equalTo: headerView.leadingAnchor, constant: 16), + label.trailingAnchor.constraint(equalTo: headerView.trailingAnchor, constant: -16), + label.topAnchor.constraint(equalTo: headerView.topAnchor, constant: 0), + label.bottomAnchor.constraint(equalTo: headerView.bottomAnchor, constant: -8) + ]) + + return headerView + } + + func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat { + return 25 + } + + func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat { + return 0 + } } extension UsernameVotingViewController { - enum Section: CaseIterable { - case main + struct Section: Hashable { + let votingEndsInDays: Int } class DataSource: UITableViewDiffableDataSource { } @@ -258,8 +287,20 @@ extension UsernameVotingViewController { private func reloadDataSource(data: [GroupedUsernames]) { var snapshot = NSDiffableDataSourceSnapshot() - snapshot.appendSections([.main]) - snapshot.appendItems(data) + let groupedData = Dictionary(grouping: data, by: { grouped in + grouped.requests.sorted { $0.createdAt < $1.createdAt }.first.map { req in + let twoWeeks = 14.0 * 24 * 60 * 60 + let endDate = Date(timeIntervalSince1970: TimeInterval(req.createdAt)).addingTimeInterval(twoWeeks) + let days = max(0, Int(endDate.timeIntervalSinceNow / (24 * 60 * 60))) + return days + } ?? 0 // TODO: MOCK_DASHPAY might be incorrect logic for the vote ending date + }) + + for (votingEndsInDays, items) in groupedData { + snapshot.appendSections([Section(votingEndsInDays: votingEndsInDays)]) + snapshot.appendItems(items) + } + dataSource.apply(snapshot, animatingDifferences: false) dataSource.defaultRowAnimation = .none } diff --git a/DashWallet/Sources/UI/DashPay/Voting/VotingFiltersViewController.swift b/DashWallet/Sources/UI/DashPay/Voting/VotingFiltersViewController.swift index ed30d1eb1..1f5badf9b 100644 --- a/DashWallet/Sources/UI/DashPay/Voting/VotingFiltersViewController.swift +++ b/DashWallet/Sources/UI/DashPay/Voting/VotingFiltersViewController.swift @@ -58,7 +58,7 @@ class VotingFiltersViewController: UIViewController { case .sortBy: return [.dateDesc, .dateAsc, .votesDesc, .votesAsc] case .approvedType: - return [.typeAll, .typeApproved, .typeNotApproved] + return [.typeAll, .typeApproved, .typeNotVoted, .typeHasBlockVotes] case .onlyDuplicates: return [.onlyDuplicates] case .onlyRequestsWithLinks: diff --git a/DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.swift b/DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.swift index 0629d1b19..2b7385e72 100644 --- a/DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.swift +++ b/DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.swift @@ -49,8 +49,8 @@ class VotingHeaderView: UIView { } private func configureLayout() { - subtitleLabel.text = NSLocalizedString("As a masternode owner you can vote to approve requested usernames before users will be able to create it.", comment: "Voting") - searchBar.placeholder = NSLocalizedString("Search by username", comment: "Voting") + subtitleLabel.text = NSLocalizedString("As a masternode owner you can vote to approve requested usernames before users will be able to create it.\nYou can block the creation of the usernames that you feel inappropriate.", comment: "Voting") + searchBar.placeholder = NSLocalizedString("Search", comment: "") searchBar.searchTextField.font = .dw_regularFont(ofSize: 15) filterLabel.text = VotingFilters.defaultFilters.filterBy?.localizedString ?? "" diff --git a/DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.xib b/DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.xib index fe41b4643..31ee3f0ce 100644 --- a/DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.xib +++ b/DashWallet/Sources/UI/DashPay/Voting/VotingHeaderView.xib @@ -1,9 +1,9 @@ - + - + @@ -12,7 +12,7 @@ - + + + + + + - - - - - @@ -67,13 +67,13 @@ - + - + @@ -87,7 +87,7 @@ - + diff --git a/DashWallet/Sources/UI/DashPay/Voting/VotingViewModel.swift b/DashWallet/Sources/UI/DashPay/Voting/VotingViewModel.swift index 5ece8c710..71b9e2943 100644 --- a/DashWallet/Sources/UI/DashPay/Voting/VotingViewModel.swift +++ b/DashWallet/Sources/UI/DashPay/Voting/VotingViewModel.swift @@ -87,7 +87,7 @@ class VotingViewModel { let oldVotes = Dictionary(uniqueKeysWithValues: self.groupedRequests.map { ($0.username, $0.votesForUsername) }) self.groupedRequests = Dictionary(grouping: requests, by: { $0.username }) - .map { username, reqs in + .map { username, reqs in var group = GroupedUsernames(username: username, requests: reqs.sortAndFilter(by: filters)) group.votesForUsername = max(oldVotes[username] ?? 0, 0) return group @@ -133,8 +133,10 @@ extension [UsernameRequest] { switch filterOption { case .approved: result = sorted.filter { $0.isApproved } - case .notApproved: - result = sorted.filter { !$0.isApproved } + case .notVoted: + result = sorted.filter { !$0.isApproved } // TODO: MOCK_DASHPAY recheck logic + case .hasBlockVotes: + result = sorted.filter { $0.blockVotes > 0 } default: result = sorted } @@ -262,8 +264,8 @@ extension VotingViewModel { Task { nameCount += 1 let now = Date().timeIntervalSince1970 - let from: TimeInterval = 1658290321 - let randomValue = Double.random(in: from..: View { @State private var skipToCreateUsername: Bool = false @StateObject var viewModel: HomeViewModel + #if DASHPAY @StateObject var joinDPViewModel: JoinDashPayViewModel + #endif weak var delegate: HomeViewDelegate? @ViewBuilder var balanceHeader: () -> Content @@ -337,15 +351,17 @@ struct HomeViewContent: View { joinDashPayDialog } } + .onChange(of: joinDPViewModel.state) { state in + viewModel.joinDashPayState = state + viewModel.checkJoinDashPay() + } #endif .onAppear { viewModel.checkTimeSkew() + #if DASHPAY viewModel.checkJoinDashPay() joinDPViewModel.checkUsername() - } - .onChange(of: joinDPViewModel.state) { state in - viewModel.joinDashPayState = state - viewModel.checkJoinDashPay() + #endif } } diff --git a/DashWallet/Sources/UI/Home/Views/HomeViewModel.swift b/DashWallet/Sources/UI/Home/Views/HomeViewModel.swift index eeefc88e3..9d1165baf 100644 --- a/DashWallet/Sources/UI/Home/Views/HomeViewModel.swift +++ b/DashWallet/Sources/UI/Home/Views/HomeViewModel.swift @@ -396,7 +396,9 @@ extension HomeViewModel { private func onSyncStateChanged() { self.reloadTxDataSource() self.reloadShortcuts() + #if DASHPAY self.checkJoinDashPay() + #endif } } diff --git a/DashWallet/Sources/UI/SwiftUI Components/Color+DWStyle.swift b/DashWallet/Sources/UI/SwiftUI Components/Color+DWStyle.swift index e7e794975..d6e6e0dd4 100644 --- a/DashWallet/Sources/UI/SwiftUI Components/Color+DWStyle.swift +++ b/DashWallet/Sources/UI/SwiftUI Components/Color+DWStyle.swift @@ -75,6 +75,13 @@ extension Color { } static var shadow: Color { - Color(red: 0.72, green: 0.76, blue: 0.8).opacity(0.1) + Color(UIColor { traitCollection in + switch traitCollection.userInterfaceStyle { + case .dark: + return UIColor(red: 0.2, green: 0.2, blue: 0.2, alpha: 0.5) // TODO + default: + return UIColor(red: 0.72, green: 0.76, blue: 0.8, alpha: 0.1) + } + }) } } diff --git a/DashWallet/Sources/Utils/TimeUtils.swift b/DashWallet/Sources/Utils/TimeUtils.swift index 680780c05..1f7edf747 100644 --- a/DashWallet/Sources/Utils/TimeUtils.swift +++ b/DashWallet/Sources/Utils/TimeUtils.swift @@ -13,18 +13,29 @@ class TimeUtils { connection.start(queue: .global()) return await withCheckedContinuation { continuation in + var didResume = false + + // A helper function so that we only resume once. + func safeResume(with result: Int64?) { + // Ensure that resume is only called once. + if !didResume { + didResume = true + continuation.resume(returning: result) + } + } + let timeout = DispatchTime.now() + .seconds(5) let timeoutWorkItem = DispatchWorkItem { connection.cancel() - continuation.resume(returning: nil) + safeResume(with: nil) } DispatchQueue.global().asyncAfter(deadline: timeout, execute: timeoutWorkItem) - + connection.send(content: message, completion: .contentProcessed({ error in if error != nil { connection.cancel() - continuation.resume(returning: nil) + safeResume(with: nil) timeoutWorkItem.cancel() return } @@ -33,28 +44,25 @@ class TimeUtils { defer { connection.cancel() } if error != nil { - continuation.resume(returning: nil) + safeResume(with: nil) timeoutWorkItem.cancel() return } guard let message = content else { - continuation.resume(returning: nil) + safeResume(with: nil) timeoutWorkItem.cancel() return } - // Timestamp starts at byte 40 of the received packet and is four bytes, - // or two words, long. First byte is the high-order byte of the integer; - // the last byte is the low-order byte. The high word is the seconds field, - // and the low word is the fractional field. + // Parse the NTP response. let seconds = Int64(message[40]) << 24 | Int64(message[41]) << 16 | Int64(message[42]) << 8 | Int64(message[43]) let result = (seconds - 2_208_988_800) * 1000 - continuation.resume(returning: result) + safeResume(with: result) timeoutWorkItem.cancel() } })) diff --git a/DashWallet/ar.lproj/Localizable.strings b/DashWallet/ar.lproj/Localizable.strings index a57532a93..22eab198c 100644 --- a/DashWallet/ar.lproj/Localizable.strings +++ b/DashWallet/ar.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "إنشاء حساب"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "إنشاء حساب على الإنترنت"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "على سبيل المثال johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "البدء"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "مرتفع"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "إعادة تفحص"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "ترقية"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "مفاتيح التصويت"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/bg.lproj/Localizable.strings b/DashWallet/bg.lproj/Localizable.strings index 47ecbdb5e..170a8e873 100644 --- a/DashWallet/bg.lproj/Localizable.strings +++ b/DashWallet/bg.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Първи стъпки"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Високо"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Докладвай проблем"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Повторно сканиране"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Обновено: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Надграждане"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Ключове за гласуване"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/ca.lproj/Localizable.strings b/DashWallet/ca.lproj/Localizable.strings index b26c874e0..2b0dca7bd 100644 --- a/DashWallet/ca.lproj/Localizable.strings +++ b/DashWallet/ca.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/cs.lproj/Localizable.strings b/DashWallet/cs.lproj/Localizable.strings index 7e355955b..b81202957 100644 --- a/DashWallet/cs.lproj/Localizable.strings +++ b/DashWallet/cs.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Vytvořte si uživatelské jméno, přidejte své přátele."; - /* CrowdNode */ "Create Account" = "Vytvořit účet"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Upravit profil"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "např.: táta"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Jdu na to"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Vysoká"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Nahlásit problém"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Znovu skenovat"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Uchovávat společnou transakční historii"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "(načítání informací)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Aktualizováno: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Aktualizace"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgradovat na Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Uživatelské jméno bylo nalezeno"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Uživatelské jméno už není dostupné"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Klíče pro hlasování"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Vytváření tvého uživatelské jména %@ na Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/da.lproj/Localizable.strings b/DashWallet/da.lproj/Localizable.strings index 7ec8f90e7..fd0b2828d 100644 --- a/DashWallet/da.lproj/Localizable.strings +++ b/DashWallet/da.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/de.lproj/Localizable.strings b/DashWallet/de.lproj/Localizable.strings index ca08523ea..b12a43708 100644 --- a/DashWallet/de.lproj/Localizable.strings +++ b/DashWallet/de.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Nutzernamen erstellen."; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Erstelle einen Benutzernamen, füge Freunde hinzu"; - /* CrowdNode */ "Create Account" = "Konto erstellen"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Online Konto erstellen"; -/* No comment provided by engineer. */ -"Create Username" = "Nutzernamen erstellen"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Aufgrund von regulatorischen Einschränkungen kannst du die Coinbase-Funktionen nicht nutzen, wenn du dich im Vereinigten Königreich aufhältst."; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "z.B. maxmustermann@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Profil bearbeiten"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "zB: Papa"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Erste Mindesteinlage"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Du wurdest zu deiner Sicherheit abgemeldet."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Beginnen"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Erhalte Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Hier ist die Dash Adresse, die für dein CrowdNode Konto in der Dash Wallet auf diesem Gerät bestimmt ist."; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Hoch"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Problem melden"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Details anfordern"; /* Voting */ "Request your username" = "Deinen Nutzernamen beantragen"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Der angefragte Nutzername wurde nicht genehmigt."; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Angefragter Nutzername · Abstimmung: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Erneut scannen"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Eingeschränkt"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Gemeinsamen Transaktionsverlauf erhalten"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Der Mindestbetrag für eine Transaktion ist %@."; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "Them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "bis zu 30 Minuten"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Aktualisiere dein Profil und füge neue Kontakte hinzu"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Zu Evolution upgraden"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Nutzername"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Nutzername bereits gefunden"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Benutzername bereits vergeben"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Abstimmung über die Genehmigung"; -/* Voting */ -"Votes:" = "Abstimmung:"; - /* Voting */ "Votes: High to low" = "Stimmen: Absteigend"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Abstimmungs-Schlüssel"; -/* Voting */ -"Voting:" = "Abstimmung:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Warte bis die Blockchain komplett synchronisiert ist, damit wir deine Transaktionshistorie überprüfen können."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Du kannst einen neuen Nutzernamen erstellen, ohne erneut zu zahlen."; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Du kannst deinen Schlüssel in einem der folgenden Formaten eingeben: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Dein Benutzername %@ wird gerade im Dash-Netzwerk erstellt"; -/* No comment provided by engineer. */ -"Your username was approved" = "Dein Nutzername wurde genehmigt."; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Deine Stimmabgabe wurde abgebrochen."; diff --git a/DashWallet/el.lproj/Localizable.strings b/DashWallet/el.lproj/Localizable.strings index 411ff837c..b174c8b95 100644 --- a/DashWallet/el.lproj/Localizable.strings +++ b/DashWallet/el.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Δημιουργία όνομα χρήστη"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Δημιουργήστε ένα όνομα χρήστη, προσθέστε τους φίλους σας."; - /* CrowdNode */ "Create Account" = "Δημιουργία λογαριασμού"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Δημιουργία online λογαριασμού"; -/* No comment provided by engineer. */ -"Create Username" = "Δημιουργία ονόματος χρήστη"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Λόγω κανονιστικών περιορισμών, δεν μπορείτε να χρησιμοποιήσετε τις λειτουργίες της Coinbase ενώ βρίσκεστε στο Ηνωμένο Βασίλειο."; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Επεξεργασία Προφίλ"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "π.χ.: Μπαμπάς"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Πρώτη ελάχιστη κατάθεση"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Για την ασφάλειά σας, έχετε αποσυνδεθεί."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Ξεκινήστε"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Πάρτε Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Αυτή είναι μια διεύθυνση Dash που έχει οριστεί για το λογαριασμό σας CrowdNode στο πορτοφόλι Dash σε αυτή τη συσκευή"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Υψηλά"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Αναφέρετε το πρόβλημα"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Λεπτομέρειες αιτήματος"; /* Voting */ "Request your username" = "Ζητήστε το όνομα χρήστη σας"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Το αιτούμενο όνομα χρήστη δεν εγκρίθηκε"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Αιτήθηκε - Ψηφοφορία: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Επανάληψη της σάρωσης"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Περιορισμένο"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Διατήρηση Ιστορικού Αμοιβαίων Συναλλαγών"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Το ελάχιστο ποσό που μπορείτε να στείλετε είναι %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Λήψη πληροφοριών)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "μέχρι και 30 λεπτά"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Ενημερώστε το προφίλ σας και αρχίστε να προσθέτετε επαφές"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Ανανεώθηκε: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Αναβάθμιση"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Αναβάθμιση σε Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Όνομα Χρήστη:"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Το όνομα χρήστη έχει ήδη βρεθεί"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Το όνομα χρήστη είναι κατειλημμένο"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Ψηφίστε για Έγκριση"; -/* Voting */ -"Votes:" = "Ψήφοι:"; - /* Voting */ "Votes: High to low" = "Ψήφοι: Υψηλές προς χαμηλές"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Κλειδιά ψήφου"; -/* Voting */ -"Voting:" = "Ψηφοφορία:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Περιμένετε μέχρι να συγχρονιστεί πλήρως το blockchain, ώστε να μπορέσουμε να επανεξετάσουμε το ιστορικό των συναλλαγών σας."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Μπορείτε να δημιουργήσετε ένα διαφορετικό όνομα χρήστη χωρίς να πληρώσετε ξανά"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Μπορείτε να εισάγετε το κλειδί σας σε οποιαδήποτε από τις ακόλουθες μορφές: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Το όνομα χρήστη %@ δημιουργείται στο Dash Δίκτυο"; -/* No comment provided by engineer. */ -"Your username was approved" = "Το όνομα χρήστη σας εγκρίθηκε"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Η ψήφος σας ακυρώθηκε."; diff --git a/DashWallet/en.lproj/Localizable.strings b/DashWallet/en.lproj/Localizable.strings index b8d8ebb04..1ebbefc38 100644 --- a/DashWallet/en.lproj/Localizable.strings +++ b/DashWallet/en.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/eo.lproj/Localizable.strings b/DashWallet/eo.lproj/Localizable.strings index 96ec1ddcf..6b808d2bf 100644 --- a/DashWallet/eo.lproj/Localizable.strings +++ b/DashWallet/eo.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/es.lproj/Localizable.strings b/DashWallet/es.lproj/Localizable.strings index c285e478a..70f37ebcf 100644 --- a/DashWallet/es.lproj/Localizable.strings +++ b/DashWallet/es.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Crear nombre de usuario"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Crea un nombre de usuario, agrega a tus amigos."; - /* CrowdNode */ "Create Account" = "Crear una cuenta"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Crear cuenta online"; -/* No comment provided by engineer. */ -"Create Username" = "Crear nombre de usuario"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Debido a restricciones de regulación, no podrá usar las funcionalidades de Coinbase si está en el Reino Unido."; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "por ejemplo, johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Editar perfil"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "por ejemplo: papa"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Primer depósito mínimo"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Por su seguridad, has sido desconectado."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Comienza"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Obtener Dash de prueba"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Aquí hay una dirección de Dash designada para tu cuenta de CrowdNode en la billetera de Dash en este dispositivo."; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Alto"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Reportar un problema"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Pedir detalles"; /* Voting */ "Request your username" = "Solicita tu nombre de usuario"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "El nombre de usuario solicitado no fue aprobado"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Solicitado · Votación: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Escanear nuevamente"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restringido"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Conservar el historial de transacciones mutuas"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "El monto mínimo que puedes enviar es %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "Ellos (Obteniendo Información)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "hasta 30 minutos"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Actualiza tu perfil y comienza a agregar contactos"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Actualizado: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Actualizar"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Actualizar a Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Nombre de usuario"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Nombre de usuario ya encontrado"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Nombre de usuario ya ha sido tomado"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vota para aprobar"; -/* Voting */ -"Votes:" = "Votos:"; - /* Voting */ "Votes: High to low" = "Votos: Alto a bajo"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Llaves para votar"; -/* Voting */ -"Voting:" = "Votación:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Espera hasta que la cadena esté completamente sincronizada para que podamos revisar tu historial de transacciones."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Puedes crear un nombre de usuario diferente sin pagar nuevamente"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Puedes ingresar tu clave en cualquiera de los siguientes formatos: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Tu nombre de usuario %@ se está creando en la red Dash "; -/* No comment provided by engineer. */ -"Your username was approved" = "Tu nombre de usuario fue aprobado"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Tu voto fue cancelado"; diff --git a/DashWallet/et.lproj/Localizable.strings b/DashWallet/et.lproj/Localizable.strings index 530ce5b86..13384f50f 100644 --- a/DashWallet/et.lproj/Localizable.strings +++ b/DashWallet/et.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/fa.lproj/Localizable.strings b/DashWallet/fa.lproj/Localizable.strings index 8f54dac16..2f7ba0202 100644 --- a/DashWallet/fa.lproj/Localizable.strings +++ b/DashWallet/fa.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "ایجاد حساب"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "ایجاد حساب آنلاین"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "شروع"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "بالا"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "اسکن دوباره"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "به‌روزرسانی"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "کلیدهای رای‌دهی"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "منتظر بمانید تا بلاکچین کاملا به‌روزرسانی شود تا بتوانید سابقه تراکنش‌هایتان را ببینید. "; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/fi.lproj/Localizable.strings b/DashWallet/fi.lproj/Localizable.strings index 8f3ac623f..1f5b6e196 100644 --- a/DashWallet/fi.lproj/Localizable.strings +++ b/DashWallet/fi.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/fil.lproj/Localizable.strings b/DashWallet/fil.lproj/Localizable.strings index 3c56b60d4..72d7f1aa3 100644 --- a/DashWallet/fil.lproj/Localizable.strings +++ b/DashWallet/fil.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Gumawa ng username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Lumikha ng isang username, idagdag ang iyong mga kaibigan."; - /* CrowdNode */ "Create Account" = "Lumikha ng Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Lumikha ng Online na Account"; -/* No comment provided by engineer. */ -"Create Username" = "Gumawa ng username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Dahil sa mga hadlang sa regulasyon, hindi mo magagamit ang mga feature ng Coinbase habang ikaw ay nasa UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "hal. juandelacruz@gmail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "I-edit ang profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "hal: Tatay"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Unang Minimum na Deposito"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Para sa iyong seguridad, na-sign out ka."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Magsimula"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Kunin ang Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Narito ang isang Dash address na itinalaga para sa iyong CrowdNode account sa Dash Wallet sa device na ito."; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Mataas"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "I-report ang Isyu"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Mga detalye ng kahilingan"; /* Voting */ "Request your username" = "Hilingin ang iyong username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Ang hiniling na username ay hindi naaprubahan"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Hiniling · Pagboto: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "I-scan muli"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Pinaghihigpitan"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Panatlihin ang Kasaysayan ng Kapwang Transaksyon"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Ang pinakamababang halaga na maaari mong ipadala ay %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "sila (Pagkuha ng Impormasyon)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "hanggang 30 minuto"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "I-update ang iyong profile at magsimulang magdagdag ng mga contact"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Na-update: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "I-upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Mag-upgrade sa Ebolusyon"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Nahanap na ang username"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Kinuha na Username"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Bumoto para Aprubahan"; -/* Voting */ -"Votes:" = "Mga Boto:"; - /* Voting */ "Votes: High to low" = "Mga Boto: Mataas hanggang mababa"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Mga susi ng pagboto"; -/* Voting */ -"Voting:" = "Pagboto:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Maghintay hanggang sa ganap na ma-sync ang chain, para masuri namin ang iyong history ng transaksyon."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Maaari kang lumikha ng ibang username nang hindi nagbabayad muli"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Maaari mong ilagay ang iyong susi sa alinman sa mga sumusunod na format: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Ang iyong username %@ ay nilikha sa Network ng Dash"; -/* No comment provided by engineer. */ -"Your username was approved" = "Naaprubahan ang iyong username"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Kinansela ang iyong boto"; diff --git a/DashWallet/fr.lproj/Localizable.strings b/DashWallet/fr.lproj/Localizable.strings index c62dcc5cc..f944f4c0b 100644 --- a/DashWallet/fr.lproj/Localizable.strings +++ b/DashWallet/fr.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Créer un nom d'utilisateur"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Créer un nom d'utilisateur, ajouter vos amis."; - /* CrowdNode */ "Create Account" = "Créer un compte"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Créer un compte en ligne"; -/* No comment provided by engineer. */ -"Create Username" = "Créer un nom d'utilisateur"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "En raison de contraintes légales, vous ne pouvez pas utiliser les fonctionnalités Coinbase lorsque vous êtes au Royaume-Uni"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "par exemple johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Éditer le profil"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "par ex. : Papa"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Premier dépôt minimum"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Vous avez été déconnecté(e) pour votre sécurité."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Commencer"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Obtenir des dashs de test"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Voici une adresse Dash attribuée à votre compte CrowdNode dans Dash Wallet sur cet appareil"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Élevé"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Signaler un problème"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Détails de la demande"; /* Voting */ "Request your username" = "Demander votre nom d'utilisateur"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Le nom d'utilisateur demandé n'a pas été approuvé"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Demandé · Vote : %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Réanalyser"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restreint"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "conserver un historique de vos transactions mutuelles"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Le montant minimal que vous pouvez envoyer est %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "eux (infos de récupération)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "jusqu'à 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Mettez à jour votre profil et ajoutez des contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Mis à jour : %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Mise à jour"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Mise à jour vers Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Nom d'utilisateur"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Nom d'utilisateur déjà trouvé"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Nom d'utilisateur déjà pris"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Voter pour approuver"; -/* Voting */ -"Votes:" = "Votes :"; - /* Voting */ "Votes: High to low" = "Votes : de haut à bas"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Clés de vote"; -/* Voting */ -"Voting:" = "Votation :"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Attendez que la chaîne soit entièrement synchronisée, pour que vous puissiez consulter votre historique de transactions."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Vous pouvez créer un nom d'utilisateur différent sans payer à nouveau"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Saisissez votre clé dans un de ces formats : WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Votre nom d'utilisateur %@ est en cours de création sur le réseau Dash"; -/* No comment provided by engineer. */ -"Your username was approved" = "Votre nom d'utilisateur a été approuvé"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Votre vote a été annulé"; diff --git a/DashWallet/hr.lproj/Localizable.strings b/DashWallet/hr.lproj/Localizable.strings index 1ab8f4fa6..71a70b7c3 100644 --- a/DashWallet/hr.lproj/Localizable.strings +++ b/DashWallet/hr.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/hu.lproj/Localizable.strings b/DashWallet/hu.lproj/Localizable.strings index 08bbd034e..4f1526ae4 100644 --- a/DashWallet/hu.lproj/Localizable.strings +++ b/DashWallet/hu.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Szavazati Kulcsok"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/id.lproj/Localizable.strings b/DashWallet/id.lproj/Localizable.strings index 4da0be06a..70864bb84 100644 --- a/DashWallet/id.lproj/Localizable.strings +++ b/DashWallet/id.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Buat Nama Pengguna"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Buat nama pengguna, tambahkan teman Anda."; - /* CrowdNode */ "Create Account" = "Buat Akun"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Buat Akun Online"; -/* No comment provided by engineer. */ -"Create Username" = "Buat Nama pengguna"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Karena kendala peraturan, Anda tidak dapat menggunakan fitur Coinbase saat Anda berada di Inggris"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "misalnya johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Sunting profil"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "mis: Ayah"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Setoran minimum pertama"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Demi keamanan Anda, Anda telah keluar."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Memulai"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Dapatkan Tes Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Berikut adalah alamat Dash yang ditujukan untuk akun CrowdNode Anda di Dash Wallet pada perangkat ini"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Tinggi"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Laporkan masalah"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Detail Permintaan"; /* Voting */ "Request your username" = "Minta Nama Pengguna anda"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Nama pengguna yang diminta tidak disetujui"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Diminta · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Pindai ulang"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Terbatas"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Simpan Sejarah Transaksi Bersama"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Jumlah minimum yang dapat Anda kirim adalah %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "mereka (Mengambil Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "sampai 30 menit"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Perbarui profil anda dan mulai menambahkan kontak"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Diperbarui: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Tingkatkan"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Tingkatkan ke Evolusi"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Nama pengguna"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Nama pengguna sudah ditemukan"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Nama pengguna telah diambil"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Pilih untuk Setujui"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: Tinggi ke rendah"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Kunci pemungutan suara"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Tunggu hingga rantai disinkronkan sepenuhnya, sehingga kami bisa mengulas riwayat transaksi anda."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Anda dapat membuat nama pengguna yang berbeda tanpa membayar lagi"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Anda dapat memasukkan kunci Anda dalam salah satu format berikut: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Nama pengguna anda %@ sedang dibuat di Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Nama pengguna anda telah diterima"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Pilihan anda telah dibatalkan"; diff --git a/DashWallet/it.lproj/Localizable.strings b/DashWallet/it.lproj/Localizable.strings index 0361b76a5..fdc6c1b04 100644 --- a/DashWallet/it.lproj/Localizable.strings +++ b/DashWallet/it.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Crea un nome utente"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Crea un nome utente, aggiungi i tuoi amici."; - /* CrowdNode */ "Create Account" = "Crea un Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Crea un account online"; -/* No comment provided by engineer. */ -"Create Username" = "Crea un nome utente"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "A causa di vincoli normativi, non puoi utilizzare le funzionalità di Coinbase mentre ti trovi nel Regno Unito"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "esempio: johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Modifica Profilo"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "es: Papà"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Primo deposito minimo"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Per la tua sicurezza, sei stato disconnesso."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Iniziare"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Ottieni Dash di Test"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Ecco un indirizzo Dash designato per il tuo account CrowdNode nel Dash Wallet su questo dispositivo"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Alto"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Segnala un problema"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Richiedi dettagli"; /* Voting */ "Request your username" = "Richiedi il tuo nome utente"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Il nome utente richiesto non è stato approvato"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Richiesta · Votazione: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Riscansiona"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Limitato"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Conserva la cronologia delle transazioni reciproche"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "L'importo minimo che puoi inviare è%@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "loro (Recupero delle informazioni)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "fino a 30 minuti"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Aggiorna il tuo profilo e inizia ad aggiungere contatti"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Aggiornato %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Aggiorna "; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Passa a Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Carica la tua foto, personalizza la tua identità.\n "; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username già trovato"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username già in uso"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vota per approvare\n "; -/* Voting */ -"Votes:" = "Voti:"; - /* Voting */ "Votes: High to low" = "Voti: da alto a basso"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Chiavi di Voto"; -/* Voting */ -"Voting:" = "Voto:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Attendi fino a quando la catena non sarà completamente sincronizzata, in modo da poter rivedere la cronologia delle transazioni."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Puoi creare un nome utente diverso senza pagare nuovamente"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Puoi inserire la chiave in uno qualsiasi dei seguenti formati: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Il tuo nome utente %@ è in fase di creazione sulla Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Il tuo nome utente è stato approvato"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Il tuo voto è stato annullato"; diff --git a/DashWallet/ja.lproj/Localizable.strings b/DashWallet/ja.lproj/Localizable.strings index 81459b217..a4723013a 100644 --- a/DashWallet/ja.lproj/Localizable.strings +++ b/DashWallet/ja.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "ユーザー名を作成する"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "ユーザー名を作成し、友達を追加する"; - /* CrowdNode */ "Create Account" = "アカウントの作成"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "オンラインアカウントを作成"; -/* No comment provided by engineer. */ -"Create Username" = "ユーザー名を作成"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "規定上の制約により、お客様が英国にいらっしゃる間はCoinbaseの機能をご利用いただけません。"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "例:johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "プロフィールを編集"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "例: お父さん"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "初回最低入金額"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "セキュリティのため、サインアウトされました。"; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "始める"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "テストDashを取得する"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "こちらが、この端末のDashウォレットでCrowdNodeアカウントに指定されたDashアドレスです。"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "高"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "問題を報告する"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "詳細の申請"; /* Voting */ "Request your username" = "お客様のユーザー名を申請"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "申請したユーザー名が承認されませんでした"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "申請済み・投票:%@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "再スキャン"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "制限中"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "双方の取引履歴を保持する"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "送金可能な最小金額は、%@です"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "それら(情報の取得)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "最長30分"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "プロフィールを更新して連絡先を追加する"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "アップデート: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "アップグレード"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "進化版にアップグレードする"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "ユーザー名"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "ユーザー名はすでに登録済みです"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "ユーザー名を取得しました"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "承認に投票"; -/* Voting */ -"Votes:" = "投票数:"; - /* Voting */ "Votes: High to low" = "投票数:高から低"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "投票のキー"; -/* Voting */ -"Voting:" = "投票:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "チェーンが完全に同期されるまでお待ちください。同期が完了すると、取引履歴を確認できます。"; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "再度支払うことなく、別のユーザー名を作成できます。"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "以下のいずれかの形式でキーを入力できます:WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "あなたのユーザー名%@はDashネットワークに作成中です。"; -/* No comment provided by engineer. */ -"Your username was approved" = "ユーザー名が承認されました"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "投票がキャンセルされました"; diff --git a/DashWallet/ko.lproj/Localizable.strings b/DashWallet/ko.lproj/Localizable.strings index 89b36d4ca..3c5536173 100644 --- a/DashWallet/ko.lproj/Localizable.strings +++ b/DashWallet/ko.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "사용자이름 생성하기"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "사용자 이름을 생성하고, 친구를 추가하세요."; - /* CrowdNode */ "Create Account" = "계정 생성하기"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "온라인 계정 생성하기"; -/* No comment provided by engineer. */ -"Create Username" = "사용자 이름 생성"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "규제적 제약으로 인하여, 영국에 계실 때에는 코인베이스 기능을 사용할 수 없습니다."; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "예시 johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "프로필 수정"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "예시: 아빠"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "첫 번째 최소 입금"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "보안을 위해 로그아웃 되었습니다."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "시작하기"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "테스트 대시 얻기"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "다음은 이 기기의 대시 지갑 내 크라우드노드 계정에 지정된 대시 주소입니다"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "높음"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "오류 보고하기"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "요청 세부 내용"; /* Voting */ "Request your username" = "당신의 사용자 이름을 요청하세요"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "요청된 사용자 이름이 승인되지 않았습니다"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "요청됨 · 투표중: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "재스캔"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "제한됨"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "상호 거래 내역을 유지합니다"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "송금 가능한 최소 금액은 %@ 입니다"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "다른 사람들 (정보 불러오기)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "최대 30분"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "당신의 프로필을 업데이트하고 연락처를 추가하세요"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "업데이트됨: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "업그레이드"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "에볼루션으로 업그레이드 하기"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "사용자 이름"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "사용자 이름을 이미 찾았습니다"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "이미 사용 중인 사용자 이름"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "투표하여 승인하기"; -/* Voting */ -"Votes:" = "투표수:"; - /* Voting */ "Votes: High to low" = "투표: 높음부터 낮음"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "투표 키"; -/* Voting */ -"Voting:" = "투표중:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "블록체인이 완전히 동기화될 때까지 기다리셔야 거래 내역을 확인할 수 있습니다."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "다시 지불하지 않고도 다른 사용자 이름을 생성할 수 있습니다."; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "다음과 같은 포맷 중 어떤 형태로도 키를 입력할 수 있습니다: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "당신의 사용자 이름인 %@가 대시 네트워크에 생성되는 중입니다"; -/* No comment provided by engineer. */ -"Your username was approved" = "당신의 사용자 이름이 승인되었습니다"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "투표가 취소되었습니다"; diff --git a/DashWallet/mk.lproj/Localizable.strings b/DashWallet/mk.lproj/Localizable.strings index b524a3653..238bb605c 100644 --- a/DashWallet/mk.lproj/Localizable.strings +++ b/DashWallet/mk.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/ms.lproj/Localizable.strings b/DashWallet/ms.lproj/Localizable.strings index f10e2722d..4e44901aa 100644 --- a/DashWallet/ms.lproj/Localizable.strings +++ b/DashWallet/ms.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/nb.lproj/Localizable.strings b/DashWallet/nb.lproj/Localizable.strings index 55e35480c..70a3df3dc 100644 --- a/DashWallet/nb.lproj/Localizable.strings +++ b/DashWallet/nb.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/nl.lproj/Localizable.strings b/DashWallet/nl.lproj/Localizable.strings index 5f821748b..9bf7edad8 100644 --- a/DashWallet/nl.lproj/Localizable.strings +++ b/DashWallet/nl.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Maak een gebruikersnaam"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Maak een gebruikersnaam aan, voeg je vrienden toe."; - /* CrowdNode */ "Create Account" = "Maak account aan"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Maak online account aan"; -/* No comment provided by engineer. */ -"Create Username" = "Maak gebruikersnaam aan"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Vanwege wettelijke beperkingen kunt u de Coinbase functies niet gebruiken zolang je in het Verenigd Koninkrijk bent."; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "bijvoorbeeld jan@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Bewerk profiel"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "bv: Papa"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Eerste minimale storting"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Voor de veiligheid ben je afgemeld."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Ga aan de slag"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Verkrijg test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Dit is het Dash adres op dit apparaat dat is toegewezen aan je CrowdNode account"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Hoog"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Meld een probleem"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Verkrijg details"; /* Voting */ "Request your username" = "Vraag je gebruikersnaam aan"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "De aangevraagde gebruikersnaam is niet goedgekeurd"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Gevraagd · Stemmen: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Scan opnieuw"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Beperkt"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Bewaar de geschiedenis van gemeenschappelijke transacties"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Het minimumbedrag dat je kan verzenden is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "hen (Informatie ophalen)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "tot 30 minuten"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update je profiel en begin met het toevoegen van contacten"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Bijgewerkt: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade naar Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Gebruikersnaam"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Gebruikersnaam al gevonden"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Gebruikersnaam al in gebruik"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Stem om goed te keuren"; -/* Voting */ -"Votes:" = "Stemmen:"; - /* Voting */ "Votes: High to low" = "Stemmen: van hoog naar laag"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Stem sleutels"; -/* Voting */ -"Voting:" = "Stemming:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wacht tot de blockchain volledig is gesynchroniseerd, zodat we je transactiegeschiedenis kunnen bekijken."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Je kan een andere gebruikersnaam aanmaken zonder opnieuw te betalen"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Je kunt je sleutel in een van de volgende formaten invoeren: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Uw gebruikersnaam %@ wordt aangemaakt op het Dash netwerk"; -/* No comment provided by engineer. */ -"Your username was approved" = "Je gebruikersnaam is goedgekeurd"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Je stem is geannuleerd"; diff --git a/DashWallet/pl.lproj/Localizable.strings b/DashWallet/pl.lproj/Localizable.strings index f486f68af..f70285f42 100644 --- a/DashWallet/pl.lproj/Localizable.strings +++ b/DashWallet/pl.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Stwórz nazwę użytkownika"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Stwórz nazwę użytkownika, oraz dodaj przyjaciół."; - /* CrowdNode */ "Create Account" = "Stwórz Konto"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Stwórz Konto Online"; -/* No comment provided by engineer. */ -"Create Username" = "Stwórz nazwę użytkownika"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Ze względu na ograniczenia regulacyjne nie możesz korzystać z funkcji Coinbase, gdy jesteś w Wielkiej Brytanii"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edytuj Profil"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "np Tato"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Pierwszy minimalny depozyt"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Zostałeś wylogowany ze względów bezpieczeństwa."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Zacznij"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Otrzymaj Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Tutaj jest adres Dash wyznaczony dla tojego konta CrowdNode w Porfelu Dash na tym urządzeniu. "; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Wysoki"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Zgłoś problem"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Zarządaj szczegółów"; /* Voting */ "Request your username" = "Poproś o nazwę użytkownika dla siebie"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Żądana nazwa użytkownika nie została zatwierdzona"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Prośba · Głosowanie: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Ponownie zeskanuj"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Zabronione"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Zachowaj Wspólną Historię Transakcji"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Minimalna kwota jaką możesz wysłać to %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "ich (pobieranie informacji)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "do 30 minut"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Zaktualizuj swój profil i zacznij dodawać kontakty"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Zaktualizowany %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Aktualizuj"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Przenieś sie na Ewolucję"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Nazwa użytkownika"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Użytkownik został już znaleziony"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Nazwa użytkownika jest już zajęta"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Głosuj, aby zatwierdzić"; -/* Voting */ -"Votes:" = "Głosy:"; - /* Voting */ "Votes: High to low" = "Głosy: od najwięcej do najmniej"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Klucze głosujące"; -/* Voting */ -"Voting:" = "Głosowanie:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Poczekaj, aż łańcuch zostanie w pełni zsynchronizowany, abyśmy mogli sprawdzić Twoją historię transakcji."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Możesz stworzyć inną nazwę użytkownika bez konieczności ponownego płacenia"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Możesz wprowadzić klucz w jednym z następujących formatów: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Twoja nazwa użytkownika %@ jest tworzona na Sieci Dash"; -/* No comment provided by engineer. */ -"Your username was approved" = "Twoja nazwa użytkownika została zatwierdzona"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Twój głos został anulowany"; diff --git a/DashWallet/pt.lproj/Localizable.strings b/DashWallet/pt.lproj/Localizable.strings index 90c606177..3c564df55 100644 --- a/DashWallet/pt.lproj/Localizable.strings +++ b/DashWallet/pt.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Criar um nome de usuário"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Crie um nome de usuário, adicione seus amigos."; - /* CrowdNode */ "Create Account" = "Criar Conta"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Criar conta online"; -/* No comment provided by engineer. */ -"Create Username" = "Criar um Nome de Usuário"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Devido a restrições regulatórias, você não pode usar as funcionalidades do Coinbase enquanto estiver no Reino Unido."; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "por exemplo: johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Editar Perfil"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "ex: Pai"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Primeiro depósito mínimo"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Para sua segurança, você foi desconectado."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Começar"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Obtenha Dash de teste"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Aqui está um endereço Dash designado para sua conta CrowdNode na Carteira Dash neste dispositivo"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Alto"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Reportar um Problema"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Detalhes da solicitação"; /* Voting */ "Request your username" = "Solicitar seu nome de usuário"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "O nome de usuário solicitado não foi aprovado"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Solicitado · Votação: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Reescanear"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restrito"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Reter Histórico de Transações Mútuas"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "A quantidade mínima que você pode enviar é %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "eles (Buscando Informações)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "até 30 minutos"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Atualize seu perfil e comece a adicionar contatos"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Atualizado: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Atualizar"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Atualize para a evolução"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Nome de usuário"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Nome de usuário já encontrado"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Nome de usuário já foi registrado"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Votar para Aprovar"; -/* Voting */ -"Votes:" = "Votos:"; - /* Voting */ "Votes: High to low" = "Votos: Do mais alto para o mais baixo"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Chaves de Votação"; -/* Voting */ -"Voting:" = "Votando:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Aguarde até que a cadeira esteja completamente sincronizada para que possamos revisar seu histórico de transações."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Você pode criar um nome de usuário diferente sem pagar novamente"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Você pode inserir sua chave em qualquer um dos seguintes formatos: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Seu nome de usuário %@ está sendo criado na Rede Dash"; -/* No comment provided by engineer. */ -"Your username was approved" = "Seu nome de usuário foi aprovado"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Seu voto foi cancelado"; diff --git a/DashWallet/ro.lproj/Localizable.strings b/DashWallet/ro.lproj/Localizable.strings index e79cf2666..41f5414c2 100644 --- a/DashWallet/ro.lproj/Localizable.strings +++ b/DashWallet/ro.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Scanează din nou"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Actualizează"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Chei de Vot"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/ru.lproj/Localizable.strings b/DashWallet/ru.lproj/Localizable.strings index a0f606b6e..9a902ec4e 100644 --- a/DashWallet/ru.lproj/Localizable.strings +++ b/DashWallet/ru.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Создать имя пользователя"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Создайте имя пользователя, добавьте друзей."; - /* CrowdNode */ "Create Account" = "Создать аккаунт"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Создать онлайн аккаунт"; -/* No comment provided by engineer. */ -"Create Username" = "Создать Имя пользователя"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Из-за регуляторных ограничений вы не можете пользоваться функциями Coinbase на территории Великобритании."; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "например, johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Редактировать профиль"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "напр.: Папа"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Первый минимальный депозит"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "В целях безопасности был совершён выход из учётной записи."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Начать"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Получить тестовый Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Это Dash адрес, созданный для вашего аккаунта CrowdNode в Dash Wallet на этом устройстве"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Высокий"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Сообщить о проблеме"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Узнать подробности"; /* Voting */ "Request your username" = "Отправьте запрос на имя пользователя"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Запрошенное имя пользователя не было одобрено"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Запрошено · Проголосовало %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Синхронизировать снова"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Ограничен"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Хранить историю взаимных транзакций"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Минимальная сумма для отправки составляет %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "их (Получение информации)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "до 30 минут"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Обновите профиль и начните добавлять контакты"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Обновлено: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Обновление"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Обновиться до Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Имя пользователя"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Имя пользователя уже найдено"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Имя пользователя уже занято"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Голосовать \"За\""; -/* Voting */ -"Votes:" = "Голоса:"; - /* Voting */ "Votes: High to low" = "Голоса: По убыванию"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Ключи голосования"; -/* Voting */ -"Voting:" = "Голосуют:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Дождитесь полной синхронизации сети, чтобы мы могли увидеть вашу историю транзакций."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Вы можете создать другое имя пользователя без дополнительной платы"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Вы можете ввести ключ в любом из нижеперечисленных форматов: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Ваше имя пользователя %@ создаётся в сети Dash"; -/* No comment provided by engineer. */ -"Your username was approved" = "Ваше имя пользователя было одобрено"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Ваш голос отозван"; diff --git a/DashWallet/sk.lproj/Localizable.strings b/DashWallet/sk.lproj/Localizable.strings index 5aab71133..f0dc89f20 100644 --- a/DashWallet/sk.lproj/Localizable.strings +++ b/DashWallet/sk.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Vytvoriť používateľské meno"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Vytvoriť si používateľské meno a pridať vašich priateľov."; - /* CrowdNode */ "Create Account" = "Vytvoriť účet"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Vytvoriť online účet"; -/* No comment provided by engineer. */ -"Create Username" = "Vytvoriť používateľské meno"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Z dôvodu regulačných obmedzení funkcie Coinbase nemôžete používať, keď ste v Spojenom kráľovstve"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "napr. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Upraviť profil"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "napr.: Otec"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Prvý minimálny vklad"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Pre vašu bezpečnosť ste boli odhlásení."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Začať"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Získajte testovací Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Tu je Dash adresa určená pre váš CrowdNode účet v Dash peňaženke na tomto zariadení."; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Vysoké"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Nahlásiť problém"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Vyžiadať podrobnosti"; /* Voting */ "Request your username" = "Požiadať o používateľské meno"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Požadované používateľské meno nebolo schválené"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Požadované · Hlasovanie: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Pre-skenovať"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Obmedzené"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Zachovať históriu vzájomných transakcií"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Minimálna suma, ktorú môžete poslať, je %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "ich (načítavanie informácií)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "do 30 minút"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Aktualizujte svoj profil a začnite pridávať kontakty"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Aktualizované: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Aktualizovať"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Inovujte na Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Používateľské meno"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Používateľské meno sa už našlo"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Používateľské meno sa už používa"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Hlasovanie za schválenie"; -/* Voting */ -"Votes:" = "Hlasy:"; - /* Voting */ "Votes: High to low" = "Hlasy: od najvyšších"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Hlasovacie kľúče"; -/* Voting */ -"Voting:" = "Hlasovanie:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Počkajte, kým sa reťazec úplne zosynchronizuje, aby sme mohli skontrolovať vašu históriu transakcií."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Môžete si vytvoriť iné používateľské meno bez toho, aby ste museli znova platiť"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Váš kľúč môžete zadať v ktoromkoľvek z nasledujúcich formátov: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Vaše používateľské meno %@ sa vytvára v sieti Dash"; -/* No comment provided by engineer. */ -"Your username was approved" = "Vaše používateľské meno bolo schválené"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Váš hlas bol zrušený"; diff --git a/DashWallet/sl.lproj/Localizable.strings b/DashWallet/sl.lproj/Localizable.strings index ec7737d97..813923196 100644 --- a/DashWallet/sl.lproj/Localizable.strings +++ b/DashWallet/sl.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Posodobitev"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/sl_SI.lproj/Localizable.strings b/DashWallet/sl_SI.lproj/Localizable.strings index 3d1b2de51..3fc6dcd8b 100644 --- a/DashWallet/sl_SI.lproj/Localizable.strings +++ b/DashWallet/sl_SI.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Posodobitev"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/sq.lproj/Localizable.strings b/DashWallet/sq.lproj/Localizable.strings index cf171a2ed..cffac116b 100644 --- a/DashWallet/sq.lproj/Localizable.strings +++ b/DashWallet/sq.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/sr.lproj/Localizable.strings b/DashWallet/sr.lproj/Localizable.strings index 08be17659..cbb89b840 100644 --- a/DashWallet/sr.lproj/Localizable.strings +++ b/DashWallet/sr.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Nadogradnja"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/sv.lproj/Localizable.strings b/DashWallet/sv.lproj/Localizable.strings index 99160df30..e1e618dbe 100644 --- a/DashWallet/sv.lproj/Localizable.strings +++ b/DashWallet/sv.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/th.lproj/Localizable.strings b/DashWallet/th.lproj/Localizable.strings index 539ad8ef0..911b2cd37 100644 --- a/DashWallet/th.lproj/Localizable.strings +++ b/DashWallet/th.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "กำหนดชื่อผู้ใช้"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "สร้างชื่อผู้ใช้เพิ่มเพื่อนของคุณ"; - /* CrowdNode */ "Create Account" = "สร้างบัญชี"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "สร้างบัญชีออนไลน์"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "ตัวอย่างเช่น johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "แก้ไขโปรไฟล์"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "เช่น: พ่อ"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "ฝากขั้นต่ำครั้งแรก"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "เพื่อความปลอดภัยของคุณคุณได้ลงทะเบียนแล้ว"; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "เริ่มต้น"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "รับการทดสอบ Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "นี่คือที่อยู่ Dash ที่กำหนดไว้สำหรับบัญชี CrowdNode ของคุณในกระเป๋าเงิน Dash บนอุปกรณ์นี้"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "สูง"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "รายงานปัญหา"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "ขอรายละเอียด"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "สแกนอีกครั้ง"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "ถูกจำกัด"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "เก็บประวัติการทำธุรกรรมร่วมกัน"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "จำนวนเงินขั้นต่ำที่คุณสามารถส่งได้คือ %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "พวกเขา (ดึงข้อมูล)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "นานถึง 30 นาที"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "อัพเดต: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "อัพเกรด"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "อัพเกรดเป็นวิวัฒนาการ"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "ชื่อผู้ใช้"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "พบชื่อผู้ใช้แล้ว"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "ใช้ชื่อผู้ใช้แล้ว"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "ลงคะแนนเพื่ออนุมัติ"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "โหวต: สูงไปต่ำ"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "คุณสามารถป้อนคีย์ของคุณในรูปแบบใดๆ ต่อไปนี้: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "ชื่อผู้ใช้ของคุณ %@ กำลังถูกสร้างขึ้นบนเครือข่าย Dash"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "การลงคะแนนของคุณถูกยกเลิก"; diff --git a/DashWallet/tr.lproj/Localizable.strings b/DashWallet/tr.lproj/Localizable.strings index 1e9a5a450..15ab73c5c 100644 --- a/DashWallet/tr.lproj/Localizable.strings +++ b/DashWallet/tr.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Kullanıcı adı oluştur"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Bir kullanıcı adı oluşturun, arkadaşlarınızı ekleyin."; - /* CrowdNode */ "Create Account" = "Hesab Oluştur"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Çevrimiçi Hesap Oluştur"; -/* No comment provided by engineer. */ -"Create Username" = "Kullanıcı adı oluşturmak"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "Örneğin. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Profili Düzenle"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "örneğin: Baba"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "İlk minimum depozito"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "Güvenliğiniz için oturumunuz kapatıldı."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Başla"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Test Dash'ı edinin"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Bu cihazdaki Dash Cüzdanında CrowdNode hesabınız için belirlenmiş bir Dash adresi"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Yüksek"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Sorun rapor et"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "İstek detayları"; /* Voting */ "Request your username" = "Kullanıcı adınızı isteyin"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "İstenen kullanıcı adı onaylanmadı"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "İstendi · Oylama: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Yeniden tara"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Sınırlı"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Karşılıklı İşlem Geçmişini Saklayın"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Gönderebileceğiniz minimum miktar %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "onları (Bilgi Alma)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "30 dakikaya kadar"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Profilinizi güncelleyin ve kişi eklemeye başlayın"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Güncellendi: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Yükselt"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Evolution'a Yükselt"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Kullanıcı Adı"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Kullanıcı adı zaten bulundu"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Kullanıcı adı alınmış"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Onaylamak için oy verin"; -/* Voting */ -"Votes:" = "Oylar:"; - /* Voting */ "Votes: High to low" = "Oylar: Yüksekten düşüğe"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Oy Verme Anahtarları"; -/* Voting */ -"Voting:" = "Oylama:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "İşlem geçmişinizi inceleyebilmemiz için zincir tamamen senkronize edilene kadar bekleyin."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Tekrar ödeme yapmadan farklı bir kullanıcı adı oluşturabilirsiniz"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Anahtarınızı aşağıdaki formatlardan herhangi birinde girebilirsiniz: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Kullanıcı adınız %@ Dash Ağında oluşturuluyor"; -/* No comment provided by engineer. */ -"Your username was approved" = "Kullanıcı adınız onaylandı"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Oyunuz iptal edildi"; diff --git a/DashWallet/uk.lproj/Localizable.strings b/DashWallet/uk.lproj/Localizable.strings index 72d7b6fd7..c36039b31 100644 --- a/DashWallet/uk.lproj/Localizable.strings +++ b/DashWallet/uk.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Створити ім'я користувача"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Створіть ім'я користувача, додайте друзів."; - /* CrowdNode */ "Create Account" = "Створити обліковий запис"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Створити Онлайн Акаунт"; -/* No comment provided by engineer. */ -"Create Username" = "Створити ім'я користувача"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Через нормативні обмеження ви не можете використовувати функції Coinbase, перебуваючи у Великобританії"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Редагувати профіль"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "наприклад: Тато"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "Перший мінімальний депозит"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "З міркувань безпеки ви вийшли з акаунту."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Почати"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Отримати тестові Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Ось адреса Dash, призначена для вашого облікового запису CrowdNode у Dash Wallet на цьому пристрої."; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Високий"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Повідомити про проблему"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Запросити деталі"; /* Voting */ "Request your username" = "Запит на ваше ім'я користувача"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Запитане ім'я користувача не було схвалено"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Запитано · Голосування: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Повторне сканування"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Обмежено"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Зберігати взаємну історію транзакцій"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "Мінімальна сума, яку ви можете надіслати, становить %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "їх (Отримання інформації)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "до 30 хвилин"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Оновіть свій профіль і почніть додавати контакти"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Оновлено: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Оновлення"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Оновлення до Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Ім'я користувача"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Ім'я користувача вже існує"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Ім'я користувача зайняте"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Голосувати за схвалення"; -/* Voting */ -"Votes:" = "Голоси:"; - /* Voting */ "Votes: High to low" = "Голоси: від високого до низького"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Ключі голосування"; -/* Voting */ -"Voting:" = "Голосувати: "; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Зачекайте, доки ланцюжок буде повністю синхронізовано, щоб ми могли переглянути історію ваших транзакцій."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "Ви можете створити інше ім’я користувача, не сплачуючи повторно"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Ви можете ввести свій ключ у будь-якому з таких форматів: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Ваше ім’я користувача %@ створюється в Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Ваше ім'я користувача підтверджено"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Ваш голос скасовано"; diff --git a/DashWallet/vi.lproj/Localizable.strings b/DashWallet/vi.lproj/Localizable.strings index e5938978f..d7ae572ef 100644 --- a/DashWallet/vi.lproj/Localizable.strings +++ b/DashWallet/vi.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Bắt đầu"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "Cao"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Báo cáo về lỗi"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Quét lại"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Giữ lại lịch sử các giao dịch qua lại"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Đã cập nhật: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Nâng cấp"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Tên người dùng đã được chọn"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Khoá bỏ phiếu"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Tên người dùng của bạn %@ đang được tạo trên mạng lưới Dash"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/zh-Hans.lproj/Localizable.strings b/DashWallet/zh-Hans.lproj/Localizable.strings index e915c4cfb..868e68d91 100644 --- a/DashWallet/zh-Hans.lproj/Localizable.strings +++ b/DashWallet/zh-Hans.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/zh-Hant-TW.lproj/Localizable.strings b/DashWallet/zh-Hant-TW.lproj/Localizable.strings index 44b9a2339..afd588a59 100644 --- a/DashWallet/zh-Hant-TW.lproj/Localizable.strings +++ b/DashWallet/zh-Hant-TW.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "Create a username"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "Create a username, add your friends."; - /* CrowdNode */ "Create Account" = "Create Account"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "Create Online Account"; -/* No comment provided by engineer. */ -"Create Username" = "Create Username"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "Edit Profile"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "First minimum deposit"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "For your security, you have been signed out."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "Get Started"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "Get Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "High"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "Report an Issue"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "Request details"; /* Voting */ "Request your username" = "Request your username"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "Requested username was not approved"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "Requested · Voting: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "Rescan"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "Restricted"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "Retain Mutual Transaction History"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "up to 30 minutes"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "Update your profile and start adding contacts"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "Updated: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "Upgrade"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "Upgrade to Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "Username"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "Username already found"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "Username taken"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "Vote to Approve"; -/* Voting */ -"Votes:" = "Votes:"; - /* Voting */ "Votes: High to low" = "Votes: High to low"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "Voting Keys"; -/* Voting */ -"Voting:" = "Voting:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "Wait until the chain is fully synced, so we can review your transaction history."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "You can create a different username without paying again"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "You can enter your key in any of the following formats: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "Your username %@ is being created on the Dash Network"; -/* No comment provided by engineer. */ -"Your username was approved" = "Your username was approved"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "Your vote was cancelled"; diff --git a/DashWallet/zh.lproj/Localizable.strings b/DashWallet/zh.lproj/Localizable.strings index cf74ed0b7..804156557 100644 --- a/DashWallet/zh.lproj/Localizable.strings +++ b/DashWallet/zh.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "创建一个用户名"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "创建用户名, 添加您的好友."; - /* CrowdNode */ "Create Account" = "创建账户"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "创建线上账户"; -/* No comment provided by engineer. */ -"Create Username" = "创建用户名"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "由于法律限制, 当您身在英国时无法使用Coinbase功能"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "例 johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "编辑个人资料"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "例: 爸吧"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "首次最低存款"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "为了保障您的账户安全, 您已被登出."; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "开始使用"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "获得 Test Dash"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "这是在此设备上的 Dash钱包中为您的 CrowdNode账户指定的 Dash地址"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "高"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "报告问题"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "申请的细节"; /* Voting */ "Request your username" = "申请您的用户名"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "所申请的用户名未被批准"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "已申请的 · 投票: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "重新扫描"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "受限的"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "保留相互交易记录"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "您可以发送的最小额度是%@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "他们 (获取信息)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "最多30分钟"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "更新您的个人信息并开始添加联系人"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "已更新: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "升级"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "升级到Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "用户名"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "已找到的用户名"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "用户名已被使用"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "投票通过"; -/* Voting */ -"Votes:" = "投数:"; - /* Voting */ "Votes: High to low" = "投票: 从高到低"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "投票者密钥"; -/* Voting */ -"Voting:" = "投票:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "等待区块链完全同步, 我们便可以回顾您的交易历史."; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "您可以创建一个不同的用户名无需再次付款"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "您可以以下面任何格式来输入您的密钥: WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "您的用户名 %@ 正在Dash网络上创建中"; -/* No comment provided by engineer. */ -"Your username was approved" = "您的用户名已被通过"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "您的投票已被取消"; diff --git a/DashWallet/zh_TW.lproj/Localizable.strings b/DashWallet/zh_TW.lproj/Localizable.strings index 548fca35d..72226f6d0 100644 --- a/DashWallet/zh_TW.lproj/Localizable.strings +++ b/DashWallet/zh_TW.lproj/Localizable.strings @@ -574,9 +574,6 @@ /* Usernames */ "Create a username" = "創建一個用戶名稱"; -/* No comment provided by engineer. */ -"Create a username, add your friends." = "創建用戶名,添加您的好友。"; - /* CrowdNode */ "Create Account" = "創建帳號"; @@ -590,9 +587,6 @@ CrowdNode Portal */ "Create Online Account" = "創建在線帳戶"; -/* No comment provided by engineer. */ -"Create Username" = "建立用戶名稱"; - /* Usernames */ "Create your username" = "Create your username"; @@ -757,6 +751,9 @@ /* Geoblock */ "Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "由於監管限制,您在英國時無法使用 Coinbase 功能"; +/* Usernames */ +"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username."; + /* CrowdNode */ "e.g. johndoe@mail.com" = "例如 johndoe@mail.com"; @@ -772,6 +769,9 @@ /* No comment provided by engineer. */ "Edit Profile" = "編輯個人資料"; +/* No comment provided by engineer. */ +"Edit profile" = "Edit profile"; + /* Invitation tag placeholder */ "eg: Dad" = "例如: 爸爸"; @@ -919,6 +919,9 @@ /* CrowdNode */ "First minimum deposit" = "首次最低存款"; +/* Usernames */ +"For some reason, the request for the username '%@' has failed." = "For some reason, the request for the username '%@' has failed."; + /* Coinbase */ "For your security, you have been signed out." = "基於您的帳戶安全考量,您已被登出。"; @@ -973,6 +976,9 @@ /* No comment provided by engineer. */ "Get Started" = "開始使用"; +/* Usernames */ +"Get started by setting up your profile picture and other information." = "Get started by setting up your profile picture and other information."; + /* No comment provided by engineer. */ "Get Test Dash" = "索取測試的達世幣"; @@ -1012,6 +1018,9 @@ /* CrowdNode */ "Here is a Dash address designated for your CrowdNode account in the Dash Wallet on this device" = "這是在此設備上的達世幣錢包中為您的 CrowdNode 帳戶指定的達世幣位址。"; +/* No comment provided by engineer. */ +"Hide" = "Hide"; + /* adjective, security level */ "High" = "高"; @@ -1895,17 +1904,20 @@ /* Translate it as short as possible! (24 symbols max) */ "Report an Issue" = "報告問題"; +/* No comment provided by engineer. */ +"Request a username and say goodbye to numerical addresses" = "Request a username and say goodbye to numerical addresses"; + /* Voting */ "Request details" = "索取詳情"; /* Voting */ "Request your username" = "申请您的用戶名"; -/* No comment provided by engineer. */ -"Requested username was not approved" = "你所申请的用戶名未獲批准"; +/* Usernames */ +"Requested username has been blocked" = "Requested username has been blocked"; -/* No comment provided by engineer. */ -"Requested · Voting: %@" = "已申请的·投票: %@"; +/* Usernames */ +"Requested username has been given to someone else" = "Requested username has been given to someone else"; /* An action */ "Rescan" = "重新掃瞄"; @@ -1928,6 +1940,9 @@ /* Location Service Status */ "Restricted" = "受限制的"; +/* Usernames */ +"Results" = "Results"; + /* emphasized text in: Add as your contact to Pay Directly to Username and Retain Mutual Transaction History */ "Retain Mutual Transaction History" = "保留相互交易記錄"; @@ -2283,6 +2298,9 @@ /* Coinbase */ "The minimum amount you can send is %@" = "您可以發送的最小金額是 %@"; +/* Usernames */ +"The username '%@' was blocked by the Dash Network. Please try again by requesting another username." = "The username '%@' was blocked by the Dash Network. Please try again by requesting another username."; + /* No comment provided by engineer. */ "them (Fetching Info)" = "他們 (獲取信息)"; @@ -2468,9 +2486,6 @@ /* CoinJoin */ "up to 30 minutes" = "最多 30 分鐘"; -/* No comment provided by engineer. */ -"Update your profile and start adding contacts" = "更新您的個人資料並開始新增聯絡人"; - /* ex., Updated: 27.12, 8:30 */ "Updated: %@" = "更新: %@"; @@ -2483,6 +2498,9 @@ /* No comment provided by engineer. */ "Upgrade" = "升級"; +/* No comment provided by engineer. */ +"Upgrade to DashPay" = "Upgrade to DashPay"; + /* No comment provided by engineer. */ "Upgrade to Evolution" = "升級到 Evolution"; @@ -2519,6 +2537,9 @@ /* Voting */ "Username" = "用戶名稱"; +/* Usernames */ +"Username %@ has been requested on the Dash network. After the voting ends (%@) we will notify you about its results" = "Username %1$@ has been requested on the Dash network. After the voting ends (%2$@) we will notify you about its results"; + /* No comment provided by engineer. */ "Username already found" = "已找到用戶名"; @@ -2528,6 +2549,9 @@ /* Usernames */ "Username is available" = "Username is available"; +/* Usernames */ +"Username request failed" = "Username request failed"; + /* No comment provided by engineer. */ "Username taken" = "用戶名已被使用"; @@ -2594,9 +2618,6 @@ /* Voting */ "Vote to Approve" = "投票通過"; -/* Voting */ -"Votes:" = "投票數:"; - /* Voting */ "Votes: High to low" = "得票數:從高到低"; @@ -2612,9 +2633,6 @@ /* No comment provided by engineer. */ "Voting Keys" = "投票公鑰"; -/* Voting */ -"Voting:" = "表決中:"; - /* ZenLedger */ "Wait until the chain is fully synced, so we can review your transaction history." = "等到區塊鏈完全同步,以便我們可以查看您的交易歷史記錄。"; @@ -2751,9 +2769,6 @@ /* No comment provided by engineer. */ "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance" = "You can continue to use DashPay for payments but you cannot update your profile or add more contacts until you top up your credit balance"; -/* No comment provided by engineer. */ -"You can create a different username without paying again" = "您可以創建不同的用戶名而無需再次付費"; - /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "您可以採用以下任一格式輸入金鑰 : WIF/base58/base64/hex"; @@ -2925,8 +2940,8 @@ /* No comment provided by engineer. */ "Your username %@ is being created on the Dash Network" = "您的用戶名 %@ 已經在達世幣綱絡中創建了"; -/* No comment provided by engineer. */ -"Your username was approved" = "您的使用者名稱已獲批准"; +/* Usernames */ +"Your username has been successfully created" = "Your username has been successfully created"; /* No comment provided by engineer. */ "Your vote was cancelled" = "您的投票已被取消";