-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgunmetal.json
More file actions
3499 lines (3499 loc) · 123 KB
/
Copy pathgunmetal.json
File metadata and controls
3499 lines (3499 loc) · 123 KB
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"desktop": {
"commitTo": "Commit to {branch}",
"summaryPlaceholder": "Summary (required)",
"descriptionPlaceholder": "Description",
"amend": "Amend last commit",
"committing": "Committing…",
"generateMessage": "Draft message",
"undoCommit": "Undo",
"push": "Push origin",
"pull": "Pull origin",
"fetch": "Fetch origin",
"publishBranch": "Deploy branch",
"publishRepository": "Deploy repo",
"fetching": "Fetching…",
"pushing": "Pushing…",
"pulling": "Pulling…",
"newBranch": "New branch",
"createBranch": "Create branch",
"deleteBranch": "Delete branch",
"renameBranch": "Rename branch",
"switchBranch": "Switch branch",
"currentBranch": "Active branch",
"branchName": "Branch name",
"noBranches": "No branches",
"changesTitle": "Changes",
"noLocalChanges": "No local changes",
"discardChanges": "Discard changes",
"discardAll": "Discard all changes",
"stashChanges": "Stash changes",
"undo": "Undo",
"cloneRepository": "Clone repo",
"addRepository": "Add repo",
"removeRepository": "Remove repo",
"repositorySettings": "Repo config",
"openInTerminal": "Open terminal",
"viewOnGitHub": "View on GitHub",
"historyTitle": "Log",
"noHistory": "No history",
"resolveConflicts": "Resolve conflicts",
"abortMerge": "Abort merge",
"continueRebase": "Continue rebase",
"abortRebase": "Abort rebase",
"ok": "OK",
"cancel": "Cancel",
"discard": "Discard",
"continue": "Continue",
"dismiss": "Dismiss"
},
"createProject": {
"title": "Register New Mech",
"subtitle": "Deploy a new project to your hangar",
"buttons": {
"reset": "Abort Launch",
"create": "Launch Mech",
"submit": "Sortie",
"cancel": "Cancel"
},
"demoMode": {
"label": "SIMULATOR MODE",
"title": "Simulation Environment - Read Only",
"description": "🎯 You're in simulator mode. Mobile suit deployment is disabled. Enlist as a pilot to access full hangar and launch your own missions."
},
"fields": {
"name": {
"label": "Project Name",
"placeholder": "Enter project identifier..."
},
"description": {
"label": "Project Description",
"placeholder": "Describe your research objectives..."
}
},
"validation": {
"nameRequired": "Project name is required",
"nameLength": "Name must be between 3 and 100 characters",
"descriptionLength": "Description must be less than 500 characters"
}
},
"tabs": {
"todos": "Mission Objectives",
"lessons": "Pilot's Log",
"quest": "Campaigns",
"project": "Mech",
"mindmap": "Mind Map",
"swarmdesk": "3D Lab",
"chat": "Lab Assistant",
"sessions": "Lab Sessions"
},
"validation": {
"nameRequired": "Project name is required",
"nameLength": "Name must be at least 2 characters",
"nameFormat": "Name can only contain letters, numbers, hyphens, and underscores",
"displayNameRequired": "Display name is required",
"descriptionRequired": "Project description is required",
"descriptionLength": "Description must be at least 10 characters",
"topicRequired": "Topic cannot be empty",
"topicTooLong": "Topic must be less than 200 characters",
"contentRequired": "Lesson content cannot be empty",
"contentTooLong": "Lesson must be less than 5000 characters",
"invalidLanguage": "Please select a valid language",
"required": "This field is required",
"minLength": "Minimum {min} characters required",
"maxLength": "Maximum {max} characters allowed",
"invalidFormat": "Invalid format",
"invalidEmail": "Invalid email address"
},
"common": {
"save": "Lock-On",
"cancel": "RTB",
"close": "Dock",
"edit": "Reconfigure",
"delete": "Destroy",
"reset": "Reset Systems",
"refresh": "Rescan",
"loading": "Launching...",
"error": "System Critical",
"success": "Mission complete!",
"failed": "Sortie failed",
"perPage": "per sortie",
"refreshNow": "Rescan Now",
"copyId": "Copy Unit ID",
"show": "Display",
"copy": "Clone Unit",
"confirm": "Confirm",
"back": "Back",
"next": "Next",
"previous": "Previous",
"search": "Search",
"filter": "Filter",
"sort": "Sort",
"clear": "Clear",
"apply": "Apply",
"export": "Export",
"import": "Import",
"viewAll": "View All",
"collapse": "Collapse",
"expand": "Expand",
"dismiss": "Dismiss",
"selectAll": "Select All",
"clearAll": "Clear Selection"
},
"forms": {
"name": "Project Name",
"displayName": "Display Name",
"description": "Description",
"type": "Project Type",
"visibility": "Visibility",
"repository": "Repository",
"language": "Language",
"framework": "Framework",
"priority": "Priority",
"status": "Status",
"notes": "Notes",
"ticket": "Ticket",
"project": "Operation"
},
"dashboard": {
"title": "🎯 Hangar Bay",
"projectStats": {
"title": "⚙️ Mech Statistics",
"collection": "mech registry",
"totalProjects": "Total Units",
"activeProjects": "Active Sorties",
"projectsWithCompleted": "Missions Complete",
"avgTasksPerProject": "Avg Objectives/Unit"
},
"priorityBreakdown": {
"title": "🎯 Combat Priority",
"pendingTasks": "Standby Missions",
"inReview": "Debriefing",
"inProgress": "Engaged",
"blocked": "Pinned Down",
"completed": "Mission Success",
"highPriority": "Code Red",
"mediumPriority": "Combat Ready",
"lowPriority": "Patrol"
},
"activityLog": {
"title": "📊 Sortie Log",
"collection": "mission_logs registry",
"description": "Monitor all mech deployments and mission status",
"updates": "Reconfigurations",
"creates": "New Units",
"deletes": "Unit Destroyed",
"completions": "RTB Confirmed",
"totalEntries": "Total Logs"
},
"recentlyCompleted": {
"title": "✅ Recent Victories"
},
"welcome": {
"message": "Welcome to Hangar Bay! Your mech command center.",
"description": "All systems green and ready for launch! This hangar displays when no mechs are deployed. Use cockpit controls to access missions, comms, units, and pilot resources.",
"title": "Welcome to Your Lab"
},
"quickActions": {
"openTodos": "📝 Mission Board",
"chatAssistant": "🤖 AI Copilot",
"activityLog": "📋 Sortie Log",
"projects": "📂 Mechs"
},
"filters": {
"allActivity": "Full SitRep",
"todosCreated": "Targets Acquired",
"todosUpdated": "Intel Revised",
"todosCompleted": "Targets Eliminated",
"todosDeleted": "Missions Scrubbed",
"projectsCreated": "Campaigns Launched",
"projectsUpdated": "Campaigns Revised",
"projectsDeleted": "Campaigns Aborted"
},
"unifiedView": "Theater Command",
"personalView": "Barracks View",
"showingAllDatabases": "Monitoring All Theaters",
"showingPersonalOnly": "Scanning Local Barracks Only",
"filteredByProject": "Locked on Campaign",
"noLogsFound": "Radio silence. No intel found.",
"tryChangingFilter": "Adjust your recon parameters.",
"startCreatingTodos": "Issue orders to mobilize.",
"failedToLoad": "Recon failed: {{error}}",
"changesMade": "Tactical Adjustments",
"completionNotes": "After Action Report",
"revertOperation": "Countermand {{operation}}",
"revertSuccess": "Successfully countermanded {{operation}}",
"revertFailed": "Countermand failed: {{error}}",
"revertDeleteNotSupported": "Cannot recover scrubbed ordnance.",
"revertNotSupported": "HQ denies countermand for {{operation}}.",
"confirmRevert": "Confirm Countermand",
"confirmRevertMessage": "Authorize countermand of {{operation}} for {{description}}?",
"confirmRevertAction": "Execute Countermand",
"operationType": "Directive",
"taskDescription": "Mission Specs",
"descriptions": {
"projectCreated": "Campaign mobilized: {{projectName}}",
"projectUpdated": "Campaign revised: {{projectName}}",
"projectDeleted": "Campaign aborted: {{projectName}}",
"projectModified": "Campaign altered: {{projectName}}",
"unknownTask": "Classified objective"
},
"showingPageStats": "Viewing sitrep {{currentPage}} of {{totalPages}} ({{totalCount}} logs)",
"autoRefreshingInterval": "Recon auto-refreshing every 30 seconds",
"stats": {
"totalProjects": "Arsenal Capacity",
"activeProjects": "Ops Underway",
"completedTodos": "Targets Neutralized",
"archivedProjects": "Mothballed Campaigns"
},
"recentActivity": "Recent Activity"
},
"activityLog": {
"title": "📋 Sortie Log",
"autoRefreshOn": "Auto-scan ON",
"autoRefreshOff": "Auto-scan OFF",
"filters": {
"allActivity": "All Activity",
"todosCreated": "Missions Briefed",
"todosUpdated": "Missions Updated",
"todosCompleted": "Missions Complete",
"todosDeleted": "Missions Aborted",
"projectsCreated": "Units Deployed",
"projectsUpdated": "Units Modified",
"projectsDeleted": "Units Destroyed",
"all": "All Activity",
"create": "Created",
"update": "Updated",
"complete": "Completed",
"delete": "Deleted"
},
"unifiedView": "🌐 Fleet View",
"personalView": "👤 Pilot View",
"showingAllDatabases": "Showing logs from all mechs",
"showingPersonalOnly": "Showing only your pilot logs",
"filteredByProject": "Filtered by unit:",
"noLogsFound": "No sortie logs found",
"tryChangingFilter": "Try changing the filter",
"startCreatingTodos": "Launch your first mission to see activity",
"failedToLoad": "Failed to load sortie logs: {{error}}",
"changesMade": "Changes logged:",
"completionNotes": "Mission notes:",
"revertOperation": "Undo {{operation}}",
"revertSuccess": "Successfully reversed {{operation}} operation",
"revertFailed": "Revert operation failed: {{error}}",
"revertDeleteNotSupported": "Cannot restore destroyed unit - mech lost",
"revertNotSupported": "Revert not supported for {{operation}} operation",
"descriptions": {
"projectCreated": "Mech \"{{projectName}}\" was registered",
"projectUpdated": "Mech \"{{projectName}}\" was reconfigured",
"projectDeleted": "Mech \"{{projectName}}\" was destroyed",
"projectModified": "Mech \"{{projectName}}\" was modified",
"unknownTask": "Unknown mission"
},
"showingPageStats": "Showing page {{currentPage}} of {{totalPages}} ({{totalCount}} total sorties)",
"autoRefreshingInterval": " • Auto-scanning every 30s",
"confirmRevert": "Confirm Revert Operation",
"confirmRevertMessage": "Are you sure you want to revert this {{operation}} operation for: {{description}}?",
"confirmRevertAction": "Revert Operation",
"operationType": "Operation Type",
"taskDescription": "Task Description",
"emptyState": {
"title": "No activity yet",
"message": "Start working on tasks to see activity here"
},
"events": {
"created": "created",
"updated": "updated",
"completed": "completed",
"deleted": "deleted"
},
"ago": "ago",
"stats": {
"total": "Total Events",
"today": "Today",
"thisWeek": "This Week"
}
},
"lessonsLearned": {
"title": "🎓 Pilot's Training Data",
"refreshLessons": "Resync Data",
"addLesson": "Log Combat Data",
"searchPlaceholder": "Search combat data, tactics, or tags...",
"languages": {
"allLanguages": "All Languages",
"javascript": "JavaScript",
"typescript": "TypeScript",
"python": "Python",
"rust": "Rust",
"go": "Go",
"general": "General"
},
"filters": {
"allLessons": "All Lessons",
"bookmarked": "Bookmarked",
"recent": "Recent (7 days)"
},
"emptyState": {
"noMatching": "No Matching Combat Data",
"vaultEmpty": "Training Database Empty!",
"noMatchSearch": "No combat data matches \"{{searchTerm}}\". Try adjusting your search or filters.",
"noMatchFilters": "No training data found with current filters. Try broadening your criteria.",
"startDocumenting": "Start logging combat experience! Every mission completed and enemy defeated is valuable training data."
},
"createFirstLesson": "Log First Combat Experience",
"actions": {
"starred": "Starred",
"addStar": "Add Star"
},
"pagination": {
"showingRange": "Showing {{start}}-{{end}} of {{total}} lessons"
},
"dialog": {
"editTitle": "🎓 Edit Combat Data",
"addTitle": "🎓 Log New Combat Experience",
"topicLabel": "Combat Scenario",
"lessonLabel": "Tactical Analysis",
"languageLabel": "System Type",
"tagsLabel": "Combat Tags (comma separated)",
"tagsPlaceholder": "mobile-suit, beam-weapon, newtype",
"databaseLabel": "Save to Database",
"personalDatabase": "👤 Personal Log",
"sharedDatabase": "🌐 Fleet Database (swarmonomicon)",
"updateLesson": "Update Combat Data",
"createLesson": "Log Combat Data"
},
"failedToLoad": "Failed to load combat data: {{error}}",
"confirmDelete": "Are you sure you want to delete this combat log?"
},
"todoManagement": {
"title": "📝 Mission Command"
},
"app": {
"titleShort": "Madness Interactive",
"titleLong": "Mech Operations Center"
},
"panels": {
"todos": "📝 Missions",
"logs": "📋 Sortie Logs",
"aiChat": "🤖 AI Copilot",
"create": "➕ Deploy",
"projects": "📂 Mechs",
"mindMap": "🗺️ Tactical Map",
"swarmDesk": "🎪 SwarmDesk",
"lessons": "🎓 Combat Data",
"settings": "⚙️ Cockpit Config",
"insights": "📊 Insights",
"labMaintenance": "🧹 Field Cleanup",
"workshop": "🔧 Maintenance Bay",
"chatAudit": "🎯 Audit",
"dashboard": "🏠 Command Center",
"account": "👤 Operator Profile",
"queue": "📥 Mission Queue",
"inventory": "🗄️ Arsenal",
"quests": "⚔️ Quests",
"chronicle": "📜 Chronicle"
},
"mobileNavigation": {
"goBack": "Fall Back",
"toggleExtended": "Toggle Tactical View",
"startVoice": "Open Comms",
"stopVoice": "Radio Silence"
},
"labMaintenance": {
"title": "Field Debrief & Cleanup",
"tabs": {
"orphaned": "Unassigned Assets",
"completed": "Decommissioned",
"consolidate": "Tactical Overview",
"duplicates": "Duplicates"
},
"selectAll": "Select All Assets",
"clearSelection": "Stand Down",
"targetProject": "Redeploy to sector...",
"reassign": "Redeploy",
"reassignSelected": "Redeploy unassigned assets to target sector",
"reopen": "Reactivate",
"reopenSelected": "Reactivate decommissioned assets for duty",
"delete": "Purge",
"deleteSelected": "Purge selected assets from the roster",
"selectProjectFirst": "Designate target sector first",
"todosUpdated": "assets processed",
"noOrphans": "No unassigned assets. All operatives are sector-deployed.",
"noCompleted": "No decommissioned assets found in the archive.",
"consolidateDescription": "Tactical overview of asset allocation and sector readiness.",
"orphanedProjectsLabel": "Disbanded Sectors With Remaining Assets",
"quickStats": "Situation Report",
"orphaned": "Unassigned",
"completed": "Decommissioned",
"deletedProjects": "Disbanded Sectors",
"activeProjects": "Active Sectors",
"duplicates": {
"title": "Similar Todo Detection",
"description": "Find and consolidate near-duplicate todos across projects.",
"threshold": "Similarity",
"scan": "Scan",
"scanning": "Scanning...",
"noResults": "No similar todos found at this threshold. Try lowering the sensitivity.",
"groupsFound": "groups",
"potentialDuplicates": "todos",
"analyzeAI": "Analyze with AI",
"analyzing": "Analyzing...",
"aiComplete": "AI analysis complete! Review recommendations below.",
"aiUnavailable": "AI analysis is temporarily unavailable.",
"recommendations": "AI Recommendations",
"keep": "Keep",
"merge": "Merge",
"deleteLabel": "Remove",
"suggestedDescription": "Suggested",
"reasoning": "Reasoning",
"apply": "Apply",
"applyAll": "Apply All",
"applied": "Recommendation applied successfully",
"selectGroupsFirst": "Select todos from groups to analyze"
},
"quickTags": {
"title": "Loadout Tags:",
"fromCache": "from armory",
"cachedStale": "needs reload",
"refreshCache": "Restock armory",
"staged": "rounds chambered",
"noCachedTags": "Armory empty",
"clear": "Eject",
"applyToSelected": "Mark {count} targets",
"selectTodosFirst": "Lock targets first",
"aiSuggest": "Tactical Analysis",
"aiSuggesting": "Targeting..."
},
"sessionResolved": "resolved this session"
},
"demo": {
"label": "DEMO - Read Only"
},
"menu": {
"documentation": "Documentation",
"replayTutorial": "Replay Briefing",
"github": "GitHub",
"themeGallery": "Theme Gallery",
"logout": "Logout",
"userManagement": "User Management",
"support": "Comms Link",
"lessonRefiner": "Lesson Refiner"
},
"notifications": {
"aiInsightsGenerated": "🧠 AI tactical analysis complete! Check enhanced mission brief.",
"todoMarkedForReview": "👁️ Mission marked for debriefing!",
"todoCompleted": "✅ Mission complete! RTB confirmed!",
"taskCreated": "🎉 New mission briefed successfully!",
"projectCreated": "🚀 Mobile suit registered to hangar!",
"aiConfigured": "✅ AI advisor deployed successfully!",
"todoCreated": "🎯 New objective identified and logged.",
"settingsSaved": "🛡️ Perimeter protocols updated.",
"exportCompleted": "📡 Tactical data extracted to external sector.",
"importCompleted": "📥 External intel integrated into database.",
"aiInsightsApplied": "Tactical updates deployed!",
"aiInsightsRequirePaid": "Advanced intel requires Command Clearance (Paid Account)"
},
"projectNavigator": {
"title": "🚀 MOBILE SUIT SELECTOR",
"subtitle": "Choose your mech • Deploy to mission zones",
"cacheStatus": "🏪 Cached telemetry • Last sync: {{time}}",
"keyboardShortcuts": "⌨️ Arrow keys: Navigate • Enter/Space: Launch • R: Rescan • M: Main Hangar • 1-9: Quick deploy",
"manageTooltip": {
"admin": "Manage Fleet (Commander)",
"personal": "Manage Personal Units"
},
"refreshTooltip": "Rescan Mechs",
"mainSwarmDeskTooltip": "Return to Main Hangar",
"loading": {
"title": "🔍 Scanning Mech Bay...",
"subtitle": "Loading mission data and unit status"
},
"stats": {
"pending": "on standby",
"review": "debrief"
},
"activity": {
"title": "Recent Sorties",
"noActivity": "No recent sortie activity"
},
"enterButton": {
"selected": "🎯 LOCKED",
"enter": "🔫 DEPLOY",
"helpText": "Press Enter or #{{number}}"
},
"createCta": {
"title": "Deploy New Operation",
"subtitle": "Tactical assets available — authorize a new mission"
},
"deleteDialog": {
"title": "Delete Project",
"confirm": "Are you sure you want to delete project \"{{projectName}}\"?",
"graveyardNote": "This will move the project to the graveyard. You can restore it later if needed.",
"hasTodos": "This project has {{count}} todo(s). Would you like to relocate them?",
"relocateLabel": "Relocate todos to another project",
"selectDestination": "Select destination project",
"cancel": "Cancel",
"deleteButton": "Delete Project"
},
"viewInSwarmDesk": "View in SwarmDesk"
},
"projectSwarmdesk": {
"title": "🎪 {{projectName}}",
"stats": {
"pendingTasks": "{{count}} on standby",
"completedTasks": "{{count}} complete"
},
"loading": "🎪 Deploying to {{projectId}} Zone...",
"controls": "🎮 WASD: Pilot | Mouse Drag: Look | ESC: RTB",
"workstation": {
"todoHint": "📝 Click to view mission briefing",
"projectHint": "🎪 Click to view unit specs"
},
"statsPanel": {
"title": "📊 Unit Status",
"totalTasks": "Total Missions",
"pending": "Standby",
"completed": "Complete",
"review": "Review",
"blocked": "Blocked"
},
"reviewTab": {
"title": "Review Queue",
"approveButton": "Approve",
"requestChanges": "Request Changes",
"returnToProgress": "Return to Progress",
"emptyState": "No items in review"
},
"todoPanel": {
"title": "Todo Queue",
"loading": "Querying todos…",
"create": "Open Todo",
"empty": "Board clear — no open todos."
},
"error": "Failed to load ops environment: {{error}}",
"exitButton": "Exit Environment"
},
"projectTab": {
"title": "Project Setup",
"sections": {
"basicInfo": "Basic Information",
"configuration": "Configuration",
"technicalDetails": "Technical Details (Optional)"
},
"projectTypes": {
"web": "Web Application",
"mobile": "Mobile App",
"desktop": "Desktop Application",
"library": "Library/Package",
"api": "API/Service",
"general": "General Project"
},
"buttons": {
"creating": "Creating...",
"demoMode": "Demo Mode",
"createProject": "CREATE PROJECT"
},
"deleteDialog": {
"title": "Delete Project",
"message": "Delete project \"{{projectName}}\"? This cannot be undone.",
"confirm": "Delete",
"cancel": "Cancel"
},
"overview": {
"description": "No description on record",
"created": "Createed",
"todos": "Open Todos",
"lessons": "Lesson Entries",
"noRepository": "No repository linked",
"completedTodos": "Completed Todos",
"updated": "Last Updated"
},
"actions": {
"editProject": "Reconfigure Project",
"deleteProject": "Delete Project",
"openSwarmDesk": "Open SwarmDesk"
},
"noActiveProject": "No active project",
"selectProject": "Select a project from the navigator"
},
"todoTab": {
"project": {
"label": "Project",
"default": "Default"
},
"sections": {
"metadata": "Metadata (Optional)"
}
},
"todoList": {
"filters": {
"allTasks": "All Missions",
"pending": "Standby",
"review": "Debriefing",
"completed": "Complete",
"all": "All Tasks",
"inProgress": "In Progress",
"blocked": "Blocked",
"in_progress": "In Progress"
},
"sort": {
"newest": "Latest Briefing",
"oldest": "Oldest Briefing",
"priority": "Combat Priority",
"madness": "Random Sortie",
"alphabetical": "Alphabetical",
"updated": "Recently Updated"
},
"search": {
"placeholder": "Search missions...",
"clear": "Clear Query",
"noResults": "No todos match this query"
},
"project": {
"label": "Mech",
"allProjects": "All Units ({{count}})",
"clearFilter": "Clear Filter",
"clearAll": "Clear all",
"select": "Assign Project",
"none": "No project assigned",
"change": "Reassign"
},
"pagination": {
"show": "Display",
"perPage": "per sortie",
"all": "All",
"results": "results",
"page": "Page {{current}} of {{total}}",
"next": "Next",
"prev": "Previous",
"showing": "Showing {{start}}-{{end}} of {{total}}"
},
"results": {
"showing": "Showing {{start}}-{{end}} of {{total}} missions",
"matching": " matching \"{{searchText}}\"",
"filteringByProject": "Filtering by unit: <strong>{{project}}</strong>",
"filteringByProjects": "Filtering by {{count}} project(s)"
},
"empty": {
"noMatching": "No Matching Missions",
"workshopClear": "No Active Missions",
"noMatchingDescription": "No missions match \"{{searchText}}\". Try adjusting search parameters.",
"workshopClearDescription": "All quiet. No active missions. Mobile suits on standby.",
"title": "Queue clear",
"message": "No open todos. Create a new todo to begin.",
"filtered": "No matching todos",
"noResults": "No todos match the current filter."
},
"buttons": {
"refresh": "Rescan",
"export": "Export Data",
"saving": "Saving...",
"saveChanges": "Lock Changes",
"discard": "Abort",
"complete": "Mission Complete",
"edit": "Reconfigure",
"copyId": "Copy Mission ID",
"copyJiraCmd": "Copy Jira Cmd",
"share": "Share",
"review": "Debrief",
"aiInsights": "AI Analysis",
"openInWarp": "Deploy to Warp",
"addToQueue": "Queue for Ops",
"topOfQueue": "Immediate Deployment",
"clone": "Duplicate",
"view": "View",
"move": "Reassign",
"delete": "Delete",
"flag": "Flag"
},
"fullEdit": {
"modeTitle": "Full Edit Mode"
},
"menu": {
"editTask": "Modify Mission",
"copyId": "Copy Mission ID",
"copyJiraCmd": "Copy Jira Cmd",
"share": "Share",
"openInWarp": "Deploy to Warp",
"deleteTask": "Abort Mission"
},
"dialog": {
"completeTitle": "Mission Complete: {{description}}",
"completeDescription": "Add mission debrief notes (e.g., tactics used, time deployed, obstacles neutralized, etc.)",
"completePlaceholder": "e.g., Target eliminated using beam rifle. 2 hour deployment. Minor armor damage from mech combat.",
"cancel": "Abort",
"completeTask": "Confirm RTB",
"exportTitle": "Export Mission Data",
"exportDescription": "Exporting {{count}} mission records",
"exportFilename": "Data File Name",
"exportFilenameHelp": "Combat data export filename (extension added automatically)",
"exportFormat": "Data Format",
"exportButton": "Export Data",
"formatJSON": "JSON - Structured Data",
"formatJSONDesc": "Complete todo data in JSON format for reimport",
"formatCSV": "CSV - Spreadsheet",
"formatCSVDesc": "Spreadsheet-compatible format for Excel or Google Sheets",
"formatMarkdown": "Markdown - Documentation",
"formatMarkdownDesc": "Human-readable format for documentation",
"formatHTML": "HTML - Web Page",
"formatHTMLDesc": "Styled web page with embedded CSS for browser viewing",
"formatJira": "Jira/Slack Commands",
"formatJiraDesc": "Ready-to-paste Slack commands for creating Jira tickets",
"formatVariant": "Format Variant",
"variantPretty": "Pretty (Readable)",
"variantMinified": "Minified (Compact)",
"variantJSONL": "JSON Lines (Stream)",
"variantStandard": "Standard",
"variantExcel": "Excel-Optimized",
"variantTable": "Table View",
"selectFields": "Select Fields",
"customizeFields": "Customize Field Names",
"renameFields": "Rename Fields",
"calculatedFields": "Calculated Fields",
"fieldName": "Field Name",
"addCalculatedField": "Add Calculated Field",
"formula": {
"ageInDays": "Age (days)",
"daysSinceUpdate": "Days since update",
"charCount": "Character count",
"tokenEstimate": "Token estimate",
"timeToComplete": "Time to complete"
},
"selectAll": "All",
"selectNone": "None",
"advancedFilters": "Advanced Filters",
"dateRange": "Date Range",
"projectScope": "Projects",
"startDate": "From",
"endDate": "To",
"priorityFilter": "Priority",
"statusFilter": "Status"
},
"priority": {
"high": "High",
"medium": "Medium",
"low": "Low",
"critical": "Critical",
"none": "Unset"
},
"status": {
"pending": "Pending",
"in_progress": "In Progress",
"completed": "Completed",
"initial": "Initial",
"blocked": "Blocked",
"review": "Review",
"inProgress": "In Progress"
},
"fields": {
"id": "ID",
"description": "Description",
"project": "Project",
"priority": "Priority",
"status": "Status",
"target": "Target",
"created": "Created",
"updated": "Updated",
"metadata": "Metadata",
"source": "Source",
"notes": "Notes",
"ticket": "Ticket",
"completed_at": "Completed At",
"completed_by": "Completed By",
"completion_comment": "Completion Comment",
"duration": "Duration",
"duration_sec": "Duration (seconds)",
"tags": "Tags",
"complexity": "Complexity",
"confidence": "Confidence",
"phase": "Phase",
"epic": "Epic",
"blockers": "Blockers",
"description_preview": "Briefing Snippet",
"created_at": "Stamped At",
"updated_at": "Last Revised"
},
"validation": {
"descriptionRequired": "Mission brief cannot be empty",
"descriptionTooLong": "Mission brief must be less than 500 characters",
"invalidProject": "Please select a valid mech"
},
"error": {
"failedToLoad": "Failed to load mission data",
"unknownError": "System error",
"malfunctionMessage": "Mobile suit systems encountered critical error. Rescan or check network link.",
"moveToPersonalFailed": "Move to personal failed"
},
"placeholders": {
"setStatus": "Set mission status...",
"editDescription": "Click to edit mission brief...",
"selectProject": "Select mech...",
"setPriority": "Set combat priority..."
},
"tooltip": {
"unsavedChanges": "Unsaved tactical data",
"moveToPersonal": "Claim shared task to personal"
},
"labels": {
"readOnly": "🔒 Locked",
"review": "DEBRIEF",
"notes": "Field Notes"
},
"aria": {
"todoActions": "Todo actions"
},
"title": "Laboratory Tasks",
"addTodo": "Add Task",
"emptyState": {
"title": "No tasks yet",
"message": "Create your first laboratory task to get started",
"action": "Create Task",
"noTasks": "No tasks found",
"createFirst": "Create your first task to get started"
},
"actions": {
"markComplete": "Mark Complete",
"markPending": "Mark Pending",
"edit": "Edit Task",
"delete": "Delete Task",
"archive": "Archive",
"sendToReview": "Send to Review",
"reopen": "Reopen",
"prioritize": "Prioritize",
"unarchive": "Restore"
},
"timestamps": {
"due": "Due",
"created": "Opened",
"completed": "Completed",
"updated": "Updated"
},
"aiEnhancing": "Running diagnostics…",
"dueDate": {
"none": "No due date",
"set": "Set Due Date",
"today": "Due today",
"tomorrow": "Due tomorrow",
"overdue": "Overdue",
"change": "Adjust Due Date"
},
"notes": {
"add": "Add Note",
"edit": "Edit Note",
"none": "No notes on record"
},
"viewDetails": "View Details",
"moveDialog": {
"cancel": "Cancel",
"selectProject": "Select destination project",
"title": "Reassign Todo",
"confirm": "Reassign"
},
"createFirst": "Open your first todo",
"spellsAvailable": "AIs available",
"loadingMore": "Pulling more todos…",
"selected": "{{count}} selected",
"completionDialog": {
"notesLabel": "Resolution notes (optional)",
"title": "Complete Todo",
"cancel": "Cancel",
"confirm": "Complete"
},
"errorLoading": "Query failed: {{error}}",
"aiEnhance": "AI Insights",
"expandAll": "Expand All",
"bulkActions": {
"complete": "Complete Selected",
"move": "Reassign Selected",
"export": "Export",
"delete": "Delete Selected"
},
"selectAll": "Select All",
"tags": {
"none": "No tags",
"remove": "Remove Tag",
"add": "Add Tag"
},
"noTasks": "Board is clear — no open todos.",
"assignee": {
"none": "Unassigned",
"change": "Reassign",
"select": "Assign User"
},
"successMove": "Todo reassigned",
"dragHint": "Drag to reorder queue",
"deselectAll": "Deselect All",
"loadMore": "Load More",
"errorDeleting": "Delete failed: {{error}}",
"confirmDelete": {
"title": "Delete Todo",
"cancel": "Cancel",
"message": "Delete \"{{title}}\"? This cannot be undone.",
"confirm": "Delete"
},
"dropHere": "Drop here",
"successComplete": "Todo resolved",
"hideDetails": "Hide Details",
"count": "{{count}} todo(s)",
"collapseAll": "Collapse All",
"successDelete": "Todo decommissioned",
"loading": "Loading…",
"errorUpdating": "Update failed: {{error}}"
},
"todoEdit": {
"loading": {
"text": "Loading mission data..."
},
"header": {
"editTodo": "Modify Mission",
"createNewTodo": "Create New Mission"
},
"buttons": {
"backToDashboard": "RTB to Hangar"
},
"error": {
"todoNotFound": "Mission not found. May have been aborted or ID is incorrect."
},
"workshop": {
"modeTitle": "🔧 Hangar Mode - Full Configuration Access"
},
"tips": {
"title": "💡 Configuration Tips:",
"description": "• Click fields for quick edit • Full form via Edit • ESC to abort • Ctrl+Enter to lock • AI enhancement available"
},
"title": "Edit Todo",
"fields": {
"dueDate": "Due Date",
"priority": "Priority",
"assignee": "Assignee",
"notes": "Notes",
"description": "Todo Description",
"tags": "Tags",
"status": "Status",
"project": "Project"
},
"cancel": "Cancel",
"saving": "Saveting…",
"save": "Save",
"delete": "Delete",
"createTitle": "Open New Todo"
},
"settings": {
"title": "⚙️ Settings",
"confirmReset": "Are you sure you want to reset all settings to their default values? This action cannot be undone.",
"messages": {
"saveSuccess": "Settings saved successfully!",
"saveError": "Failed to save settings"
},
"export": {
"starting": "Starting export...",
"success": "Export completed! Downloaded {{todoCount}} todos, {{projectCount}} projects, and settings.",
"error": "Export failed: {{error}}"
},
"import": {
"starting": "Starting import...",
"confirmDialog": "Import Preview:\n\n{{todoCount}} todos, {{projectCount}} projects, {{settingsCount}} settings categories\n\nConflicts detected:\n{{conflicts}}\n\nProceed with import?",
"success": "Import completed! Imported {{importedCount}} items. {{skippedCount}} items skipped.",
"error": "Import failed: {{error}}",
"fileDialogError": "Failed to open file dialog"
},
"todoToolbar": {