-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathen.ts
More file actions
4765 lines (4763 loc) · 216 KB
/
Copy pathen.ts
File metadata and controls
4765 lines (4763 loc) · 216 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",
autoCommit: "Auto Commit",
manualTransaction: "Manual Transaction",
autoCommitAgent: "Auto Commit (depends on Agent backend)",
manualTransactionAgent: "Manual Transaction (depends on Agent backend)",
commit: "Commit",
rollback: "Rollback",
txnAutoRolledBack: "Transaction auto-rolled back after 5 minutes of inactivity",
previewSql: "Preview SQL",
previewQuery: "Preview query",
hidePreviewSql: "Hide SQL Preview",
saveSql: "Save to SQL Library",
openSql: "Open SQL file",
exPasteSqlInCondition: "ExPaste: paste as IN condition",
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",
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",
collapseAll: "Collapse all",
collapse: "Collapse sidebar",
expand: "Expand sidebar",
showMore: "Show {count} more...",
filterByType: "Filter by type",
searchScopeConnection: "Connection",
searchScopeDatabase: "Database",
searchScopeSchema: "Schema",
searchScopeTable: "Table",
searchScopeView: "View",
searchTablesInCurrentScope: "Search tables in this database...",
clearTableSearch: "Clear table search",
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",
moveToFolder: "Move to Folder...",
moveSelectedToFolder: "Move {count} SQL to Folder...",
moveSuccess: "Moved {count} SQL file(s)",
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.",
sqliteCipherKey: "SQLCipher Key",
sqliteCipherKeyPlaceholder: "Leave empty for unencrypted SQLite",
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.",
initScript: "Init Script",
initScriptPlaceholder: "INSTALL quack;\nLOAD quack;\nATTACH 'quack:host' AS remote (TOKEN '...');",
initScriptHint: "SQL statements run each time the connection is opened (INSTALL/LOAD, SET, CREATE SECRET, ATTACH ...). Databases attached here appear in the sidebar.",
sqliteExtensionBrowse: "Select SQLite extension",
user: "User",
password: "Password",
database: "Database",
databasePlaceholder: "Optional",
databasePlaceholderRequired: "Required, enter an existing database",
databasePlaceholderWithDefault: "Optional, defaults to {database}",
kingbaseDatabaseRequired: "Kingbase requires an existing database before connecting or loading the database list.",
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",
d1AccountId: "Account ID",
d1DatabaseId: "Database ID",
d1ApiToken: "API Token",
d1TokenHint: "The token needs D1 Read permission; writes, DDL, and imports also require D1 Write.",
d1FieldsRequired: "Cloudflare Account ID, D1 Database ID, and API Token are required.",
hiveAuthMode: "Auth",
hiveAuthNone: "None",
hivePrincipal: "Principal",
hiveKerberosPrincipalRequired: "Hive Kerberos principal is required",
hiveKrb5ConfBrowse: "Choose krb5.conf",
hiveJaasConfigBrowse: "Choose JAAS config",
hiveTicketCache: "Ticket Cache",
hiveTicketCacheFallback: "Set useSubjectCredsOnly=false",
hiveJvmOptions: "JVM Options",
hiveJvmOptionsPlaceholder: "-Dsun.security.krb5.debug=true",
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",
mysqlCleartextPasswordAuth: "Cleartext Password Auth",
mysqlCleartextPasswordAuthHint: "Enable only when the MySQL server requires the cleartext password authentication plugin.",
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.",
mysqlTlsConnectionFailureHint: "If the MySQL server does not require TLS, edit the connection, set TLS Mode to Disabled, and try again.",
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",
kafkaKerberosPrincipal: "Principal",
kafkaKerberosKeytab: "Keytab",
kafkaKerberosServiceName: "Service Name",
kafkaKerberosKrb5Conf: "krb5.conf",
kafkaKerberosPrincipalRequired: "Kafka Kerberos principal is required",
kafkaKerberosKeytabRequired: "Kafka Kerberos keytab path is required",
kafkaKerberosKeytabBrowse: "Choose Keytab",
kafkaKerberosKrb5ConfBrowse: "Choose krb5.conf",
kafkaKerberosKeytabPlaceholder: "Path on DBX Agent machine, e.g. /etc/security/keytabs/user.keytab",
kafkaKerberosKrb5ConfPlaceholder: "Optional path on DBX Agent machine, e.g. /etc/krb5.conf",
kafkaKerberosPathHint: "The keytab and krb5.conf paths are read by DBX Agent and must exist on the machine running DBX Agent; files are not uploaded from this browser.",
kafkaKerberosAuthHint: "Uses GSSAPI + keytab login. If the server requires encrypted transport, set Security to SASL_SSL; otherwise Auto or SASL_PLAINTEXT can be used.",
mqSystem: "System",
mqSystemPulsar: "Apache Pulsar",
mqSystemKafka: "Apache Kafka",
mqBootstrapServers: "Bootstrap Servers",
mqBootstrapServersPlaceholder: "127.0.0.1:9092",
mqBootstrapServersRequired: "Kafka bootstrap servers are required",
mqBootstrapServersInvalid: "Kafka bootstrap servers are invalid",
mqSecurity: "Security",
mqSecurityAuto: "Auto",
mqAdminUrl: "Admin URL",
mqAdminUrlRequired: "MQ Admin URL is required",
mqAdminUrlInvalid: "MQ Admin URL is invalid",
mqAuth: "Auth",
mqAuthNone: "None",
mqAuthToken: "Token",
mqAuthBasic: "Basic",
mqAuthKerberos: "Kerberos",
mqAuthApiKey: "API Key",
mqAuthOauth2: "OAuth2",
mqToken: "Token",
mqSaslMechanism: "SASL Mechanism",
mqApiKeyHeader: "Header",
mqApiKeyValue: "Value",
mqOauthIssuerUrl: "Issuer URL",
mqOauthClientId: "Client ID",
mqOauthClientSecret: "Client Secret",
mqOauthAudience: "Audience",
mqOauthScope: "Scope",
mqOauthIssuerRequired: "OAuth2 auth requires an issuer URL",
mqOauthClientIdRequired: "OAuth2 auth requires a client ID",
mqOauthClientSecretRequired: "OAuth2 auth requires a client secret",
mqTls: "TLS",
mqTlsSkipVerify: "Skip certificate verification",
mqPinnedVersion: "Pinned Version",
mqTokenSigning: "Broker token signing",
mqTokenSigningNone: "Not configured",
mqTokenSigningKey: "Signing key",
mqTokenSigningKeyRequired: "Broker token signing key is required",
mqTokenSigningKeyPlaceholderHs256: "Broker SECRET",
mqTokenSigningKeyPlaceholderRs256: "-----BEGIN PRIVATE KEY-----",
mqTokenSigningHint: "Choose based on the broker jwt.broker.token.mode: SECRET uses HS256, PRIVATE uses RS256. The key is stored with connection secrets.",
searchDatabasePlaceholder: "Search database types",
jdbcConnection: "JDBC connection",
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",
sqlServerLegacyCompatibilityMode: "Legacy compatibility mode",
sqlServerLegacyCompatibilityModeEnable: "Enable",
sqlServerLegacyCompatibilityModeHint: "For SQL Server instances limited to TLS 1.0, login-only encryption, or no encryption.\nSome features may be limited; use only on trusted networks.",
sqlServerLegacyCompatibilityComponent: "SQL Server legacy compatibility component",
saveAndConnect: "Save & Connect",
save: "Save",
editTitle: "Edit Connection",
testSuccess: "Connection successful",
databaseInfo: {
title: "Database information",
open: "Open database information for {database}",
copy: "Copy database information",
sourceConfigured: "Current configuration",
sourceTested: "Tested",
configuredDescription: "Shows information known from the form first. A successful test adds server version and driver metadata.",
testedDescription: "This information comes from the connection used by the latest successful test.",
productName: "DBMS",
productVersion: "DBMS version",
currentDatabase: "Current database",
serverComment: "Server comment",
serverCharset: "Server charset",
serverCollation: "Server collation",
unquotedIdentifierCase: "Unquoted identifiers",
quotedIdentifierCase: "Quoted identifiers",
driverName: "Driver",
driverVersion: "Driver version",
jdbcVersion: "JDBC version",
identifierCase: {
lower: "Lowercase",
upper: "Uppercase",
mixed: "Mixed case",
},
},
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",
duplicatedSelected: "{count} connections duplicated",
groupDeleted: "Group deleted",
loadFailed: "Failed to load saved connections: {message}",
sshTunnel: "Tunnel / Proxy",
advancedTab: "Advanced",
sshEnable: "Use tunnel / proxy",
sshHost: "SSH Host",
sshHostPlaceholder: "ssh.example.com or an alias from ~/.ssh/config",
sshUser: "SSH User",
sshAuthMethod: "Login Method",
sshAuthMethodPassword: "Password",
sshAuthMethodKey: "Private Key",
sshAuthMethodNone: "None",
sshAuthMethodNoneHint: "No credentials will be sent. Use this for bastions or proxies that accept unauthenticated connections.",
sshAuthMethodAgentLegacy: "SSH Agent (legacy)",
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: "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",
tunnelProfile: "Tunnel Profile",
tunnelProfileCustom: "Custom (this connection only)",
tunnelProfileManaged: "Managed by a shared tunnel profile. Edit it in Settings > Tunnels — changes apply to every connection using it on its next connection.",
tunnelProfileMissing: "The referenced tunnel profile no longer exists. Select another profile or switch to custom.",
tunnelProfileMissingName: "Missing tunnel profile",
tunnelProfileManage: "Manage",
httpTunnel: "HTTP Tunnel",
httpTunnelAdd: "Add HTTP tunnel",
httpTunnelUrl: "Tunnel Script URL",
httpTunnelToken: "Tunnel Token",
httpTunnelTokenPlaceholder: "Token configured in dbx_tunnel.php",
httpTunnelConnectTimeout: "Tunnel Timeout (seconds)",
httpTunnelDefaultName: "HTTP Tunnel {index}",
httpTunnelInvalidOrder: "{hop}: HTTP tunnel must be the first tunnel / proxy layer",
httpTunnelInvalidUrl: "{hop}: tunnel script URL is required",
httpTunnelInvalidTimeout: "{hop}: HTTP tunnel timeout must be between 1 and 300 seconds",
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.",
mongoTlsAllowInvalidCertificates: "Disable TLS certificate verification",
mongoTlsAllowInvalidCertificatesHint: "Maps to tlsAllowInvalidCertificates=true and disables all certificate validation, not just hostname checks. This increases MITM risk. Commonly required for AWS DocumentDB over an SSH tunnel.",
mongoRetryWrites: "Retry writes",
mongoRetryWritesHint: "Maps to retryWrites. Disable for AWS DocumentDB, which does not support retryable writes.",
compatible: "Compatible",
mainstream: "Popular",
color: "Color",
colorNone: "No color",
colorGreen: "Green",
colorYellow: "Yellow",
colorOrange: "Orange",
colorRed: "Red",
colorBlue: "Blue",
colorPurple: "Purple",
colorCustom: "Custom color",
cancelConnecting: "Cancel connecting",
connectCancelled: "Connection cancelled",
},
editor: {
statementExecutionSucceeded: "{count} statement succeeded | {count} statements succeeded",
statementExecutionFailed: "{count} statement failed | {count} statements failed",
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: '"{title}" has unsaved changes that will be lost if closed. Save before closing?',
unsavedChangesBatchCloseMessage: "Some tabs you are closing have unsaved changes that will be lost. Save before continuing?",
unsavedChangesBatchCloseMultipleMessage: '{count} SQL tabs you are closing have unsaved changes. DBX is currently showing "{title}". Save before continuing?',
unsavedChangesAppCloseMessage: '"{title}" has unsaved SQL changes that will be lost if you quit DBX. Save before quitting?',
unsavedChangesAppCloseMultipleMessage: '{count} SQL tabs have unsaved changes. DBX is currently showing "{title}". Save before quitting?',
unsavedChangesViewList: "View {count} tabs",
unsavedChangesListTitle: "Unsaved tabs ({count})",
discardChanges: "Discard",
discardAllChanges: "Discard all",
saveAllChanges: "Save all",
selectConnection: "Select connection",
searchConnection: "Search connections...",
selectDatabase: "Select database",
selectDatabaseRequired: "Select a database first",
searchDatabase: "Search databases...",
selectSchema: "Select schema",
searchSchema: "Search schemas...",
setDefaultDatabase: "Set Default",
defaultDatabase: "Default",
clearDatabase: "Clear database",
exPasteNoValues: "Clipboard has no values for an IN condition",
exPasteNotList: "No convertible multi-value list was detected",
exPasteTooLarge: "Clipboard content is too large. Maximum supported length is {limit} characters.",
exPasteTooManyValues: "Too many values. Maximum supported count is {limit}.",
exPasteClipboardReadFailed: "Failed to read clipboard: {message}",
exPastePasted: "Pasted {count} IN condition values",
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",
sendToAi: "Send to AI",
uppercaseSelection: "Convert to uppercase",
lowercaseSelection: "Convert to lowercase",
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",
gridfs: "GridFS",
vector: "Vector",
objects: "Objects",
users: "Users & Privileges",
executionSummary: "Summary",
tooltipTitle: "Title:",
tooltipFilePath: "File Path:",
tooltipConnection: "Connection:",
tooltipGroup: "Group:",
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",
autoRefresh: "Auto-refresh results",
autoRefreshShort: "Auto",
autoRefreshEvery: "Refresh every {seconds}s",
startAutoRefresh: "Start auto-refresh",
stopAutoRefresh: "Stop auto-refresh",
missingResultRun: "This result is no longer available",
exportResultArchive: "Save Result Archive",
importResultArchive: "Import Result Archive",
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",
},
gridfsBrowser: {
bucketCount: "buckets",
fileCount: "files",
name: "Name",
totalSize: "Size",
chunkSize: "Chunk Size",
uploadDate: "Upload Date",
contentType: "Content Type",
metadata: "Metadata",
selectBucket: "Select a GridFS bucket to inspect or open it.",
selectFile: "Select a GridFS file to inspect or manage it.",
emptyBuckets: "No GridFS buckets found. Create one to start storing files.",
emptyFiles: "This bucket has no files yet. Upload one to get started.",
createBucket: "New Bucket",
openBucket: "Open Bucket",
deleteBucket: "Delete Bucket",
createTitle: "Create GridFS Bucket",
deleteTitle: "Delete GridFS Bucket",
deleteMessage: "Delete the selected GridFS bucket and all files inside it?",
bucketName: "Bucket Name",
bucketNamePlaceholder: "example_bucket",
bucketCreated: "Bucket {bucket} created.",
bucketDeleted: "Bucket {bucket} deleted.",
uploadFile: "Upload File",
downloadFile: "Download File",
downloadSelected: "Download Selected",
deleteFile: "Delete File",
selectedCount: "{count} selected",
deleteFileTitle: "Delete GridFS File",
deleteFileMessage: "Delete the selected file from this GridFS bucket?",
fileUploaded: "Uploaded {fileName}.",
fileDeleted: "Deleted {fileName}.",
},
executionSummary: {
empty: "No summary",
executing: "Executing...",
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",
mongoJsonPreview: "JSON Preview",
mongoJsonPreviewEmpty: "Select a MongoDB document to preview.",
copyJson: "Copy JSON",
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",
exportXlsxWithSql: "Export XLSX with SQL",
exportCurrentPageCsv: "Export Current Page as CSV",
exportCurrentPageXlsx: "Export Current Page as XLSX",
exportCurrentPageXlsxWithSql: "Export Current Page as XLSX with SQL",
exportCurrentPageJson: "Export Current Page as JSON",
exportCurrentPageMarkdown: "Export Current Page as Markdown",
exportCurrentPageSql: "Export Current Page as SQL INSERT",
exportCurrentPageTxt: "Export Current Page as TXT",
exportCurrentResultCsv: "Export Current Result Set All Data as CSV",
exportCurrentResultXlsx: "Export Current Result Set All Data as XLSX",
exportCurrentResultXlsxWithSql: "Export Current Result Set All Data as XLSX with SQL",
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",
exportCurrentResultTxt: "Export Current Result Set All Data as TXT",
exportAllResultsXlsx: "Export This Run's All Result Sets as XLSX",
exportAllResultsXlsxWithSql: "Export This Run's All Result Sets as XLSX with SQL",
exportJson: "Export JSON",
exportMarkdown: "Export Markdown",
exportSql: "Export SQL INSERT",
exportTxt: "Export TXT",
exportSelectedRowsCsv: "Export Selected Rows as CSV",
exportSelectedRowsXlsx: "Export Selected Rows as XLSX",
exportSelectedRowsXlsxWithSql: "Export Selected Rows as XLSX with SQL",
exportSelectedRowsJson: "Export Selected Rows as JSON",
exportSelectedRowsMarkdown: "Export Selected Rows as Markdown",
exportSelectedRowsSql: "Export Selected Rows as SQL INSERT",
exportSelectedRowsTxt: "Export Selected Rows as TXT",
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",
filterBuilderSearchColumns: "Search columns...",
filterBuilderNoMatchingColumns: "No matching columns",
filterBuilderValue: "Value",
filterBuilderValues: "Values (comma or newline separated)",
filterBuilderRangeStart: "Start value",
filterBuilderRangeEnd: "End 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",
filterBuilderIn: "In list",
filterBuilderNotIn: "Not in list",
filterBuilderBetween: "Within range",
filterBuilderNotBetween: "Outside range",
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",
formatterDatetimeTimezone: "Timezone",
formatterDatetimeTimezonePlaceholder: "Select a timezone",
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.",
searchMode: "Search mode",
searchModeHint: "Choose whether Ctrl+F filters matching rows or keeps all rows visible and highlights matches.",
searchModeFilter: "Filter",
searchModeHighlight: "Highlight",
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)",
copySelectedRowsTsv: "Copy {count} Rows (TSV)",
copySelectedRowsTsvWithHeaders: "Copy {count} Rows with Headers (TSV)",
copySelectedRowTsv: "Copy 1 Row (TSV)",
copySelectedRowTsvWithHeaders: "Copy 1 Row with Headers (TSV)",
copyColumnsJson: "Copy {count} Columns (JSON)",
copyRowsInsert: "Copy {count} Rows as INSERT",
copyRowsInsertMerged: "Copy {count} Rows as INSERT (Merged)",
copyRowsInsertRowByRow: "Copy {count} Rows as INSERT (Row by Row)",
copyRowsInsertWithoutPrimaryKeys: "Copy {count} Rows as INSERT without Primary Keys",
copyRowsInsertWithoutPrimaryKeysMerged: "Copy {count} Rows as INSERT without Primary Keys (Merged)",
copyRowsInsertWithoutPrimaryKeysRowByRow: "Copy {count} Rows as INSERT without Primary Keys (Row by Row)",
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",
generateValue: "Generate Value",
generateEmptyString: "Empty String",
generateNull: "NULL",
generateCurrentDatetime: "Current Datetime",
generateCurrentDate: "Current Date",
generateUuid: "UUID",
generateIncrementId: "Increment ID",
generateSnowflakeId: "Snowflake ID",
generateSequenceDescription: "Generate consecutive values for {count} selected cell(s). Enter the start value.",
generateStartInvalid: "Start value must be an integer",
generatedValuesApplied: "Generated {count} value(s)",
cellDetails: "Cell Details",