chore: fixing translation

This commit is contained in:
Hydra 2024-05-13 02:07:24 +01:00
parent 329309718b
commit 0d937bacc8
No known key found for this signature in database
3 changed files with 4 additions and 11 deletions

View file

@ -86,7 +86,6 @@
"playing_now": "Playing now",
"change": "Change",
"repacks_modal_description": "Choose the repack you want to download",
"downloads_path": "Downloads path",
"select_folder_hint": "To change the default folder, go to the <0>Settings</0>",
"download_now": "Download now",
"installation_instructions": "Installation Instructions",
@ -99,7 +98,7 @@
"got_it": "Got it",
"no_shop_details": "Could not retrieve shop details.",
"download_options": "Download options",
"download_folder": "Download folder"
"download_path": "Download path"
},
"activation": {
"title": "Activate Hydra",

View file

@ -82,7 +82,6 @@
"playing_now": "Jogando agora",
"change": "Mudar",
"repacks_modal_description": "Escolha o repack do jogo que deseja baixar",
"downloads_path": "Diretório do download",
"select_folder_hint": "Para trocar a pasta padrão, acesse a <0>Tela de Configurações</0>",
"download_now": "Baixe agora",
"installation_instructions": "Instruções de Instalação",
@ -95,7 +94,7 @@
"got_it": "Entendi",
"no_shop_details": "Não foi possível obter os detalhes da loja.",
"download_options": "Opções de download",
"download_folder": "Diretório de download"
"download_path": "Diretório de download"
},
"activation": {
"title": "Ativação",

View file

@ -72,7 +72,7 @@ export function SelectFolderModal({
return (
<Modal
visible={visible}
title={t("download_folder")}
title={t("download_path")}
description={t("space_left_on_disk", {
space: formatBytes(diskFreeSpace?.free ?? 0),
})}
@ -80,12 +80,7 @@ export function SelectFolderModal({
>
<div className={styles.container}>
<div className={styles.downloadsPathField}>
<TextField
label={t("downloads_path")}
value={selectedPath}
readOnly
disabled
/>
<TextField value={selectedPath} readOnly disabled />
<Button
style={{ alignSelf: "flex-end" }}