mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-21 20:27:45 +00:00
Fix settings page names
This commit is contained in:
parent
9d92716282
commit
23db248d82
7 changed files with 15 additions and 21 deletions
|
@ -15,7 +15,7 @@ FormCard.FormCardPage {
|
|||
|
||||
property var account
|
||||
|
||||
title: i18n("Account Settings")
|
||||
title: i18nc("@title:window", "Edit Account")
|
||||
|
||||
FormCard.FormHeader {
|
||||
title: i18n("General")
|
||||
|
|
|
@ -11,12 +11,11 @@ import org.kde.kirigamiaddons.components as Components
|
|||
import zone.xiv.astra
|
||||
|
||||
FormCard.FormCardPage {
|
||||
FormCard.FormHeader {
|
||||
title: i18n("Accounts")
|
||||
}
|
||||
title: i18nc("@title:window", "Accounts")
|
||||
|
||||
FormCard.FormCard {
|
||||
Layout.fillWidth: true
|
||||
Layout.topMargin: Kirigami.Units.largeSpacing
|
||||
|
||||
Repeater {
|
||||
model: LauncherCore.accountManager
|
||||
|
|
|
@ -14,14 +14,11 @@ FormCard.FormCardPage {
|
|||
|
||||
property var installer: null
|
||||
|
||||
title: i18n("Install Compatibility Tool")
|
||||
|
||||
FormCard.FormHeader {
|
||||
title: i18n("Compatibility Tool")
|
||||
}
|
||||
title: i18nc("@title:window", "Compatibility Tool")
|
||||
|
||||
FormCard.FormCard {
|
||||
Layout.fillWidth: true
|
||||
Layout.topMargin: Kirigami.Units.largeSpacing
|
||||
|
||||
FormCard.FormTextDelegate {
|
||||
text: i18n("Press the button below to install the compatibility tool for Steam.")
|
||||
|
|
|
@ -14,7 +14,7 @@ import "../Components"
|
|||
FormCard.FormCardPage {
|
||||
id: page
|
||||
|
||||
title: i18n("Developer Settings")
|
||||
title: i18nc("@title:window", "Developer Settings")
|
||||
|
||||
FormCard.FormHeader {
|
||||
title: i18n("Patching")
|
||||
|
|
|
@ -3,19 +3,19 @@
|
|||
|
||||
import QtQuick
|
||||
import QtQuick.Controls as QQC2
|
||||
import QtQuick.Layouts
|
||||
|
||||
import org.kde.kirigami as Kirigami
|
||||
import org.kde.kirigamiaddons.formcard as FormCard
|
||||
|
||||
import zone.xiv.astra
|
||||
|
||||
FormCard.FormCardPage {
|
||||
title: i18n("General")
|
||||
|
||||
FormCard.FormHeader {
|
||||
title: i18n("General settings")
|
||||
}
|
||||
title: i18nc("@title:window", "General")
|
||||
|
||||
FormCard.FormCard {
|
||||
Layout.topMargin: Kirigami.Units.largeSpacing
|
||||
|
||||
FormCard.FormButtonDelegate {
|
||||
text: i18n("Auto-login Profile")
|
||||
description: LauncherCore.autoLoginProfile ? LauncherCore.autoLoginProfile.name : i18n("Disabled")
|
||||
|
|
|
@ -17,7 +17,7 @@ FormCard.FormCardPage {
|
|||
|
||||
property var profile
|
||||
|
||||
title: i18n("Profile Settings")
|
||||
title: i18nc("@window:title", "Edit Profile")
|
||||
|
||||
FormCard.FormHeader {
|
||||
title: i18n("General")
|
||||
|
|
|
@ -4,19 +4,17 @@
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
|
||||
import org.kde.kirigami as Kirigami
|
||||
import org.kde.kirigamiaddons.formcard as FormCard
|
||||
|
||||
import zone.xiv.astra
|
||||
|
||||
FormCard.FormCardPage {
|
||||
title: i18n("General")
|
||||
|
||||
FormCard.FormHeader {
|
||||
title: i18n("Profiles")
|
||||
}
|
||||
title: i18nc("@title:window", "Profiles")
|
||||
|
||||
FormCard.FormCard {
|
||||
Layout.fillWidth: true
|
||||
Layout.topMargin: Kirigami.Units.largeSpacing
|
||||
|
||||
Repeater {
|
||||
model: LauncherCore.profileManager
|
||||
|
|
Loading…
Add table
Reference in a new issue