-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathen.ts
More file actions
3121 lines (3120 loc) · 132 KB
/
Copy pathen.ts
File metadata and controls
3121 lines (3120 loc) · 132 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
export default {
app: {
name: "DBX",
},
auth: {
setupTitle: "Set up access password",
setupDescription: "Set a password to protect your instance",
loginDescription: "Database management tool",
newPassword: "Enter new password",
confirmPassword: "Confirm password",
enterPassword: "Enter access password",
passwordMismatch: "Passwords do not match",
setPassword: "Set Password",
login: "Login",
processing: "Processing...",
loginFailed: "Incorrect password",
connectFailed: "Connection failed",
changePassword: "Change Password",
oldPassword: "Current password",
oldPasswordWrong: "Current password is incorrect",
passwordChanged: "Password changed successfully",
changePasswordFailed: "Failed to change password",
changePasswordDescription: "Enter your current password and choose a new one",
},
toolbar: {
newConnection: "New Connection",
newQuery: "New Query",
execute: "Execute",
executeShortcut: "Execute selection/query (Cmd+Enter)",
stopQuery: "Stop query",
explainPlan: "Explain plan",
stopExplain: "Stop explain",
formatSql: "Format SQL",
formatSqlFailed: "Failed to format SQL",
keywordCaseLower: "Use lower-case SQL keywords",
keywordCaseUpper: "Use upper-case SQL keywords",
previewSql: "Preview SQL",
hidePreviewSql: "Hide SQL Preview",
saveSql: "Save to SQL Library",
openSql: "Open SQL file",
theme: "Theme",
themeLight: "Light",
themeDark: "Dark",
themeSystem: "Follow System",
sqlSaved: "SQL saved",
sqlOpenFailed: "Failed to open file: {message}",
sqlSaveFailed: "Failed to save file: {message}",
driverManager: "Driver Manager",
updatableDriverCount: "Updatable driver count",
blockDangerousRedisCommands: "Block dangerous commands",
},
updates: {
title: "Updates",
check: "Check for updates",
availableTitle: "Update available",
availableMessage: "DBX {latest} is available. You are using {current}.",
upToDate: "DBX is up to date ({version}).",
failed: "Failed to check updates: {error}",
rateLimited: "GitHub update checks are temporarily rate limited. You can still open the release page to check manually.",
openRelease: "Open Release",
downloadAndInstall: "Download & Install",
portableManualUpdate: "Portable builds cannot use the in-app installer. Download the portable ZIP from the release page, then extract it over the current DBX folder to keep portable.dbx and data.",
downloading: "Downloading {progress}%",
downloadFailed: "Update download failed: {error}",
restart: "Exit & Restart",
restartFailed: "Failed to restart app: {error}",
exitAndUpdate: "Exit & Update",
reopenHint: "The app will relaunch to finish updating",
dockerUsersRun: "Docker users should run",
toUpdate: "to update",
},
sidebar: {
connections: "CONNECTIONS",
noConnections: "No connections yet",
import: "Import Connections",
importDbx: "Import DBX Config",
importNavicat: "Import Navicat NCX",
importDbeaver: "Import DBeaver",
importDatagrip: "Import DataGrip",
export: "Export Connections",
collapse: "Collapse sidebar",
expand: "Expand sidebar",
showMore: "Show {count} more...",
filterByType: "Filter by type",
searchScopeConnection: "Connection",
searchScopeDatabase: "Database",
searchScopeSchema: "Schema",
searchScopeTable: "Table",
searchScopeView: "View",
clearFilter: "Clear filter",
locateActiveTab: "Locate in sidebar",
},
savedSql: {
saveToLibrary: "Save to SQL Library",
saveToFile: "Save Locally",
save: "Save",
saved: "SQL saved",
saveFailed: "Failed to save SQL: {message}",
fileName: "File name",
folder: "Folder",
rootFolder: "SQL Library",
newQuery: "New Query",
newFolder: "New SQL Folder",
newFolderDefault: "New Folder",
renameFolder: "Rename Folder",
deleteFolder: "Delete Folder",
deleteFolderConfirm: "Delete “{name}” and the SQL files inside it?",
open: "Open SQL",
renameFile: "Rename SQL",
deleteFile: "Delete SQL",
deleteFileConfirm: "Delete “{name}”?",
},
sqlLibrary: {
title: "SQL Library",
empty: "No saved queries yet",
emptyFolder: "Empty folder",
unfiled: "Unfiled",
exportFile: "Export SQL",
exportFolder: "Export Folder",
exportLibrary: "Export SQL Library",
importDirectory: "Import Local Folder",
importIntoFolder: "Import Into Folder",
openStorageDirectory: "Open SQL Storage Directory",
chooseSyncDirectory: "Set Local Sync Directory",
disableSyncDirectory: "Disable Local Sync Directory",
syncDirectorySaved: "SQL local sync directory saved",
syncDirectoryDisabled: "SQL local sync disabled",
syncDirectoryFailed: "Failed to set sync directory: {message}",
openDirectoryFailed: "Failed to open directory: {message}",
noSyncDirectory: "Please set a local sync directory first",
exported: "Exported",
exportFailed: "Export failed: {message}",
importFailed: "Import failed: {message}",
importNone: "No .sql files found in the selected folder",
imported: "Imported {count} SQL files",
desktopOnly: "This feature is only available on desktop",
noConnection: "No connection is available for import",
batchDelete: "Batch Delete",
batchDeleteConfirm: "Are you sure you want to delete {count} selected items? This action cannot be undone.",
batchDeleteSuccess: "Successfully deleted {count} items",
clearSelection: "Clear Selection",
sortByDate: "Sort by Date Modified",
sortByFolder: "Sort by Folder Structure",
},
connection: {
title: "New Connection",
name: "Name",
namePlaceholder: "Connection name, auto-generated if empty",
type: "Type",
host: "Host",
filePath: "File Path",
h2FileMode: "File",
h2TcpMode: "TCP",
h2FilePathRequired: "H2 file path cannot be empty",
createDuckDbFile: "Create DuckDB file",
createSqliteFile: "Create SQLite database",
memoryDatabasePathHint: "Use :memory: to create an in-memory SQLite or DuckDB database.",
sqliteExtensions: "SQLite Extensions",
sqliteExtensionsPlaceholder: "/path/to/regexp.dylib\n/path/to/text.dylib|sqlite3_text_init",
sqliteExtensionsHint: "One .dylib/.so/.dll per line. Use “path|entry point” when an entry point is required. Loaded on connect, then load_extension is disabled.",
sqliteExtensionBrowse: "Select SQLite extension",
user: "User",
password: "Password",
database: "Database",
databasePlaceholder: "Optional",
databasePlaceholderWithDefault: "Optional, defaults to {database}",
defaultDatabase: "Default DB",
authDatabase: "Auth DB",
authDatabasePlaceholder: "Optional, often admin",
authMechanism: "Auth Mechanism",
authMechanismDefault: "Default",
driverMode: "Driver",
mongoDriverAuto: "Auto",
mongoDriverLegacy: "Legacy",
serviceName: "Service/SID",
serviceNameOnly: "Service Name",
version: "Version",
driverInstallHintPrefix: "Install the required driver from ",
driverInstallHintSuffix: " in the top toolbar before connecting.",
driverName: "Driver Name",
driverNamePlaceholder: "Vendor or environment name",
urlParams: "URL Params",
gbaseServer: "GBASEDBTSERVER",
informixServer: "INFORMIXSERVER",
sslEnable: "Enable encrypted connection",
caCertPath: "CA Certificate",
caCertPathPlaceholder: "Optional, e.g. ~/.yandex/RootCA.crt",
caCertPathBrowse: "Browse certificate",
redisTlsInsecure: "Skip certificate verification",
redisTlsInsecureHint: "Equivalent to redis-cli --tls --insecure, for self-signed certificates or private CAs.",
mysqlTlsMode: "TLS Mode",
mysqlTlsModePreferred: "Preferred",
mysqlTlsModeDisabled: "Disabled",
mysqlTlsModeRequired: "Required",
mysqlTlsModeVerifyCa: "Verify CA",
mysqlTlsModeVerifyIdentity: "Verify Identity",
mysqlCaCertHint: "Required for Verify CA and Verify Identity when the server certificate uses a private CA.",
mysqlClientCert: "Client Auth",
mysqlClientCertPlaceholder: "/path/to/client.crt",
mysqlClientKeyPlaceholder: "/path/to/client.key",
mysqlClientCertHint: "Client certificate and private key must be provided together when MySQL requires mTLS.",
mysqlClientCertBrowse: "Choose client certificate",
mysqlClientKeyBrowse: "Choose client private key",
postgresSslMode: "TLS Mode",
postgresSslModeDisable: "Disable",
postgresSslModePrefer: "Prefer",
postgresSslModeRequire: "Require",
postgresSslModeVerifyCa: "Verify CA",
postgresSslModeVerifyFull: "Verify Full",
postgresServerCert: "Server CA",
postgresRootCertPlaceholder: "/path/to/ca.crt",
postgresRootCertHint: "Use this for verify-ca or verify-full when the server certificate is signed by a private CA.",
postgresRootCertBrowse: "Choose CA certificate",
postgresClientCert: "Client Auth",
postgresClientCertPlaceholder: "/path/to/client.crt",
postgresClientKeyPlaceholder: "/path/to/client.key",
postgresClientCertHint: "Client certificate and private key must be provided together when PostgreSQL requires mTLS.",
postgresClientCertBrowse: "Choose client certificate",
postgresClientKeyBrowse: "Choose client private key",
connectionUrlOptional: "URL (optional)",
connectionUrlPlaceholder: "postgresql://user:pass{'@'}host:5432/db?sslmode=require",
parseConnectionUrl: "Parse connection URL",
parseConnectionUrlApplied: "Connection URL applied",
parseConnectionUrlFailed: "Failed to parse connection URL: {message}",
mode: "Connection Mode",
modeForm: "Form",
redisStandaloneMode: "Standalone",
redisSentinelMode: "Sentinel",
redisClusterMode: "Cluster",
oceanbaseMySQLMode: "MySQL Mode",
oceanbaseOracleMode: "Oracle Mode",
redisFirstSentinel: "First Sentinel",
redisFirstClusterNode: "First Seed Node",
redisSentinelNodes: "Sentinel Nodes",
redisClusterNodes: "Cluster Seed Nodes",
redisSentinelMaster: "Master Name",
redisSentinelUser: "Sentinel User",
redisSentinelPassword: "Sentinel Password",
redisSentinelTls: "Sentinel TLS",
redisSentinelTlsHint: "Use TLS when connecting to Sentinel nodes",
redisKeySeparator: "Key Namespace Separator",
etcdEndpoints: "Endpoints",
etcdEndpointsHint: "One endpoint per line. Leave blank to use the host and port above.",
etcdCaCertPlaceholder: "/path/to/ca.crt",
etcdCaCertBrowse: "Choose CA certificate",
etcdClientAuth: "Client Auth",
etcdClientCertPlaceholder: "/path/to/client.crt",
etcdClientKeyPlaceholder: "/path/to/client.key",
etcdClientCertHint: "Client certificate and private key must be provided together when etcd requires mTLS.",
etcdClientCertBrowse: "Choose client certificate",
etcdClientKeyBrowse: "Choose client private key",
etcdClientCertPairRequired: "Client certificate and private key must be provided together.",
zookeeperConnectString: "Connect String",
zookeeperConnectStringHint: "Comma or line separated host:port entries. Leave blank to use the host and port above.",
zookeeperCreateModePersistent: "Persistent",
zookeeperCreateModeEphemeral: "Ephemeral",
zookeeperCreateModePersistentSequential: "Persistent Sequential",
zookeeperCreateModeEphemeralSequential: "Ephemeral Sequential",
nacosConsoleUrl: "Console URL",
nacosConsoleUrlHint: "Use the Nacos console/admin API address. Nacos 3 Docker usually exposes the console on 8085; older deployments may share 8848 with the service port.",
nacosConsoleUrlRequired: "Nacos Console URL is required",
nacosConsoleUrlAutoAdjusted: "Adjusted Nacos Console URL from {from} to {to}.",
nacosNamespace: "Namespace",
nacosContextPath: "Context Path",
nacosContextPathPlaceholder: "Leave empty or /nacos",
nacosAuth: "Auth",
nacosAuthNone: "None",
nacosAuthUserPassword: "User / Password",
nacosUsernameRequired: "Nacos username is required",
nacosTls: "TLS",
nacosTlsSkipVerify: "Skip certificate verification",
nacosPageSize: "Page Size",
searchDatabasePlaceholder: "Search database types",
iconView: "Icon view",
listView: "List view",
selectedDatabase: "Selected",
noDatabaseMatches: "No matching databases",
next: "Next",
back: "Previous",
basicTab: "Connection",
tlsTab: "TLS/SSL",
test: "Test",
testing: "Testing...",
copyTestResult: "Copy test result",
sqlServerLegacyUnencryptedMode: "Legacy compatibility mode",
sqlServerLegacyUnencryptedModeEnable: "Use SQL Server legacy TLS 1.0 unencrypted connection",
sqlServerLegacyUnencryptedModeEnabled: "SQL Server legacy compatibility mode is enabled.",
sqlServerLegacyUnencryptedModeHint: "Applies to unencrypted transport or login-only encryption. It will still fail if the server requires TLS 1.0 encryption.\nUse it only on trusted networks, VPNs, or SSH tunnels",
saveAndConnect: "Save & Connect",
save: "Save",
editTitle: "Edit Connection",
testSuccess: "Connection successful",
connecting: "Connecting to {name}...",
connectSuccess: "Connected to {name}",
connectFailed: "Connection failed: {message}",
driverNotInstalled: "{driver} driver is not installed. Please install it from the Driver Manager.",
jreNotInstalled: "JRE {jre} runtime is not installed. Please install it from the Driver Manager.",
systemJavaNotFound: "System Java runtime was not found on PATH. Please install Java or choose a custom Java executable.",
customJavaPathEmpty: "Custom Java runtime path is empty. Please choose a Java executable.",
agentJavaTooOld: "This driver requires Java 21. Use DBX managed JRE 21 or select a Java 21 executable in Driver Manager.",
agentDriverUpdateConnectionHint: "A built-in driver update is available for this connection. The connection failure may be related to an outdated local driver. Update the corresponding driver in Driver Manager, then retry.",
jdbcPluginNotInstalled: "JDBC plugin is not installed. Install the optional JDBC plugin to use this connection.",
lastError: "Connection error",
clearError: "Clear connection error",
saveFailed: "Failed to save connection: {message}",
deleted: "Connection deleted",
deletedSelected: "{count} connections deleted",
copied: "Copied",
disconnected: "Disconnected",
databaseConnectionClosed: "Closed database connection: {name}",
duplicated: "Connection duplicated",
groupDeleted: "Group deleted",
loadFailed: "Failed to load saved connections: {message}",
sshTunnel: "SSH Tunnel / Proxy",
advancedTab: "Advanced",
sshEnable: "Use SSH tunnel / proxy",
sshHost: "SSH Host",
sshUser: "SSH User",
sshPassword: "SSH Password",
sshPasswordPlaceholder: "Leave empty to use key",
sshKeyPath: "Key Path",
sshKeyPassphrase: "Key Passphrase",
sshKeyPassphrasePlaceholder: "Leave empty if key is not encrypted",
sshKeyPathBrowse: "Browse",
sshExposeLan: "Expose tunnel to LAN",
sshConnectTimeout: "SSH Timeout (seconds)",
sshHops: "SSH Tunnel / Proxy Layers",
sshHopAdd: "Add SSH layer",
sshHopDuplicate: "Duplicate",
sshHopDelete: "Delete",
sshHopMoveUp: "Move up",
sshHopMoveDown: "Move down",
sshHopName: "Layer Name",
sshHopNamePlaceholder: "Bastion, jump host, production gateway",
sshHopDefaultName: "Layer {index}",
sshHopInvalidHost: "{hop}: SSH host is required",
sshHopInvalidUser: "{hop}: SSH user is required",
sshHopInvalidPort: "{hop}: SSH port must be between 1 and 65535",
sshHopInvalidAuth: "{hop}: password, key path, or ssh-agent is required",
sshUseAgent: "Use ssh-agent",
sshAgentSockPath: "Agent Socket Path",
sshAgentSockPathPlaceholder: "e.g. ~/.ssh/agent.sock",
sshHopInvalidTimeout: "{hop}: SSH timeout must be between 1 and 300 seconds",
connectTimeout: "Connection Timeout (seconds)",
queryTimeout: "Query Timeout (seconds)",
idleTimeout: "Idle Timeout (seconds)",
keepaliveInterval: "Keepalive Interval (seconds)",
readOnly: "Read Only",
readOnlyHint: "Block all write operations (INSERT, UPDATE, DELETE, etc.)",
readOnlyBadge: "Read-only",
proxy: "Proxy",
proxyEnable: "Connect database through proxy",
proxyType: "Proxy Type",
proxyHost: "Proxy Host",
proxyUsername: "Proxy User",
proxyUsernamePlaceholder: "Optional",
proxyPassword: "Proxy Password",
proxyPasswordPlaceholder: "Optional",
dremioArrowFlightSqlMode: "Arrow Flight SQL",
dremioLegacyJdbcMode: "Legacy JDBC",
jdbcUrl: "JDBC URL",
jdbcUrlPlaceholder: "jdbc:postgresql://localhost:5432/database",
jdbcDriverClass: "Driver Class (optional)",
jdbcDriverClassPlaceholder: "Most drivers auto-register; use com.vendor.jdbc.Driver if needed",
jdbcDriverPaths: "Driver JARs",
jdbcDriverSelectPlaceholder: "Choose imported driver",
jdbcManualClasspath: "Manual classpath",
jdbcManualClasspathCount: "{count} paths",
jdbcDriverPathsPlaceholder: "/path/to/driver.jar\n/path/to/another-driver.jar",
jdbcDriverBrowse: "Choose JDBC driver JAR",
jdbcDocs: "View JDBC docs",
jdbcPluginHint: "Install the DBX JDBC plugin first, then import the database vendor's JDBC driver JAR.",
dmCompatHint: "Requires DM8 ODBC driver installed on your system.",
dmDownload: "Download from Dameng",
mongoLegacyHint: "Use Legacy for older MongoDB servers, especially versions below 4.2. If authentication fails and the user was created in admin, set Auth DB to admin.",
compatible: "Compatible",
mainstream: "Popular",
color: "Color",
colorNone: "No color",
colorGreen: "Green",
colorYellow: "Yellow",
colorOrange: "Orange",
colorRed: "Red",
colorBlue: "Blue",
colorPurple: "Purple",
colorCustom: "Custom color",
},
editor: {
pressToExecute: "Press {mod}+Enter to execute",
pressToSaveSql: "Press {mod}+S to save SQL",
queryTimeoutError: "Query timed out ({seconds}s). Check whether the database connection is healthy.",
changeQueryTimeout: "Change query timeout",
connectionMayBeLost: "The connection may have been lost. Refresh data and try again.",
showResultsPane: "Show results",
hideResultsPane: "Hide results",
noDatabase: "No database selected",
unsavedChangesTitle: "Unsaved changes",
unsavedChangesMessage: "This tab has unsaved changes that will be lost if closed. Save before closing?",
discardChanges: "Discard",
selectConnection: "Select connection",
searchConnection: "Search connections...",
selectDatabase: "Select database",
selectDatabaseRequired: "Select a database first",
searchDatabase: "Search databases...",
selectSchema: "Select schema",
setDefaultDatabase: "Set Default",
defaultDatabase: "Default",
clearDatabase: "Clear database",
completion: {
nullValue: "NULL value",
isNull: "Check if NULL",
isNotNull: "Check if not NULL",
stringLiteral: "String literal",
numericLiteral: "Numeric literal",
booleanValue: "Boolean value",
starExpansionColumns: "{count} columns",
functionDescriptions: {
COUNT: "Returns the number of rows",
SUM: "Returns the sum of a numeric column",
AVG: "Returns the average of a numeric column",
MIN: "Returns the minimum value",
MAX: "Returns the maximum value",
GROUP_CONCAT: "Concatenates group values into a string",
STRING_AGG: "Concatenates group strings",
CONCAT: "Concatenates multiple strings",
CONCAT_WS: "Concatenates strings with separator",
SUBSTRING: "Extracts a substring",
REPLACE: "Replaces content in a string",
TRIM: "Trims leading and trailing spaces",
UPPER: "Converts to uppercase",
LOWER: "Converts to lowercase",
LENGTH: "Returns the string length",
REGEXP_REPLACE: "Replaces using a regular expression",
DATE_FORMAT: "Formats a date with the given format",
DATEDIFF: "Calculates the difference between two dates",
DATE_ADD: "Adds an interval to a date",
DATE_SUB: "Subtracts an interval from a date",
EXTRACT: "Extracts a date part",
NOW: "Returns the current date and time",
ROUND: "Rounds to the specified decimal places",
FLOOR: "Rounds down",
CEIL: "Rounds up",
ABS: "Returns the absolute value",
MOD: "Returns the division remainder",
COALESCE: "Returns the first non-NULL argument",
IFNULL: "Returns a replacement value if NULL",
NULLIF: "Returns NULL if arguments are equal",
CAST: "Converts an expression to a target type",
JSON_EXTRACT: "Extracts a value from JSON",
JSON_VALUE: "Extracts a scalar value from JSON",
JSON_OBJECT: "Creates a JSON object",
JSON_ARRAY: "Creates a JSON array",
},
},
contextMenu: {
executeSelection: "Execute selection",
executeCurrent: "Execute SQL",
copySelection: "Copy selection",
selectAll: "Select all",
},
search: {
find: "Find",
replace: "Replace",
replaceAll: "Replace All",
caseSensitive: "Case sensitive",
regex: "Regular expression",
collapseReplace: "Collapse replace",
expandReplace: "Expand replace",
prevMatch: "Previous (Shift+Enter)",
nextMatch: "Next (Enter)",
close: "Close (Esc)",
noResults: "No results",
},
executionPicker: {
title: "Execution Target",
currentStatement: "Current SQL",
allStatements: "All SQL",
currentCommand: "Current command",
allCommands: "All commands",
},
},
tabs: {
sql: "SQL",
table: "Table",
tableData: "Table Data",
redis: "Redis",
etcd: "etcd",
zookeeper: "ZooKeeper",
mongo: "Mongo",
vector: "Vector",
objects: "Objects",
users: "Users & Privileges",
executionSummary: "Execution Summary",
tooltipTitle: "Title:",
tooltipConnection: "Connection:",
tooltipDatabase: "Database:",
tooltipTable: "Table:",
tooltipCollection: "Collection:",
tooltipSchema: "Schema:",
resultN: "Result {n}",
runN: "Run {n}",
resultRuns: "Result runs",
removeRun: "Remove run {n}",
autoKeepResults: "Auto-keep query results",
autoKeepResultsEnabled: "Auto-keep results enabled",
autoKeepResultsDisabled: "Auto-keep results disabled",
missingResultRun: "This result is no longer available",
exportResultArchive: "Save Result Archive",
importResultArchive: "Import Results",
importedResultArchive: "Imported results",
resultArchiveExported: "Results exported",
resultArchiveImported: "Results imported",
resultArchiveUnavailable: "No saved results are available to export",
resultArchiveImportInvalid: "This result archive could not be opened",
resultArchiveExportFailed: "Failed to export results: {message}",
resultArchiveImportFailed: "Failed to import results: {message}",
scrollLeft: "Scroll tabs left",
scrollRight: "Scroll tabs right",
openTabs: "Open tabs",
fixedTabs: "Fixed tabs",
openDataTabs: "Open tables",
},
executionSummary: {
empty: "No execution summary",
executing: "Executing...",
largeResultWarning: "Large result set ({rows} rows, ~{megabytes} MB). Consider decreasing rows per page or exporting to avoid high memory use.",
statement: "Statement",
type: "Type",
rows: "Rows",
affected: "Affected",
time: "Time",
success: "Success",
error: "Error",
returnedTable: "Returned a {count}-column result table",
noTable: "No result table returned",
},
chart: {
title: "Chart",
type: "Type",
line: "Line",
bar: "Bar",
pie: "Pie",
noNumericData: "No numeric data available for charting",
},
grid: {
rows: "{count} rows",
totalRows: "Total {count} rows",
totalRowCount: "({count} total)",
totalRowCountLoading: "(counting...)",
loadingMore: "Loading more data...",
allLoaded: "all loaded",
calculateTotalRows: "Count total rows",
calculateTotalRowsInline: "(count total rows)",
calculateTotalRowsFailed: "Count failed: {message}",
rowsAffected: "{count} rows affected",
querySuccess: "Query executed successfully",
noRows: "No data",
noRowsDescription: "This result set has no records.",
noSearchResults: "No matches",
noSearchResultsDescription: "Try a different keyword.",
noFilteredRows: "No rows match the filter",
noFilteredRowsDescription: "Adjust the search text or row status filter.",
copy: "Copy",
copyDdl: "Copy DDL",
copyCell: "Copy Cell",
copyRow: "Copy Row (JSON)",
copyColumnJson: "Copy Column (JSON)",
copyColumnNames: "Copy Column Names",
copyRowInsert: "Copy as INSERT",
copyRowInsertWithoutPrimaryKeys: "Copy as INSERT without Primary Keys",
copyRowUpdate: "Copy as UPDATE",
copyAll: "Copy All (TSV)",
selection: "Selection",
selectionSum: "SUM: {value}",
selectionCells: "{count} cells",
copySelectionTsv: "Copy Selection (TSV)",
copySelectionTsvWithHeaders: "Copy Selection with Headers (TSV)",
copySelectionCsv: "Copy Selection (CSV)",
copySelectionJson: "Copy Selection (JSON)",
copySelectionSql: "Copy Selection as SQL IN List",
clearSelection: "Clear Selection",
export: "Export",
exportCsv: "Export CSV",
exportXlsx: "Export XLSX",
exportCurrentPageCsv: "Export Current Page as CSV",
exportCurrentPageXlsx: "Export Current Page as XLSX",
exportCurrentPageJson: "Export Current Page as JSON",
exportCurrentPageMarkdown: "Export Current Page as Markdown",
exportCurrentPageSql: "Export Current Page as SQL INSERT",
exportCurrentResultCsv: "Export Current Result Set All Data as CSV",
exportCurrentResultXlsx: "Export Current Result Set All Data as XLSX",
exportCurrentResultJson: "Export Current Result Set All Data as JSON",
exportCurrentResultMarkdown: "Export Current Result Set All Data as Markdown",
exportCurrentResultSql: "Export Current Result Set All Data as SQL INSERT",
exportAllResultsXlsx: "Export This Run's All Result Sets as XLSX",
exportJson: "Export JSON",
exportMarkdown: "Export Markdown",
exportSql: "Export SQL INSERT",
exportSelectedRowsCsv: "Export Selected Rows as CSV",
exportSelectedRowsXlsx: "Export Selected Rows as XLSX",
exportSelectedRowsJson: "Export Selected Rows as JSON",
exportSelectedRowsMarkdown: "Export Selected Rows as Markdown",
exportSelectedRowsSql: "Export Selected Rows as SQL INSERT",
exported: "Exported",
exportFailed: "Export failed: {message}",
copied: "Copied",
copyFailed: "Copy failed: {message}",
previewSqlEmpty: "No pending SQL changes to preview",
renderMode: "Render Mode",
domRenderMode: "DOM",
canvasRenderMode: "Canvas",
renderModeHint: "Switch between Canvas rendering and the DOM fallback grid.",
tableFontSize: "Table font size",
filter: "Filter",
conditionHistoryEmpty: "No history yet",
conditionHistoryNoMatches: "No matching history",
filterBuilder: "Filters",
filterBuilderTitle: "Filters",
filterBuilderHint: "Build point-and-click conditions and combine them with the WHERE input.",
filterBuilderSummary: "{count} rules",
filterBuilderAddRule: "Add rule",
filterBuilderColumn: "Column",
filterBuilderValue: "Value",
filterBuilderNoValue: "No value needed",
filterBuilderEmpty: "Add a rule to start filtering rows.",
resetFilterBuilder: "Reset rules",
filterBuilderEquals: "Equals",
filterBuilderNotEquals: "Does not equal",
filterBuilderContains: "Contains",
filterBuilderNotContains: "Does not contain",
filterBuilderGreaterThan: "Greater than",
filterBuilderLessThan: "Less than",
filterBuilderIsNull: "Is NULL",
filterBuilderIsNotNull: "Is not NULL",
columnActions: "Column actions",
localFilter: "Local value filter",
localFilterFor: "Local Values For '{column}'",
databaseValueFilter: "Database value filter",
databaseValueFilterFor: "Database Values For '{column}'",
columnFormatter: "Column formatter",
columnFormatterFor: "Formatter for '{column}'",
columnFormatterHint: "Formats display only; raw values stay unchanged.",
formatterType: "Type",
formatterDatetime: "Unix timestamp",
formatterJsonPath: "JSON path",
formatterMask: "Mask text",
formatterCustomTemplate: "Custom template",
formatterTimestampUnit: "Timestamp unit",
formatterUnitAuto: "Auto",
formatterUnitSeconds: "Seconds",
formatterUnitMilliseconds: "Milliseconds",
formatterDatetimePattern: "Datetime pattern",
formatterDatetimePatternPlaceholder: "Select or enter a datetime pattern",
formatterDatetimePatternEmpty: "Default ISO8601 format",
formatterJsonPathInput: "JSON path",
formatterMaskPrefix: "Visible prefix",
formatterMaskSuffix: "Visible suffix",
formatterSavedCustom: "Saved templates",
formatterNewCustom: "New template",
formatterCustomName: "Template name",
formatterCustomNamePlaceholder: "Example: User label",
formatterCustomTemplateInput: "Template",
formatterCustomTemplateHint: "Available variables: ${value}, ${upper}, ${lower}, ${length}. Give it a name to save it to the list.",
formatterPreview: "Preview",
saveFormatter: "Save",
clearFormatter: "Clear",
searchValues: "Search values...",
loadingValues: "Loading values...",
serverValuesLimited: "Showing first {count} values",
filterTypedValue: "Use '{value}'",
value: "Value",
count: "Count",
applyFilter: "Apply Filter",
clearLocalFilters: "Clear local value filters",
clearLocalFiltersShort: "Clear local",
localFiltersActive: "{count} local value filters",
localFilterMoreValues: " +{count} more",
columnVisibility: "Columns",
columnVisibilityHint: "At least one column stays visible.",
searchColumns: "Search columns...",
dragColumnToReorder: "Drag column header to reorder",
invertColumnVisibility: "Invert",
resetColumnOrder: "Reset order",
showAllColumns: "Show all",
viewOptions: "View options",
hideNullColumns: "Hide NULL",
hideNullColumnsHint: "Toggle columns whose values are all NULL in the current result.",
moreValues: "{count} more values, keep typing to narrow results",
filterByValue: "Filter by This Value",
filterExcludeValue: "Exclude This Value",
filterLike: "Contains Value",
filterNotLike: "Does Not Contain",
filterLessThan: "Less Than Value",
filterGreaterThan: "Greater Than Value",
filterIsNull: "Show NULL Values",
filterIsNotNull: "Show Non-NULL Values",
clearFilter: "Clear Filter",
sort: "Sort",
sortAscending: "Sort Ascending",
sortDescending: "Sort Descending",
sortCurrentPageAscending: "Sort Current Page Ascending",
sortCurrentPageDescending: "Sort Current Page Descending",
sortDatabaseAscending: "Sort Database Ascending",
sortDatabaseDescending: "Sort Database Descending",
clearSort: "Clear Sort",
pasted: "Pasted!",
search: "Search...",
searchOrWhere: "Search, or enter a WHERE clause...",
applyWhere: "Apply WHERE",
filterRows: "Filter rows",
filterAllRows: "All rows",
filterChangedRows: "Changed",
page: "Page {page}",
rowsPerPage: "Rows per page",
customRowsPerPage: "Custom rows",
applyPageSize: "Apply",
save: "Save",
discard: "Discard",
dismiss: "Dismiss",
addRow: "Add Row",
quickEntryDraftPlaceholder: "New",
cloneRow: "Clone as New Row",
deleteRow: "Delete Row",
deleteRows: "Delete {count} Rows",
cloneRows: "Clone {count} as New Rows",
restoreRows: "Restore {count} Rows",
copyRows: "Copy {count} Rows (JSON)",
copyColumnsJson: "Copy {count} Columns (JSON)",
copyRowsInsert: "Copy {count} Rows as INSERT",
copyRowsInsertWithoutPrimaryKeys: "Copy {count} Rows as INSERT without Primary Keys",
copyRowsUpdate: "Copy {count} Rows as UPDATE",
selectedRows: "{count} rows selected",
restoreRow: "Restore Row",
statusClean: "Clean",
statusNew: "New Items",
statusEdited: "Updated Items",
statusDeleted: "Deleted Items",
pendingChanges: "{count} pending",
selectedCells: "{count} selected",
bulkEditSelection: "Bulk Edit Selection",
bulkEditTitle: "Bulk Edit Selection",
bulkEditDescription: "Set {count} selected cell(s) to this value.",
bulkEditValuePlaceholder: "Value, or NULL",
applyBulkEdit: "Apply",
cellDetails: "Cell Details",
cellDetailLayoutBottom: "Move to Bottom",
cellDetailLayoutRight: "Move to Right",
openCellDetailsDialog: "Open Cell Details",
rowDetails: "Row Details",
rowDetailsFor: "Row {row} Details",
openRowDetailsDialog: "Open Row Details",
openColumnDetailsDialog: "Open Column Details",
columnDetailsFor: "{column} Column Details",
columnsCount: "{count} columns",
rowCount: "Rows",
rowsCount: "{count} rows",
fieldIndex: "No.",
cellValue: "Value",
valueEditor: "Value Editor",
hexViewer: "Hex Viewer",
hexViewerByteCount: "{count} bytes",
hexViewerOffset: "Offset",
hexViewerHex: "Hex",
hexViewerAscii: "ASCII",
hexViewerEmpty: "No binary bytes to display.",
imagePreview: "Image Preview",
imageLoadFailed: "Image failed to load",
geometryPreview: "Geometry Preview",
layerPreview: "Layer Preview",
zoomIn: "Zoom In",
zoomOut: "Zoom Out",
fitImage: "Fit to View",
openImage: "Open Image",
columnName: "Column",
columnType: "Type",
columnComment: "Comment",
rowNumber: "Row",
valueLength: "Length",
nullValue: "NULL",
noComment: "No comment",
formattedJson: "Formatted JSON",
formattedValue: "Formatted Value",
detailSearchPlaceholder: "Search field or value…",
detailSearchNoMatch: "No matches",
rawValue: "Raw Value",
largeValuePreviewHint: "Previewing first {count} characters. Copy still uses the full value.",
copyValue: "Copy Value",
downloadBinaryValue: "Download Value",
downloadSaved: "Saved to {path}",
downloadStarted: "Download started: {fileName}",
binaryDownload: {
binary: "Raw binary",
utf8: "Decoded text (UTF-8)",
gbk: "Decoded text (GBK)",
},
copyRowTsv: "Copy Row (TSV)",
copyColumnValues: "Copy Column (JSON)",
copyColumnTsv: "Copy Column (TSV)",
editValue: "Edit Value",
formatJson: "Format JSON",
formattedJsonEditWarning: "You are editing formatted JSON. Saving will write it as JSON, so the original formatting may change.",
setNull: "Set NULL",
restoreOriginalValue: "Restore Original",
copyColumnName: "Copy Column Name",
copyAlterColumnSql: "Copy as SQL ALTER",
alterSqlCopied: "SQL ALTER copied to clipboard",
alterSqlCopiedWithWarnings: "SQL ALTER copied to clipboard ({count} warning(s))",
noAlterSqlAvailable: "No ALTER SQL available for this column",
copyAlterSqlFailed: "Copy failed: {message}",
copySqlCondition: "Copy SQL Condition",
transpose: "Transpose Row",
transposeMultiRowToggle: "Multi-row",
transposeSingleRow: "Current row",
transposeMultiRow: "Multi-row",
transposeMultiRowHint: "When enabled, transpose view shows multiple rows. When disabled, it only shows the current row.",
rowsPerPageShort: " rows",
columnDetails: "Column Details",
tableInfo: "Table Info",
tableInfoColumns: "Columns",
tableInfoIndexes: "Indexes",
tableInfoForeignKeys: "Foreign Keys",
tableInfoTriggers: "Triggers",
tableInfoNullable: "Nullable",
tableInfoEmpty: "No metadata",
tableInfoSearch: "Search...",
tableInfoNoResults: "No results",
goToColumn: "Go to column",
searchColumn: "Search column...",
noColumnsFound: "No columns found",
queryError: "Query Error",
dataUnavailable: "Table data needs to be reloaded.",
dataUnavailableHintPrefix: "Press ",
dataUnavailableHintSuffix: " or click Refresh below to reload.",
refresh: "Refresh",
undoChange: "Undo change",
redoChange: "Redo change",
commit: "Commit",
rollback: "Rollback",
transactionSaveHint: "Commit {count} pending change(s) in a transaction.",
nonTransactionalSaveHint: "Save {count} pending change(s) one by one. If one fails, earlier successful changes will not be rolled back.",
keylessEditWarning: "No primary key",
keylessEditWarningHint: "This table has no primary key. Updates and deletes use all original row values in the WHERE clause; exact duplicate rows may be affected together.",
queryEditReady: "Editable",
queryEditReadyHint: "This single-table result comes from “{table}”. You can edit, delete, or add rows, then use the pending-changes action to save.",
queryEditReadOnly: "Read-only result",
queryEditUnsupported: {
"not-select": "Only SELECT query results can be edited directly.",
cte: "Queries with WITH/CTE are not editable yet. Use a simple single-table SELECT.",
"set-operation": "UNION, INTERSECT, or EXCEPT results cannot be mapped safely back to source rows.",
aggregation: "DISTINCT, GROUP BY, HAVING, and aggregate results cannot be edited directly.",
"external-source": "External files and table-function results cannot be written back directly. Import them into a database table before editing.",
"complex-source": "JOINs, multiple tables, and subqueries cannot be mapped safely to one source row.",
"computed-columns": "Computed expressions or function results cannot be written back. Select raw column names instead.",
"no-table": "No editable source table was detected.",
"no-primary-key": "The target table has no primary key, so rows cannot be updated or deleted safely.",
"primary-key-not-returned": "The result is missing the raw primary key column. Include it by its original column name.",
"aliased-columns": "Result columns use aliases or expressions. Select editable columns by their original names.",
"metadata-unavailable": "DBX could not load table metadata, so result editing is disabled.",
},
sortUnsupported: "This SQL does not support full-result sorting. Try again with a single SELECT query.",
truncatedHint: "Results truncated to {count} rows. Use the footer pagination or adjust rows per page.",
},
exportProgress: {
title: "Exporting Table Data",
fetching: "Fetching data from database...",
writing: "Writing to file...",
done: "Export completed!",
error: "Export failed",
cancelled: "Export cancelled.",
rowsCount: "{exported} / {total} rows",
rowsExported: "{count} rows exported",
rowsShort: "rows",
cancel: "Cancel",
close: "Close",
tooltip: "Background Tasks",
failedTooltip: "{count} background task failed | {count} background tasks failed",
popoverTitle: "Background Tasks",
noTasks: "No background tasks",
clearFinished: "Clear finished",
showMore: "Show {count} more",
showLess: "Show less",
delete: "Remove",
databaseExportTitle: "Database backup: {name}",
sqlFileTitle: "SQL file: {name}",
dataTransferTitle: "Data transfer: {name}",
objectsCount: "{current} / {total} objects",
tablesCount: "{current} / {total} tables",
statementsCount: "{done} succeeded, {failed} failed",
},
welcome: {
title: "Database Workspace",
subtitle: "Choose a connection on the left to browse schema, or open a query tab directly.",
connections: "Connections",
connected: "Connected",
databaseTypes: "Database Types",
quickConnections: "Quick Start",
quickConnectionsHint: "Click a connection to open a query tab.",
shortcuts: "Shortcuts",
shortcutsHint: "Start the next action from here.",
sqlHistory: "Query History",
sqlHistoryEmpty: "No SQL Library records yet",
sqlHistoryOpenCount: "Opened {count} times",
unknownConnection: "Unknown connection",
tip: "You can also expand connections on the left and right-click databases or tables for more actions.",
tipSidebar: "Click a table on the left to view data",
tipExecute: "to execute query",
fileOpened: "Opened {name}",
mcpTitle: "AI Agent Integration",
mcpDescription: "Beyond the built-in AI assistant, you can also use Claude Code, Cursor, and other coding agents to query your databases via MCP.",
mcpLearnMore: "Learn more",
},
common: {
language: "Language",
loading: "Loading...",
stopping: "Stopping...",
close: "Close",
cancel: "Cancel",
save: "Save",
copy: "Copy",
import: "Import",
remove: "Remove",
retry: "Retry",
more: "More",
decrease: "Decrease",
increase: "Increase",
done: "Done",
connection: "Connection",
database: "Database",
table: "Table",
view: "View",
materializedView: "Materialized View",
procedure: "Procedure",
function: "Function",
sequence: "Sequence",
package: "Package",
packageBody: "Package Body",
noResults: "No results",
},
quickOpen: {
placeholder: "Search connections, databases, tables, and other objects...",
emptyPlaceholder: "Start typing to search",
noResults: "No results found",
results: "results",
navigate: "Navigate",
select: "Select",
close: "Close",
},
explain: {
title: "Explain Plan",
tree: "Tree",
summary: "Summary",
running: "Reading explain plan...",
empty: "No explain plan",
nodeCount: "{count} nodes",
node: "Node",
relation: "Table",
index: "Index",
cost: "Cost",
rows: "Rows",
details: "Details",
unsupported: "Explain plan is not supported for this database yet",
emptySql: "No SQL to explain",
unsafe: "This first version only explains SELECT / WITH / TABLE / VALUES statements",
},
lineage: {
title: "Field Lineage",
open: "View Field Lineage",
loading: "Reading metadata {done}/{total}",
empty: "No related lineage found",
noFiltered: "No results match the current filters",
targetField: "Current Field",
searchPlaceholder: "Search tables, fields, views, or SQL snippets...",
showing: "Showing {shown}/{total} results",
all: "All",
certain: "Certain",
likely: "Likely",
possible: "Possible",
queryHistory: "Query History",
openTable: "Open table",
copy: "Copy name",
copied: "Copied",
kind: {
foreignKey: "Foreign Key",
viewReference: "View",
historyReference: "SQL History",
sameName: "Same Name",
},
description: {
foreignKeyIncoming: "{target} points to the current field through a foreign key. This is a verified dependency.",
foreignKeyOutgoing: "The current field references {target} through a foreign key. This is a verified dependency.",
viewLikely: "The view definition mentions both the target table and field, usually indicating query dependency.",
viewPossible: "The view definition mentions a same-name field but not the target table, so it needs confirmation.",
historyLikely: "A historical SQL statement mentions both the target table and field. Use it as impact-analysis context.",
historyPossible: "A historical SQL statement mentions a same-name field. It may be related but needs context.",
sameName: "Another table has a same-name field. This may share business meaning but is not a verified database dependency.",
},
cancel: "Cancel",
refresh: "Analyze Again",
},