1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 12:17:45 +00:00

Refer to paths as "folders" in the UI

This commit is contained in:
Joshua Goins 2024-05-26 08:18:48 -04:00
parent d83faa6bbb
commit 9fb38990e6
3 changed files with 8 additions and 8 deletions

View file

@ -54,7 +54,7 @@ FormCard.FormCardPage {
FormFolderDelegate { FormFolderDelegate {
id: gamePathDelegate id: gamePathDelegate
text: i18n("Game Path") text: i18n("Game Folder")
folder: page.profile.gamePath folder: page.profile.gamePath
onAccepted: (folder) => page.profile.gamePath = folder onAccepted: (folder) => page.profile.gamePath = folder
@ -126,7 +126,7 @@ FormCard.FormCardPage {
FormFolderDelegate { FormFolderDelegate {
id: winePrefixPathDelegate id: winePrefixPathDelegate
text: i18n("Wine Prefix Path") text: i18n("Wine Prefix Folder")
folder: page.profile.winePrefixPath folder: page.profile.winePrefixPath
} }

View file

@ -56,7 +56,7 @@ FormCard.FormCardPage {
} }
FormCard.FormHeader { FormCard.FormHeader {
title: i18n("Create New Account") title: i18n("Add Account")
visible: LauncherCore.accountManager.hasAnyAccounts() visible: LauncherCore.accountManager.hasAnyAccounts()
} }
@ -67,7 +67,7 @@ FormCard.FormCardPage {
FormCard.FormButtonDelegate { FormCard.FormButtonDelegate {
id: addSquareEnixButton id: addSquareEnixButton
text: i18n("Add Square Enix Account…") text: i18n("Square Enix Account…")
description: i18n("Used for logging into the official game servers.") description: i18n("Used for logging into the official game servers.")
icon.name: "list-add-symbolic" icon.name: "list-add-symbolic"
onClicked: page.Window.window.pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "AddSquareEnix"), { onClicked: page.Window.window.pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "AddSquareEnix"), {
@ -83,8 +83,8 @@ FormCard.FormCardPage {
FormCard.FormButtonDelegate { FormCard.FormButtonDelegate {
id: addSapphireButton id: addSapphireButton
text: i18n("Add Sapphire Account…") text: i18n("Sapphire Account…")
description: i18n("Only used for Sapphire servers, don't select this if unless you plan to connect to one.") description: i18n("Only for Sapphire servers, don't select this if unless you need to connect to one.")
icon.name: "list-add-symbolic" icon.name: "list-add-symbolic"
onClicked: page.Window.window.pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "AddSapphire"), { onClicked: page.Window.window.pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "AddSapphire"), {
profile: page.profile profile: page.profile

View file

@ -57,7 +57,7 @@ FormCard.FormCardPage {
FormCard.FormTextDelegate { FormCard.FormTextDelegate {
id: helpTextDelegate id: helpTextDelegate
text: i18n("If you can't find your existing game installation, manually select the path below.") text: i18n("If you can't find your existing game installation, manually select the folder below.")
} }
FormCard.FormDelegateSeparator { FormCard.FormDelegateSeparator {
above: helpTextDelegate above: helpTextDelegate
@ -67,7 +67,7 @@ FormCard.FormCardPage {
id: selectDelegate id: selectDelegate
icon.name: "document-open-folder" icon.name: "document-open-folder"
text: i18n("Select Existing Path") text: i18n("Select Existing Folder")
onClicked: dialog.open() onClicked: dialog.open()
} }