Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ABW-2542] Update persona icon and freezing behaviours #939

Merged
merged 1 commit into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public enum AssetResource {
public static let fungibleTokens = ImageAsset(name: "fungible-tokens")
public static let nonfungbileTokens = ImageAsset(name: "nonfungbile-tokens")
public static let poolUnits = ImageAsset(name: "pool-units")
public static let freezableByAnyone = ImageAsset(name: "freezable-by-anyone")
public static let freezableByThirdParty = ImageAsset(name: "freezable-by-third-party")
public static let informationChangeableByAnyone = ImageAsset(name: "information-changeable-by-anyone")
public static let informationChangeable = ImageAsset(name: "information-changeable")
public static let movementRestrictableInFutureByAnyone = ImageAsset(name: "movement-restrictable-in-future-by-anyone")
Expand Down
12 changes: 12 additions & 0 deletions RadixWallet/Core/Resources/Generated/L10n.generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,10 @@ public enum L10n {
/// Address is not valid on current network
public static let wrongNetwork = L10n.tr("Localizable", "assetTransfer_error_wrongNetwork", fallback: "Address is not valid on current network")
}
public enum ExtraSignature {
/// You will be asked for an extra signature
public static let label = L10n.tr("Localizable", "assetTransfer_extraSignature_label", fallback: "You will be asked for an extra signature")
}
public enum FungibleResource {
/// Balance: %@
public static func balance(_ p1: Any) -> String {
Expand Down Expand Up @@ -1821,6 +1825,8 @@ public enum L10n {
public static let title = L10n.tr("Localizable", "personas_title", fallback: "Personas")
/// What is a Persona?
public static let whatIsPersona = L10n.tr("Localizable", "personas_whatIsPersona", fallback: "What is a Persona?")
/// Write down main seed phrase
public static let writeSeedPhrase = L10n.tr("Localizable", "personas_writeSeedPhrase", fallback: "Write down main seed phrase")
}
public enum ProfileBackup {
/// Backing up your wallet ensures that you can restore access to your Accounts, Personas, and wallet settings on a new phone by re-entering your seed phrase(s).
Expand Down Expand Up @@ -1947,6 +1953,12 @@ public enum L10n {
/// Seed Phrase Required
public static let titleOther = L10n.tr("Localizable", "recoverSeedPhrase_header_titleOther", fallback: "Seed Phrase Required")
}
public enum Hidden {
public enum Accounts {
/// Hidden accounts only.
public static let only = L10n.tr("Localizable", "recoverSeedPhrase_hidden_accounts_only", fallback: "Hidden accounts only.")
}
}
}
public enum RevealSeedPhrase {
/// Passphrase
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "freezable-by-anyone.pdf",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "freezable-by-thirdparty.pdf",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "persona.pdf",
"filename" : "persona-icon.pdf",
"idiom" : "universal"
}
],
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ extension AssetBehavior {
case .movementRestricted: AssetResource.movementRestricted
case .removableByThirdParty: AssetResource.removableByThirdParty
case .removableByAnyone: AssetResource.removableByAnyone
case .freezableByThirdParty: AssetResource.removableByThirdParty // FIXME: icons
case .freezableByAnyone: AssetResource.removableByAnyone // FIXME: icons
case .freezableByThirdParty: AssetResource.freezableByThirdParty
case .freezableByAnyone: AssetResource.freezableByAnyone
case .nftDataChangeable: AssetResource.nftDataChangeable
case .nftDataChangeableByAnyone: AssetResource.nftDataChangeableByAnyone
case .informationChangeable: AssetResource.informationChangeable
Expand Down
Loading