feat(tags): Test case tag editing UI and tag settings UI (#322)

This commit is contained in:
Eliezer Castro
2025-11-02 04:52:15 -03:00
committed by GitHub
parent b71f3e99cc
commit 3fd226bdbd
21 changed files with 896 additions and 143 deletions

View File

@@ -11,4 +11,19 @@ export type SettingsMessages = {
delete: string;
close: string;
areYouSure: string;
tagManagement: string;
tagName: string;
addTag: string;
noTagsAvailable: string;
deleteTag: string;
areYouSureDeleteTag: string;
tagCreated: string;
tagUpdated: string;
tagDeleted: string;
tagErrorEmpty: string;
tagErrorMinLength: string;
tagErrorMaxLength: string;
tagErrorCreate: string;
tagErrorUpdate: string;
tagErrorDelete: string;
};