feat: i18n

This commit is contained in:
Zamitto 2025-02-15 22:59:59 -03:00
parent ae159a4d44
commit 543528bcce
4 changed files with 10 additions and 10 deletions

View file

@ -67,7 +67,7 @@ export const ThemeActions = ({
onClick={() => setAddThemeModalVisible(true)}
>
<PlusIcon />
{t("add_theme")}
{t("create_theme")}
</Button>
</div>
</div>

View file

@ -56,8 +56,8 @@ export const AddThemeModal = ({
return (
<Modal
visible={visible}
title={t("add_theme_modal_title")}
description={t("add_theme_modal_description")}
title={t("create_theme_modal_title")}
description={t("create_theme_modal_description")}
onClose={onClose}
>
<div className="add-theme-modal__container">
@ -72,7 +72,7 @@ export const AddThemeModal = ({
/>
<Button theme="primary" onClick={handleSubmit}>
{t("add_theme")}
{t("create_theme")}
</Button>
</div>
</Modal>