Apply i18n

This commit is contained in:
Takeshi Kimata
2024-05-04 16:15:29 +09:00
parent 9c390ef305
commit 520f6a98dd
12 changed files with 181 additions and 44 deletions

View File

@@ -58,6 +58,18 @@ export type CasesMessages = {
deleteCase: string;
delete: string;
newTestCase: string;
status: string;
critical: string;
high: string;
medium: string;
low: string;
};
export { CaseType, StepType, AttachmentType, CasesMessages };
export type CaseMessages = {
critical: string;
high: string;
medium: string;
low: string;
};
export { CaseType, StepType, AttachmentType, CasesMessages, CaseMessages };