-
Notifications
You must be signed in to change notification settings - Fork 475
/
Copy pathen-US.json
67 lines (67 loc) · 1.68 KB
/
en-US.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"projectName": {
"message": "Project name:"
},
"shouldOverwrite": {
"dirForPrompts": {
"current": "Current directory",
"target": "Target directory"
},
"message": "is not empty. Remove existing files and continue?"
},
"packageName": {
"message": "Package name:",
"invalidMessage": "Invalid package.json name"
},
"needsTypeScript": {
"message": "Add TypeScript?"
},
"needsJsx": {
"message": "Add JSX Support?"
},
"needsRouter": {
"message": "Add Vue Router for Single Page Application development?"
},
"needsPinia": {
"message": "Add Pinia for state management?"
},
"needsVitest": {
"message": "Add Vitest for Unit Testing?"
},
"needsE2eTesting": {
"message": "Add an End-to-End Testing Solution?",
"hint": "- Use arrow-keys. Return to submit.",
"selectOptions": {
"negative": { "title": "No" },
"cypress": {
"title": "Cypress",
"desc": "also supports unit testing with Cypress Component Testing"
},
"nightwatch": {
"title": "Nightwatch",
"desc": "also supports unit testing with Nightwatch Component Testing"
},
"playwright": { "title": "Playwright" }
}
},
"needsEslint": {
"message": "Add ESLint for code quality?"
},
"needsPrettier": {
"message": "Add Prettier for code formatting?"
},
"needsDevTools": {
"message": "Add Vue DevTools extension for debugging? (experimental)"
},
"errors": {
"operationCancelled": "Operation cancelled"
},
"defaultToggleOptions": {
"active": "Yes",
"inactive": "No"
},
"infos": {
"scaffolding": "Scaffolding project in",
"done": "Done. Now run:"
}
}