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.

  ![image](https://github.com/user-attachments/assets/ad3134d3-1700-4de8-be25-63335f3a91b2)
  ![image](https://github.com/user-attachments/assets/5f5590f2-ceaa-4e1c-b353-34dff826f65a)

ACKs for top commit:
  edouardparis:
    ACK f024b2d59c27802e5092e119aee1eb570dbba74f

Tree-SHA512: f1969ffb20a473dc77ce51cfc5ef04ba5091cdcd0d748754ae89465fabe8d2fcb30f6121124037b55d27db63092865821fdda448e9966ebe6ede8b1b5a859c4b
This commit is contained in:
edouardparis 2025-03-21 15:01:19 +01:00
commit d7a183cb8e
No known key found for this signature in database
GPG Key ID: E65F7A089C20DC8F

View File

@ -107,7 +107,7 @@ pub fn list(cache: &Cache, is_remote_backend: bool) -> Element<Message> {
);
let import_export = settings_section(
"Import/export",
"Import/Export",
None,
icon::wallet_icon(),
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(
"Back Up Wallet",
"Back up wallet",
None,
icon::backup_icon(),
Message::Settings(SettingsMessage::ExportWallet),