-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathen.json
More file actions
1363 lines (1363 loc) · 54.4 KB
/
en.json
File metadata and controls
1363 lines (1363 loc) · 54.4 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
{
"toolbar": {
"filters": "Filters",
"toggleFilterPanel": "Toggle structured filter panel",
"filterConditions": "Filter conditions",
"activeOf": "{{active}} of {{total}} active",
"noFilters": "No filters —",
"addFirstFilter": "add the first filter",
"noActiveFilters": "no active filters",
"closePanelEsc": "Close filter panel (ESC)",
"unset": "Unset",
"sql": "SQL",
"addFilter": "Add filter",
"applyAll": "Apply All",
"apply": "Apply",
"applied": "Applied",
"switchToSql": "Switch to SQL WHERE input",
"duplicateFilter": "Duplicate filter",
"removeFilter": "Remove filter",
"deselectFromApplyAll": "Deselect from Apply All",
"selectForApplyAll": "Select for Apply All",
"valuePlaceholder": "value",
"fromPlaceholder": "from",
"toPlaceholder": "to"
},
"common": {
"save": "Save",
"close": "Close",
"cancel": "Cancel",
"delete": "Delete",
"edit": "Edit",
"clone": "Clone",
"connect": "Connect",
"disconnect": "Disconnect",
"loading": "Loading...",
"search": "Search...",
"noResults": "No results found",
"error": "Error",
"success": "Success",
"ok": "OK"
},
"sidebar": {
"connections": "Connections",
"settings": "Settings",
"savedQueries": "Saved Queries",
"tables": "Tables",
"newConsole": "New Console",
"newVisualQuery": "New Visual Query",
"refresh": "Refresh",
"refreshTables": "Refresh Tables",
"refreshViews": "Refresh Views",
"createView": "Create New View",
"views": "Views",
"noViews": "No views found",
"editView": "Edit View",
"viewDefinition": "View Definition",
"dropView": "Drop View",
"dropViewConfirm": "Are you sure you want to drop view \"{{view}}\"?",
"failGetViewDefinition": "Failed to get view definition: ",
"failDropView": "Failed to drop view: ",
"explorer": "Explorer",
"sqlEditor": "SQL Editor",
"loadingSchema": "Loading schema...",
"noSavedQueries": "No saved queries",
"searchFavorites": "Search favorites...",
"noFavoritesSearchResults": "No favorites match your search",
"execute": "Execute",
"edit": "Edit",
"delete": "Delete",
"confirmDeleteQuery": "Are you sure you want to delete query \"{{name}}\"?",
"confirmDeleteTitle": "Delete Query",
"noTables": "No tables found",
"columns": "columns",
"keys": "keys",
"foreignKeys": "foreign keys",
"indexes": "indexes",
"deleteColumn": "Delete Column",
"deleteColumnConfirm": "Are you sure you want to delete column \"{{column}}\" from table \"{{table}}\"?\n\nWARNING: This will permanently delete all data in this column. This action cannot be undone.",
"failDeleteColumn": "Failed to delete column: ",
"failDeleteIndex": "Failed to delete index: ",
"modifyColumn": "Modify Column",
"copyName": "Copy Name",
"openInEditor": "Open in Editor",
"closePanel": "Close panel",
"setAsActive": "Set as Active",
"deleteTable": "Delete Table",
"deleteTableConfirm": "Are you sure you want to delete table \"{{table}}\"?",
"failDeleteTable": "Failed to delete table: ",
"showData": "Show Data",
"countRows": "Count Rows",
"viewSchema": "View Schema",
"viewERDiagram": "View ER Diagram",
"generateSQL": "Generate SQL",
"addColumn": "Add Column",
"addIndex": "Add Index",
"deleteIndex": "Delete Index",
"deleteIndexConfirm": "Delete index \"{{name}}\"?",
"addFk": "Add Foreign Key",
"deleteFk": "Delete FK",
"deleteFkConfirm": "Delete foreign key \"{{name}}\"?",
"sqliteFkError": "SQLite does not support dropping FKs via ALTER TABLE.",
"mcpServer": "MCP Server",
"routines": "Routines",
"functions": "Functions",
"procedures": "Procedures",
"noRoutines": "No routines found",
"refreshRoutines": "Refresh Routines",
"objectSummary": "Objects",
"databases": "Databases",
"failGetRoutineDefinition": "Failed to get routine definition: ",
"schemas": "Schemas",
"noSchemas": "No schemas found",
"loadingSchemas": "Loading schemas...",
"expandExplorer": "Expand Explorer",
"selectSchemas": "Select Schemas",
"selectSchemasHint": "Select schemas to load:",
"selectAll": "Select All",
"deselectAll": "Deselect All",
"confirmSelection": "Confirm",
"editSchemas": "Edit Schemas",
"selectConnection": "Select Connection",
"disconnect": "Disconnect",
"switchConnection": "Switch Connection",
"noOtherConnections": "No other connections",
"openConnections": "Open",
"availableConnections": "Available",
"splitVertical": "Split Vertical",
"splitHorizontal": "Split Horizontal",
"separateConnections": "Separate Connections",
"splitGroup": "Split Group",
"filterTables": "Filter tables...",
"noTablesMatch": "No tables match",
"filterDatabases": "Filter databases...",
"manageDatabases": "Manage Databases",
"structure": "Structure",
"favorites": "Favorites",
"queryHistory": "History",
"noQueryHistory": "No query history",
"noHistorySearchResults": "No queries match your search",
"searchHistory": "Search history...",
"clearAllHistory": "Clear All History",
"confirmDeleteHistoryEntry": "Are you sure you want to delete this query from history?",
"confirmClearHistory": "Are you sure you want to clear all query history for this connection?",
"confirmClearHistoryTitle": "Clear Query History",
"addToFavorites": "Add to Favorites",
"insertToEditor": "Insert to Editor",
"openInNewTab": "Open in New Tab",
"copyQuery": "Copy Query",
"runQuery": "Run Query",
"dateGroupToday": "Today",
"dateGroupYesterday": "Yesterday",
"dateGroupThisWeek": "This Week",
"dateGroupThisMonth": "This Month",
"dateGroupOlder": "Older"
},
"mcp": {
"title": "MCP Server Integration",
"subtitle": "Connect Tabularis to Claude Desktop, Cursor, and more",
"description": "The Model Context Protocol (MCP) allows AI assistants (like Claude) to connect to your local tools. Tabularis exposes an MCP server that lets AI read your database schema and execute queries safely.",
"checking": "Checking configuration...",
"configPath": "Config File",
"notFound": "Config file not found (create manually)",
"installed": "Installed",
"install": "Install Config",
"manualConfig": "MANUAL CONFIGURATION",
"manualText": "Add this to your client config file manually if automatic install fails.",
"successTitle": "Success",
"successMsg": "Configuration installed successfully for {{client}}! Restart the app to apply.",
"errorTitle": "Installation Failed",
"clients": "AI CLIENTS",
"manualCommand": "MANUAL COMMAND",
"manualCommandText": "Run this command in your terminal, then restart Claude Code.",
"tabs": {
"setup": "Setup",
"activity": "Activity",
"safety": "Safety"
},
"safety": {
"readOnlyTitle": "Read-only mode",
"readOnlyDefault": "Make all MCP queries read-only",
"readOnlyDefaultDesc": "Block any non-SELECT statement coming through MCP unless the connection is explicitly allowed below.",
"readOnlyList": "Read-only connections",
"readOnlyListDesc": "These connections will reject writes from MCP. Other connections behave normally.",
"allowList": "Allow writes from MCP",
"allowListDesc": "All other connections stay read-only. Only the connections checked here may execute writes.",
"approvalTitle": "Approval gate",
"approvalMode": "Approval required",
"approvalModeDesc": "Pause writes (or every query) and ask the user to approve them inside Tabularis before they hit the database.",
"modeOff": "Off",
"modeWritesOnly": "Writes only",
"modeAll": "All queries",
"approvalTimeout": "Timeout",
"approvalTimeoutDesc": "How long the MCP subprocess will wait for the user's decision before failing the request.",
"preflightExplain": "Pre-flight EXPLAIN",
"preflightExplainDesc": "Run an EXPLAIN against the query before showing the approval modal so the user sees the execution plan."
}
},
"connections": {
"title": "Connections",
"addConnection": "Add Connection",
"noConnections": "No active connections",
"createFirst": "Create your first connection",
"active": "Active",
"sshEnabled": "SSH Tunnel Enabled",
"disconnect": "Disconnect",
"connect": "Connect",
"edit": "Edit",
"duplicate": "Duplicate",
"delete": "Delete",
"clone": "Clone",
"confirmDelete": "Are you sure you want to delete this connection?",
"deleteTitle": "Confirm Delete",
"failConnect": "Failed to connect to {{name}}. Please check your settings or ensuring the database is running.",
"failDisconnect": "Failed to disconnect from database",
"failDuplicate": "Failed to duplicate connection",
"connecting": "Connecting...",
"open": "Open",
"pluginDisabled": "Plugin disabled",
"connectionCount": "{{count}} connection(s)",
"noConnectionsHint": "Create your first connection to get started.",
"searchPlaceholder": "Search connections...",
"noSearchResults": "No connections match \"{{query}}\"",
"gridView": "Grid view",
"listView": "List view"
},
"settings": {
"title": "Settings",
"general": "General",
"info": "Info",
"dataEditor": "Data Editor",
"pageSize": "Result Page Size (Limit)",
"pageSizeDesc": "Limits the number of rows fetched per query to prevent performance issues. Set to 0 to disable (not recommended).",
"rows": "rows",
"copyFormat": "Default Copy Format",
"copyFormatDesc": "Choose the default format when copying rows with Ctrl+C / Cmd+C.",
"csvDelimiter": "CSV Delimiter",
"csvDelimiterDesc": "Choose the default delimiter character used when copying or exporting rows as CSV.",
"delimiterComma": "Comma (,)",
"delimiterSemicolon": "Semicolon (;)",
"delimiterTab": "Tab",
"delimiterPipe": "Pipe (|)",
"appearance": "Appearance",
"localization": "Localization",
"themeSelection": "Theme Selection",
"fontFamily": "Font Family",
"fonts": {
"system": "System Default",
"systemDesc": "Uses your OS default font",
"custom": "Custom Font",
"customPlaceholder": "e.g., Comic Sans MS",
"enterFontName": "Enter font name above"
},
"fontSize": "Font Size",
"fontSizeLabel": "Font Size",
"fontSizeDesc": "Adjust the base font size used throughout the application (10-20px).",
"preview": "Preview",
"fontPreviewText": "The quick brown fox jumps over the lazy dog",
"appearance_general": "General",
"appearance_sqlEditor": "SQL Editor",
"appearance_editorTheme": "Editor Theme",
"appearance_editorThemeDesc": "Choose an independent theme for the SQL editor, or keep it in sync with the app theme.",
"appearance_sameAsApp": "Same as App",
"appearance_editorFontFamily": "Editor Font Family",
"appearance_editorFontSize": "Editor Font Size",
"appearance_editorLineHeight": "Line Height",
"appearance_editorTabSize": "Tab Size",
"appearance_editorWordWrap": "Word Wrap",
"appearance_editorWordWrapDesc": "Wrap long lines in the editor instead of scrolling horizontally.",
"appearance_editorShowLineNumbers": "Show Line Numbers",
"appearance_editorShowLineNumbersDesc": "Display line numbers in the editor gutter.",
"editConfigJson": "Edit config.json",
"editConfigJsonDesc": "Directly edit the raw configuration file. A restart is required to apply changes.",
"configJsonModal": {
"title": "config.json",
"saveAndRestart": "Save & Restart",
"restartNow": "Restart Now",
"restartLater": "Later",
"restartRequired": "A restart is required to apply changes.",
"restartMessage": "The configuration file has been saved. Restart now to apply the changes?",
"invalidJson": "Invalid JSON — please fix errors before saving."
},
"language": "Language",
"languageDesc": "Choose your preferred language. 'Auto' will use your system language.",
"auto": "Auto (System)",
"english": "English",
"italian": "Italiano",
"spanish": "Spanish",
"projectStatus": "Project Status",
"roadmapDesc": "This project is a Work In Progress (WIP). Core features are stable, but we have big plans.",
"support": "Support the Development",
"supportDesc": "If you like tabularis and want to see more features, consider supporting the project by contributing code, reporting bugs, or starring the repo.",
"version": "Version",
"starOnGithub": "Star on GitHub",
"ai": {
"tab": "AI",
"title": "AI Configuration",
"description": "Configure AI providers to enable natural language to SQL generation. Keys are stored securely in your system's keychain.",
"enable": "Enable AI Features",
"enableDesc": "Show AI Assist and Explain buttons in the editor",
"defaultProvider": "Default Provider",
"defaultModel": "Default Model",
"configuration": "Configuration",
"selectProviderFirst": "Select a provider first",
"modelDesc": "Select the model to be used for generation and explanation.",
"manageKeys": "Manage API Keys",
"apiKey": "{{provider}} API Key",
"configured": "Configured",
"notConfigured": "Not configured",
"enterKey": "Enter {{provider}} Key",
"keyStoredSecurely": "API Key is stored securely in your system keychain. Setting a key here overrides the environment variable.",
"fromEnv": "Environment",
"fromEnvTooltip": "This key is loaded from an environment variable",
"envVariableDetected": "An environment variable is present, but you can override it by setting a key above.",
"reset": "Reset",
"changeKey": "Change",
"resetKey": "Delete custom key and revert to environment variable (if present)",
"keyResetSuccess": "Custom key deleted successfully",
"promptCustomization": "Prompt Customization",
"systemPrompt": "SQL Generation",
"systemPromptDesc": "Instructions for AI-powered SQL generation. Use {{SCHEMA}} as a placeholder for the database structure.",
"enterSystemPrompt": "Enter system prompt...",
"resetDefault": "Reset to Default",
"savePrompt": "Save Prompt",
"explainPrompt": "Query Explanation",
"explainPromptDesc": "Instructions for AI-powered query explanation. Use {{LANGUAGE}} as a placeholder for the output language.",
"enterExplainPrompt": "Enter explain prompt...",
"cellnamePrompt": "Notebook Cell Name Prompt",
"cellnamePromptDesc": "Customize instructions for AI notebook cell name generation. The cell content (SQL or Markdown) is sent as the user message.",
"enterCellnamePrompt": "Enter notebook cell name prompt...",
"tabrenamePrompt": "Query Tab Name Prompt",
"tabrenamePromptDesc": "Customize instructions for AI query result tab name generation. The SQL query is sent as the user message.",
"enterTabrenamePrompt": "Enter query tab name prompt...",
"explainplanPrompt": "Explain Plan Analysis Prompt",
"explainplanPromptDesc": "Customize instructions for AI analysis of EXPLAIN query plans. Use {{LANGUAGE}} for the output language.",
"enterExplainplanPrompt": "Enter explain plan analysis prompt...",
"keySaved": "API Key saved securely",
"promptSaved": "System prompt saved successfully",
"explainPromptSaved": "Explain prompt saved successfully",
"promptReset": "System prompt reset to default",
"explainPromptReset": "Explain prompt reset to default",
"modelPlaceholder": "Select a model",
"searchPlaceholder": "Search models...",
"noResults": "No models found",
"refresh": "Refresh Models",
"refreshSuccess": "AI models refreshed from providers",
"refreshError": "Failed to refresh models",
"ollamaConnected": "Ollama connected ({{count}} models found)",
"ollamaNotDetected": "Ollama not detected on port {{port}}. Is it running?",
"ollamaPort": "Ollama Port",
"modelNotFound": "Model <strong>{{model}}</strong> not found in <strong>{{provider}}</strong>. It may not work correctly.",
"customOpenaiEndpoint": "Custom Endpoint",
"endpointUrl": "Endpoint URL",
"endpointUrlDesc": "The base URL of your OpenAI-compatible API. Examples: https://api.groq.com/openai/v1, http://localhost:8000/v1",
"customOpenaiModelPlaceholder": "e.g., llama3-70b-8192, mixtral-8x7b",
"customOpenaiModelDesc": "Enter the model name provided by your OpenAI-compatible service.",
"customOpenaiModelHelp": "Enter the exact model name for your OpenAI-compatible provider."
},
"updates": "Updates",
"openSourceLibraries": "Open Source Libraries",
"openSourceLibrariesDesc": "Browse the direct open source dependencies used across the app, backend, and tooling.",
"openSourceLibrariesSource": "Direct dependencies declared in package.json and src-tauri/Cargo.toml.",
"openSourceLibrariesTotal": "{{count}} libraries",
"openSourceLibrariesOpenProject": "Open package page",
"openSourceLibrariesSections": {
"npm-runtime": "Frontend Dependencies",
"npm-tooling": "Frontend Dev Dependencies",
"cargo-runtime": "Rust Dependencies",
"cargo-tooling": "Rust Build and Test"
},
"openSourceLibrariesEcosystem": {
"npm": "npm ecosystem",
"cargo": "Cargo ecosystem"
},
"autoCheckUpdates": "Check for updates on startup",
"autoCheckUpdatesDesc": "Automatically check for new versions when the app launches",
"checkNow": "Check for Updates Now",
"checking": "Checking...",
"currentVersion": "Current Version",
"logs": "Logs",
"logSettings": "Log Settings",
"enableLogging": "Enable Logging",
"enableLoggingDesc": "Collect application logs in memory for debugging",
"maxLogEntries": "Max Log Entries",
"maxLogEntriesDesc": "How many logs to keep in memory (1-10000)",
"currentLogCount": "Current Logs",
"clearLogs": "Clear Logs",
"clearLogsConfirm": "Are you sure you want to clear all logs?",
"exportLogs": "Export Logs",
"exportLogsSuccess": "Logs exported to clipboard",
"noLogs": "No logs available",
"refreshLogs": "Refresh",
"logLevel": "Level",
"logMessage": "Message",
"logTimestamp": "Timestamp",
"filterByLevel": "Filter by level",
"allLevels": "All levels",
"debug": "Debug",
"warn": "Warn",
"error": "Error",
"connectionHealthCheck": "Connection Health Check",
"pingInterval": "Ping Interval",
"pingIntervalDesc": "How often to check if active connections are still alive. Set to 0 to disable.",
"seconds": "seconds",
"entries": "entries",
"queryHistory": "Query History",
"queryHistoryMaxEntries": "Max History Entries",
"queryHistoryMaxEntriesDesc": "Maximum number of query history entries stored per connection.",
"startup": "Startup",
"showWelcome": "Show Welcome Screen",
"showWelcomeDesc": "Display the welcome screen when the application starts.",
"erDiagram": "ER Diagram",
"erDiagramDefaultLayout": "Default Layout",
"erDiagramDefaultLayoutDesc": "Choose the default layout direction for ER diagrams",
"plugins": {
"title": "Plugins",
"overviewTitle": "Plugin Center",
"overviewDesc": "Install extensions, manage plugin drivers, and keep runtime settings under control.",
"installedMetric": "Installed",
"enabledMetric": "Enabled",
"registryMetric": "Registry",
"updatesMetric": "Updates",
"available": "Available Plugins",
"availableDesc": "Browse and install plugins from the registry.",
"refresh": "Refresh",
"loadingRegistry": "Loading plugin registry...",
"registryError": "Failed to load registry",
"installed": "Installed",
"by": "by",
"platformNotSupported": "Not available for your platform",
"update": "Update",
"install": "Install",
"upToDate": "Up to date",
"downgrade": "Downgrade to",
"olderVersions": "Older versions",
"noPlugins": "No plugins available in the registry.",
"searchPlaceholder": "Search plugins…",
"filterAll": "All",
"filterInstalled": "Installed",
"filterUpdates": "Updates",
"searchNoResults": "No plugins match your search.",
"version": "Version",
"requiresVersion": "Requires Tabularis ≥ {{version}}",
"installedPlugins": "Installed Plugins",
"installedDesc": "Enable or disable database drivers. Built-in drivers cannot be disabled.",
"remove": "Remove",
"removeTitle": "Remove Plugin",
"confirmRemove": "Are you sure you want to remove \"{{name}}\"? This will delete the plugin files.",
"enabled": "Enabled",
"disabled": "Disabled",
"installError": {
"title": "Installation Failed",
"subtitle": "An error occurred while installing the plugin. See the details below.",
"details": "Error Details",
"copy": "Copy",
"copied": "Copied!"
},
"startError": {
"title": "Plugin Failed to Start",
"subtitle": "The plugin process could not be launched. Check the error details below.",
"interpreterHint": "This plugin may require an interpreter (e.g. Python). Use Plugin Settings to configure the interpreter path.",
"details": "Error Details",
"copy": "Copy",
"copied": "Copied!",
"configure": "Configure Interpreter"
},
"pluginSettings": {
"title": "Plugin Settings",
"interpreter": "Interpreter",
"interpreterDesc": "Optional. Specify the executable used to run this plugin (e.g. python3 on macOS/Linux, python or a full path on Windows). Leave blank to use the default.",
"interpreterPlaceholder": "e.g. python3",
"browse": "Browse...",
"fieldRequired": "{{label}} is required",
"saved": "Saved",
"resetToDefault": "Reset to default",
"builtin": {
"mysql": {
"maxAllowedPacket": {
"label": "Max Allowed Packet",
"description": "Maximum packet size used by the MySQL connector."
},
"socketTimeout": {
"label": "Socket Timeout",
"description": "Socket timeout in milliseconds."
},
"connectTimeout": {
"label": "Connect Timeout",
"description": "Connection timeout in milliseconds."
},
"timezone": {
"label": "Timezone",
"description": "Session timezone sent to MySQL after connect."
}
}
}
}
},
"shortcuts": {
"title": "Keyboard Shortcuts",
"categories": {
"editor": "Editor",
"navigation": "Navigation",
"data_grid": "Data Grid"
},
"runQuery": "Run query",
"runQueryEditor": "Run query (in editor)",
"tabSwitcher": "Switch tab",
"copySelection": "Copy selection",
"toggleSidebar": "Toggle sidebar",
"openConnections": "Open connections",
"newConnection": "New connection",
"newTab": "New tab",
"closeTab": "Close tab",
"nextPage": "Next page",
"prevPage": "Previous page",
"switchConnection": "Switch to connection 1–9",
"resetToDefault": "Reset to default",
"notOverridable": "Built-in, not customizable",
"pressKeys": "Press key combination...",
"notebookRunAll": "Run All Cells",
"categories_notebook": "Notebook",
"pasteImportClipboard": "Import from Clipboard"
},
"aiActivity": "AI Activity"
},
"update": {
"newVersionAvailable": "New Version Available",
"version": "Version",
"releaseNotes": "Release Notes",
"downloads": "Downloads",
"download": "Download",
"downloadAndInstall": "Download & Install",
"downloading": "Downloading...",
"installing": "Installing...",
"installingMessage": "The app will restart automatically after installation",
"viewOnGitHub": "View on GitHub",
"remindLater": "Remind Me Later",
"skipVersion": "Skip This Version",
"checkingForUpdates": "Checking for updates...",
"upToDate": "You're up to date",
"updateAvailable": "Version {{version}} is available",
"error": "Update Error",
"currentVersion": "Current version",
"managedByPackageManager": "Updates managed by {{source}}",
"managedByPackageManagerDesc": "Use your package manager to update Tabularis."
},
"ai": {
"assist": "AI Assist",
"explain": "Explain",
"generateSql": "Generate SQL",
"generating": "Generating...",
"explainQuery": "AI Query Explanation",
"queryLabel": "Query",
"explanationLabel": "Explanation",
"generatingExplanation": "Generating explanation...",
"configRequired": "⚠️ AI Provider not configured. Please go to Settings > AI.",
"enterPrompt": "Describe your query in natural language",
"promptPlaceholder": "e.g. Find all users who signed up last month and ordered a 'Premium' plan...",
"readingSchema": "Reading database schema...",
"schemaError": "Failed to load database schema context",
"configError": "Please configure AI provider in Settings and enter a prompt."
},
"newConnection": {
"titleNew": "New Connection",
"titleEdit": "Edit Connection",
"subtitle": "Configure database connection settings",
"name": "Connection Name",
"namePlaceholder": "Provide your connection name",
"nameRequired": "Connection name is required",
"dbNameRequired": "Database name is required",
"dbType": "Database Type",
"host": "Host",
"port": "Port",
"username": "Username",
"password": "Password",
"passwordMissing": "Password missing or not set. Please re-enter.",
"passwordPlaceholder": "Enter password",
"usernamePlaceholder": "Enter username",
"filePath": "File Path",
"folderPath": "Folder Path",
"dbName": "Database Name",
"dbNamePlaceholder": "Database name",
"loadDatabases": "Load Databases",
"loadingDatabases": "Loading...",
"selectDatabases": "Select Databases",
"noDatabasesSelected": "Select at least one database",
"selectedDatabases": "{{count}} database(s) selected",
"selectDatabase": "Select a database",
"noDatabasesFound": "No databases found",
"failLoadDatabases": "Failed to load databases. Check your credentials.",
"filePathPlaceholder": "/absolute/path/to/db.sqlite",
"folderPathPlaceholder": "/absolute/path/to/folder",
"browseFile": "Browse file",
"browseFolder": "Browse folder",
"useSsh": "Use SSH Tunnel",
"sshHost": "SSH Host",
"sshPort": "SSH Port",
"sshUser": "SSH User",
"sshPassword": "SSH Password",
"sshPasswordMissing": "SSH Password missing. Please re-enter.",
"sshPasswordPlaceholder": "Enter SSH password",
"sshKeyFile": "SSH Key File (Optional)",
"sshKeyFilePlaceholder": "/path/to/id_rsa",
"sshKeyPassphrase": "SSH Key Passphrase (Optional)",
"sshKeyPassphrasePlaceholder": "Enter key passphrase if encrypted",
"saveKeychain": "Save passwords in Keychain",
"testConnection": "Test Connection",
"save": "Save",
"failSave": "Failed to save connection",
"selectSshConnection": "Select SSH Connection",
"useSshConnection": "Use Existing SSH Connection",
"createInlineSsh": "Configure SSH Inline",
"manageSshConnections": "Manage SSH Connections",
"noSshConnections": "No SSH connections available",
"sslMode": "SSL Mode",
"sslModes": {
"disable": "Disable",
"allow": "Allow",
"prefer": "Prefer",
"require": "Require"
}
},
"sshConnections": {
"title": "SSH Connections",
"createNew": "Create New SSH Connection",
"noConnections": "No SSH connections configured yet",
"name": "Connection Name",
"namePlaceholder": "My SSH Server",
"authType": "Authentication Type",
"authTypePassword": "Password",
"authTypeSshKey": "SSH Key",
"edit": "Edit",
"delete": "Delete",
"save": "Save",
"update": "Update",
"cancel": "Cancel",
"confirmDelete": "Are you sure you want to delete this SSH connection?",
"failSave": "Failed to save SSH connection",
"failDelete": "Failed to delete SSH connection",
"fillRequired": "Please fill in all required fields",
"keyFile": "Key file",
"quickTest": "Quick connection test",
"testFailed": "Connection test failed",
"savedInKeychain": "Password saved in system keychain"
},
"dataGrid": {
"noData": "No data to display",
"editRow": "Edit Row",
"deleteRow": "Delete Row",
"confirmDelete": "Are you sure you want to delete this row?",
"deleteTitle": "Delete Row",
"updateFailed": "Update failed: ",
"deleteFailed": "Failed to delete row: ",
"null": "null",
"sortByAsc": "Sort by {{col}} ASC",
"sortByDesc": "Sort by {{col}} DESC",
"clearSort": "Clear sort",
"copyCell": "Copy Cell",
"copyRow": "Copy Row",
"copySelectedRows": "Copy selected row(s)",
"copyColumnName": "Copy column name",
"copyColumnNameQuoted": "Copy as `column`",
"copyColumnNameTable": "Copy as table.column",
"copyCells": "Copy {{count}} Cells",
"copyRows": "Copy {{count}} Rows",
"copied": "Copied to clipboard",
"discardInsertion": "Click to discard this row (rollback)",
"revertSelected": "Revert Selected",
"setGenerate": "Set GENERATED",
"setNull": "Set NULL",
"setDefault": "Set DEFAULT",
"setEmpty": "Set EMPTY"
},
"editRow": {
"title": "Edit Row",
"save": "Save Changes",
"cancel": "Cancel",
"success": "Row updated successfully",
"failLoad": "Failed to load schema for edit",
"failUpdate": "Failed to update row: ",
"loading": "Loading...",
"selectValue": "Select Value...",
"noOptions": "No options found",
"current": "Current"
},
"newRow": {
"title": "New Row",
"insert": "Insert",
"cancel": "Cancel",
"success": "Row inserted successfully",
"failInsert": "Failed to insert row: ",
"failLoad": "Failed to load schema: ",
"loading": "Loading...",
"selectValue": "Select Value...",
"noOptions": "No options found",
"autoGenerated": "(Auto-generated)",
"required": "Required",
"primaryKey": "Primary Key",
"auto": "Auto"
},
"editor": {
"noTabs": "No open tabs for this connection.",
"newConsole": "New Console",
"noActiveSession": "No active session. Please select a connection.",
"stop": "Stop",
"run": "Run",
"export": "Export",
"connected": "Connected",
"disconnected": "Disconnected",
"newRow": "New Row",
"editing": "Editing: {{table}}",
"rowsRetrieved": "{{count}} rows retrieved",
"autoPaginated": "Auto paginated",
"pageOf": "Page {{current}} of {{total}}",
"page": "Page {{current}}",
"jumpToPage": "Click to jump to page",
"loadRowCount": "Load row count",
"executePrompt": "Execute a query to see results",
"tableRunPrompt": "Press Run (Ctrl/Command+F5) to load table data",
"closeTab": "Close Tab",
"closeOthers": "Close Other Tabs",
"closeRight": "Close Tabs to Right",
"closeLeft": "Close Tabs to Left",
"closeAll": "Close All Tabs",
"saveQuery": "Save Query",
"saveThisQuery": "Save this query",
"noValidQueries": "No valid queries found",
"queryFailed": "Query failed.",
"showErrorDetails": "Show details",
"hideErrorDetails": "Hide details",
"newVisualQuery": "New Visual Query",
"activeDatabase": "Active database",
"tabSwitcher": {
"title": "Open Tabs",
"hint": "Ctrl+Tab",
"tabs": "tabs",
"escHint": "Esc to close"
},
"submitChanges": "Submit Changes",
"rollbackChanges": "Rollback Changes",
"applyToAll": "Apply to all",
"executingQuery": "Executing query...",
"exporting": "Exporting...",
"rowsProcessed": "Rows Processed",
"queryParameters": "Query Parameters",
"convertToConsole": "Convert to Console",
"parameters": "Parameters",
"paramValuePlaceholder": "Value (e.g. 'text' or 123)",
"failedCreateRow": "Failed to create new row: ",
"failedProcessInsertions": "Failed to process insertions: ",
"fieldRequired": "This field is required",
"newNotebook": "New Notebook",
"visualExplain": {
"title": "Visual Explain",
"buttonShort": "Explain Plan",
"loading": "Running EXPLAIN...",
"error": "Failed to run EXPLAIN",
"planningTime": "Planning",
"executionTime": "Execution",
"totalCost": "Total Cost",
"estRows": "Est. Rows",
"actualRows": "Actual Rows",
"cost": "Cost",
"time": "Time",
"loops": "Loops",
"filter": "Filter",
"indexCondition": "Index Cond.",
"relation": "Table",
"nodeType": "Operation",
"rawOutput": "Raw Output",
"analyze": "Analyze",
"analyzeWarning": "ANALYZE executes the query. Use with caution on data-modifying statements.",
"notSupported": "EXPLAIN is not supported for this connection type.",
"notExplainable": "EXPLAIN is only supported for DML statements (SELECT, INSERT, UPDATE, DELETE). DDL statements like CREATE, DROP, or ALTER cannot be explained.",
"contextMenuExplain": "Explain Plan",
"rerun": "Re-run",
"close": "Close",
"graphView": "Graph",
"tableView": "Table",
"general": "General",
"analyzeData": "Analyze Data",
"extraDetails": "Extra",
"selectNode": "Select a node to view details",
"buffersHit": "Buffers Hit",
"buffersRead": "Buffers Read",
"joinType": "Join Type",
"hashCondition": "Hash Cond.",
"topIssues": "Top Issues",
"noIssues": "No major issues detected in the current plan summary.",
"highestCost": "Highest Cost",
"slowestStep": "Slowest Step",
"largestEstimateGap": "Estimate Gap",
"overEstimate": "Actual rows exceed estimate",
"underEstimate": "Estimate exceeds actual rows",
"sequentialScans": "Sequential Scans",
"tempOperations": "Temp or Sort Ops",
"scanOperations": "Scan-heavy operations detected",
"sortOrTempOperations": "Sort or temp work detected",
"driverNotes": "Driver Notes",
"overview": "Overview",
"showOverview": "Show overview",
"hideOverview": "Hide overview",
"showNotes": "Show notes",
"hideNotes": "Hide notes",
"postgresAnalyzeLegend1": "PostgreSQL ANALYZE includes actual rows, timing, loops, and buffer counters when available.",
"postgresAnalyzeLegend2": "Large estimate gaps usually indicate stale statistics or predicates the planner cannot model well.",
"postgresEstimateLegend1": "PostgreSQL without ANALYZE shows planner estimates only.",
"postgresEstimateLegend2": "Enable ANALYZE to inspect actual rows, timing, loops, and buffers.",
"mysqlAnalyzeLegend1": "MySQL and MariaDB expose actual metrics only on supported EXPLAIN ANALYZE or ANALYZE FORMAT variants.",
"mysqlAnalyzeLegend2": "Older servers may fall back to estimated plans with fewer metrics.",
"mysqlEstimateLegend1": "MySQL and MariaDB may fall back to EXPLAIN FORMAT=JSON or tabular EXPLAIN depending on server version.",
"mysqlEstimateLegend2": "If timing is missing, the server likely returned an estimate-only plan.",
"sqliteLegend1": "SQLite EXPLAIN QUERY PLAN is lightweight and mostly structural.",
"sqliteLegend2": "Cost, timing, and row estimates are often unavailable compared with PostgreSQL and MySQL.",
"copySnapshot": "Copy Snapshot",
"exportRaw": "Export Raw",
"snapshotCopied": "Explain snapshot copied to clipboard",
"rawExported": "Raw explain output exported",
"noRawOutput": "No raw explain output available to export.",
"aiAnalysis": "AI Analysis",
"aiAnalysisTitle": "AI Query Plan Analysis",
"aiAnalyzing": "Analyzing query plan with AI...",
"aiConfigRequired": "AI Provider not configured. Please go to Settings > AI."
},
"notebook": {
"addSqlCell": "Add SQL Cell",
"addMarkdownCell": "Add Markdown Cell",
"runAll": "Run All",
"runAllTooltip": "Execute all SQL cells top to bottom",
"runCell": "Run Cell",
"deleteCell": "Delete Cell",
"moveCellUp": "Move Up",
"moveCellDown": "Move Down",
"export": "Export Notebook",
"import": "Import Notebook",
"emptyNotebook": "This notebook is empty. Add a cell to get started.",
"markdownPlaceholder": "Write Markdown here...",
"togglePreview": "Toggle Preview",
"sqlCell": "SQL",
"markdownCell": "Markdown",
"invalidFile": "Invalid notebook file format",
"importSuccess": "Notebook imported successfully",
"exportSuccess": "Notebook exported successfully",
"convertToConsole": "Convert to Console",
"runningAll": "Running all cells...",
"cellResult": "{{count}} rows · {{time}}ms",
"stopOnError": "Stop on Error",
"stopOnErrorTooltip": "Stop execution when a cell fails",
"runAllComplete": "Run All Complete",
"succeeded": "succeeded",
"failed": "failed",
"skipped": "skipped",
"toggleChart": "Toggle Chart",
"chartType": "Chart",
"chartLabel": "Label",
"chartValues": "Values",
"exportCsv": "Export as CSV",
"exportJson": "Export as JSON",
"exportHtml": "Export as HTML",
"parameters": "Parameters",
"paramName": "name",
"paramValue": "value",
"invalidParamName": "Invalid parameter name",
"parallelExecution": "Parallel Execution (Run All)",
"executionHistory": "Execution History",
"noHistory": "No execution history yet",
"collapseCell": "Collapse Cell",
"expandCell": "Expand Cell",
"collapseAll": "Collapse All",
"expandAll": "Expand All",
"outline": "Outline",
"aiGenerate": "Generate SQL with AI",
"aiExplain": "Explain this Query with AI",
"cellNamePlaceholder": "Untitled",
"editCellName": "Edit cell name",
"aiGenerateName": "Generate name with AI",
"generatingName": "Generating name...",
"aiGenerateOutlineNames": "Generate names for unnamed cells with AI"
},
"querySelection": {
"title": "Select Query to Execute",
"queriesFound": "{{count}} queries found",
"escToCancel": "Esc to cancel",
"numberHint": "Press 1-9 to select, arrows to navigate",
"runAll": "Run All",
"runSelected": "Run Selected ({{count}})",
"runSingle": "Run this query",
"selectAll": "Select All",
"deselectAll": "Deselect All"
},
"explainSelection": {
"title": "Select Query to Explain",
"queriesFound": "{{count}} explainable queries found",
"explainSingle": "Explain this query",
"explainFocused": "explain focused",
"explainNth": "explain Nth",
"cancel": "cancel"
},
"multiResult": {
"query": "Query {{index}}",
"summary": "{{total}} queries: {{succeeded}} succeeded, {{failed}} failed",
"rerun": "Re-run query",
"close": "Close tab",
"rename": "Rename",
"aiGenerateName": "Generate name with AI",
"generatingName": "Generating name...",
"viewTabs": "Tab view",
"viewStacked": "Stacked view",
"queryPrefix": "Query",
"results": "Results",
"collapseAll": "Collapse all",
"expandAll": "Expand all",
"collapsed": "Collapsed"
}
},
"createTable": {
"title": "Create New Table",
"tableName": "Table Name",
"tableNamePlaceholder": "e.g. users, orders, products",
"columns": "Columns",
"addColumn": "Add Column",
"colName": "Name",
"colType": "Type",
"colLen": "Len",
"colPk": "PK",
"colNn": "NN",
"colAi": "AI",
"colDefault": "Default",
"showSql": "Show SQL Preview",
"hideSql": "Hide SQL Preview",
"create": "Create Table",
"cancel": "Cancel",
"nameRequired": "Table name is required",
"colRequired": "At least one column is required",
"failCreate": "Failed to create table: ",
"requiresExtension": "Requires extension: {{ext}}"
},
"schema": {
"title": "Schema: {{table}}",
"loading": "Loading schema...",
"colName": "Name",
"colType": "Type",
"colNullable": "Nullable",
"colKey": "Key",
"yes": "YES",
"no": "NO"
},
"generateSQL": {
"title": "Generated SQL: {{table}}",
"loading": "Generating SQL...",
"copy": "Copy SQL",
"copied": "Copied!"
},
"modifyColumn": {
"titleAdd": "Add Column",
"titleEdit": "Modify Column",
"sqliteWarn": "SQLite only supports renaming columns. Other modifications require recreating the table manually.",
"name": "Name",
"type": "Type",
"length": "Length",
"default": "Default Value",
"notNull": "Not Null",
"primaryKey": "Primary Key",
"autoInc": "Auto Increment",
"sqlPreview": "SQL Preview",
"save": "Save Changes",
"add": "Add Column",
"cancel": "Cancel",
"nameRequired": "Column name is required",
"fail": "Failed: ",
"noChanges": "No changes detected",
"unsupported": "Unsupported driver",
"pkNotSupported": "This driver only supports primary keys at table creation time",
"requiresExtension": "Requires extension: {{ext}}"
},
"createIndex": {
"title": "Create Index",
"name": "Index Name",
"columns": "Columns",
"unique": "Unique Index",
"sqlPreview": "SQL Preview",
"create": "Create Index",
"cancel": "Cancel",
"nameRequired": "Index name is required",
"colRequired": "At least one column must be selected"
},
"createFk": {
"title": "Create Foreign Key",
"name": "FK Name (Optional)",
"column": "Local Column",
"refTable": "Referenced Table",
"refColumn": "Referenced Column",
"onDelete": "On Delete",
"onUpdate": "On Update",
"sqlPreview": "SQL Preview",
"create": "Create Foreign Key",
"cancel": "Cancel",
"colRequired": "Please select local and referenced columns",
"tableRequired": "Please select a referenced table"
},
"healthCheck": {