Apply i18n to client components

This commit is contained in:
Takeshi Kimata
2024-05-03 17:39:07 +09:00
parent 72c71efedc
commit e25acad76c
8 changed files with 146 additions and 83 deletions

View File

@@ -4,4 +4,23 @@ export type ProjectType = {
detail: string;
createdAt: string;
updatedAt: string;
};
};
export type ProjectsMessages = {
project: string;
projects: string;
newProject: string;
editProject: string;
deleteProject: string;
id: string;
name: string;
detail: string;
lastUpdate: string;
actions: string;
projectName: string;
projectDetail: string;
close: string;
create: string;
update: string;
pleaseEnter: string;
};