Merge #1595: gui(settings): use consistent case
f024b2d59c27802e5092e119aee1eb570dbba74f gui(settings): use consistent case (Michael Mallan) Pull request description: Use consistent case in the settings: - "Import/Export" for the section card to match the header on the corresponding page. The choice is to capitalise both words as the slash indicates either word could be treated as a title by itself. - Use "Back up wallet" to match the case of the other options on that page.   ACKs for top commit: edouardparis: ACK f024b2d59c27802e5092e119aee1eb570dbba74f Tree-SHA512: f1969ffb20a473dc77ce51cfc5ef04ba5091cdcd0d748754ae89465fabe8d2fcb30f6121124037b55d27db63092865821fdda448e9966ebe6ede8b1b5a859c4b
This commit is contained in:
commit
d7a183cb8e
@ -107,7 +107,7 @@ pub fn list(cache: &Cache, is_remote_backend: bool) -> Element<Message> {
|
|||||||
);
|
);
|
||||||
|
|
||||||
let import_export = settings_section(
|
let import_export = settings_section(
|
||||||
"Import/export",
|
"Import/Export",
|
||||||
None,
|
None,
|
||||||
icon::wallet_icon(),
|
icon::wallet_icon(),
|
||||||
Message::Settings(SettingsMessage::ImportExportSection),
|
Message::Settings(SettingsMessage::ImportExportSection),
|
||||||
@ -186,7 +186,7 @@ pub fn import_export<'a>(cache: &'a Cache, warning: Option<&Error>) -> Element<'
|
|||||||
);
|
);
|
||||||
|
|
||||||
let export_wallet = settings_section(
|
let export_wallet = settings_section(
|
||||||
"Back Up Wallet",
|
"Back up wallet",
|
||||||
None,
|
None,
|
||||||
icon::backup_icon(),
|
icon::backup_icon(),
|
||||||
Message::Settings(SettingsMessage::ExportWallet),
|
Message::Settings(SettingsMessage::ExportWallet),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user