mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-26 14:44:55 +00:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"header": {
|
|
"title": "Files"
|
|
},
|
|
"dialog": {
|
|
"title": "Add New File",
|
|
"tabs": {
|
|
"manual": "Manual",
|
|
"ai": "AI Generate"
|
|
},
|
|
"fields": {
|
|
"fileName": "File Name",
|
|
"language": "Language",
|
|
"fileType": "File Type",
|
|
"description": "Description"
|
|
},
|
|
"placeholders": {
|
|
"manualFileName": "example.tsx",
|
|
"aiFileName": "UserCard.tsx",
|
|
"description": "Describe what this file should do..."
|
|
},
|
|
"buttons": {
|
|
"addFile": "Add File",
|
|
"generate": "Generate with AI",
|
|
"generating": "Generating..."
|
|
}
|
|
},
|
|
"options": {
|
|
"languages": {
|
|
"typescript": "TypeScript",
|
|
"javascript": "JavaScript",
|
|
"css": "CSS",
|
|
"json": "JSON",
|
|
"prisma": "Prisma"
|
|
},
|
|
"fileTypes": {
|
|
"component": "Component",
|
|
"page": "Page",
|
|
"api": "API Route",
|
|
"utility": "Utility"
|
|
}
|
|
},
|
|
"toast": {
|
|
"missingFields": "Please provide both a filename and description",
|
|
"generating": "Generating code with AI...",
|
|
"generated": "File generated successfully!",
|
|
"generationFailed": "AI generation failed. Please try again.",
|
|
"generationError": "Failed to generate file"
|
|
}
|
|
}
|