mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: i18n
This commit is contained in:
parent
ae159a4d44
commit
543528bcce
4 changed files with 10 additions and 10 deletions
|
@ -310,9 +310,9 @@
|
||||||
"editor_tab_save": "Save",
|
"editor_tab_save": "Save",
|
||||||
"web_store": "Web store",
|
"web_store": "Web store",
|
||||||
"clear_themes": "Clear",
|
"clear_themes": "Clear",
|
||||||
"add_theme": "Add",
|
"create_theme": "Create",
|
||||||
"add_theme_modal_title": "Create custom theme",
|
"create_theme_modal_title": "Create custom theme",
|
||||||
"add_theme_modal_description": "Create a new theme to customize Hydra's appearance",
|
"create_theme_modal_description": "Create a new theme to customize Hydra's appearance",
|
||||||
"theme_name": "Name",
|
"theme_name": "Name",
|
||||||
"insert_theme_name": "Insert theme name",
|
"insert_theme_name": "Insert theme name",
|
||||||
"set_theme": "Set theme",
|
"set_theme": "Set theme",
|
||||||
|
|
|
@ -300,9 +300,9 @@
|
||||||
"editor_tab_save": "Salvar",
|
"editor_tab_save": "Salvar",
|
||||||
"web_store": "Loja de temas",
|
"web_store": "Loja de temas",
|
||||||
"clear_themes": "Limpar",
|
"clear_themes": "Limpar",
|
||||||
"add_theme": "Adicionar",
|
"create_theme": "Criar",
|
||||||
"add_theme_modal_title": "Criar tema customizado",
|
"create_theme_modal_title": "Criar tema customizado",
|
||||||
"add_theme_modal_description": "Criar novo tema para customizar a aparência do Hydra",
|
"create_theme_modal_description": "Criar novo tema para customizar a aparência do Hydra",
|
||||||
"theme_name": "Nome",
|
"theme_name": "Nome",
|
||||||
"insert_theme_name": "Insira o nome do tema",
|
"insert_theme_name": "Insira o nome do tema",
|
||||||
"set_theme": "Habilitar tema",
|
"set_theme": "Habilitar tema",
|
||||||
|
|
|
@ -67,7 +67,7 @@ export const ThemeActions = ({
|
||||||
onClick={() => setAddThemeModalVisible(true)}
|
onClick={() => setAddThemeModalVisible(true)}
|
||||||
>
|
>
|
||||||
<PlusIcon />
|
<PlusIcon />
|
||||||
{t("add_theme")}
|
{t("create_theme")}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -56,8 +56,8 @@ export const AddThemeModal = ({
|
||||||
return (
|
return (
|
||||||
<Modal
|
<Modal
|
||||||
visible={visible}
|
visible={visible}
|
||||||
title={t("add_theme_modal_title")}
|
title={t("create_theme_modal_title")}
|
||||||
description={t("add_theme_modal_description")}
|
description={t("create_theme_modal_description")}
|
||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
>
|
>
|
||||||
<div className="add-theme-modal__container">
|
<div className="add-theme-modal__container">
|
||||||
|
@ -72,7 +72,7 @@ export const AddThemeModal = ({
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Button theme="primary" onClick={handleSubmit}>
|
<Button theme="primary" onClick={handleSubmit}>
|
||||||
{t("add_theme")}
|
{t("create_theme")}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</Modal>
|
</Modal>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue