feat: support JSON import for test cases and add Traditional Chinese locale
Some checks failed
UnitTCMS CI / unittcms-test (push) Has been cancelled

JSON import lets users round-trip cases exported via the JSON download
endpoint back into a folder, alongside the existing Excel import path.
This commit is contained in:
LittleYellow
2026-06-16 21:35:05 +08:00
parent e6f3bc799e
commit 55e78875ae
18 changed files with 822 additions and 70 deletions

View File

@@ -102,6 +102,7 @@ type CasesMessages = {
importCases: string;
importAvailable: string;
downloadTemplate: string;
downloadJsonSample: string;
clickToUpload: string;
orDragAndDrop: string;
maxFileSize: string;

View File

@@ -1,4 +1,4 @@
export type LocaleCodeType = 'de' | 'en' | 'pt-BR' | 'zh-CN' | 'ja';
export type LocaleCodeType = 'de' | 'en' | 'pt-BR' | 'zh-CN' | 'zh-TW' | 'ja';
export type LocaleType = {
code: LocaleCodeType;