Account settings: rename Account tab to General

This commit is contained in:
miruka 2020-11-04 08:52:11 -04:00
parent 8d1d6be701
commit 6aec20b4d8
2 changed files with 2 additions and 2 deletions

View File

@ -19,12 +19,12 @@ HPage {
header: HTabBar { header: HTabBar {
currentIndex: 1 // XXX currentIndex: 1 // XXX
HTabButton { text: qsTr("Account") } HTabButton { text: qsTr("General") }
HTabButton { text: qsTr("Notifications") } HTabButton { text: qsTr("Notifications") }
HTabButton { text: qsTr("Security") } HTabButton { text: qsTr("Security") }
} }
Account { userId: page.userId } General { userId: page.userId }
Notifications { userId: page.userId } Notifications { userId: page.userId }
Security { userId: page.userId } Security { userId: page.userId }
} }