chore(@desktop/profile): Change labels and ordering in Profile settings list

Fixes #4916
This commit is contained in:
Michal Iskierko 2022-03-03 14:16:27 +01:00 committed by Iuri Matias
parent e7ece14346
commit 30b799a6ea
2 changed files with 6 additions and 10 deletions

View File

@ -66,11 +66,7 @@ Column {
}
}
Item {
id: invisibleSeparator
height: 16
width: parent.width
}
StatusListSectionHeadline { text: qsTr("About & Help") }
Repeater {
id: extraMenuItems

View File

@ -59,7 +59,7 @@ QtObject {
property ListModel mainMenuItems: ListModel {
Component.onCompleted: {
append({subsection: Constants.settingsSubsection.profile,
text: qsTr("My Profile"),
text: qsTr("Profile"),
icon: "profile"})
append({subsection: Constants.settingsSubsection.contacts,
text: qsTr("Contacts"),
@ -75,6 +75,9 @@ QtObject {
append({subsection: Constants.settingsSubsection.wallet,
text: qsTr("Wallet"),
icon: "wallet"})
append({subsection: Constants.settingsSubsection.browserSettings,
text: qsTr("Browser"),
icon: "browser"})
}
}
@ -101,9 +104,6 @@ QtObject {
append({subsection: Constants.settingsSubsection.devicesSettings,
text: qsTr("Devices settings"),
icon: "mobile"})
append({subsection: Constants.settingsSubsection.browserSettings,
text: qsTr("Browser settings"),
icon: "browser"})
append({subsection: Constants.settingsSubsection.advanced,
text: qsTr("Advanced"),
icon: "settings"})
@ -113,7 +113,7 @@ QtObject {
property ListModel extraMenuItems: ListModel {
Component.onCompleted: {
append({subsection: Constants.settingsSubsection.needHelp,
text: qsTr("Need help?"),
text: qsTr("Help & Glossary"),
icon: "help"})
append({subsection: Constants.settingsSubsection.about,
text: qsTr("About"),