blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
790 B
22 lines
790 B
// Copyright SIX DAY LLC. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
struct EnterPasswordViewModel {
|
|
|
|
var title: String {
|
|
return NSLocalizedString("enterPassword.navigation.title", value: "Backup Password", comment: "")
|
|
}
|
|
|
|
var headerSectionText: String {
|
|
return NSLocalizedString("enterPassword.password.header.placeholder", value: "Password used to encrypt you backup file to keep it secure!", comment: "")
|
|
}
|
|
|
|
var passwordFieldPlaceholder: String {
|
|
return NSLocalizedString("enterPassword.password.textField.placeholder", value: "Password", comment: "")
|
|
}
|
|
|
|
var confirmPasswordFieldPlaceholder: String {
|
|
return NSLocalizedString("enterPassword.confirmPassword.textField.placeholder", value: "Confirm Password", comment: "")
|
|
}
|
|
}
|
|
|