-
+
diff --git a/frontend/types/case.ts b/frontend/types/case.ts
index 4e1d51a..280c82a 100644
--- a/frontend/types/case.ts
+++ b/frontend/types/case.ts
@@ -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 };
diff --git a/frontend/types/folder.ts b/frontend/types/folder.ts
index 253eb5e..4150dd6 100644
--- a/frontend/types/folder.ts
+++ b/frontend/types/folder.ts
@@ -6,4 +6,17 @@ export type FolderType = {
parentFolderId: number | null;
createdAt: string;
updatedAt: string;
-};
\ No newline at end of file
+};
+
+export type FoldersMessages = {
+ folder: string;
+ newFolder: string;
+ editFolder: string;
+ deleteFolder: string;
+ folderName: string;
+ folderDetail: string;
+ close: string;
+ create: string;
+ update: string;
+ pleaseEnter: string;
+};
diff --git a/frontend/types/project.ts b/frontend/types/project.ts
index 5a7d387..b9dd8b4 100644
--- a/frontend/types/project.ts
+++ b/frontend/types/project.ts
@@ -24,3 +24,9 @@ export type ProjectsMessages = {
update: string;
pleaseEnter: string;
};
+
+export type ProjectMessages = {
+ home: string;
+ testCases: string;
+ testRuns: string;
+};