Apply i18n

This commit is contained in:
Takeshi Kimata
2024-05-04 15:03:05 +09:00
parent 772da88e9b
commit 9c390ef305
14 changed files with 201 additions and 34 deletions

View File

@@ -49,4 +49,15 @@ type AttachmentType = {
caseAttachments: CaseAttachmentType;
};
export { CaseType, StepType, AttachmentType };
export type CasesMessages = {
testCases: string;
id: string;
title: string;
priority: string;
actions: string;
deleteCase: string;
delete: string;
newTestCase: string;
};
export { CaseType, StepType, AttachmentType, CasesMessages };

View File

@@ -6,4 +6,17 @@ export type FolderType = {
parentFolderId: number | null;
createdAt: string;
updatedAt: string;
};
};
export type FoldersMessages = {
folder: string;
newFolder: string;
editFolder: string;
deleteFolder: string;
folderName: string;
folderDetail: string;
close: string;
create: string;
update: string;
pleaseEnter: string;
};

View File

@@ -24,3 +24,9 @@ export type ProjectsMessages = {
update: string;
pleaseEnter: string;
};
export type ProjectMessages = {
home: string;
testCases: string;
testRuns: string;
};