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 };

View File

@@ -26,4 +26,30 @@ type RunStatusCountType = {
count: number;
};
export { RunType, RunCaseType, RunCaseInfoType, RunStatusCountType };
export type RunsMessages = {
id: string;
title: string;
priority: string;
status: string;
actions: string;
critical: string;
high: string;
medium: string;
low: string;
untested: string;
passed: string;
failed: string;
retest: string;
skipped: string;
includeInRun: string;
excludeFromRun: string;
noCasesFound: string;
};
export {
RunType,
RunCaseType,
RunCaseInfoType,
RunStatusCountType,
RunsMessages,
};