diff --git a/DashWallet/Sources/UI/DashPay/Setup/CreateUsername/CreateUsernameViewController.swift b/DashWallet/Sources/UI/DashPay/Setup/CreateUsername/CreateUsernameViewController.swift index 3d2c764bf..c3e68137c 100644 --- a/DashWallet/Sources/UI/DashPay/Setup/CreateUsername/CreateUsernameViewController.swift +++ b/DashWallet/Sources/UI/DashPay/Setup/CreateUsername/CreateUsernameViewController.swift @@ -92,7 +92,7 @@ struct CreateUsernameView: View { .padding(.top, 20) .focused($isTextInputFocused) - if viewModel.uiState.hasInvite && !viewModel.uiState.isInvitationForContested { + if !viewModel.uiState.contestedAllowed { HStack(spacing: 0) { Text(NSLocalizedString("The username must meet ", comment: "Usernames")) Text(NSLocalizedString("one", comment: "Usernames")) @@ -112,7 +112,7 @@ struct CreateUsernameView: View { if viewModel.uiState.lengthRule != .hidden { ValidationCheck( validationResult: viewModel.uiState.lengthRule, - text: viewModel.uiState.hasInvite && !viewModel.uiState.isInvitationForContested ? + text: !viewModel.uiState.contestedAllowed ? NSLocalizedString("Between 20 and 23 characters", comment: "Usernames") : NSLocalizedString("Between 3 and 23 characters", comment: "Usernames") ).padding(.top, 20) @@ -121,7 +121,7 @@ struct CreateUsernameView: View { if viewModel.uiState.allowedCharactersRule != .hidden { ValidationCheck( validationResult: viewModel.uiState.allowedCharactersRule, - text: viewModel.uiState.hasInvite && !viewModel.uiState.isInvitationForContested ? + text: !viewModel.uiState.contestedAllowed ? NSLocalizedString("Contains numbers 2-9", comment: "Usernames") : NSLocalizedString("Letter, numbers and hyphens only", comment: "Usernames") ).padding(.top, 20) @@ -158,48 +158,48 @@ struct CreateUsernameView: View { Spacer() - if viewModel.uiState.hasInvite { - if !viewModel.uiState.isInvitationMixed { - HStack(alignment: .top) { - Image("invite.unmixed") - .resizable() - .scaledToFit() - .frame(width: 18, height: 18) + + if viewModel.uiState.hasInvite && !viewModel.uiState.isInvitationMixed { + HStack(alignment: .top) { + Image("invite.unmixed") + .resizable() + .scaledToFit() + .frame(width: 18, height: 18) - Text(NSLocalizedString("The invitation was created with un-mixed funds", comment: "Invites")) - .foregroundColor(.primaryText) - .font(.body2) - } - .padding(.bottom, 16) + Text(NSLocalizedString("The invitation was created with un-mixed funds", comment: "Invites")) + .foregroundColor(.primaryText) + .font(.body2) } - - if !viewModel.uiState.isInvitationForContested { - HStack(alignment: .top) { - Image("invite.noncontested") + .padding(.bottom, 16) + } + + if !viewModel.uiState.contestedAllowed { + HStack(alignment: .top) { + Image("invite.noncontested") + .resizable() + .scaledToFit() + .frame(width: 18, height: 18) + + Text(viewModel.uiState.hasInvite ? NSLocalizedString("You can only create a non-contested username using this invitation", comment: "Invites") : + NSLocalizedString("You can only create a non-contested username at this time", comment: "Invites")) + .foregroundColor(.primaryText) + .font(.body2) + + Spacer() + + Button { + showContestedInfo = true + } label: { + Image(systemName: "info.circle.fill") .resizable() .scaledToFit() - .frame(width: 18, height: 18) - - Text(NSLocalizedString("You can only create a non-contested username using this invitaiton", comment: "Invites")) - .foregroundColor(.primaryText) - .font(.body2) - - Spacer() - - Button { - showContestedInfo = true - } label: { - Image(systemName: "info.circle.fill") - .resizable() - .scaledToFit() - .padding(8) - .foregroundColor(.gray300) - } - .frame(width: 30, height: 30) + .padding(8) + .foregroundColor(.gray300) } - .frame(minHeight: 36) - .padding(.bottom, 20) + .frame(width: 30, height: 30) } + .frame(minHeight: 36) + .padding(.bottom, 20) } DashButton( @@ -303,10 +303,6 @@ struct CreateUsernameView: View { .sheet(isPresented: $showContestedInfo) { let dialog = BottomSheet(showBackButton: Binding.constant(false)) { TextIntro( - buttonLabel: NSLocalizedString("OK", comment: ""), - action: { - showContestedInfo = false - }, inProgress: .constant(false) ) { FeatureTopText( @@ -318,7 +314,7 @@ struct CreateUsernameView: View { } if #available(iOS 16.0, *) { - dialog.presentationDetents([.height(500)]) + dialog.presentationDetents([.height(400)]) } else { dialog } diff --git a/DashWallet/Sources/UI/DashPay/Setup/CreateUsername/CreateUsernameViewModel.swift b/DashWallet/Sources/UI/DashPay/Setup/CreateUsername/CreateUsernameViewModel.swift index 3553aa7f6..b0db07285 100644 --- a/DashWallet/Sources/UI/DashPay/Setup/CreateUsername/CreateUsernameViewModel.swift +++ b/DashWallet/Sources/UI/DashPay/Setup/CreateUsername/CreateUsernameViewModel.swift @@ -17,22 +17,26 @@ import Combine +private let ALLOW_CONTESTED_USERNAMES_WITHOUT_INVITE = false + struct CreateUsernameUIState { var lengthRule: UsernameValidationRuleResult var allowedCharactersRule: UsernameValidationRuleResult var costRule: UsernameValidationRuleResult var usernameBlockedRule: UsernameValidationRuleResult + var contestedAllowed: Bool var hasInvite: Bool var isInvitationMixed: Bool var isInvitationForContested: Bool var requiredDash: UInt64 var canContinue: Bool - init(lengthRule: UsernameValidationRuleResult, allowedCharactersRule: UsernameValidationRuleResult, costRule: UsernameValidationRuleResult, usernameBlockedRule: UsernameValidationRuleResult, hasInvite: Bool, isInvitationMixed: Bool, isInvitationForContested: Bool, requiredDash: UInt64, canContinue: Bool) { + init(lengthRule: UsernameValidationRuleResult, allowedCharactersRule: UsernameValidationRuleResult, costRule: UsernameValidationRuleResult, usernameBlockedRule: UsernameValidationRuleResult, contestedAllowed: Bool, hasInvite: Bool, isInvitationMixed: Bool, isInvitationForContested: Bool, requiredDash: UInt64, canContinue: Bool) { self.lengthRule = lengthRule self.allowedCharactersRule = allowedCharactersRule self.costRule = costRule self.usernameBlockedRule = usernameBlockedRule + self.contestedAllowed = contestedAllowed self.hasInvite = hasInvite self.isInvitationMixed = isInvitationMixed self.isInvitationForContested = isInvitationForContested @@ -45,6 +49,7 @@ struct CreateUsernameUIState { self.allowedCharactersRule = .empty self.costRule = .hidden self.usernameBlockedRule = .hidden + self.contestedAllowed = ALLOW_CONTESTED_USERNAMES_WITHOUT_INVITE self.hasInvite = false self.isInvitationMixed = false self.isInvitationForContested = false @@ -173,6 +178,7 @@ class CreateUsernameViewModel: ObservableObject { uiState.isInvitationMixed = await isInvitationMixed(assetLockTx: tx) uiState.isInvitationForContested = await invitationAmount(assetLockTx: tx) >= DWDP_MIN_BALANCE_FOR_CONTESTED_USERNAME uiState.hasInvite = true + uiState.contestedAllowed = uiState.isInvitationForContested uiState.costRule = .hidden } } @@ -219,23 +225,33 @@ class CreateUsernameViewModel: ObservableObject { let hasInvite = uiState.hasInvite let isMixed = uiState.isInvitationMixed let isContested = uiState.isInvitationForContested + let contestedAllowed = uiState.contestedAllowed uiState = CreateUsernameUIState() uiState.hasInvite = hasInvite uiState.isInvitationMixed = isMixed uiState.isInvitationForContested = isContested + uiState.contestedAllowed = contestedAllowed return } let isContestable = isUsernameContestable(username: username) - let isContested = isContestable // TODO: MOCK_DASHPAY + // Disable contested usernames if no invite and the constant is false + let isContested = if ALLOW_CONTESTED_USERNAMES_WITHOUT_INVITE { + isContestable // TODO: MOCK_DASHPAY + } else { + uiState.hasInvite ? isContestable : false + } let lengthValid = isLengthValid(username: username) let allowedCharactersRuleValid = allowedCharactersRuleValid(username: username) let requiredCost = isContested ? DWDP_MIN_BALANCE_FOR_CONTESTED_USERNAME : DWDP_MIN_BALANCE_TO_CREATE_USERNAME let balance = DWEnvironment.sharedInstance().currentWallet.balance let hasEnoughBalance = balance >= requiredCost let isAffordable = uiState.isInvitationForContested || (uiState.hasInvite && !isContested) || hasEnoughBalance - let criteriaValid = if uiState.hasInvite && !uiState.isInvitationForContested { + + // Treat no-invite scenario like non-contested invite for validation rules + let shouldUseRelaxedValidation = (uiState.hasInvite && !uiState.isInvitationForContested) || (!uiState.hasInvite && !ALLOW_CONTESTED_USERNAMES_WITHOUT_INVITE) + let criteriaValid = if shouldUseRelaxedValidation { lengthValid || allowedCharactersRuleValid } else { lengthValid && allowedCharactersRuleValid @@ -248,6 +264,7 @@ class CreateUsernameViewModel: ObservableObject { allowedCharactersRule: allowedCharactersRuleValid ? .valid : .invalid, costRule: costRule, usernameBlockedRule: canContinue && isContested ? .loading : .hidden, + contestedAllowed: uiState.contestedAllowed, hasInvite: uiState.hasInvite, isInvitationMixed: uiState.isInvitationMixed, isInvitationForContested: uiState.isInvitationForContested, @@ -305,7 +322,8 @@ class CreateUsernameViewModel: ObservableObject { } private func isLengthValid(username: String) -> Bool { - let minLength = uiState.hasInvite && !uiState.isInvitationForContested ? DW_MIN_USERNAME_NONCONTESTED_LENGTH : DW_MIN_USERNAME_LENGTH + let shouldUseRelaxedMinLength = (uiState.hasInvite && !uiState.isInvitationForContested) || (!uiState.hasInvite && !ALLOW_CONTESTED_USERNAMES_WITHOUT_INVITE) + let minLength = shouldUseRelaxedMinLength ? DW_MIN_USERNAME_NONCONTESTED_LENGTH : DW_MIN_USERNAME_LENGTH return username.count >= minLength && username.count <= DW_MAX_USERNAME_LENGTH } @@ -315,7 +333,8 @@ class CreateUsernameViewModel: ObservableObject { let containsDigits = username.rangeOfCharacter(from: .decimalDigits) != nil let startsOrEndsWithHyphen = username.first == "-" || username.last == "-" - if uiState.hasInvite && !uiState.isInvitationForContested { + let shouldUseRelaxedCharacterRules = (uiState.hasInvite && !uiState.isInvitationForContested) || (!uiState.hasInvite && !ALLOW_CONTESTED_USERNAMES_WITHOUT_INVITE) + if shouldUseRelaxedCharacterRules { return !hasIllegalCharacters && containsDigits && !startsOrEndsWithHyphen } diff --git a/DashWallet/ar.lproj/Localizable.strings b/DashWallet/ar.lproj/Localizable.strings index 72b53e41c..871b42601 100644 --- a/DashWallet/ar.lproj/Localizable.strings +++ b/DashWallet/ar.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "تجربة بديهية ومألوفة عبر جميع أجهزتك"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "افحص اتصالك"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "تأكيد الرقم السري"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "استمر"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "محفظة داش على هذا الجهاز"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "على سبيل المثال johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "البريد الإلكتروني"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "لا يوجد"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "استرد بطاقة الهدايا الخاصة بك عبر الإنترنت في غضون ثوانٍ أو عند الصراف."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "لبدء التخزين ، أنشئ حسابًا على CrowdNode أو اتصل بحساب موجود."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "التحقق من صحة العنوان ..."; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "التحقق مطلوب"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "يمكنك الاطلاع على معلومات مفصلة حول الإيداعات والسحوبات وأرباح المكافآت."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/bg.lproj/Localizable.strings b/DashWallet/bg.lproj/Localizable.strings index c20dcf786..8eea57674 100644 --- a/DashWallet/bg.lproj/Localizable.strings +++ b/DashWallet/bg.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Интуитивно и познато преживяване на всичките Ви устройства"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Проверете връзката"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Потвърди ПИН"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Продължи"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash плащанията не могат да бъдат по-малки от %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Нод IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Никакъв"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Вашата транзакция беше изпратена и сумата би трябвало да се появи във вашият портфейл до няколко минути."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/ca.lproj/Localizable.strings b/DashWallet/ca.lproj/Localizable.strings index ca8b339ef..433157945 100644 --- a/DashWallet/ca.lproj/Localizable.strings +++ b/DashWallet/ca.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/cs.lproj/Localizable.strings b/DashWallet/cs.lproj/Localizable.strings index 7fe11b464..7e19c2491 100644 --- a/DashWallet/cs.lproj/Localizable.strings +++ b/DashWallet/cs.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Intuitivní používání napříč všemi tvými zařízeními"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Od %1$ld do %2$ld znaků"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Zkontrolujte vaše připojení"; -/* Choose your Dash username */ -"Choose your" = "Vyberte váš"; - /* No comment provided by engineer. */ "Choose Your Username" = "Zvolte si uživatelské jméno"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Potvrdit PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Kontakty"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Pokračovat"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash platby nemohou být nižší než %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash uživatelské jméno"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Dřívější"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "např.: táta"; -/* Input username textfield placeholder */ -"eg: johndoe" = "např.: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Pozvánka byla úspěšně vytvořena"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Pouze písmena, čísla a pomlčky"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Pojďme na to"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Musí začínat a končit písmenem nebo číslem"; - /* No comment provided by engineer. */ "My Contacts" = "Moje kontakty"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Žádná"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Až %@ přijme váší žádost, budete pro platby moci použít uživatelské jméno"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Uplatněte dárkový poukaz online během několika sekund nebo u pokladny."; -/* Button title, Register (username) */ -"Register" = "Registrovat"; - /* No comment provided by engineer. */ "Register?" = "Registrovat?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "Obrázek, který vyberete, bude anonymně nahrán na Imgur."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "(načítání informací)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Žádní uživatelé neodpovídají jménu %@ ve vašich kontaktech"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Abyste mohli začít službu používat, vytvořte si účet CrowdNode nebo připojte již existující."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Uživatelské jméno bylo nalezeno"; -/* No comment provided by engineer. */ -"Username available" = "Volné uživatelské jméno"; - /* 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é"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Ověření uživatelské jméno selhalo"; - -/* No comment provided by engineer. */ -"Validating username…" = "Ověřování uživatelského jména..."; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Transakce byla odeslána a částka by se měla objevit v pěněžence během pár minut."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Tvoje uživatelské jméno %@ bylo úspěšně vytvořeno na Dash Network"; diff --git a/DashWallet/da.lproj/Localizable.strings b/DashWallet/da.lproj/Localizable.strings index 74dc6132a..a2d05d188 100644 --- a/DashWallet/da.lproj/Localizable.strings +++ b/DashWallet/da.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/de.lproj/Localizable.strings b/DashWallet/de.lproj/Localizable.strings index 841d6bb9e..c7a4b62be 100644 --- a/DashWallet/de.lproj/Localizable.strings +++ b/DashWallet/de.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Datenschutzerklärung"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Eine intuitive und gewohnte Erfahrung über alle Gerätetypen hinweg"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "und"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Zwischen %1$ld und %2$ld Zeichen"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Verbindung überprüfen"; -/* Choose your Dash username */ -"Choose your" = "Wähle deinen"; - /* No comment provided by engineer. */ "Choose Your Username" = "Wähle deinen Benutzernamen"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Bestätigen(%1$d %2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "PIN bestätigen"; @@ -521,7 +512,7 @@ "Contacts" = "Kontakte"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Fortfahren"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash-Zahlungen können nicht kleiner als %@ sein"; -/* No comment provided by engineer. */ -"Dash username" = "Dash-Benutzername"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet auf diesem Gerät"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "z.B. maxmustermann@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Früher"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "zB: Papa"; -/* Input username textfield placeholder */ -"eg: johndoe" = "zB: maxmuster"; - /* CrowdNode */ "Email" = "E-Mail"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Einladung erfolgreich erstellt"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Einladung genutzt von"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Nur Buchstaben, Zahlen und Bindestriche"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Los geht's!"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Mehrere Stunden"; -/* Validation rule */ -"Must start and end with a letter or number" = "Muss mit einem Buchstaben oder einer Zahl beginnen und enden"; - /* No comment provided by engineer. */ "My Contacts" = "Meine Kontakte"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Knoten-IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Kein"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Sobald %@ deine Anfrage angenommen hat, kannst du Zahlungen direkt an seinen Benutzernamen senden"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Die Geschenkkarte kann innerhalb von Sekunden online oder an der Kasse eingelöst werden."; -/* Button title, Register (username) */ -"Register" = "Registrieren"; - /* No comment provided by engineer. */ "Register?" = "Registrieren?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "Das ausgewählte Bild wird anonym auf Imgur hochgeladen."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "Der Mindestbetrag für eine Transaktion ist %@."; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "Them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Es gibt keine Benutzer mit dem Namen %@ in deinen Kontakten"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Bei dem Exportieren deiner Transaktionshistorie ist ein Fehler aufgetreten."; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "zur Dash Wallet auf diesem Gerät"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Um mit dem Staking zu beginnen, erstelle ein Konto bei CrowdNode oder verbinde ein bereits bestehendes."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Nutzername bereits gefunden"; -/* No comment provided by engineer. */ -"Username available" = "Benutzername verfügbar"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Benutzername bereits vergeben"; - /* Voting */ "Username voting" = "Abstimmung über Nutzernamen"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Adresse validieren..."; -/* No comment provided by engineer. */ -"Validating username failed" = "Validierung des Benutzernamens fehlgeschlagen"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validiere Benutzernamen..."; - /* CrowdNode Portal */ "Verification Required" = "Verifizierung notwendig"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Willkommen bei DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Was ist das Abstimmen über Nutzernamen?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Möchtest du die Einladung akzeptieren?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Möchtest du eine Einzahlung mit dem hinterlegten Bankkonto durchführen?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Du kannst detaillierte Informationen über deine Einzahlungen, Auszahlungen und Erträge sehen."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Du kannst diese Einladung nicht beanspruchen, da du bereits einen Dash-Benutzernamen besitzt."; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Deine Transaktion wurde versendet und der Betrag sollte in ein paar Minuten in der Wallet zu sehen sein."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Dein Benutzername %@ wurde erfolgreich im Dash-Netzwerk erstellt"; diff --git a/DashWallet/el.lproj/Localizable.strings b/DashWallet/el.lproj/Localizable.strings index ad3a4cf32..a054db572 100644 --- a/DashWallet/el.lproj/Localizable.strings +++ b/DashWallet/el.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Πολιτική απορρήτου"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Μια διαισθητική και οικεία εμπειρία σε όλες τις συσκευές σας"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "και"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Ενδιάμεσα σε %1$ld και %2$ld χαρακτήρες"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Ελέγξτε την σύνδεση σας"; -/* Choose your Dash username */ -"Choose your" = "Επιλέξτε "; - /* No comment provided by engineer. */ "Choose Your Username" = "Επιλέξτε το όνομα χρήστη σας"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Επιβεβαιώστε (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Επιβεβαίωση PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Επαφές"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Συνέχεια"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Οι Dash πληρωμές δεν μπορεί να είναι μικρότερες από %@"; -/* No comment provided by engineer. */ -"Dash username" = "Όνομα Χρήστη Dash"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet σε αυτή τη συσκευή"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Νωρίτερα"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "π.χ.: Μπαμπάς"; -/* Input username textfield placeholder */ -"eg: johndoe" = "πχ: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Πρόσκληση δημιουργήθηκε επιτυχώς"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Η πρόσκληση χρησιμοποιείται από"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Μόνο γράμματα, αριθμοί και παύλες"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Ας ξεκινήσουμε"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Αρκετές ώρες"; -/* Validation rule */ -"Must start and end with a letter or number" = "Πρέπει να αρχίζει και να τελειώνει με γράμμα ή αριθμό"; - /* No comment provided by engineer. */ "My Contacts" = "Οι Επαφές μου"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "IP Κόμβου"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "κανενα"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Μόλις ο/η %@ αποδεχτεί το αίτημα σας, θα μπορείτε να πληρώσετε απευθείας στο όνομα χρήστη"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Εξαργυρώστε τη δωροκάρτα σας online μέσα σε λίγα δευτερόλεπτα ή σε ταμείο."; -/* Button title, Register (username) */ -"Register" = "Εγγραφή"; - /* No comment provided by engineer. */ "Register?" = "Εγγραφή;"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "Η εικόνα που επιλέγετε θα μεταφορτωθεί στο Imgur ανώνυμα."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "Το ελάχιστο ποσό που μπορείτε να στείλετε είναι %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Λήψη πληροφοριών)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Δεν υπάρχουν χρήστες που να ταιριάζουν με το όνομα %@ στις επαφές σας"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Υπήρξε σφάλμα κατά την εξαγωγή του ιστορικού των συναλλαγών σας στο ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "στο Dash Wallet σε αυτή τη συσκευή"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Για να ξεκινήσετε το staking, δημιουργήστε έναν λογαριασμό στο CrowdNode ή συνδεθείτε σε έναν ήδη υπάρχοντα."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Το όνομα χρήστη έχει ήδη βρεθεί"; -/* No comment provided by engineer. */ -"Username available" = "Διαθέσιμο όνομα χρήστη"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Το όνομα χρήστη είναι κατειλημμένο"; - /* Voting */ "Username voting" = "Ψηφοφορία ονόματος χρήστη"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Επικύρωση διεύθυνσης..."; -/* No comment provided by engineer. */ -"Validating username failed" = "Η επικύρωση του ονόματος χρήστη απέτυχε"; - -/* No comment provided by engineer. */ -"Validating username…" = "Επικύρωση του ονόματος χρήστη..."; - /* CrowdNode Portal */ "Verification Required" = "Απαιτείται επαλήθευση"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Καλώς ήρθατε στο DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Τι είναι η ψηφοφορία ονόματος χρήστη;"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Θέλετε να αποδεχθείτε την πρόσκληση;"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Θα θέλατε να κάνετε μια κατάθεση για την πληρωμή της αγοράς σας χρησιμοποιώντας έναν συνδεδεμένο τραπεζικό λογαριασμό;"; @@ -2803,6 +2773,9 @@ /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Μπορείτε να εισάγετε το κλειδί σας σε οποιαδήποτε από τις ακόλουθες μορφές: WIF/base58/base64/hex"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Μπορείτε να δείτε λεπτομερείς πληροφορίες σχετικά με τις καταθέσεις, τις αναλήψεις και τα κέρδη ανταμοιβής σας."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Δεν μπορείτε να διεκδικήσετε αυτή την πρόσκληση αφού έχετε ήδη ένα όνομα χρήστη Dash."; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Η συναλλαγή σας απεστάλη και το ποσό θα πρέπει να εμφανιστεί στο πορτοφόλι σας σε λίγα λεπτά."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Το όνομα χρήστη %@ δημιουργήθηκε με επιτυχία στο Dash Δίκτυο"; diff --git a/DashWallet/en.lproj/Localizable.strings b/DashWallet/en.lproj/Localizable.strings index e37041b0d..340f98394 100644 --- a/DashWallet/en.lproj/Localizable.strings +++ b/DashWallet/en.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/eo.lproj/Localizable.strings b/DashWallet/eo.lproj/Localizable.strings index 350a16ad4..4026f5d2d 100644 --- a/DashWallet/eo.lproj/Localizable.strings +++ b/DashWallet/eo.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/es.lproj/Localizable.strings b/DashWallet/es.lproj/Localizable.strings index 6a60084d9..428609cf6 100644 --- a/DashWallet/es.lproj/Localizable.strings +++ b/DashWallet/es.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Política de privacidad"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Una experiencia intuitiva y familiar a través de todos tus dispositivos"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "y"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Entre %1$ld y %2$ld caracteres"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Verifique tu conección"; -/* Choose your Dash username */ -"Choose your" = "Escoge tu"; - /* No comment provided by engineer. */ "Choose Your Username" = "Elige tu nombre de usuario"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirmar (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirmar PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contactos"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continuar"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Los pagos en Dash no pueden ser inferiores a %@"; -/* No comment provided by engineer. */ -"Dash username" = "Nombre de usuario de Dash"; - /* Buy Dash */ "Dash Wallet on this device" = "Billetera de Dash en este dispositivo"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "por ejemplo, johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Antes"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "por ejemplo: papa"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitación creada con éxito"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitación utilizada por"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Solo letras, números y guiones"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Empecemos"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiples horas"; -/* Validation rule */ -"Must start and end with a letter or number" = "Debe comenzar y terminar con una letra o un número"; - /* No comment provided by engineer. */ "My Contacts" = "Mis contactos"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "IP del Nodo"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Ninguna"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Una vez que %@ aceptes tu solicitud, puedes pagar directamente al nombre de usuario"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Canjea tu tarjeta de regalo en línea en segundos o en el cajero."; -/* Button title, Register (username) */ -"Register" = "Registro"; - /* No comment provided by engineer. */ "Register?" = "Registrarse?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "La imagen que selecciones se cargará en Imgur de forma anónima."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "El monto mínimo que puedes enviar es %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "Ellos (Obteniendo Información)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "No hay usuarios que coincidan con el nombre %@ en tus contactos"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Hubo un error al exportar tu historial de transacciones a ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "a la billetera de Dash en este dispositivo"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Para comenzar a hacer staking, crea una cuenta en CrowdNode o conéctate a una existente."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Nombre de usuario ya encontrado"; -/* No comment provided by engineer. */ -"Username available" = "Nombre de usuario disponible"; - /* 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"; - /* Voting */ "Username voting" = "Votación de nombre de usuario"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validando dirección…"; -/* No comment provided by engineer. */ -"Validating username failed" = "No se pudo validar el nombre de usuario"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validando nombre de usuario…"; - /* CrowdNode Portal */ "Verification Required" = "Verificación requerida"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Bienvenido a DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "¿Qué es la votación por nombre de usuario?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "¿Te gustaría aceptar la invitación?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "¿Te gustaría realizar un depósito para tu compra utilizando una cuenta bancaria vinculada?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Puedes ver información detallada sobre tus depósitos, retiros y ganancias de recompensas."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "No puedes reclamar esta invitación porque ya tienes un nombre de usuario de Dash"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Tu transacción se envió y la cantidad debería aparecer en tu billetera en unos minutos."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Tu nombre de usuario %@ se ha creado con éxito en la red Dash"; diff --git a/DashWallet/et.lproj/Localizable.strings b/DashWallet/et.lproj/Localizable.strings index 7bac90ffc..a9f4f94e2 100644 --- a/DashWallet/et.lproj/Localizable.strings +++ b/DashWallet/et.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/fa.lproj/Localizable.strings b/DashWallet/fa.lproj/Localizable.strings index 101e0ff50..b8b2ef642 100644 --- a/DashWallet/fa.lproj/Localizable.strings +++ b/DashWallet/fa.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "تجربه‌ای ساده و آشنا روی همه دستگاه‌ها"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "لطفا اتصال‌ به اینترنت را بررسی کنید"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "پین کد را تائید کنید"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "ادامه"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "دش والت روی این دستگاه"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "ایمیل"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "هیچ کدام"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "کارت هدیه را به صورت آنلاین یا در یک فروشگاه، طی چند ثانیه استفاده کنید. "; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "برای آغاز سپرده‌گذاری، ابتدا یک حساب در کراودنود ایجاد کنید و یا به یک حساب موجود در آن متصل شوید. "; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "در حال اعتبارسنجی نشانی..."; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "نیازمند تائید"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "آیا مایلید مقداری موجودی برای خریدتان با استفاده از حساب بانکی متصل‌شده تهیه کنید؟ "; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "جزئیات مربوط به واریزها، برداشت‌ها و پاداش‌ها را می‌توانید ببینید. "; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/fi.lproj/Localizable.strings b/DashWallet/fi.lproj/Localizable.strings index 6b84eb749..cbdb230ab 100644 --- a/DashWallet/fi.lproj/Localizable.strings +++ b/DashWallet/fi.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/fil.lproj/Localizable.strings b/DashWallet/fil.lproj/Localizable.strings index 243f902c1..68b077f67 100644 --- a/DashWallet/fil.lproj/Localizable.strings +++ b/DashWallet/fil.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Patakaran sa Pagkapribado"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Ang sapantaha at pamilyar na karanasan sa lahat ng iyong aparato"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "at"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Sa pagitan ng %1$ld at %2$ld karakter"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Suriin ang koneksyon"; -/* Choose your Dash username */ -"Choose your" = "Pumili ng iyong"; - /* No comment provided by engineer. */ "Choose Your Username" = "Piliin ang Iyong Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Kumpirmahin (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Kumpirmahin ang PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Mga Contact"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Ipagpatuloy"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Ang pagbabayad ng Dash ay hindi dapat bababa sa %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet sa device na ito"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "hal. juandelacruz@gmail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Mas maaga"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "hal: Tatay"; -/* Input username textfield placeholder */ -"eg: johndoe" = "hal: juandelacruz"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Matagumpay na Nagawa ang Imbitasyon"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Imbitasyon na ginamit ni"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Mga titik, numero at gitling lamang"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Magsimula na tayo"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Maramihang oras"; -/* Validation rule */ -"Must start and end with a letter or number" = "Dapat magsimula at magtapos sa isang titik o numero"; - /* No comment provided by engineer. */ "My Contacts" = "Ang Aking mga Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Wala"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Kapag tinanggap ng %@ ang iyong kahilingan maaari kang Magbayad Direkta sa Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "I-redeem ang iyong gift card online sa loob ng ilang segundo o sa cashier."; -/* Button title, Register (username) */ -"Register" = "Magparehistro"; - /* No comment provided by engineer. */ "Register?" = "Magparehistro?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "Ang larawang pipiliin mo ay ia-upload sa Imgur nang hindi nagpapakilala."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "Ang pinakamababang halaga na maaari mong ipadala ay %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "sila (Pagkuha ng Impormasyon)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Walang mga gumagamit na tumutugma sa pangalang %@ sa iyong contact"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Nagkaroon ng error noong ine-export ang iyong history ng transaksyon sa ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "Sa Dash wallet sa device na ito"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Para simulan ang staking, gumawa ng account sa CrowdNode o kumonekta sa mayroon na."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Nahanap na ang username"; -/* No comment provided by engineer. */ -"Username available" = "Available ang username"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Kinuha na Username"; - /* Voting */ "Username voting" = "Pagboto ng username"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Pinapatunayan ang address..."; -/* No comment provided by engineer. */ -"Validating username failed" = "Bigo ang pagpapatunay ng username"; - -/* No comment provided by engineer. */ -"Validating username…" = "Pagpapatunay ng username..."; - /* CrowdNode Portal */ "Verification Required" = "Kailangan ng beripikasyon"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Maligayang pagdating sa DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Ano ang pagboto ng username?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Gusto mo bang tanggapin ang imbitasyon?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Gusto mo bang magdeposito para sa iyong pagbili gamit ang isang naka-link na bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Maaari mong makita ang detalyadong impormasyon tungkol sa iyong mga deposito, pag-withdraw at mga kita ng reward."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Hindi mo ma-claim ang imbitasyong ito dahil mayroon ka nang Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Ang iyong transaksyon ay naipadala at ang halaga ay dapat makita sa iyong pitaka sa loob ng ilang minuto."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Ang iyong username %@ ay matagumpay na nilikha sa Network ng Dash"; diff --git a/DashWallet/fr.lproj/Localizable.strings b/DashWallet/fr.lproj/Localizable.strings index 0f02652c7..8dc911f4d 100644 --- a/DashWallet/fr.lproj/Localizable.strings +++ b/DashWallet/fr.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Politique de confidentialité"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Une utilisation familière et intuitive sur tous vos appareils"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "et"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Entre %1$ld et %2$ld caractères"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Vérifier votre connexion"; -/* Choose your Dash username */ -"Choose your" = "Choisissez votre"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choisir votre nom d'utilisateur"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirmer (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirmer le code PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continuer"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Les paiements Dash ne peuvent pas être inférieurs à %@"; -/* No comment provided by engineer. */ -"Dash username" = "Nom d'utilisateur Dash"; - /* Buy Dash */ "Dash Wallet on this device" = "Portefeuille Dash sur cet appareil"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "par exemple johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Plus tôt"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "par ex. : Papa"; -/* Input username textfield placeholder */ -"eg: johndoe" = "par ex. : alexandremartin"; - /* CrowdNode */ "Email" = "E-mail"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation créée avec succès"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation utilisée par"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Lettres, chiffres et tirets seulement"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Allons-y"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Heures multiples"; -/* Validation rule */ -"Must start and end with a letter or number" = "Doit commencer et se terminer par une lettre ou un chiffre"; - /* No comment provided by engineer. */ "My Contacts" = "Mes contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "IP du nœud"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Aucun"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Une fois que %@ aura accepté votre demande, vous pourrez payer directement à son nom d'utilisateur"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Profitez en ligne de votre carte-cadeau en quelques secondes ou auprès du responsable de la caisse."; -/* Button title, Register (username) */ -"Register" = "Enregistrer"; - /* No comment provided by engineer. */ "Register?" = "Enregistrer ?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "L'image que vous choisissez sera envoyée anonymement à Imgur."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "Le montant minimal que vous pouvez envoyer est %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "eux (infos de récupération)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Aucun utilisateur ne correspond au nom %@ parmi vos contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Il y a eu une erreur lors de l'exportation de votre historique de transactions vers ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "vers Dash Wallet sur cet appareil"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Pour commencer à investir, créez un compte sur CrowdNode ou connectez-vous à un compte existant."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Nom d'utilisateur déjà trouvé"; -/* No comment provided by engineer. */ -"Username available" = "Nom d'utilisateur disponible"; - /* 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"; - /* Voting */ "Username voting" = "Vote sur les noms d'utilisateur"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validation de l'adresse..."; -/* No comment provided by engineer. */ -"Validating username failed" = "Échec de la validation du nom d'utilisateur"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validation du nom d'utilisateur en cours…"; - /* CrowdNode Portal */ "Verification Required" = "Vérification demandée"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Bienvenue sur DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Qu'est-ce que le vote des noms d'utilisateur ?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Souhaitez-vous accepter l'invitation ?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Souhaitez-vous faire un dépôt pour votre achat en utilisant un compte bancaire lié ?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Vous pouvez consulter des informations détaillées sur vos transferts, vos retraits et vos gains de récompense."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Vous ne pouvez pas réclamer cette invitation car vous avez déjà un nom d'utilisateur Dash"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Votre transaction a été envoyée et le montant devrait apparaître dans votre portefeuille sous quelques minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Votre nom d'utilisateur %@ a bien été créé sur le réseau Dash"; diff --git a/DashWallet/hr.lproj/Localizable.strings b/DashWallet/hr.lproj/Localizable.strings index b56a5f9ce..aeb59b77c 100644 --- a/DashWallet/hr.lproj/Localizable.strings +++ b/DashWallet/hr.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/hu.lproj/Localizable.strings b/DashWallet/hu.lproj/Localizable.strings index cba6422f3..12e6c2ac2 100644 --- a/DashWallet/hu.lproj/Localizable.strings +++ b/DashWallet/hu.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/id.lproj/Localizable.strings b/DashWallet/id.lproj/Localizable.strings index 6463c1fee..cd9ae584b 100644 --- a/DashWallet/id.lproj/Localizable.strings +++ b/DashWallet/id.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Kebijakan pribadi"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Pengalaman intuitif dan akrab di semua perangkat Anda"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "dan"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Antara %1$ld dan %2$ld karakter"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Periksa koneksi anda"; -/* Choose your Dash username */ -"Choose your" = "Pilih Anda"; - /* No comment provided by engineer. */ "Choose Your Username" = "Pilih Nama pengguna"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "konfirmasi (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Pastikan PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Kontak"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Teruskan"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "pembayaran dash tidak boleh kurang dari %@"; -/* No comment provided by engineer. */ -"Dash username" = "Nama pengguna Dash"; - /* Buy Dash */ "Dash Wallet on this device" = "Dompet Dash di perangkat ini"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "misalnya johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Sebelumnya"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "mis: Ayah"; -/* Input username textfield placeholder */ -"eg: johndoe" = "misalnya: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Undangan Berhasil Dibuat"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Undangan telah digunakan oleh"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Hanya huruf, angka, dan tanda hubung"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Ayo Mulai"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Beberapa jam"; -/* Validation rule */ -"Must start and end with a letter or number" = "Harus dimulai dan diakhiri dengan huruf atau angka"; - /* No comment provided by engineer. */ "My Contacts" = "Kontak saya"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Tidak ada"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Setelah %@ menerima permintaan Anda, Anda dapat Membayar Langsung ke Nama Pengguna"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Tukarkan kartu hadiah Anda secara online dalam hitungan detik atau di kasir."; -/* Button title, Register (username) */ -"Register" = "Daftar"; - /* No comment provided by engineer. */ "Register?" = "Daftar?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "Gambar yang Anda pilih akan diunggah ke Imgur secara anonim."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "Jumlah minimum yang dapat Anda kirim adalah %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "mereka (Mengambil Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Tidak ada pengguna yang cocok dengan nama %@ di kontak Anda"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Terjadi kesalahan saat mengekspor riwayat transaksi Anda ke ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "ke Dash Wallet di perangkat ini"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Untuk memulai staking, buat akun di CrowdNode atau hubungkan ke akun yang sudah ada."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Nama pengguna sudah ditemukan"; -/* No comment provided by engineer. */ -"Username available" = "Nama pengguna tersedia"; - /* 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"; - /* Voting */ "Username voting" = "Voting nama pengguna"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Memvalidasi alamat…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validasi nama pengguna gagal"; - -/* No comment provided by engineer. */ -"Validating username…" = "Memvalidasi nama pengguna…"; - /* CrowdNode Portal */ "Verification Required" = "Verifikasi Diperlukan"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Selamat datang di DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Apa itu voting nama pengguna?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Apakah Anda ingin menerima undangan?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Apakah Anda ingin melakukan deposit untuk pembelian Anda menggunakan rekening bank yang tertaut?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Anda dapat melihat informasi terperinci tentang setoran, penarikan, dan hadiah penghasilan Anda."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Anda tidak dapat mengklaim undangan ini karena Anda sudah memiliki nama pengguna Dash"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Transaksi Anda telah dikirim dan jumlahnya akan muncul di dompet Anda dalam beberapa menit."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Nama pengguna anda %@ telah sukses dibuat di jaringan Dash"; diff --git a/DashWallet/it.lproj/Localizable.strings b/DashWallet/it.lproj/Localizable.strings index 7f9e6b2df..0602aa9c0 100644 --- a/DashWallet/it.lproj/Localizable.strings +++ b/DashWallet/it.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Politica sulla Riservatezza"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Un'esperienza intuitiva e familiare su tutti i tuoi dispositivi"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "e"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Tra %1$ld e %2$ld caratteri\n "; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Controlla la connessione"; -/* Choose your Dash username */ -"Choose your" = "Scegli il tuo"; - /* No comment provided by engineer. */ "Choose Your Username" = "Scegli il tuo Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confermare (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Conferma PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contatti"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continua"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "I pagamneti in Dash non possono essere inferiori a %@"; -/* No comment provided by engineer. */ -"Dash username" = "Nome utente Dash"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet su questo dispositivo"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "esempio: johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Prima"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "es: Papà"; -/* Input username textfield placeholder */ -"eg: johndoe" = "es: johndoe"; - /* CrowdNode */ "Email" = "E-mail"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invito creato con successo"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invito utilizzato da"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Solo lettere, numeri e trattini"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Iniziamo"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Molteplici ore"; -/* Validation rule */ -"Must start and end with a letter or number" = "Deve iniziare e terminare con una lettera o un numero"; - /* No comment provided by engineer. */ "My Contacts" = "I miei contatti"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "IP Nodo"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Nessuno"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Una volta che %@ accetta la tua richiesta, puoi pagare direttamente al nome utente"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Riscatta la tua carta regalo online in pochi secondi o alla cassa."; -/* Button title, Register (username) */ -"Register" = "Registrati"; - /* No comment provided by engineer. */ "Register?" = "Registrato?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "L'immagine che selezioni verrà caricata su Imgur in forma anonima."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "L'importo minimo che puoi inviare è%@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "loro (Recupero delle informazioni)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Non ci sono utenti che corrispondono al nome %@ nei tuoi contatti"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Si è verificato un errore durante l'esportazione della cronologia delle transazioni su ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "a Dash Wallet su questo dispositivo"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Per iniziare a fare staking, crea un account su CrowdNode o connettiti a uno esistente."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username già trovato"; -/* No comment provided by engineer. */ -"Username available" = "Username disponibile"; - /* 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"; - /* Voting */ "Username voting" = "Votazione tramite nome utente"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Indirizzo di convalida..."; -/* No comment provided by engineer. */ -"Validating username failed" = "Convalida del nome utente non riuscita"; - -/* No comment provided by engineer. */ -"Validating username…" = "Convalida nome utente..."; - /* CrowdNode Portal */ "Verification Required" = "Verifica richiesta"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Benvenuto su DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Cos'è la votazione del nome utente?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Vuoi accettare l'invito?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Desideri effettuare un deposito per il tuo acquisto utilizzando un conto bancario collegato?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Puoi visualizzare informazioni dettagliate sui tuoi depositi, prelievi e guadagni premio."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Non puoi rivendicare questo invito poiché hai già uno Username Dash"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "La tua transazione è stata inviata e l'importo dovrebbe essere visualizzato nel tuo portafoglio entro pochi minuti."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Il tuo nome utente %@ è stato creato con successo sulla rete Dash"; diff --git a/DashWallet/ja.lproj/Localizable.strings b/DashWallet/ja.lproj/Localizable.strings index 0b9fbd38a..b96d73773 100644 --- a/DashWallet/ja.lproj/Localizable.strings +++ b/DashWallet/ja.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "プライバシーポリシー"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "全てのデバイスで直感的かつ使いやすい使用感"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "および"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "%1$ld~%2$ld文字"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "接続を確認してください"; -/* Choose your Dash username */ -"Choose your" = "あなたのを選択する"; - /* No comment provided by engineer. */ "Choose Your Username" = "ユーザー名を選択する"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "確認する (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "PINを確認する"; @@ -521,7 +512,7 @@ "Contacts" = "連絡先"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "続ける"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dashの送金は %@ 以上でないと送れません"; -/* No comment provided by engineer. */ -"Dash username" = "Dashのユーザー名"; - /* Buy Dash */ "Dash Wallet on this device" = "この端末のDashウォレット"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "例:johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "以前"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "例: お父さん"; -/* Input username textfield placeholder */ -"eg: johndoe" = "例: johndoe"; - /* CrowdNode */ "Email" = "Eメール"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "招待状の作成に成功しました"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "使用された招待状"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "英字、数字、ハイフンのみ"; - /* No comment provided by engineer. */ "Let’s Get Started" = "さあ、はじめましょう"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "数時間"; -/* Validation rule */ -"Must start and end with a letter or number" = "英字または数字で始まり、英字または数字で終える必要があります"; - /* No comment provided by engineer. */ "My Contacts" = "私の連絡先"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "ノードIP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "無し"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "一度%@があなたのリクエストを承認すると、ユーザー名に直接支払えるようになります。"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "ギフトカードは、オンラインで数秒以内またはレジでご利用いただけます。"; -/* Button title, Register (username) */ -"Register" = "登録する"; - /* No comment provided by engineer. */ "Register?" = "登録しますか。"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "選択した画像は、匿名でImgurにアップロードされます。"; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "送金可能な最小金額は、%@です"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "それら(情報の取得)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "あなたの連絡先に名前%@に一致するユーザーはいません。"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "取引履歴をZenLedgerにエクスポートする際に、エラーが発生しました"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "この端末のDashウォレットに"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "ステーキングを開始するには、CrowdNodeにアカウントを作成するか、既存のアカウントに接続します。"; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "ユーザー名はすでに登録済みです"; -/* No comment provided by engineer. */ -"Username available" = "ユーザー名は使用可能です"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "ユーザー名を取得しました"; - /* Voting */ "Username voting" = "ユーザー名投票"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "アドレスを有効化中"; -/* No comment provided by engineer. */ -"Validating username failed" = "ユーザー名の有効化失敗"; - -/* No comment provided by engineer. */ -"Validating username…" = "ユーザー名の有効化中..."; - /* CrowdNode Portal */ "Verification Required" = "認証が必要です"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "DashPayにようこそ"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "ユーザー名投票とは?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "招待状を受け取りますか。"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "リンクされた銀行口座を使用して購入代金を入金しますか。"; @@ -2803,6 +2773,9 @@ /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "以下のいずれかの形式でキーを入力できます:WIF/base58/base64/hex"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "お客様の入出金や報酬の獲得に関する詳細な情報を確認できます。"; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "すでにDashのユーザー名を持っているため、この招待状を請求できません。"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "あなたの取引は送られたので、数分内にその金額がウォレットに表示されるでしょう"; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "あなたのユーザー名%@はDashネットワークに無事作成されました。"; diff --git a/DashWallet/ko.lproj/Localizable.strings b/DashWallet/ko.lproj/Localizable.strings index 4489cf402..7e4b81bc6 100644 --- a/DashWallet/ko.lproj/Localizable.strings +++ b/DashWallet/ko.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "개인정보 보호정책"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "당신의 모든 기기에 걸친 직관적이고 친근한 경험"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "또한"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "%1$ld 와 %2$ld 글자 사이"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "연결을 확인하세요"; -/* Choose your Dash username */ -"Choose your" = "다음을 선택하세요"; - /* No comment provided by engineer. */ "Choose Your Username" = "사용자 이름을 선택하세요"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "확인 (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "PIN 확인"; @@ -521,7 +512,7 @@ "Contacts" = "연락처"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "계속"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "대시 지불은 %@보다 적을 수 없습니다"; -/* No comment provided by engineer. */ -"Dash username" = "대시 사용자 이름"; - /* Buy Dash */ "Dash Wallet on this device" = "이 기기의 대시 지갑"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "예시 johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "이전"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "예시: 아빠"; -/* Input username textfield placeholder */ -"eg: johndoe" = "예시: 홍길동"; - /* CrowdNode */ "Email" = "이메일"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "초대가 성공적으로 생성되었습니다"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "다음에 사용된 초대"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "글자, 숫자 및 하이픈만 사용할 수 있습니다."; - /* No comment provided by engineer. */ "Let’s Get Started" = "지금 시작하세요"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "다중 시간"; -/* Validation rule */ -"Must start and end with a letter or number" = "시작과 끝은 글자나 숫자여야 합니다"; - /* No comment provided by engineer. */ "My Contacts" = "나의 연락처"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "노드 IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "없음"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "%@ 님이 당신의 요청을 수락하면 사용자 이름에 직접 지불할 수 있습니다"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "수초만에 온라인으로, 혹은 카운터에서 기프트 카드를 현금화합니다."; -/* Button title, Register (username) */ -"Register" = "등록"; - /* No comment provided by engineer. */ "Register?" = "등록합니까?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "당신이 선택한 이미지는 Imgur에 익명으로 업로드됩니다."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "송금 가능한 최소 금액은 %@ 입니다"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "다른 사람들 (정보 불러오기)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "당신의 연락처에 %@ 라는 이름에 맞는 사용자가 존재하지 않습니다"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Zenledger에 거래 내역을 내보내던 중 에러가 발생하였습니다"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "이 기기의 대시 지갑으로"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "스테이킹을 시작하려면 크라우드노드에 계정을 만들거나 기존 계정에 연결하세요."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "사용자 이름을 이미 찾았습니다"; -/* No comment provided by engineer. */ -"Username available" = "사용할 수 없는 사용자 이름"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "이미 사용 중인 사용자 이름"; - /* Voting */ "Username voting" = "사용자 이름 투표"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "주소 확인중..."; -/* No comment provided by engineer. */ -"Validating username failed" = "사용자 이름 인증 실패"; - -/* No comment provided by engineer. */ -"Validating username…" = "사용자 이름 인증 중..."; - /* CrowdNode Portal */ "Verification Required" = "인증이 필요함"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "대시페이에 오신 것을 환영합니다"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "사용자이름 투표란 무엇인가요?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "초대를 수락하시겠습니까?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "연결된 은행 계좌를 이용해 구매를 위한 입금 처리를 완료하시겠습니까?"; @@ -2803,6 +2773,9 @@ /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "다음과 같은 포맷 중 어떤 형태로도 키를 입력할 수 있습니다: WIF/base58/base64/hex"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "입금, 출금 및 리워드 수익에 대한 자세한 정보를 확인할 수 있습니다."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "이미 대시 사용자 이름을 가지고 있어 이 초대를 수락할 수 없습니다."; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "당신의 거래가 완료되었으며 수 분 이내에 당신의 지갑에 잔액이 표시될 예정입니다."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "당신의 사용자 이름인 %@가 대시 네트워크에 성공적으로 생성되었습니다"; diff --git a/DashWallet/mk.lproj/Localizable.strings b/DashWallet/mk.lproj/Localizable.strings index 83e85426b..755790619 100644 --- a/DashWallet/mk.lproj/Localizable.strings +++ b/DashWallet/mk.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/ms.lproj/Localizable.strings b/DashWallet/ms.lproj/Localizable.strings index 17078679a..6caa7a144 100644 --- a/DashWallet/ms.lproj/Localizable.strings +++ b/DashWallet/ms.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/nb.lproj/Localizable.strings b/DashWallet/nb.lproj/Localizable.strings index ae06f2658..1d29ee4a6 100644 --- a/DashWallet/nb.lproj/Localizable.strings +++ b/DashWallet/nb.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/nl.lproj/Localizable.strings b/DashWallet/nl.lproj/Localizable.strings index 5299d88ea..7cfb7a4cf 100644 --- a/DashWallet/nl.lproj/Localizable.strings +++ b/DashWallet/nl.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Privacybeleid"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Een intuïtieve en vertrouwde ervaring op al je apparaten"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = " en "; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Tussen %1$ld en %2$ld karakters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Controleer je verbinding"; -/* Choose your Dash username */ -"Choose your" = "Kies je"; - /* No comment provided by engineer. */ "Choose Your Username" = "Kies je gebruikersnaam"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Bevestig (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Bevestig pin"; @@ -521,7 +512,7 @@ "Contacts" = "Contacten"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Ga door"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash-betalingen mogen niet kleiner zijn dan %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash gebruikersnaam"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash portemonnee op dit apparaat"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "bijvoorbeeld jan@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Eerder"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "bv: Papa"; -/* Input username textfield placeholder */ -"eg: johndoe" = "bv: johndoe"; - /* CrowdNode */ "Email" = "E-mail"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Uitnodiging succesvol aangemaakt"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Uitnodiging gebruikt door"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Alleen letters, cijfers en koppeltekens"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Laten we beginnen"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Meerdere uren"; -/* Validation rule */ -"Must start and end with a letter or number" = "Moet beginnen en eindigen met een letter of cijfer"; - /* No comment provided by engineer. */ "My Contacts" = "Mijn contacten"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Geen"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Zodra%@ jouw verzoek accepteert kunt je direct betalen aan Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Wissel je geschenkbon online in binnen een paar seconden of bij de kassa. "; -/* Button title, Register (username) */ -"Register" = "Registreren"; - /* No comment provided by engineer. */ "Register?" = "Registreren?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "De afbeelding die je selecteert, wordt anoniem naar Imgur geüpload."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "Het minimumbedrag dat je kan verzenden is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "hen (Informatie ophalen)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Er zijn geen gebruikers die overeenkomen met de naam %@ in uw contacten"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Er is een fout opgetreden bij het exporteren van de transactiegeschiedenis naar ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "naar Dash portemonnee op dit apparaat"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Om te beginnen met staking, maak een account aan op CrowdNode of maak verbinding met een bestaande."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Gebruikersnaam al gevonden"; -/* No comment provided by engineer. */ -"Username available" = "Gebruikersnaam beschikbaar"; - /* 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"; - /* Voting */ "Username voting" = "Gebruikersnaam voor stemmen"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Adres valideren…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validatie van gebruikersnaam is mislukt"; - -/* No comment provided by engineer. */ -"Validating username…" = "Gebruikersnaam valideren…"; - /* CrowdNode Portal */ "Verification Required" = "Verificatie vereist"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welkom bij DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Wat is stemmen met gebruikersnaam?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Wil je de uitnodiging accepteren?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Wil je de aankoop storten via een gekoppelde bankrekening?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Je kunt gedetailleerde informatie zien over uw stortingen, opnames en inkomsten."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Je kunt deze uitnodiging niet claimen omdat je al een Dash gebruikersnaam hebt"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "De transactie is verzonden en het bedrag verschijnt binnen een paar minuten in je de portemonnee."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Uw gebruikersnaam %@ is met succes aangemaakt op het Dash netwerk"; diff --git a/DashWallet/pl.lproj/Localizable.strings b/DashWallet/pl.lproj/Localizable.strings index c42536c4a..8cbc4173a 100644 --- a/DashWallet/pl.lproj/Localizable.strings +++ b/DashWallet/pl.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Polityka Prywatności"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Intuicyjne i znane doświadczenie na wszystkich urządzeniach"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "i"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Pomiędzy %1$ld a %2$ld znaków"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Sprawdź swoje połączenie"; -/* Choose your Dash username */ -"Choose your" = "Wybierz swój"; - /* No comment provided by engineer. */ "Choose Your Username" = "Wybierz swoją nazwę użytkownika"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Potwierdź (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Potwierdź kod PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Kontakty"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Dalej"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Płatności Dash nie mogą być mniejsze niż %@"; -/* No comment provided by engineer. */ -"Dash username" = "Nazwa Użytkownika Dash"; - /* Buy Dash */ "Dash Wallet on this device" = "Portfel Dash na tym urządzeniu"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Wcześniej"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "np Tato"; -/* Input username textfield placeholder */ -"eg: johndoe" = "np. jankowalski"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Zaproszenie zostało stworzone pomyślnie"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Zaproszenie zostało użyte przez"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Tylklko litery, cyfry i myślniki są dozwolone"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Zacznijmy"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Wiele godzin"; -/* Validation rule */ -"Must start and end with a letter or number" = "Musi się zacząć literą lub cyfrą"; - /* No comment provided by engineer. */ "My Contacts" = "Moje Kontakty"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Węzeł IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Żaden"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Kiedy %@ zakceptuje twoje zaproszenie to będziesz mógł dokonywać płatności używając jedynie nazwy użytkownika"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Wymień swoją kartę podarunkową w ciągu kilku sekund, online lub bezpośrednio u kasjera."; -/* Button title, Register (username) */ -"Register" = "Zarejestruj"; - /* No comment provided by engineer. */ "Register?" = "Zarejestruj?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "Wybrany obrazek będzie anonimowo wrzucony na Imgur "; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "Minimalna kwota jaką możesz wysłać to %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "ich (pobieranie informacji)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Twoje kontakty nie zawierają żadnego użytkownika pasującego do nazwy %@"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Wystąpił błąd podczas eksportowania historii transakcji do ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "Do portfela Dash na tym urządzeniu"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Aby otworzyć lokatę, stwórz konto na CrowdNode lub zaloguj się do już istniejącego konta."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Użytkownik został już znaleziony"; -/* No comment provided by engineer. */ -"Username available" = "Nazwa jest dostępna"; - /* 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"; - /* Voting */ "Username voting" = "Głosowanie nad nazwą użytkownika"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Walidacja adresu..."; -/* No comment provided by engineer. */ -"Validating username failed" = "Walidacja nazwy użytkownika nie powiodła się"; - -/* No comment provided by engineer. */ -"Validating username…" = "Walidacja nazwy użytkownika..."; - /* CrowdNode Portal */ "Verification Required" = "Wymagana jest Weryfikacja"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Witaj w DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Na czym polega głosowanie nad nazwą użytkownika?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Chcesz zaakcptować zaprosznie?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Czy chcesz dokonać depozytu na twój zakup z połączonego konta bankowego?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Możesz zobaczyć szczegółowe informacje na temat swoich depozytów, wypłat oraz zarobków."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Nie możesz odebrać tego zaproszenia, ponieważ już masz własną nazwę użytkownika na sieci Dash."; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Twoja transakcja została wysłana a ilość powinna pojawić się na Twoim koncie w kilka minut."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Twoja nazwa użytkownika %@ została stworzona na Sieci Dash"; diff --git a/DashWallet/pt.lproj/Localizable.strings b/DashWallet/pt.lproj/Localizable.strings index 187b16189..ca6d5eb3d 100644 --- a/DashWallet/pt.lproj/Localizable.strings +++ b/DashWallet/pt.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Política de Privacidade"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Uma experiência familiar e através de todos os seus dispositivos"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "e"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Entre %1$ld e %2$ld caracteres"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Verifique sua conexão"; -/* Choose your Dash username */ -"Choose your" = "Escolha seu"; - /* No comment provided by engineer. */ "Choose Your Username" = "Escolha seu nome de usuário"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirmar (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirmar PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contatos"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continuar"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Pagamentos Dash não podem ser menores que %@"; -/* No comment provided by engineer. */ -"Dash username" = "Nome de usuário Dash"; - /* Buy Dash */ "Dash Wallet on this device" = "Carteira Dash neste dispositivo"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "por exemplo: johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Recentes"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "ex: Pai"; -/* Input username textfield placeholder */ -"eg: johndoe" = "ex: joaosilva"; - /* CrowdNode */ "Email" = "E-mail"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Convite Criado com Sucesso"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Convite utilizado por"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Apenas letras, números e hífens"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Vamos Começar"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Várias horas"; -/* Validation rule */ -"Must start and end with a letter or number" = "Deve começar e terminar com uma letra ou número"; - /* No comment provided by engineer. */ "My Contacts" = "Meus Contatos"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "IP do nó"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Nenhuma"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Assim que %@ aceitar seu pedido, você poderá Pagar Diretamente ao Nome de Usuário"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Resgate seu cartão presente on-line em segundos ou no caixa."; -/* Button title, Register (username) */ -"Register" = "Registrar"; - /* No comment provided by engineer. */ "Register?" = "Registrar?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "A imagem que você selecionar será carregada no Imgur anonimamente."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "A quantidade mínima que você pode enviar é %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "eles (Buscando Informações)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Não há usuários que correspondam ao nome %@ nos seus contatos"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Ocorreu um erro ao exportar seu histórico de transações para o ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "para a Carteira Dash neste dispositivo"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Para iniciar as operações de staking, crie uma conta no CrowdNode ou conecte-se a uma existente."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Nome de usuário já encontrado"; -/* No comment provided by engineer. */ -"Username available" = "Nome de usuário disponível"; - /* 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"; - /* Voting */ "Username voting" = "Votação de Nomes de Usuário"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validando endereço…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validação de nome de usuário falhou"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validando nome de usuário..."; - /* CrowdNode Portal */ "Verification Required" = "Verificação Necessária"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Bem-vindo ao DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "O que é a votação de nomes de usuário?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Você gostaria de aceitar o convite?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Você gostaria de fazer um depósito para a sua compra usando uma conta bancária vinculada?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Você pode ver informações detalhadas sobre seus depósitos, saques e ganhos de recompensa."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Você não pode reivindicar este convite porque já tem um nome de usuário Dash"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Sua transação foi enviada e o valor aparecerá na sua carteira em alguns minutos. "; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Seu nome de usuário %@ foi criado com sucesso na Rede Dash"; diff --git a/DashWallet/ro.lproj/Localizable.strings b/DashWallet/ro.lproj/Localizable.strings index 807bb0475..69bef40a6 100644 --- a/DashWallet/ro.lproj/Localizable.strings +++ b/DashWallet/ro.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Plățile Dash nu pot fi mai mici decât %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Tranzacția ta a fost trimisă, iar suma trebuie să apară în portofel în câteva minute."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/ru.lproj/Localizable.strings b/DashWallet/ru.lproj/Localizable.strings index 1296dcf4d..6fd615630 100644 --- a/DashWallet/ru.lproj/Localizable.strings +++ b/DashWallet/ru.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Политика конфиденциальности"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Интуитивный и привычный интерфейс на всех ваших устройствах"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = " и "; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "От %1$ld до %2$ld символов"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Проверьте ваше интернет-соединение"; -/* Choose your Dash username */ -"Choose your" = "Выберите ваше"; - /* No comment provided by engineer. */ "Choose Your Username" = "Выберите имя пользователя"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Подтвердить (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Подтвердите PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Контакты"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Продолжить"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Платежи Dash не могут быть меньше, чем %@"; -/* No comment provided by engineer. */ -"Dash username" = "Имя пользователя Dash"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet на этом устройстве"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "например, johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Ранее"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "напр.: Папа"; -/* Input username textfield placeholder */ -"eg: johndoe" = "напр.: ИванИванов"; - /* CrowdNode */ "Email" = "Почта"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Приглашение успешно создано"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Приглашением воспользовался"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Только буквы, цифры и дефисы"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Давайте начнём"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Несколько часов"; -/* Validation rule */ -"Must start and end with a letter or number" = "Должно начинаться и заканчиваться на цифру или букву"; - /* No comment provided by engineer. */ "My Contacts" = "Мои контакты"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "IP узла"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Отсутствует"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Когда %@ примет ваш запрос, вы сможете оплатить напрямую по Имени пользователя"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Используйте подарочную карту сразу же онлайн или в кассе."; -/* Button title, Register (username) */ -"Register" = "Регистрация"; - /* No comment provided by engineer. */ "Register?" = "Зарегистрировать?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "Выбранное изображение будет загружено на Imgur анонимно."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "Минимальная сумма для отправки составляет %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "их (Получение информации)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Пользователей, чьё имя совпадает с %@, в вашем списке контактов не найдено"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "При переносе истории транзакций в ZenLedger произошла ошибка"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "на Dash Wallet на этом устройстве"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Чтобы приступить к стейкингу, создайте аккаунт на CrowdNode или подключитесь к уже существующему"; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Имя пользователя уже найдено"; -/* No comment provided by engineer. */ -"Username available" = "Имя пользователя доступно"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Имя пользователя уже занято"; - /* Voting */ "Username voting" = "Голосование за имя пользователя"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Подтверждение адреса..."; -/* No comment provided by engineer. */ -"Validating username failed" = "Имя пользователя не подтверждено"; - -/* No comment provided by engineer. */ -"Validating username…" = "Подтверждение имени пользователя..."; - /* CrowdNode Portal */ "Verification Required" = "Требуется верификация"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Добро пожаловать в DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Что такое голосование за имя пользователя?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Хотите принять приглашение?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Хотите внести депозит за покупку, используя привязанный банковский счет?"; @@ -2803,6 +2773,9 @@ /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Вы можете ввести ключ в любом из нижеперечисленных форматов: WIF/base58/base64/hex"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Здесь можно найти подробную информацию о внесении и выводе средств, а также о вознаграждениях."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Нельзя откликнуться на это приглашение, потому что у вас уже есть имя пользователя Dash"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Ваша транзакция была отправлена и её сумма отобразится в вашем кошельке через несколько минут."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Ваше имя пользователя %@ успешно создано в сети Dash"; diff --git a/DashWallet/sk.lproj/Localizable.strings b/DashWallet/sk.lproj/Localizable.strings index 0d9d6dc4a..873614a5d 100644 --- a/DashWallet/sk.lproj/Localizable.strings +++ b/DashWallet/sk.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Zásady ochrany osobných údajov"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Intuitívny a známy zážitok vo všetkých vašich zariadeniach"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "a"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Medzi %1$ld a %2$ld znakmi"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Skontrolujte pripojenie"; -/* Choose your Dash username */ -"Choose your" = "Vybrať vaše"; - /* No comment provided by engineer. */ "Choose Your Username" = "Zvoľte si používateľské meno"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Potvrďte (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Potvrdiť PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Kontakty"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Pokračovať"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash platby nemôžu byť menšie ako %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash používateľské meno"; - /* Buy Dash */ "Dash Wallet on this device" = "Peňaženka Dash v tomto zariadení"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "napr. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "pred"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "napr.: Otec"; -/* Input username textfield placeholder */ -"eg: johndoe" = "napr.: mario"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Pozvánka bola úspešne vytvorená"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Pozvanie použité používateľom"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Iba písmená, čísla a spojovníky"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Začnime"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Niekoľko hodín"; -/* Validation rule */ -"Must start and end with a letter or number" = "Musí začínať a končiť písmenom alebo číslom"; - /* No comment provided by engineer. */ "My Contacts" = "Moje kontakty"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "IP uzla"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Žiadne"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Hneď ako %@ akceptuje vašu žiadosť, môžete platiť priamo na meno používateľa"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Uplatnite svoju darčekovú kartu online v priebehu niekoľkých sekúnd alebo pri pokladni."; -/* Button title, Register (username) */ -"Register" = "Registrovať"; - /* No comment provided by engineer. */ "Register?" = "Registrovať?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "Obrázok, ktorý vyberiete, bude anonymne nahraný na Imgur."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "Minimálna suma, ktorú môžete poslať, je %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "ich (načítavanie informácií)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Vo vašich kontaktoch neexistujú žiadni používatelia, ktorí sa zhodujú s menom %@ "; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Pri exporte vašej histórie transakcií do ZenLedger sa vyskytla chyba"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "do Dash peňaženky na tomto zariadení"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Ak chcete začať stávkovať, vytvorte si účet na CrowdNode alebo sa pripojte k existujúcemu účtu."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Používateľské meno sa už našlo"; -/* No comment provided by engineer. */ -"Username available" = "Používateľské meno je k dispozícii"; - /* 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"; - /* Voting */ "Username voting" = "Hlasovanie o používateľských menách"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Overuje sa adresa…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Overenie používateľského mena zlyhalo"; - -/* No comment provided by engineer. */ -"Validating username…" = "Overuje sa používateľské meno…"; - /* CrowdNode Portal */ "Verification Required" = "Vyžaduje sa overenie"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Vitajte v DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Čo je to hlasovanie o používateľské mená?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Chcete prijať pozvanie?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Chceli by ste vložiť zálohu za svoj nákup pomocou prepojeného bankového účtu?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Môžete vidieť podrobné informácie o svojich vkladoch, výberoch a zárobkoch z odmien."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Túto pozvánku si nemôžete nárokovať, pretože už máte používateľské meno Dash"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Vaša transakcia bola odoslaná a čiastka by sa mala objaviť vo vašej peňaženke v priebehu niekoľkých minút."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Vaše používateľské meno %@ bolo úspešne vytvorené v sieti Dash"; diff --git a/DashWallet/sl.lproj/Localizable.strings b/DashWallet/sl.lproj/Localizable.strings index 3ff2a133e..28ef44337 100644 --- a/DashWallet/sl.lproj/Localizable.strings +++ b/DashWallet/sl.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/sl_SI.lproj/Localizable.strings b/DashWallet/sl_SI.lproj/Localizable.strings index 72c825f14..f9e9f2577 100644 --- a/DashWallet/sl_SI.lproj/Localizable.strings +++ b/DashWallet/sl_SI.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/sq.lproj/Localizable.strings b/DashWallet/sq.lproj/Localizable.strings index 660e186c9..d51104dbe 100644 --- a/DashWallet/sq.lproj/Localizable.strings +++ b/DashWallet/sq.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/sr.lproj/Localizable.strings b/DashWallet/sr.lproj/Localizable.strings index ef0a33589..c0e32881e 100644 --- a/DashWallet/sr.lproj/Localizable.strings +++ b/DashWallet/sr.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/sv.lproj/Localizable.strings b/DashWallet/sv.lproj/Localizable.strings index 44ded61b4..9f21f1522 100644 --- a/DashWallet/sv.lproj/Localizable.strings +++ b/DashWallet/sv.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Kontrollera din anslutning"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Bekräfta PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Fortsätt"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/th.lproj/Localizable.strings b/DashWallet/th.lproj/Localizable.strings index a47343218..ee29d58b8 100644 --- a/DashWallet/th.lproj/Localizable.strings +++ b/DashWallet/th.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "นโยบายความเป็นส่วนตัว"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "ประสบการณ์ที่ใช้งานง่ายและคุ้นเคย"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "และ"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "ระหว่าง %1$ld and %2$ld ตัวอักษร"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "ตรวจสอบการเชื่อมต่อ"; -/* Choose your Dash username */ -"Choose your" = "เลือกของคุณ"; - /* No comment provided by engineer. */ "Choose Your Username" = "เลือกชื่อผู้ใช้ของคุณ"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "ยืนยัน (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "ยืนยัน PIN"; @@ -521,7 +512,7 @@ "Contacts" = "ติดต่อ"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "ดำเนินการต่อ"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "การชำระเงิน Dash ไม่สามารถจะน้อยกว่า %@"; -/* No comment provided by engineer. */ -"Dash username" = "ชื่อผู้ใช้ Dash"; - /* Buy Dash */ "Dash Wallet on this device" = "กระเป๋าเงิน Dash บนอุปกรณ์นี้"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "ตัวอย่างเช่น johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "ก่อน"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "เช่น: พ่อ"; -/* Input username textfield placeholder */ -"eg: johndoe" = "ตัวอย่างเช่น: johndoe"; - /* CrowdNode */ "Email" = "อีเมล"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "คำเชิญที่สร้างขึ้นสำเร็จ"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "คำเชิญใช้โดย"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "ตัวอักษรตัวเลขและยัติภังค์เท่านั้น"; - /* No comment provided by engineer. */ "Let’s Get Started" = "เรามาเริ่มกันเลย"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "หลายชั่วโมง"; -/* Validation rule */ -"Must start and end with a letter or number" = "ต้องเริ่มต้นและจบด้วยตัวอักษรหรือหมายเลข"; - /* No comment provided by engineer. */ "My Contacts" = "ติดต่อของฉัน"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "โหนด IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "ไม่มี"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "เมื่อ %@ ยอมรับคำขอของคุณคุณสามารถชำระเงินโดยตรงกับชื่อผู้ใช้"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "แลกบัตรของขวัญของคุณทางออนไลน์ภายในไม่กี่วินาทีหรือที่แคชเชียร์"; -/* Button title, Register (username) */ -"Register" = "ลงทะเบียน"; - /* No comment provided by engineer. */ "Register?" = "ลงทะเบียนหรือไม่"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "รูปภาพที่คุณเลือกจะถูกอัปโหลดไปยัง Imgur โดยไม่ระบุชื่อ"; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "จำนวนเงินขั้นต่ำที่คุณสามารถส่งได้คือ %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "พวกเขา (ดึงข้อมูล)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "ไม่มีผู้ใช้ที่ตรงกับชื่อ %@ ในรายชื่อผู้ติดต่อของคุณ"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "เพื่อกระเป๋า Dash บนอุปกรณ์นี้"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "ในการเริ่มการ stakingให้สร้างบัญชีบน CrowdNode หรือเชื่อมต่อกับบัญชีที่มีอยู่"; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "พบชื่อผู้ใช้แล้ว"; -/* No comment provided by engineer. */ -"Username available" = "มีชื่อผู้ใช้"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "ใช้ชื่อผู้ใช้แล้ว"; - /* Voting */ "Username voting" = "โหวตชื่อผู้ใช้"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "ตรวจสอบที่อยู่..."; -/* No comment provided by engineer. */ -"Validating username failed" = "ตรวจสอบชื่อผู้ใช้ล้มเหลว"; - -/* No comment provided by engineer. */ -"Validating username…" = "ตรวจสอบชื่อผู้ใช้..."; - /* CrowdNode Portal */ "Verification Required" = "จำเป็นต้องมีการตรวจสอบ"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "ยินดีต้อนรับสู่ DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "การโหวตชื่อผู้ใช้คืออะไร?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "คุณต้องการยอมรับคำเชิญหรือไม่?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "คุณต้องการฝากเงินสำหรับการซื้อของคุณโดยใช้บัญชีธนาคารที่เชื่อมโยงหรือไม่?"; @@ -2803,6 +2773,9 @@ /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "คุณสามารถป้อนคีย์ของคุณในรูปแบบใดๆ ต่อไปนี้: WIF/base58/base64/hex"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "คุณสามารถดูข้อมูลโดยละเอียดเกี่ยวกับเงินฝากการถอนและรางวัลของคุณ"; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "คุณไม่สามารถเรียกร้องคำเชิญนี้ได้เนื่องจากคุณมีชื่อผู้ใช้ DASH อยู่แล้ว"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "ธุรกรรมของคุณถูกส่งแล้วและจำนวนเงินจะปรากฏใน wallet ของคุณในอีกไม่กี่นาที"; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "ชื่อผู้ใช้ของคุณ %@ ได้รับการสร้างที่ประสบความสำเร็จบนเครือข่าย Dash"; diff --git a/DashWallet/tr.lproj/Localizable.strings b/DashWallet/tr.lproj/Localizable.strings index fc1d3f442..4a773818a 100644 --- a/DashWallet/tr.lproj/Localizable.strings +++ b/DashWallet/tr.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Gizlilik Politikası"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Tüm cihazlarınızda tanıdık sezgisel bir deneyim"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "ve"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "%1$ld ile %2$ld karakter arasında"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Bağlantınızı kontrol edin"; -/* Choose your Dash username */ -"Choose your" = "Seçin"; - /* No comment provided by engineer. */ "Choose Your Username" = "Kullanıcı adınızı seçin"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Onay (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "PİN'i Onayla"; @@ -521,7 +512,7 @@ "Contacts" = "Kişiler"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Devam"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash ödemesi %@ altında olamaz"; -/* No comment provided by engineer. */ -"Dash username" = "Dash kullanıcı adı"; - /* Buy Dash */ "Dash Wallet on this device" = "Bu cihazdaki Dash Cüzdanı"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "Örneğin. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Önceki"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "örneğin: Baba"; -/* Input username textfield placeholder */ -"eg: johndoe" = "örneğin: mehmetali"; - /* CrowdNode */ "Email" = "E-Posta"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Davetiye Başarıyla Oluşturuldu"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Davetiyeyi kullanan kişi"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Yalnızca harfler, sayılar ve kısa çizgiler"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Başlayalım"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Birden fazla saat"; -/* Validation rule */ -"Must start and end with a letter or number" = "Bir harf veya sayı ile başlamalı ve bitmelidir"; - /* No comment provided by engineer. */ "My Contacts" = "Kişilerim"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Düğüm IP'si"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Hiçbiri"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "%@ isteğinizi kabul ettiğinizde Kullanıcı Adına Doğrudan Ödeme yapabilirsiniz"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Hediye kartınızı saniyeler içinde çevrimiçi olarak veya kasiyerde kullanın."; -/* Button title, Register (username) */ -"Register" = "Kayıt ol"; - /* No comment provided by engineer. */ "Register?" = "Kayıt ol?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "Seçtiğiniz resim anonim olarak Imgur'a yüklenecektir."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "Gönderebileceğiniz minimum miktar %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "onları (Bilgi Alma)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Kişilerinizde %@ adıyla eşleşen kullanıcı yok"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "İşlem geçmişinizi ZenLedger'a aktarırken bir hata oluştu"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "bu cihazdaki Dash Cüzdan'ına"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Stake etmeye başlamak için CrowdNode'da bir hesap oluşturun veya mevcut bir hesaba bağlanın."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Kullanıcı adı zaten bulundu"; -/* No comment provided by engineer. */ -"Username available" = "Kullanıcı adı uygun"; - /* 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ış"; - /* Voting */ "Username voting" = "Kullanıcı adı oylaması"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Adres doğrulanıyor…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Kullanıcı adı doğrulanamadı"; - -/* No comment provided by engineer. */ -"Validating username…" = "Kullanıcı adı doğrulanıyor…"; - /* CrowdNode Portal */ "Verification Required" = "Doğrulama Gerekli"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "DashPay'e hoş geldiniz"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Kullanıcı adı oylaması nedir?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Daveti kabul etmek ister misiniz?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Bağlı bir banka hesabını kullanarak satın alma işleminiz için para yatırmak ister misiniz?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Para yatırma, çekme ve ödüllerinizin detaylı bilgileri görebilirsiniz."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Zaten bir Dash kullanıcı adınız olduğundan bu daveti talep edemezsiniz"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "İşleminiz yapıldı ve birkaç dakika içinde tutar cüzdanınızda görülecek."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Kullanıcı adınız %@ Dash Ağında başarıyla oluşturuldu"; diff --git a/DashWallet/uk.lproj/Localizable.strings b/DashWallet/uk.lproj/Localizable.strings index 58bbcc277..c2b1b2aa5 100644 --- a/DashWallet/uk.lproj/Localizable.strings +++ b/DashWallet/uk.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "Політика конфіденційності"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Інтуїтивний та звичний інтерфейс на всіх ваших пристроях"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "і"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Між %1$ld і %2$ld символів"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Перевірте з'єднання"; -/* Choose your Dash username */ -"Choose your" = "Виберіть свій"; - /* No comment provided by engineer. */ "Choose Your Username" = "Виберіть своє ім'я користувача"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Підтвердження (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Підтвердіть PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Контакти"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Продовжити"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Платежі Dash не можуть бути меншими ніж %@"; -/* No comment provided by engineer. */ -"Dash username" = "Ім'я користувача Dash"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet на цьому пристрої"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Раніше"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "наприклад: Тато"; -/* Input username textfield placeholder */ -"eg: johndoe" = "наприклад: johndoe"; - /* CrowdNode */ "Email" = "Електронна адреса"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Запрошення успішно створено"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Запрошення використовував"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Лише літери, цифри та дефіси"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Давайте розпочнемо"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Кілька годин"; -/* Validation rule */ -"Must start and end with a letter or number" = "Має починатися і закінчуватися буквою або цифрою"; - /* No comment provided by engineer. */ "My Contacts" = "Мої контакти"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "IP вузла"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Відсутній"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Щойно %@ прийме ваш запит, ви зможете здійснити оплату безпосередньо на ім’я користувача"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Отримайте свою подарункову картку онлайн за лічені секунди або в касі."; -/* Button title, Register (username) */ -"Register" = "Реєстрація"; - /* No comment provided by engineer. */ "Register?" = "Зареєструватись?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "Вибране вами зображення буде анонімно завантажено в Imgur."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "Мінімальна сума, яку ви можете надіслати, становить %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "їх (Отримання інформації)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Немає користувачів, які з ім'ям %@ у ваших контактах"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "Сталася помилка під час експорту вашої історії транзакцій до ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "На Dash Wallet на цьому пристрої"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "Щоб почати стейкінг, створіть обліковий запис на CrowdNode або підключіться до існуючого."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Ім'я користувача вже існує"; -/* No comment provided by engineer. */ -"Username available" = "Доступне ім'я користувача"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Ім'я користувача зайняте"; - /* Voting */ "Username voting" = "Голосування за імʼя користува"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Підтвердження адреси..."; -/* No comment provided by engineer. */ -"Validating username failed" = "Ім'я користувача не підтверджено"; - -/* No comment provided by engineer. */ -"Validating username…" = "Валідація імені користувача"; - /* CrowdNode Portal */ "Verification Required" = "Потрібна Верифікація"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Ласкаво просимо до DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "Що таке голосування за імʼя користувача?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Хочете прийняти запрошення?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Бажаєте внести депозит за свою покупку за допомогою прив’язаного банківського рахунку?"; @@ -2803,6 +2773,9 @@ /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "Ви можете ввести свій ключ у будь-якому з таких форматів: WIF/base58/base64/hex"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "Ви можете переглянути детальну інформацію про свої депозити, зняття коштів і доходи."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "Ви не можете отримати це запрошення, оскільки у вас уже є ім’я користувача Dash"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Ваша транзакція була відправлена ​​і її сума відобразиться у вашому гаманці за кілька хвилин."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Ваше ім’я користувача %@ було успішно створено в Dash Network"; diff --git a/DashWallet/vi.lproj/Localizable.strings b/DashWallet/vi.lproj/Localizable.strings index b4b6e8fde..6838dcae1 100644 --- a/DashWallet/vi.lproj/Localizable.strings +++ b/DashWallet/vi.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "Một giao diện trực quan và quen thuộc trên tất cả các thiết bị của bạn"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Kiểm tra kết nối của bạn"; -/* Choose your Dash username */ -"Choose your" = "Chọn của bạn"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Xác nhận mã PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Các liên hệ"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Tiếp tục"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Số Dash cho giao dịch không thể nhỏ hơn %@"; -/* No comment provided by engineer. */ -"Dash username" = "Tên người dùng Dash"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Trước đó"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "ví dụ: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "Các liên hệ của tôi"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Địa chỉ IP của nút"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "Không có"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Một khi %@ chấp nhận yêu cầu của bạn thì bạn có thể gửi tiền trực tiếp theo tên người dùng đó"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Đăng ký"; - /* No comment provided by engineer. */ "Register?" = "Đăng ký?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "Không có người dùng nào có tên trùng với %@ trong danh sách liên hệ của bạn"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* 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"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Kiểm tra tính hợp lệ của tên người dùng không thành công"; - -/* No comment provided by engineer. */ -"Validating username…" = "Đang kiểm tra tên người dùng..."; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Giao dịch của bạn đã được gửi và số tiền sẽ xuất hiện trong ví của bạn trong vài phút."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Tên người dùng của bạn %@ đã được tạo lập thành công trên mạng lưới Dash"; diff --git a/DashWallet/zh-Hans.lproj/Localizable.strings b/DashWallet/zh-Hans.lproj/Localizable.strings index 6698798bb..f5774e5dd 100644 --- a/DashWallet/zh-Hans.lproj/Localizable.strings +++ b/DashWallet/zh-Hans.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/zh-Hant-TW.lproj/Localizable.strings b/DashWallet/zh-Hant-TW.lproj/Localizable.strings index bfb474c71..f649f0481 100644 --- a/DashWallet/zh-Hant-TW.lproj/Localizable.strings +++ b/DashWallet/zh-Hant-TW.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = " Privacy Policy "; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "An intuitive and familiar experience across all your devices"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "and"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "Between %1$ld and %2$ld characters"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "Choose your"; - /* No comment provided by engineer. */ "Choose Your Username" = "Choose Your Username"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "Confirm (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "Confirm PIN"; @@ -521,7 +512,7 @@ "Contacts" = "Contacts"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "Continue"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash payments can't be less than %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash username"; - /* Buy Dash */ "Dash Wallet on this device" = "Dash Wallet on this device"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "e.g. johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "Earlier"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "eg: Dad"; -/* Input username textfield placeholder */ -"eg: johndoe" = "eg: johndoe"; - /* CrowdNode */ "Email" = "Email"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "Invitation Created Successfully"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "Invitation used by"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "Letters, numbers and hyphens only"; - /* No comment provided by engineer. */ "Let’s Get Started" = "Let’s Get Started"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "Multiple hours"; -/* Validation rule */ -"Must start and end with a letter or number" = "Must start and end with a letter or number"; - /* No comment provided by engineer. */ "My Contacts" = "My Contacts"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "Node IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "None"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "Once %@ accepts your request you can Pay Directly to Username"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "Redeem your gift card online within seconds or at the cashier."; -/* Button title, Register (username) */ -"Register" = "Register"; - /* No comment provided by engineer. */ "Register?" = "Register?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "The image you select will be uploaded to Imgur anonymously."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "The minimum amount you can send is %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "them (Fetching Info)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "There are no users that match with the name %@ in your contacts"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "There was an error when exporting your transaction history to ZenLedger"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "to Dash Wallet on this device"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "To start staking, create an account on CrowdNode or connect to an existing one."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "Username already found"; -/* No comment provided by engineer. */ -"Username available" = "Username available"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "Username taken"; - /* Voting */ "Username voting" = "Username voting"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "Validating address…"; -/* No comment provided by engineer. */ -"Validating username failed" = "Validating username failed"; - -/* No comment provided by engineer. */ -"Validating username…" = "Validating username…"; - /* CrowdNode Portal */ "Verification Required" = "Verification Required"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "Welcome to DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "What is username voting?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "Would you like to accept the invitation?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "Would you like to make a deposit for your purchase using a linked bank account?"; @@ -2803,6 +2773,9 @@ /* 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"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "You can see detailed information about your deposits, withdrawals and reward earnings."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "You cannot claim this invite since you already have a Dash username"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "Your transaction was sent and the amount should appear in your wallet in a few minutes."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "Your username %@ has been successfully created on the Dash Network"; diff --git a/DashWallet/zh.lproj/Localizable.strings b/DashWallet/zh.lproj/Localizable.strings index a86d3bc89..499d3d1c9 100644 --- a/DashWallet/zh.lproj/Localizable.strings +++ b/DashWallet/zh.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "隐私政策"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "所有设备上的直观熟悉体验"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "和"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "在 %1$ld 和 %2$ld 个字符之间"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "检查您的连接"; -/* Choose your Dash username */ -"Choose your" = "选择您的"; - /* No comment provided by engineer. */ "Choose Your Username" = "选择您的用户名"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "确认 (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "确认PIN"; @@ -521,7 +512,7 @@ "Contacts" = "通讯录"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "继续"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "Dash付款不能小于 %@"; -/* No comment provided by engineer. */ -"Dash username" = "Dash用户名"; - /* Buy Dash */ "Dash Wallet on this device" = "此设备的 Dash钱包"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "例 johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "先前的"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "例: 爸吧"; -/* Input username textfield placeholder */ -"eg: johndoe" = "例: johndoe"; - /* CrowdNode */ "Email" = "邮箱"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "成功创建邀请"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "邀请已用于"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "仅限字母, 数字和连字符"; - /* No comment provided by engineer. */ "Let’s Get Started" = "让我们开始吧"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "多小时"; -/* Validation rule */ -"Must start and end with a letter or number" = "首尾必须是字母或数字"; - /* No comment provided by engineer. */ "My Contacts" = "我的通讯录"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "节点 IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "无"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "一旦 %@ 通过了您的朋友申请, 您就可以使用用户名直接付款"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "在线上或收银台几秒内兑换您的礼品卡."; -/* Button title, Register (username) */ -"Register" = "注册"; - /* No comment provided by engineer. */ "Register?" = "注册?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "您选择的图片将匿名上传到 Imgur."; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "您可以发送的最小额度是%@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "他们 (获取信息)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "您的朋友中没有与名称 %@ 匹配的用户"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "当向 ZenLedger 导出您的交易历史时产生了一个错误"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "到此设备的Dash钱包"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "开始质押前, 需要创建一个CrowdNode账户或连接到现有账户."; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "已找到的用户名"; -/* No comment provided by engineer. */ -"Username available" = "用户名可用"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "用户名已被使用"; - /* Voting */ "Username voting" = "用户名投票"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "正在确认地址..."; -/* No comment provided by engineer. */ -"Validating username failed" = "验证用户名失败"; - -/* No comment provided by engineer. */ -"Validating username…" = "正在验证用户名..."; - /* CrowdNode Portal */ "Verification Required" = "需要验证"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "欢迎来到 DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "什么是用户名投票?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "您愿意接受这个邀请吗?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "您是否想使用关联的银行账户进行存款已完成您的购买?"; @@ -2803,6 +2773,9 @@ /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "您可以以下面任何格式来输入您的密钥: WIF/base58/base64/hex"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "您可以查看有关您的存款, 提款和奖励收入的详细信息."; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "由于您已经有了 Dash用户名, 因此无法认领此邀请"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "您的交易已被发送, 金额将几分钟内出现在您的钱包."; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "您的用户名 %@ 已经在Dash网络上成功创建"; diff --git a/DashWallet/zh_TW.lproj/Localizable.strings b/DashWallet/zh_TW.lproj/Localizable.strings index 9a5d44cea..09d6b4e36 100644 --- a/DashWallet/zh_TW.lproj/Localizable.strings +++ b/DashWallet/zh_TW.lproj/Localizable.strings @@ -1,6 +1,9 @@ /* No comment provided by engineer. */ " " = " "; +/* Usernames */ +" of these criteria" = " of these criteria"; + /* CrowdNode */ " Privacy Policy " = "隱私政策"; @@ -205,9 +208,6 @@ /* No comment provided by engineer. */ "An intuitive and familiar experience across all your devices" = "跨所有設備的直觀熟悉的體驗"; -/* Invites */ -"an invitation" = "an invitation"; - /* CrowdNode */ "and" = "和"; @@ -310,8 +310,8 @@ /* No comment provided by engineer. */ "Beta" = "Beta"; -/* Validation rule: Between 3 and 24 characters */ -"Between %ld and %ld characters" = "在 %1$ld 和 %2$ld 個字符之間"; +/* Usernames */ +"Between 20 and 23 characters" = "Between 20 and 23 characters"; /* Usernames */ "Between 3 and 23 characters" = "Between 3 and 23 characters"; @@ -416,9 +416,6 @@ /* No comment provided by engineer. */ "Check your connection" = "Check your connection"; -/* Choose your Dash username */ -"Choose your" = "選擇你的"; - /* No comment provided by engineer. */ "Choose Your Username" = "選擇你的用戶名"; @@ -473,12 +470,6 @@ /* Coinbase/Buy Dash/Confirm Order */ "Confirm (%d%@)" = "確認 (%1$d%2$@)"; -/* Invites */ -"Confirm and pay" = "Confirm and pay"; - -/* Invites */ -"Confirm invitation" = "Confirm invitation"; - /* No comment provided by engineer. */ "Confirm PIN" = "確認密碼"; @@ -521,7 +512,7 @@ "Contacts" = "通訊錄"; /* Usernames */ -"Contested" = "Contested"; +"Contains numbers 2-9" = "Contains numbers 2-9"; /* No comment provided by engineer. */ "Continue" = "繼續"; @@ -659,9 +650,6 @@ /* No comment provided by engineer. */ "Dash payments can't be less than %@" = "達世幣付款不能低於 %@"; -/* No comment provided by engineer. */ -"Dash username" = "達世幣用戶名"; - /* Buy Dash */ "Dash Wallet on this device" = "此設備上的達世幣錢包"; @@ -763,8 +751,8 @@ /* CrowdNode */ "e.g. johndoe@mail.com" = "例如 johndoe@mail.com"; -/* Invites */ -"Each invitation will be funded so that the receiver can quickly create their username on the Dash Network." = "Each invitation will be funded so that the receiver can quickly create their username on the Dash Network."; +/* No comment provided by engineer. */ +"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network"; /* (List of notifications happened) Earlier (some time ago) */ "Earlier" = "之前"; @@ -781,9 +769,6 @@ /* Invitation tag placeholder */ "eg: Dad" = "例如: 爸爸"; -/* Input username textfield placeholder */ -"eg: johndoe" = "例如: johndoe"; - /* CrowdNode */ "Email" = "電子郵件"; @@ -1207,8 +1192,8 @@ /* No comment provided by engineer. */ "Invitation Created Successfully" = "創建邀請成功"; -/* Invites */ -"Invitation fee" = "Invitation fee"; +/* No comment provided by engineer. */ +"Invitation Fee" = "Invitation Fee"; /* No comment provided by engineer. */ "Invitation used by" = "邀請己被使用"; @@ -1316,9 +1301,6 @@ /* Usernames */ "Letter, numbers and hyphens only" = "Letter, numbers and hyphens only"; -/* Validation rule */ -"Letters, numbers and hyphens only" = "僅限字母、數字和連字符"; - /* No comment provided by engineer. */ "Let’s Get Started" = "讓我們開始吧"; @@ -1493,9 +1475,6 @@ /* CoinJoin */ "Multiple hours" = "多小時"; -/* Validation rule */ -"Must start and end with a letter or number" = "必須以字母或數字來作為開頭和結尾"; - /* No comment provided by engineer. */ "My Contacts" = "我的通訊錄"; @@ -1559,9 +1538,6 @@ /* No comment provided by engineer. */ "Node IP" = "節點IP"; -/* Usernames */ -"Non-contested" = "Non-contested"; - /* adjective, security level */ "None" = "沒有"; @@ -1607,6 +1583,9 @@ /* Once accepts your request... */ "Once %@ accepts your request you can Pay Directly to Username" = "當 %@ 接受您的請求後,您就可以直接向用戶名付款"; +/* Usernames */ +"one" = "one"; + /* Voting */ "One vote left" = "One vote left"; @@ -1904,9 +1883,6 @@ /* No comment provided by engineer. */ "Redeem your gift card online within seconds or at the cashier." = "在幾秒鐘內在線或在收銀台兌換您的禮品卡。"; -/* Button title, Register (username) */ -"Register" = "注冊"; - /* No comment provided by engineer. */ "Register?" = "要注冊嗎?"; @@ -2311,20 +2287,23 @@ /* Don't translate 'Imgur' */ "The image you select will be uploaded to Imgur anonymously." = "您選擇的圖像將匿名上傳到 Imgur。"; +/* Invites */ +"The invitation was created with un-mixed funds" = "The invitation was created with un-mixed funds"; + /* Usernames */ "The link you send will be visible only to the network owners" = "The link you send will be visible only to the network owners"; /* Coinbase */ "The minimum amount you can send is %@" = "您可以發送的最小金額是 %@"; -/* Invites */ -"The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen" = "The person that you send this invitation to can request a username that has a number 2-9, is more than 20 characters or that has a hyphen"; +/* 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."; -/* Invites */ -"The person that you send this invitation to can request any username they want and the network will vote to approve it" = "The person that you send this invitation to can request any username they want and the network will vote to approve it"; +/* Usernames */ +"The username must meet " = "The username must meet "; /* 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."; +"The username must meet these criteria" = "The username must meet these criteria"; /* No comment provided by engineer. */ "them (Fetching Info)" = "他們 (獲取信息)"; @@ -2341,6 +2320,9 @@ /* No comment provided by engineer. */ "There are no users that match with the name %@ in your contacts" = "在您的通訊錄中沒有與名稱 %@ 匹配的用戶"; +/* Usernames */ +"There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period." = "There are two types of usernames: contested and non-contested.\n\nNon-contested usernames have at least one number (2-9) or are longer than 20 characters and will be automatically approved.\n\nIf you want to create a contested username which is shorter and without numbers, you need to register with DashPay without an invitation, pay the required fee and wait for approval upon completion of the voting period."; + /* ZenLedger */ "There was an error when exporting your transaction history to ZenLedger" = "將交易歷史記錄匯出到 ZenLedger 時發生錯誤"; @@ -2387,7 +2369,7 @@ "to Dash Wallet on this device" = "到此設備上的 達世幣錢包"; /* CoinJoin */ -"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create %@."; +"To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username." = "To help prevent other people from seeing who you make payments to, it is recommended to mix your balance before you create your username."; /* CrowdNode */ "To start staking, create an account on CrowdNode or connect to an existing one." = "要開始質押,請在 CrowdNode 上創建一個帳戶或連接到現有帳戶。"; @@ -2568,18 +2550,12 @@ /* No comment provided by engineer. */ "Username already found" = "已找到用戶名"; -/* No comment provided by engineer. */ -"Username available" = "用戶名可用"; - /* Usernames */ "Username is available" = "Username is available"; /* Usernames */ "Username request failed" = "Username request failed"; -/* No comment provided by engineer. */ -"Username taken" = "用戶名已被使用"; - /* Voting */ "Username voting" = "用戶名稱投票"; @@ -2592,12 +2568,6 @@ /* CrowdNode Portal */ "Validating address…" = "正在核實位址..."; -/* No comment provided by engineer. */ -"Validating username failed" = "驗證用戶名失敗"; - -/* No comment provided by engineer. */ -"Validating username…" = "正在驗證用戶名"; - /* CrowdNode Portal */ "Verification Required" = "需要驗證"; @@ -2712,6 +2682,9 @@ /* No comment provided by engineer. */ "Welcome to DashPay" = "歡迎來到 DashPay"; +/* Usernames */ +"What are contested and non-contested usernames?" = "What are contested and non-contested usernames?"; + /* Usernames */ "What is username voting?" = "什麼是用戶名投票?"; @@ -2761,9 +2734,6 @@ /* No comment provided by engineer. */ "Would you like to accept the invitation?" = "你願意接受這個邀請嗎?"; -/* Invites */ -"Would you like to create this invitation?" = "Would you like to create this invitation?"; - /* Coinbase */ "Would you like to make a deposit for your purchase using a linked bank account?" = "您想在關聯的銀行帳戶所存入一筆資金並使用它來為您的購買埋單嗎?"; @@ -2803,6 +2773,9 @@ /* Voting */ "You can enter your key in any of the following formats: WIF/base58/base64/hex" = "您可以採用以下任一格式輸入金鑰 : WIF/base58/base64/hex"; +/* Invites */ +"You can only create a non-contested username using this invitation" = "You can only create a non-contested username using this invitation"; + /* CrowdNode */ "You can see detailed information about your deposits, withdrawals and reward earnings." = "您可以查看有關您的存款、提款和獎勵收入的詳細信息。"; @@ -2813,7 +2786,7 @@ "You cannot claim this invite since you already have a Dash username" = "由於您已經有達世幣用戶名,因此您無法認領此邀請"; /* Usernames */ -"You chose \"%@\" as your username." = "You chose \"%@\" as your username."; +"You chose “%@” as your username." = "You chose “%@” as your username."; /* CoinJoin */ "You Dash was mixed using these transactions." = "You Dash was mixed using these transactions."; @@ -2965,9 +2938,6 @@ /* No comment provided by engineer. */ "Your transaction was sent and the amount should appear in your wallet in a few minutes." = "您的交易已發送,金額應在幾分鐘內顯示在您的錢包中。"; -/* Usernames */ -"your username" = "your username"; - /* No comment provided by engineer. */ "Your username %@ has been successfully created on the Dash Network" = "您的用戶名 %@ 已在達世幣網絡上成功創建";