vibecodingmachine-core 2025.12.22-2230 → 2025.12.24-2348

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,675 @@
1
+ /**
2
+ * English translations for Vibe Coding Machine
3
+ * This is the base language - all keys should be defined here
4
+ */
5
+
6
+ module.exports = {
7
+ // Common Application
8
+ 'app.name': 'Vibe Coding Machine',
9
+ 'app.version': 'Version {version}',
10
+ 'app.loading': 'Loading...',
11
+ 'app.error': 'Error',
12
+ 'app.success': 'Success',
13
+ 'app.cancel': 'Cancel',
14
+ 'app.save': 'Save',
15
+ 'app.close': 'Close',
16
+ 'app.back': 'Back',
17
+ 'app.next': 'Next',
18
+ 'app.previous': 'Previous',
19
+ 'app.continue': 'Continue',
20
+ 'app.retry': 'Retry',
21
+ 'app.refresh': 'Refresh',
22
+ 'app.restart': 'Restart',
23
+
24
+ // Authentication
25
+ 'auth.login': 'Sign in with Google',
26
+ 'auth.logout': 'Logout',
27
+ 'auth.login.success': 'Successfully authenticated as {email}',
28
+ 'auth.login.already': 'Already authenticated as {email}',
29
+ 'auth.login.failed': 'Login failed',
30
+ 'auth.logout.success': 'Logged out successfully',
31
+ 'auth.logout.failed': 'Logout failed',
32
+ 'auth.not.authenticated': 'Not authenticated',
33
+ 'auth.run.login': 'Run {command} to sign in',
34
+ 'auth.starting.interactive': 'Starting interactive mode...',
35
+
36
+ // User Profile
37
+ 'profile.name': 'Name',
38
+ 'profile.email': 'Email',
39
+ 'profile.tier': 'Tier',
40
+ 'profile.tier.free': 'Free',
41
+ 'profile.tier.premium': 'Premium 🌟',
42
+ 'profile.usage': 'Usage',
43
+ 'profile.daily.usage': 'Daily Usage',
44
+ 'profile.limit': 'Limit',
45
+ 'profile.unlimited': 'Unlimited 🚀',
46
+ 'profile.iterations': 'iterations',
47
+ 'profile.quota.exceeded': 'Daily quota exceeded',
48
+ 'profile.upgrade.suggestion': 'Upgrade to Premium for unlimited usage.',
49
+
50
+ // Status and Progress
51
+ 'status.title': 'Vibe Coding Machine Status',
52
+ 'status.repository': 'Repository',
53
+ 'status.auto.mode': 'Auto mode',
54
+ 'status.running': 'running',
55
+ 'status.stopped': 'stopped',
56
+ 'status.ide': 'IDE',
57
+ 'status.chats': 'Chats',
58
+ 'status.progress': 'Progress',
59
+ 'status.current.status': 'Current Status',
60
+ 'status.unknown': 'UNKNOWN',
61
+ 'status.not.set': 'not set',
62
+ 'status.no.repo': 'No repository path configured',
63
+ 'status.no.requirements': 'No REQUIREMENTS file found.',
64
+ 'status.check.failed': 'Failed to check status',
65
+
66
+ // Setup and Configuration
67
+ 'setup.title': 'Setup',
68
+ 'setup.description': 'We need to download and install several other applications. Vibe Coding Machine will automate as much as it can, but you will need to allow permissions when the computer asks.',
69
+ 'setup.agents': 'Agents (LLMs & IDEs)',
70
+ 'setup.agents.description': 'Select the agents you want to use. You can reorder them in the Settings tab or CLI.',
71
+ 'setup.loading.agents': 'Loading agents...',
72
+ 'setup.permissions': 'Permissions',
73
+ 'setup.accessibility': 'Accessibility',
74
+ 'setup.input.monitoring': 'Input Monitoring',
75
+ 'setup.screen.recording': 'Screen Recording',
76
+ 'setup.open.settings': 'Open Settings',
77
+ 'setup.recheck': 'Re-check',
78
+ 'setup.alias.title': 'Setup Vibe Coding Machine Alias',
79
+ 'setup.alias.detected': 'Detected shell: {shell}',
80
+ 'setup.alias.config': 'Config file: {file}',
81
+ 'setup.alias.exists': '"vcm" alias is already configured!',
82
+ 'setup.alias.confirm': 'Add \'vcm\' alias to {file}?',
83
+ 'setup.alias.cancelled': 'Cancelled.',
84
+ 'setup.alias.added': 'Added alias to {file}',
85
+ 'setup.alias.restart': 'You may need to restart your terminal or run:',
86
+ 'setup.alias.source': 'source {file}',
87
+ 'setup.alias.error': 'Error writing to config file: {error}',
88
+ 'setup.shell.unsupported': 'Could not detect supported shell (zsh, bash, fish). Current shell: {shell}',
89
+ 'setup.manual.alias': 'You can manually add the alias:',
90
+
91
+ // Requirements
92
+ 'requirements.title': 'Project Requirements',
93
+ 'requirements.menu.label': 'Requirements',
94
+ 'requirements.for.computer': 'Requirements for {computerId}',
95
+ 'requirements.search': 'Search requirements...',
96
+ 'requirements.clear.search': 'Clear search',
97
+ 'requirements.project.details': 'Project Details',
98
+ 'requirements.project.name': 'Project Name',
99
+ 'requirements.add.title': 'Add',
100
+ 'requirements.web.app': 'Web Application',
101
+ 'requirements.iphone.app': 'iPhone Application',
102
+ 'requirements.android.app': 'Android Application',
103
+ 'requirements.desktop.app': 'Desktop Application (rare)',
104
+ 'requirements.browser.extension': 'Browser Extension (rare)',
105
+ 'requirements.ai.agent': 'AI Agent',
106
+ 'requirements.features': 'Features',
107
+ 'requirements.login': 'Login',
108
+ 'requirements.user.registration': 'User Registration',
109
+ 'requirements.password.reset': 'Password Reset',
110
+ 'requirements.user.profile': 'User Profile',
111
+ 'requirements.search': 'Search',
112
+ 'requirements.notifications': 'Notifications',
113
+ 'requirements.file.upload': 'File Upload',
114
+ 'requirements.api': 'API',
115
+ 'requirements.development': 'Development',
116
+ 'requirements.unit.tests': 'Unit tests (strongly suggest keeping these)',
117
+ 'requirements.browser.tests': 'Browser based tests (strongly suggest keeping these)',
118
+ 'requirements.git': 'git (revision control)',
119
+ 'requirements.description': 'Description',
120
+ 'requirements.description.help': 'Explain in as much detail as you can (the more detailed the better results you will get) like you are explaining to your grandma. This will be used to create the list of requirements for Vibe Coding Machine to implement. You will be able to review the generated requirements and modify them directly, or add more information to modify them via chat, but best to get it as close as possible the first time around. You may want to use the microphone so you don\'t have to type so much. Don\'t worry about punctuation. Enjoy!',
121
+ 'requirements.description.placeholder': 'Describe your project in detail...',
122
+ 'requirements.advertising': 'Advertising your product',
123
+ 'requirements.budget': 'Budget: ($)',
124
+ 'requirements.budget.placeholder': 'Enter budget amount',
125
+ 'requirements.monetize': 'Monetize',
126
+ 'requirements.ads': 'Ads',
127
+ 'requirements.subscription.tiers': 'Subscription tiers',
128
+ 'requirements.target': 'Target: ($)',
129
+ 'requirements.target.placeholder': 'e.g., 20000',
130
+ 'requirements.target.per.year': 'per year',
131
+ 'requirements.need.information': 'Requirements that need information',
132
+ 'requirements.need.information.description': 'These requirements need your input to proceed. Please review the options and select how you\'d like to continue.',
133
+ 'requirements.need.information.none': 'No requirements need information at this time.',
134
+ 'requirements.todo': 'TODO',
135
+ 'requirements.add.new': 'Add New Requirement',
136
+ 'requirements.add.multiple': 'Add Multiple Requirements',
137
+ 'requirements.name': 'Requirement Name',
138
+ 'requirements.name.placeholder': 'Enter requirement name...',
139
+ 'requirements.details': 'Requirement Details',
140
+ 'requirements.details.placeholder': 'Enter requirement details...',
141
+ 'requirements.save': 'Save Requirement',
142
+ 'requirements.save.multiple': 'Save Requirements',
143
+ 'requirements.describe.multiple': 'Describe Requirements',
144
+ 'requirements.describe.multiple.help': 'Describe in a few paragraphs what requirements you want to add. The AI will create individual requirements from your description. Note: Requirements are taken from the top of the list, so new ones added at the top will be worked on first.',
145
+ 'requirements.placement': 'Where to add these requirements',
146
+ 'requirements.placement.top': 'Top of list (will be worked on first)',
147
+ 'requirements.placement.bottom': 'Bottom of list (will be worked on last)',
148
+ 'requirements.none.found': 'No existing requirements found.',
149
+ 'requirements.to.verify': 'TO VERIFY (Verified by AI screenshot. Needs Human to Verify)',
150
+ 'requirements.completed.none': 'No completed requirements found.',
151
+ 'requirements.verified': 'VERIFIED',
152
+ 'requirements.changelog.none': 'No CHANGELOG entries found.',
153
+ 'requirements.save.changes': 'Save Requirements',
154
+ 'requirements.cancel.changes': 'Cancel',
155
+
156
+ // Settings
157
+ 'settings.title': 'Settings',
158
+ 'settings.description': 'Configure Vibe Coding Machine settings and preferences.',
159
+ 'settings.stop.after.max.chats': 'Stop after a maximum number of chats',
160
+ 'settings.max.chats': 'Maximum Chats',
161
+ 'settings.workflow.stages': 'Workflow Stages',
162
+
163
+ // Progress
164
+ 'progress.title': 'Progress',
165
+ 'progress.recent.logs': 'Recent Logs',
166
+ 'progress.no.logs': 'No logs available.',
167
+
168
+ // Mobile
169
+ 'mobile.title': 'Mobile',
170
+
171
+ // Console
172
+ 'console.title': 'Console',
173
+
174
+ // Auto Mode
175
+ 'auto.start': 'Start Auto',
176
+ 'auto.stop': 'Stop Auto',
177
+ 'auto.mode.on': 'Auto Mode On',
178
+ 'auto.mode.off': 'Auto Mode Off',
179
+
180
+ // Package Management
181
+ 'package.label': 'Package',
182
+ 'package.launch': 'Launch',
183
+ 'package.tests': 'Tests',
184
+ 'package.run.tests': 'Run Tests',
185
+
186
+ // IDE Names
187
+ 'ide.cline': 'Cline IDE',
188
+ 'ide.cursor': 'Cursor',
189
+ 'ide.vscode': 'VS Code',
190
+ 'ide.windsurf': 'Windsurf',
191
+
192
+ // Logs
193
+ 'logs.recent': 'Recent Logs',
194
+ 'logs.none': 'No logs available.',
195
+
196
+ // Errors and Messages
197
+ 'error.repo.path': 'No repository path configured',
198
+ 'error.requirements.file': 'No REQUIREMENTS file found',
199
+ 'error.status.check': 'Failed to check status: {error}',
200
+ 'error.config.write': 'Error writing to config file: {error}',
201
+
202
+ // CLI Specific
203
+ 'cli.alias.manual': 'alias vcm="vibecodingmachine"',
204
+
205
+ // Quota and Usage
206
+ 'quota.overall': 'Overall Quota',
207
+ 'quota.remaining': 'Loading...',
208
+ 'quota.resets.in': 'Resets in',
209
+ 'quota.exceeded.warning': '{reason}',
210
+
211
+ // Tabs
212
+ 'tab.setup': 'Setup',
213
+ 'tab.requirements': 'Requirements',
214
+ 'tab.settings': 'Settings',
215
+ 'tab.progress': 'Progress',
216
+ 'tab.mobile': 'Mobile',
217
+ 'tab.console': 'Console',
218
+
219
+ // CLI Commands
220
+ 'cli.repo.manage': 'Manage repository settings',
221
+ 'cli.repo.set': 'Set the active repository path',
222
+ 'cli.repo.get': 'Get the current repository path',
223
+ 'cli.repo.init': 'Initialize Vibe Coding Machine in current directory',
224
+ 'cli.auto.start': 'Start autonomous development mode',
225
+ 'cli.auto.direct': 'Start autonomous mode with direct LLM API calls (recommended)',
226
+ 'cli.auto.stop': 'Stop autonomous development mode',
227
+ 'cli.auto.status': 'Check autonomous mode status',
228
+ 'cli.auto.config': 'Configure auto mode settings',
229
+ 'cli.auto.agents': 'List available agents and their quota status',
230
+ 'cli.req.list': 'List all requirements',
231
+ 'cli.req.add': 'Add a new requirement',
232
+ 'cli.req.current': 'Show current requirement being worked on',
233
+ 'cli.req.next': 'Move to next requirement',
234
+ 'cli.req.edit': 'Open requirements file in editor',
235
+ 'cli.req.watch': 'Watch requirements file for changes',
236
+ 'cli.req.rename': 'Rename requirement and optionally update description',
237
+ 'cli.ide.list': 'List available IDEs',
238
+ 'cli.ide.open': 'Open IDE with current repository',
239
+ 'cli.ide.send': 'Send message to IDE AI chat',
240
+ 'cli.status': 'Show Vibe Coding Machine status and progress',
241
+ 'cli.progress': 'Show development progress',
242
+ 'cli.logs': 'Show recent activity logs',
243
+ 'cli.setup': 'Setup "vcm" alias for shell',
244
+ 'cli.auth.login': 'Login with Google',
245
+ 'cli.auth.logout': 'Logout',
246
+ 'cli.auth.status': 'Check authentication status',
247
+ 'cli.computers': 'List all registered computers',
248
+ 'cli.computer.status': 'Show detailed status of a specific computer',
249
+ 'cli.computer.register': 'Register current computer with focus area',
250
+ 'cli.computer.focus': 'View or update focus area for current computer',
251
+ 'cli.computer.requirements': 'View requirements for another computer',
252
+ 'cli.computer.add.requirement': 'Add requirement to another computer',
253
+ 'cli.sync.now': 'Trigger immediate sync',
254
+ 'cli.sync.status': 'Show sync status and statistics',
255
+ 'cli.sync.queue': 'View pending changes in offline queue',
256
+ 'cli.sync.force': 'Force sync even if offline',
257
+ 'cli.sync.history': 'View sync history',
258
+ 'cli.interactive': 'Start interactive mode',
259
+
260
+ // CLI Messages
261
+ 'cli.auth.opening.browser': 'Opening browser for authentication...',
262
+ 'cli.auth.success': 'Authentication successful!',
263
+ 'cli.auth.failed': 'Authentication failed',
264
+ 'cli.compliance.failed': 'Compliance check failed. Exiting.',
265
+ 'cli.error': 'Error',
266
+
267
+ // Computer Management Commands
268
+ 'cli.computers.list': 'List all registered computers',
269
+ 'cli.computer.status.show': 'Show detailed status of a specific computer',
270
+ 'cli.computer.register': 'Register current computer with focus area',
271
+ 'cli.computer.focus.view': 'View or update focus area for current computer',
272
+ 'cli.computer.requirements.view': 'View requirements for another computer',
273
+ 'cli.computer.requirement.add': 'Add requirement to another computer',
274
+
275
+ // Sync Management Commands
276
+ 'cli.sync.trigger': 'Trigger immediate sync',
277
+ 'cli.sync.status.show': 'Show sync status and statistics',
278
+ 'cli.sync.queue.view': 'View pending changes in offline queue',
279
+ 'cli.sync.force.sync': 'Force sync even if offline',
280
+ 'cli.sync.history.view': 'View sync history',
281
+
282
+ // Interactive Mode
283
+ 'interactive.auto.mode': 'Auto Mode',
284
+ 'interactive.auto.stopped': 'Stopped',
285
+ 'interactive.auto.running': 'Running',
286
+ 'interactive.stop.condition': 'Stop Condition',
287
+ 'interactive.stop.after': 'Stop after {count}',
288
+ 'interactive.never.stop': 'Never Stop',
289
+ 'interactive.first.agent': 'First Agent',
290
+ 'interactive.requirements': 'Requirements',
291
+ 'interactive.todo': 'TODO',
292
+ 'interactive.to.verify': 'TO VERIFY',
293
+ 'interactive.verified': 'VERIFIED',
294
+ 'interactive.hostname.enabled': 'Use Hostname in Req File',
295
+ 'interactive.hostname.disabled': 'DISABLED',
296
+ 'interactive.configure.stages': 'Configure Stages',
297
+ 'interactive.stages': 'stages',
298
+ 'interactive.cloud.sync': 'Cloud Sync',
299
+ 'interactive.online': 'Online',
300
+ 'interactive.offline': 'Offline',
301
+ 'interactive.next.todo': 'Next TODO Requirement',
302
+ 'interactive.view.computers': 'View All Computers',
303
+ 'interactive.sync.now': 'Sync Now',
304
+ 'interactive.logout': 'Logout',
305
+ 'interactive.exit': 'Exit',
306
+ 'interactive.initialize': 'Initialize repository (.vibecodingmachine)',
307
+ 'interactive.goodbye': 'Goodbye! Be dreaming about what requirements to add!',
308
+ 'interactive.confirm.exit': 'Are you sure you want to exit? (x/y/N)',
309
+
310
+ // Requirements Navigator
311
+ 'requirements.navigator.title': 'Requirements Navigator',
312
+ 'requirements.navigator.instructions': 'Use ↑/↓ to navigate, →/Enter to expand/view questions, ← to go back, R to Remove, J to move down, K to move up, U Promote (👍), D Demote/Move to TODO (👎), X/ESC to Exit.',
313
+ 'requirements.navigator.basic.instructions': 'Use ↑/↓ to navigate, →/Enter/Space to expand, ←/ESC to collapse/go back',
314
+ 'requirements.add.new': 'Add new requirement',
315
+ 'requirements.add.multiple': 'Add multiple requirements',
316
+ 'requirements.section.verified': 'VERIFIED',
317
+ 'requirements.section.to.verify': 'TO VERIFY',
318
+ 'requirements.section.todo': 'TODO',
319
+
320
+ // Provider Configuration
321
+ 'provider.title': 'Provider Order & Availability',
322
+ 'provider.overall.quota': 'Overall Quota',
323
+ 'provider.available': 'Available',
324
+ 'provider.resets.in': 'Resets in',
325
+ 'provider.rate.limit.resets': 'Rate limit resets in',
326
+ 'provider.instructions': '↑/↓ move selection j/k reorder e enable d disable Space toggle Enter save/select Esc cancel',
327
+ 'provider.status.available': 'Available',
328
+ 'provider.status.quota.infinite': 'Quota: Infinite',
329
+ 'provider.status.available.resets': 'available • resets in',
330
+ 'provider.no.pending.changes': 'No pending changes.',
331
+ 'provider.pending.changes': 'Pending changes will be saved on Enter...',
332
+
333
+ // Interactive Navigation
334
+ 'interactive.navigation.help': '↑/↓ to navigate, →/Enter to select, ←/X to exit, or press a letter ({letters})',
335
+
336
+ // Requirement File Labels
337
+ 'requirement.label.package': 'PACKAGE:',
338
+ 'requirement.label.status': 'STATUS:',
339
+ 'requirement.label.package.es': 'PAQUETE:',
340
+ 'requirement.label.status.es': 'ESTADO:',
341
+
342
+ // Welcome Banner
343
+ 'banner.tagline': 'Big Dreams + AI + VibeCodingMachine.com = Your money making apps',
344
+
345
+ // System Information
346
+ 'system.repo': 'Repo:',
347
+ 'system.computer.name': 'Computer Name:',
348
+
349
+ // Configuration Dialogs
350
+ 'config.stop.condition.title': '⚙️ Configure Stop Condition',
351
+ 'config.max.chats.prompt': 'Max chats (0 for never stop):',
352
+ 'config.stop.condition.updated': 'Stop condition updated:',
353
+ 'config.stop.after': 'Stop after {count}',
354
+ 'config.never.stop': 'Never Stop',
355
+
356
+ // Auto Mode
357
+ 'auto.starting': '🚀 Starting Auto Mode...',
358
+ 'auto.direct.title': '🤖 Vibe Coding Machine - Direct API Auto Mode',
359
+ 'auto.repository': 'Repository:',
360
+ 'auto.fatal.error': '✗ Fatal Error:',
361
+
362
+ // Auto Direct - Status and Requirement Management
363
+ 'auto.direct.status.update.warning': 'Warning: Could not update status in requirements file:',
364
+ 'auto.direct.requirement.read.error': 'Error reading requirement:',
365
+ 'auto.direct.requirement.count.error': 'Error counting requirements:',
366
+ 'auto.direct.requirement.not.found.todo': 'Could not find requirement "{requirement}" in TODO section',
367
+ 'auto.direct.requirement.no.more.todo': 'No more requirements in TODO section',
368
+ 'auto.direct.verify.section.create.failed': 'Failed to create TO VERIFY BY HUMAN section',
369
+ 'auto.direct.verify.section.wrong.insert': 'ERROR: Attempted to insert into VERIFIED section instead of TO VERIFY',
370
+ 'auto.direct.requirement.move.verify.error': 'Error moving requirement to TO VERIFY:',
371
+ 'auto.direct.requirement.not.found': 'Could not find requirement',
372
+ 'auto.direct.requirement.move.error': 'Error moving requirement:',
373
+
374
+ // Auto Direct - Provider Messages
375
+ 'auto.direct.provider.none.available': 'No providers available. Configure API keys or IDE agents first.',
376
+ 'auto.direct.provider.all.disabled': 'All providers are disabled. Enable at least one provider in the Agent menu.',
377
+ 'auto.direct.provider.all.rate.limited': 'All enabled providers are currently rate limited.',
378
+ 'auto.direct.provider.enable.tip': 'Tip: Enable additional providers in the Agent menu for more fallbacks.',
379
+ 'auto.direct.provider.launching': 'Launching {provider} fallback (auto:start)...',
380
+ 'auto.direct.provider.quota.exhausted': '{provider} quota exhausted, switching to next IDE',
381
+ 'auto.direct.provider.completed': 'IDE provider completed iteration',
382
+
383
+ // Auto Direct - File Search
384
+ 'auto.direct.files.searching': 'Searching for relevant files',
385
+ 'auto.direct.files.trying.exact': 'Trying exact match',
386
+ 'auto.direct.files.trying.fuzzy': 'Trying fuzzy match',
387
+ 'auto.direct.files.trying.partial': 'Trying partial match',
388
+ 'auto.direct.files.trying.pattern': 'Trying pattern match',
389
+ 'auto.direct.files.error': 'Error finding files:',
390
+ 'auto.direct.files.found': 'Found {count} relevant file(s)',
391
+ 'auto.direct.files.none.found': 'No matching files found',
392
+
393
+ // Auto Direct - IDE Agent Interaction
394
+ 'auto.direct.ide.waiting': 'Waiting for IDE agent to complete...',
395
+ 'auto.direct.ide.monitoring': 'Monitoring: {filename}',
396
+ 'auto.direct.ide.timeout': 'Timeout: {minutes} minutes',
397
+ 'auto.direct.ide.prompt.sent': 'Prompt sent to IDE agent successfully',
398
+ 'auto.direct.ide.skipping.context': 'Skipping direct file context - delegating to IDE agent.',
399
+ 'auto.direct.ide.detected': '{ide} detected - using AppleScript for reliable text sending',
400
+ 'auto.direct.ide.launching': 'Launching {ide}...',
401
+ 'auto.direct.ide.starting': '{ide} may still be starting up...',
402
+ 'auto.direct.ide.sent.applescript': 'Successfully sent message to {ide} via AppleScript',
403
+ 'auto.direct.ide.autonomous.started': 'Autonomous mode started and initial message sent',
404
+ 'auto.direct.ide.still.waiting': 'Still waiting... ({elapsed}m elapsed, {remaining}m remaining)',
405
+ 'auto.direct.ide.timeout.after': 'Timeout after {minutes} minutes',
406
+
407
+ // Auto Mode - IDE Status
408
+ 'auto.ide.is.installed': '{ide} is installed',
409
+ 'auto.ide.is.running': '{ide} is already running (PID: {pid})',
410
+ 'auto.ide.label': 'IDE:',
411
+ 'auto.max.chats.label': 'Max chats:',
412
+ 'auto.coding.autonomously': 'Vibe Coding Machine is now coding autonomously',
413
+ 'auto.starting.mode': 'Starting autonomous mode...',
414
+
415
+ // Auto Direct - Requirement Display
416
+ 'auto.direct.requirement.header': 'REQUIREMENT {current} of {total}',
417
+ 'auto.direct.requirement.working.on': 'Working on:',
418
+
419
+ // Workflow Stages
420
+ 'workflow.stage.prepare': 'PREPARE',
421
+ 'workflow.stage.reproduce': 'REPRODUCE',
422
+ 'workflow.stage.create.unit.test': 'CREATE UNIT TEST',
423
+ 'workflow.stage.act': 'ACT',
424
+ 'workflow.stage.clean.up': 'CLEAN UP',
425
+ 'workflow.stage.verify': 'VERIFY',
426
+ 'workflow.stage.run.unit.tests': 'RUN UNIT TESTS',
427
+ 'workflow.stage.done': 'DONE',
428
+
429
+ // Workflow Stages Configuration
430
+ 'workflow.config.title': 'Configure Workflow Stages',
431
+ 'workflow.config.description': 'Select the stages you want to include in the auto-mode workflow.',
432
+ 'workflow.config.order.note': 'Stages will be executed in the order shown.',
433
+ 'workflow.config.instructions': 'Use arrow keys to navigate, <space> to select, <a> to toggle all, <enter> to confirm.',
434
+ 'workflow.config.select.prompt': 'Select stages:',
435
+ 'workflow.config.validation.error': 'You must select at least one stage.',
436
+ 'workflow.config.updated': 'Stages configuration updated:',
437
+
438
+ // Interactive Menu
439
+ 'interactive.press.enter.return': 'Press Enter to return to menu...',
440
+ 'interactive.press.enter.continue': 'Press Enter to continue...',
441
+ 'interactive.select.option': 'Select an option:',
442
+ 'interactive.back.to.menu': '← Back to Main Menu',
443
+ 'interactive.logout.success': 'Logged out successfully!',
444
+ 'interactive.logout.login.again': 'Run "vcm auth:login" or "vcm" to login again.',
445
+ 'interactive.logout.failed': 'Logout failed:',
446
+ 'interactive.press.any.key': 'Press any key to continue...',
447
+ 'interactive.press.any.key.menu': 'Press any key to continue to the main menu...',
448
+ 'interactive.press.any.key.return': 'Press any key to return to main menu...',
449
+ 'interactive.press.any.key.back': 'Press any key to go back...',
450
+ 'auto.press.any.key.stop': 'Press any key to stop, or wait 10 seconds to continue...',
451
+
452
+ // Cloud Sync Management
453
+ 'cloud.sync.title': 'Cloud Sync Management',
454
+ 'cloud.sync.not.configured': 'Cloud sync is not configured.',
455
+ 'cloud.sync.setup.title': 'To set up cloud sync:',
456
+ 'cloud.sync.setup.step1': 'Run:',
457
+ 'cloud.sync.setup.step2': 'Add AWS configuration to your .env file',
458
+ 'cloud.sync.setup.step3': 'Restart vcm',
459
+ 'cloud.sync.setup.info': 'For more info, see:',
460
+ 'cloud.sync.menu.view.computers': '📊 View All Computers',
461
+ 'cloud.sync.menu.manage.remote': '🖥️ Manage Another Computer\'s Requirements',
462
+ 'cloud.sync.menu.sync.now': '🔄 Sync Now',
463
+ 'cloud.sync.menu.sync.status': '📈 Sync Status',
464
+ 'cloud.sync.menu.sync.history': '📜 Sync History',
465
+ 'cloud.sync.menu.offline.queue': '📋 View Offline Queue',
466
+ 'cloud.sync.menu.register': '🖥️ Register This Computer',
467
+ 'cloud.sync.menu.update.focus': '🎯 Update Focus Area',
468
+
469
+ // Computers Management
470
+ 'computers.no.computers': 'No computers registered yet.',
471
+ 'computers.will.appear': 'Computers will appear here once they sync for the first time.',
472
+ 'computers.table.computer': 'Computer',
473
+ 'computers.table.focus': 'Focus Area',
474
+ 'computers.table.status': 'Status',
475
+ 'computers.table.requirement': 'Current Requirement',
476
+ 'computers.table.progress': 'Progress',
477
+ 'computers.table.last.sync': 'Last Sync',
478
+ 'computers.status.active': 'active',
479
+ 'computers.status.idle': 'idle',
480
+ 'computers.status.error': 'error',
481
+ 'computers.status.offline': 'offline',
482
+ 'computers.status.unknown': 'unknown',
483
+ 'computers.never': 'never',
484
+ 'computers.total': 'Total: {count} computers',
485
+ 'computers.active': 'Active: {count}',
486
+ 'computers.idle': 'Idle: {count}',
487
+ 'computers.error': 'Error: {count}',
488
+ 'computers.fetch.failed': 'Failed to fetch computers:',
489
+ 'computers.not.found': 'Computer \'{id}\' not found.',
490
+ 'computers.details.title': 'Computer Details',
491
+ 'computers.details.hostname': 'Hostname:',
492
+ 'computers.details.id': 'Computer ID:',
493
+ 'computers.details.focus': 'Focus Area:',
494
+ 'computers.details.os': 'OS:',
495
+ 'computers.details.status': 'Status:',
496
+ 'computers.details.last.sync': 'Last Sync:',
497
+ 'computers.work.title': 'Current Work',
498
+ 'computers.work.requirement': 'Requirement:',
499
+ 'computers.work.progress': 'Progress:',
500
+ 'computers.work.time.active': 'Time Active:',
501
+ 'computers.work.ide': 'IDE:',
502
+ 'computers.work.none': 'None',
503
+ 'computers.stats.title': 'Statistics',
504
+ 'computers.stats.total': 'Total Requirements:',
505
+ 'computers.stats.completed': 'Completed:',
506
+ 'computers.stats.in.progress': 'In Progress:',
507
+ 'computers.stats.to.verify': 'To Verify:',
508
+ 'computers.stats.completion.rate': 'Completion Rate:',
509
+ 'computers.status.fetch.failed': 'Failed to fetch computer status:',
510
+ 'computers.register.success': 'Computer registered successfully!',
511
+ 'computers.register.id': 'Computer ID:',
512
+ 'computers.register.hostname': 'Hostname:',
513
+ 'computers.register.focus': 'Focus Area:',
514
+ 'computers.register.failed': 'Failed to register computer:',
515
+ 'computers.not.registered': 'Computer not registered. Registering now...',
516
+ 'computers.focus.updated': 'Focus area updated!',
517
+ 'computers.focus.computer': 'Computer:',
518
+ 'computers.focus.new': 'New Focus:',
519
+ 'computers.focus.update.failed': 'Failed to update focus area:',
520
+ 'computers.time.days.ago': '{count}d ago',
521
+ 'computers.time.hours.ago': '{count}h ago',
522
+ 'computers.time.minutes.ago': '{count}m ago',
523
+ 'computers.time.seconds.ago': '{count}s ago',
524
+ 'computers.no.focus': 'No focus',
525
+ 'computers.select.to.manage': 'Select computer to manage:',
526
+ 'computers.cancel': '← Cancel',
527
+ 'computers.register.focus.prompt': 'Enter focus area for this computer:',
528
+ 'computers.register.focus.default': 'General Development',
529
+
530
+ // Sync Management
531
+ 'sync.starting': 'Starting sync...',
532
+ 'sync.complete': 'Sync complete!',
533
+ 'sync.failed': 'Sync failed:',
534
+ 'sync.tip.aws': 'Tip: Check AWS credentials and DynamoDB table configuration.',
535
+ 'sync.last.sync': 'Last Sync:',
536
+ 'sync.remote.changes': 'Remote Changes:',
537
+ 'sync.local.changes': 'Local Changes:',
538
+ 'sync.conflicts': 'Conflicts:',
539
+ 'sync.queued.changes': 'Queued Changes:',
540
+ 'sync.status.title': 'Sync Status',
541
+ 'sync.connection': 'Connection:',
542
+ 'sync.status': 'Status:',
543
+ 'sync.status.online': 'Online',
544
+ 'sync.status.offline': 'Offline',
545
+ 'sync.status.syncing': 'Syncing...',
546
+ 'sync.status.idle': 'Idle',
547
+ 'sync.never': 'Never',
548
+ 'sync.conflict.mode': 'Conflict Mode:',
549
+ 'sync.computer.id': 'Computer ID:',
550
+ 'sync.recent.events': 'Recent Sync Events',
551
+ 'sync.status.failed': 'Failed to get sync status:',
552
+ 'sync.queue.no.pending': 'No pending changes in queue.',
553
+ 'sync.queue.title': 'Offline Queue ({count} changes)',
554
+ 'sync.queue.header.number': '#',
555
+ 'sync.queue.header.type': 'Type',
556
+ 'sync.queue.header.requirement': 'Requirement',
557
+ 'sync.queue.header.timestamp': 'Timestamp',
558
+ 'sync.queue.will.sync': 'These changes will be synced when connection is restored.',
559
+ 'sync.queue.commands': 'Commands:',
560
+ 'sync.queue.force.now': 'Force sync now',
561
+ 'sync.queue.sync.online': 'Sync when online',
562
+ 'sync.queue.view.failed': 'Failed to view queue:',
563
+ 'sync.force.starting': 'Forcing sync (ignoring offline status)...',
564
+ 'sync.force.complete': 'Force sync complete!',
565
+ 'sync.force.failed': 'Force sync failed:',
566
+ 'sync.force.unreachable': 'This usually means the server is unreachable.',
567
+ 'sync.history.no.events': 'No sync history available.',
568
+ 'sync.history.title': 'Sync History (last {count} events)',
569
+ 'sync.history.header.time': 'Time',
570
+ 'sync.history.header.type': 'Type',
571
+ 'sync.history.header.details': 'Details',
572
+ 'sync.history.view.failed': 'Failed to view history:',
573
+ 'sync.event.resolved': 'Resolved: {id}',
574
+ 'sync.event.remote.local': 'Remote: {remote}, Local: {local}',
575
+ 'sync.event.applied': 'Applied: {id}',
576
+ 'sync.event.pushed': 'Pushed: {id}',
577
+
578
+ // Auto Direct - Status Display
579
+ 'auto.direct.status.coding': 'Vibe Coding Machine is now coding autonomously',
580
+ 'auto.direct.status.max.chats': 'Max chats: {count}',
581
+ 'auto.direct.status.quota.limit': 'Overall quota limit reached. Switching to IDE agents for remaining iterations.',
582
+ 'auto.direct.status.timeout': 'Timeout waiting for requirement completion',
583
+ 'auto.direct.status.verification.pending': 'Requirement moved to TO VERIFY BY HUMAN section',
584
+ 'auto.direct.status.verification.complete': 'Requirement verified and completed',
585
+ 'auto.direct.status.verification.failed': 'Verification failed',
586
+
587
+ // Auto Direct - Requirement Display
588
+ 'auto.direct.requirement.title': 'REQUIREMENT:',
589
+ 'auto.direct.requirement.current': 'Current requirement:',
590
+ 'auto.direct.requirement.next': 'Next TODO Requirement',
591
+ 'auto.direct.requirement.todo.count': 'TODO: {count}',
592
+ 'auto.direct.requirement.verify.count': 'TO VERIFY: {count}',
593
+ 'auto.direct.requirement.verified.count': 'VERIFIED: {count}',
594
+
595
+ // Auto Direct - Code Processing
596
+ 'auto.direct.code.applying.changes': 'Applying code changes...',
597
+ 'auto.direct.code.change.applied': 'Applied change to {file}',
598
+ 'auto.direct.code.change.failed': 'Failed to apply change to {file}',
599
+ 'auto.direct.code.no.changes': 'No code changes to apply',
600
+ 'auto.direct.code.processing.response': 'Processing LLM response...',
601
+
602
+ // Auto Direct - Summary and Completion
603
+ 'auto.direct.summary.title': 'Summary',
604
+ 'auto.direct.summary.iterations': 'Iterations completed: {count}',
605
+ 'auto.direct.summary.requirements.completed': 'Requirements completed: {count}',
606
+ 'auto.direct.summary.time.elapsed': 'Time elapsed: {time}',
607
+ 'auto.direct.completion.summary': 'Requirement completion summary',
608
+ 'auto.direct.summary.total.requirements': 'Total requirements:',
609
+ 'auto.direct.summary.completed': 'Completed:',
610
+ 'auto.direct.summary.failed': 'Failed:',
611
+ 'auto.direct.summary.provider': 'Provider:',
612
+ 'auto.direct.summary.files.modified': 'Files modified:',
613
+ 'auto.direct.summary.status': 'Status:',
614
+ 'auto.direct.summary.time': 'Time:',
615
+ 'auto.direct.summary.moving.to.verify': 'Moving to TO VERIFY BY HUMAN',
616
+ 'auto.direct.summary.final.message': '{count} requirement{plural} moved to TO VERIFY BY HUMAN!',
617
+ 'auto.direct.requirement.completed': 'REQUIREMENT COMPLETED!',
618
+ 'auto.direct.no.repository.configured': 'No repository configured',
619
+ 'auto.direct.no.more.todo.items': 'No more TODO items found in REQUIREMENTS file',
620
+ 'auto.direct.section.not.found': 'Could not find relevant section in {file}',
621
+ 'auto.direct.requirement.may.be.lost': 'Requirement may have been lost. Please check the requirements file.',
622
+ 'auto.direct.verification.still.pending': 'Requirement still pending verification in REQUIREMENTS file',
623
+
624
+ // Auto Direct - Configuration
625
+ 'auto.direct.config.repo.not.set': 'Run: vcm repo:set <path>',
626
+ 'auto.direct.config.max.iterations': 'Max iterations:',
627
+ 'auto.direct.config.restart.error': 'Error restarting CLI:',
628
+
629
+ // Auto Direct - Activity Log
630
+ 'auto.direct.activity.recent': 'Recent Activity:',
631
+ 'auto.direct.activity.none': 'No items to display.',
632
+ 'auto.direct.activity.press.key': 'Press any key to return to main menu...',
633
+
634
+ // Interactive Mode - Additional UI Strings
635
+ 'interactive.header.title': 'Vibe Coding Machine',
636
+ 'interactive.header.version': 'Version {version}',
637
+ 'interactive.chats.label': 'Chats:',
638
+ 'interactive.changelog.title': '(From CHANGELOG.md - read only)',
639
+ 'interactive.changelog.press.key': 'Press any key to go back...',
640
+ 'interactive.edit.responses': '✍️ Edit Clarification Responses',
641
+ 'interactive.responses.saved': '✓ Responses saved!',
642
+ 'interactive.moved.to.todo': '✓ Moved to TODO!',
643
+ 'interactive.ai.found.label': 'AI Found in Codebase:',
644
+ 'interactive.clarifying.questions': 'Clarifying Questions:',
645
+ 'interactive.what.to.do': 'What would you like to do?',
646
+ 'interactive.movement.confirm': 'Moved "{requirement}" to {section}',
647
+ 'interactive.edit.requirement.title': 'Edit Requirement',
648
+ 'interactive.edit.requirement.current': 'Current: {requirement}',
649
+ 'interactive.edit.requirement.prompt': 'Enter new text (or press Enter to keep current):',
650
+ 'interactive.requirement.renamed': '✓ Requirement renamed/updated',
651
+ 'interactive.requirement.not.found.rename': 'Could not find requirement to rename',
652
+ 'interactive.requirement.not.found.delete': 'Could not find requirement to delete',
653
+ 'interactive.requirement.not.found.recycle': 'Could not find requirement to recycle',
654
+ 'interactive.error.invalid.input': 'Invalid input. Please try again.',
655
+ 'interactive.description.prompt': 'Enter description (or press Enter to skip):',
656
+ 'interactive.adding.multiple': 'Adding multiple requirements:',
657
+ 'interactive.no.requirements.file': 'No requirements file found.',
658
+
659
+ // Provider and IDE Display Names
660
+ 'provider.groq.name': 'Groq (Cloud - Very Fast)',
661
+ 'provider.anthropic.name': 'Anthropic (Claude Sonnet 4)',
662
+ 'provider.bedrock.name': 'AWS Bedrock (Claude)',
663
+ 'provider.openai.name': 'OpenAI (GPT-4)',
664
+ 'provider.deepseek.name': 'DeepSeek',
665
+ 'provider.google.name': 'Google (Gemini)',
666
+ 'provider.openrouter.name': 'OpenRouter',
667
+ 'provider.ollama.name': 'Ollama (Local)',
668
+ 'provider.lmstudio.name': 'LM Studio (Local)',
669
+ 'ide.agent.cursor': 'Cursor IDE Agent',
670
+ 'ide.agent.windsurf': 'Windsurf IDE Agent',
671
+ 'ide.agent.vscode': 'VS Code (Continue) IDE Agent',
672
+ 'ide.agent.cline': 'Cline IDE Agent',
673
+ 'ide.agent.claude.code': 'Claude Code CLI',
674
+ 'ide.agent.antigravity': 'Google Antigravity IDE Agent'
675
+ };