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

Fee ux #35

Merged
merged 8 commits into from
Sep 10, 2024
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
12 changes: 11 additions & 1 deletion core/resources/i18n/i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -3084,6 +3084,7 @@
"12 word mnemonic": "12 word mnemonic",
"24 word mnemonic": "24 word mnemonic",
"24h Change": "24h Change",
"3 hours or more": "3 hours or more",
"A binary at another location is spawned a child process (experimental, for development purposes only).": "A binary at another location is spawned a child process (experimental, for development purposes only).",
"A random node will be selected on startup": "A random node will be selected on startup",
"A wallet is stored in a file on your computer.": "A wallet is stored in a file on your computer.",
Expand Down Expand Up @@ -3177,13 +3178,15 @@
"Developer mode enables advanced and experimental features": "Developer mode enables advanced and experimental features",
"Difficulty": "Difficulty",
"Dimensions": "Dimensions",
"Disable Window Frame": "Disable Window Frame",
"Disable password safety rules": "Disable password safety rules",
"Disabled": "Disabled",
"Disables node connectivity (Offline Mode).": "Disables node connectivity (Offline Mode).",
"Discord": "Discord",
"Donations": "Donations",
"Double click on the graph to re-center...": "Double click on the graph to re-center...",
"ECDSA": "ECDSA",
"Economic": "Economic",
"Enable Market Monitor": "Enable Market Monitor",
"Enable UPnP": "Enable UPnP",
"Enable custom daemon arguments": "Enable custom daemon arguments",
Expand Down Expand Up @@ -3261,6 +3264,7 @@
"Local": "Local",
"Local p2p Node Configuration": "Local p2p Node Configuration",
"Logs": "Logs",
"Low-priority": "Low-priority",
"MT": "MT",
"Main Kaspa network": "Main Kaspa network",
"Mainnet": "Mainnet",
Expand All @@ -3278,6 +3282,7 @@
"Mempool Size": "Mempool Size",
"Metrics": "Metrics",
"Metrics are not currently available": "Metrics are not currently available",
"Miner Fee": "Miner Fee",
"Minimize the window": "Minimize the window",
"Mnemonic Import": "Mnemonic Import",
"NEXT": "NEXT",
Expand All @@ -3297,12 +3302,14 @@
"Node Status": "Node Status",
"Noise": "Noise",
"None": "None",
"Normal": "Normal",
"Not Connected": "Not Connected",
"Not connected": "Not connected",
"Notifications": "Notifications",
"Open Data Folder": "Open Data Folder",
"Opening wallet:": "Opening wallet:",
"Optional": "Optional",
"Options": "Options",
"Other operations": "Other operations",
"Outbound": "Outbound",
"Overview": "Overview",
Expand Down Expand Up @@ -3403,6 +3410,7 @@
"Storage": "Storage",
"Storage Read": "Storage Read",
"Storage Read/s": "Storage Read/s",
"Storage Size": "Storage Size",
"Storage Write": "Storage Write",
"Storage Write/s": "Storage Write/s",
"Strong": "Strong",
Expand Down Expand Up @@ -3520,7 +3528,9 @@
"wRPC JSON Tx": "wRPC JSON Tx",
"wRPC JSON Tx/s": "wRPC JSON Tx/s",
"wRPC URL:": "wRPC URL:",
"words": "words"
"words": "words",
"~2 hours": "~2 hours",
"~30 minutes": "~30 minutes"
},
"es": {
"'Phishing hint' is a secret word or a phrase that is displayed when you open your wallet. If you do not see the hint when opening your wallet, you may be accessing a fake wallet designed to steal your funds. If this occurs, stop using the wallet immediately, check the browser URL domain name and seek help on social networks (Kaspa Discord or Telegram).": "'Phishing hint' is a secret word or a phrase that is displayed when you open your wallet. If you do not see the hint when opening your wallet, you may be accessing a fake wallet designed to steal your funds. If this occurs, stop using the wallet immediately, check the browser URL domain name and seek help on social networks (Kaspa Discord or Telegram).",
Expand Down
2 changes: 2 additions & 0 deletions core/src/egui/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ mod network;
mod pagination;
mod panel;
mod popup;
mod selection_panels;
mod theme;

pub use collapsable::*;
Expand All @@ -22,4 +23,5 @@ pub use network::NetworkInterfaceEditor;
pub use pagination::*;
pub use panel::Panel;
pub use popup::PopupPanel;
pub use selection_panels::*;
pub use theme::*;
Loading
Loading