From 8dcf2fed932534d15da9ac58b9012d6f4d326dd7 Mon Sep 17 00:00:00 2001 From: Micael Diniz Date: Sun, 15 Oct 2023 01:12:40 -0300 Subject: [PATCH] fix(texts): keep texts in english --- .../molecules/ToDoListEmptyList/ToDoListEmptyListMessage.tsx | 4 ++-- src/components/molecules/ToDoListForm/ToDoListFormRoot.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/molecules/ToDoListEmptyList/ToDoListEmptyListMessage.tsx b/src/components/molecules/ToDoListEmptyList/ToDoListEmptyListMessage.tsx index d349c8f..580c5ce 100644 --- a/src/components/molecules/ToDoListEmptyList/ToDoListEmptyListMessage.tsx +++ b/src/components/molecules/ToDoListEmptyList/ToDoListEmptyListMessage.tsx @@ -4,9 +4,9 @@ export function ToDoListEmptyListMessage() { return (
- Você ainda não tem tarefas cadastradas + You don't have tasks registered yet - Crie tarefas e organize seus itens a fazer + Create tasks and organize your to-do items
); } diff --git a/src/components/molecules/ToDoListForm/ToDoListFormRoot.tsx b/src/components/molecules/ToDoListForm/ToDoListFormRoot.tsx index 3a0eca7..360eb1f 100644 --- a/src/components/molecules/ToDoListForm/ToDoListFormRoot.tsx +++ b/src/components/molecules/ToDoListForm/ToDoListFormRoot.tsx @@ -9,7 +9,7 @@ import { useBoundStore } from "../../../store"; import { useShallow } from "zustand/react/shallow"; const newTodoFormSchema = z.object({ - toDoContent: z.string().min(1, {"message": "Don't forget to add your To-do content!"}) + toDoContent: z.string().min(1, {"message": "Don't forget to add your to-do content!"}) }) export type NewTodoFormSchema = z.infer;