๐Ÿ“ฆ vuetifyjs / cli

๐Ÿ“„ en.json ยท 286 lines
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286{
  "commands": {
    "eslint": {
      "description": "Install %{configPkg} to enable ESLint integration with Vuetify.",
      "action": {
        "install": "install %{pkgs}",
        "upgrade": "upgrade %{pkgs}"
      },
      "current": "Currently",
      "need_to": "We need to %{actions}."
    },
    "mcp": {
      "description": "Install %{pkg} to enable MCP integration with Vuetify.",
      "action": {
        "install": "install %{pkg}"
      },
      "current": "Currently",
      "need_to": "We need to %{action}."
    },
    "init": {
      "v0": "Initialize a Vuetify0 project",
      "description": "Initialize a Vuetify project",
      "creating_project": "Creating project in %{dir}"
    },
    "docs": {
      "description": "Open documentation",
      "opening": "Opening %{url}"
    },
    "add": {
      "description": "Add tools to the project",
      "integration": {
        "description": "Integration to add (choices: %{choices})",
        "available": "Available integrations: %{choices}",
        "invalid": "Invalid integration: %{integration}. Available: %{choices}"
      }
    },
    "update": {
      "description": "Update vuetify dependencies project",
      "stub": "Update command will manage package updates; nightly builds support coming.",
      "packages": {
        "description": "Comma-separated list of packages to update",
        "list": "Packages to update: %{pkgs}",
        "none": "No specific packages provided; would update defaults"
      },
      "nightly": {
        "description": "Use nightly builds when updating",
        "status": "Nightly builds: %{status}"
      },
      "already_latest": "%{pkg} is already at the latest version (%{version})",
      "all_updated": "All packages are up to date.",
      "checking": "Checking for updates...",
      "intro": "Checking for updates...",
      "not_installed": "Vuetify is not installed in this project.",
      "deprecated_v2": "Vuetify 2 is deprecated. Please consider upgrading to Vuetify 3.",
      "outdated_v1": "Vuetify 1 is out of date. Please upgrade.",
      "updated": "Updated %{pkg}",
      "failed": "Failed to update %{pkg}",
      "complete": "Update complete",
      "done": "Done!"
    },
    "upgrade": {
      "description": "Upgrade %{pkg} to latest version",
      "not_global": "%{pkg} is not installed globally.",
      "start": "Upgrading %{pkg} globally using nypm...",
      "success": "Successfully upgraded %{pkg} to latest.",
      "fail": "Failed to upgrade %{pkg}: %{message}"
    }
  },
  "prompts": {
    "proceed": "Do you want to proceed?",
    "add": {
      "integration": "Choose an integration to add"
    },
    "eslint": {
      "overwrite": "Found %{file}. Do you want to overwrite it?",
      "create": "No ESLint config found. Do you want to create one?",
      "scripts": "Do you want to add lint scripts to package.json?"
    },
    "mcp": {
      "overwrite": "Found %{file}. Overwrite?",
      "create": "Create Ruler config files?",
      "scripts": "Add mcp scripts to package.json?"
    },
    "directory": {
      "name": "Project name",
      "overwrite": "Directory \"%{dir}\" already exists. Do you want to overwrite it?",
      "warn": "Directory \"%{dir}\" already exists. Use --force to overwrite."
    },
    "install": "Do you want to install dependencies?",
    "project": {
      "name": "Project name:",
      "invalid": "Invalid project name: %{error}",
      "overwrite": "The project path: %{path} already exists, would you like to overwrite this directory?",
      "cancel": "Use the different name for the project."
    },
    "framework": {
      "select": "Which framework would you like to use?",
      "vue": "Vue",
      "vuetify0": "Vuetify0 (alpha)",
      "nuxt": "Nuxt"
    },
    "type": {
      "select": "Which version of Vuetify?",
      "vuetify": {
        "label": "Vuetify",
        "hint": "Standard Material Design Component Framework"
      },
      "vuetify0": {
        "label": "Vuetify 0 (alpha)",
        "hint": "Headless Component Library"
      }
    },
    "css_framework": {
      "select": "Which CSS framework?",
      "unocss": {
        "hint": "Instant on-demand atomic CSS engine"
      },
      "tailwindcss": {
        "hint": "A utility-first CSS framework"
      },
      "none": "None"
    },
    "typescript": {
      "use": "Use TypeScript?"
    },
    "router": {
      "conflict": "Cannot select both \"router\" and \"file-router\" features.",
      "select": "Which router would you like to use?",
      "none": "None",
      "standard": {
        "label": "Vue Router",
        "hint": "Standard Vue Router"
      },
      "file": {
        "label": "Vue Router (File-based)",
        "hint": "File-based routing with unplugin-vue-router"
      }
    },
    "features": {
      "select": "Select features to install: %{hint}",
      "pinia": {
        "label": "Pinia"
      },
      "eslint": {
        "label": "ESLint",
        "hint": "with eslint-config-vuetify"
      },
      "i18n": {
        "label": "I18n"
      },
      "vuetify_nuxt_module": {
        "label": "Vuetify Nuxt Module",
        "hint": "Use vuetify-nuxt-module instead of local plugin"
      },
      "mcp": {
        "label": "MCP",
        "hint": "with @vuetify/mcp and @intellectronica/ruler"
      }
    },
    "client_hints": {
      "enable": "Enable Client Hints? (Requires SSR)"
    },
    "package_manager": {
      "select": "Which package manager would you like to use?"
    },
    "cancel": "Setup cancelled. You can run this command again anytime."
  },
  "spinners": {
    "template": {
      "downloading": "Downloading template %{template}...",
      "copied": "Template copied",
      "downloaded": "Template downloaded",
      "failed": "Failed to download template"
    },
    "config": {
      "applying": "Applying configuration...",
      "applied": "Configuration applied"
    },
    "convert": {
      "js": "Converting to JavaScript...",
      "done": "Converted to JavaScript"
    },
    "dependencies": {
      "installing": "Installing dependencies",
      "installing_with": "Installing dependencies with %{pm}...",
      "installed": "Dependencies installed!",
      "failed": "Failed to install dependencies"
    },
    "eslint": {
      "setup_config": "Setting up ESLint config...",
      "complete": "ESLint config setup complete!"
    },
    "mcp": {
      "setup_config": "Setting up Ruler config...",
      "complete": "Ruler setup complete"
    }
  },
  "messages": {
    "eslint": {
      "deps_already_installed": "All required dependencies are already installed."
    },
    "deno": {
      "version_warning": "\n  Deno v%{version} detected. This template requires Deno v2 or higher.\n"
    },
    "all_done": "All done! Happy hacking!",
    "project_created": "Project created",
    "create": {
      "intro": "Create Vuetify v%{version}",
      "generated": "%{name} has been generated at %{path}"
    }
  },
  "common": {
    "and": "and",
    "enabled": "enabled",
    "disabled": "disabled"
  },
  "args": {
    "dir": {
      "description": "The directory to create the project in"
    },
    "force": {
      "description": "Force overwrite existing files"
    },
    "interactive": {
      "description": "Use interactive mode"
    },
    "name": {
      "description": "Project name"
    },
    "install": {
      "description": "Install dependencies after project creation"
    },
    "features": {
      "description": "The features to install"
    },
    "router": {
      "description": "The router to install"
    },
    "css": {
      "description": "The CSS framework to use"
    },
    "typescript": {
      "description": "Use JavaScript instead of TypeScript"
    },
    "packageManager": {
      "description": "The package manager to use"
    },
    "debug": {
      "description": "Show debug logs"
    },
    "type": {
      "description": "The Vuetify version to use"
    },
    "platform": {
      "description": "The framework to use"
    },
    "verbose": {
      "description": "Output verbose logs"
    },
    "version": {
      "description": "The Vuetify version to check documentation for"
    }
  },
  "cli": {
    "main": {
      "description": "Unified CLI for Vuetify"
    },
    "create": {
      "description": "Create a new Vuetify project"
    },
    "v0": {
      "description": "Unified CLI for Vuetify0"
    },
    "create_v0": {
      "description": "Create a Vuetify0 project"
    }
  },
  "utils": {
    "update_check": {
      "available": "Update available!",
      "run_update": "Run %{command} to update",
      "run_with": "Run with %{command}"
    }
  }
}