1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 04:07:46 +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 {
id: gamePathDelegate
text: i18n("Game Path")
text: i18n("Game Folder")
folder: page.profile.gamePath
onAccepted: (folder) => page.profile.gamePath = folder
@ -126,7 +126,7 @@ FormCard.FormCardPage {
FormFolderDelegate {
id: winePrefixPathDelegate
text: i18n("Wine Prefix Path")
text: i18n("Wine Prefix Folder")
folder: page.profile.winePrefixPath
}

View file

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

View file

@ -57,7 +57,7 @@ FormCard.FormCardPage {
FormCard.FormTextDelegate {
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 {
above: helpTextDelegate
@ -67,7 +67,7 @@ FormCard.FormCardPage {
id: selectDelegate
icon.name: "document-open-folder"
text: i18n("Select Existing Path")
text: i18n("Select Existing Folder")
onClicked: dialog.open()
}