-
Notifications
You must be signed in to change notification settings - Fork 577
Expand file tree
/
Copy pathbundle.l10n.json
More file actions
3421 lines (3421 loc) · 212 KB
/
bundle.l10n.json
File metadata and controls
3421 lines (3421 loc) · 212 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
{
"{0} issue/{0} is the number of issues": {
"message": "{0} issue",
"comment": ["{0} is the number of issues"]
},
"{0} issues/{0} is the number of issues": {
"message": "{0} issues",
"comment": ["{0} is the number of issues"]
},
"{0} {1} issue/{0} is the tab name{1} is the number of issues": {
"message": "{0} {1} issue",
"comment": ["{0} is the tab name", "{1} is the number of issues"]
},
"{0} {1} issues/{0} is the tab name{1} is the number of issues": {
"message": "{0} {1} issues",
"comment": ["{0} is the tab name", "{1} is the number of issues"]
},
"Move Up": "Move Up",
"Move Down": "Move Down",
"Delete": "Delete",
"Expand": "Expand",
"Collapse": "Collapse",
"Select All": "Select All",
"Copy": "Copy",
"Copy with Headers": "Copy with Headers",
"Copy Headers": "Copy Headers",
"Error: Failed to parse query result data.": "Error: Failed to parse query result data.",
"Cancel": "Cancel",
"Are you sure?": "Are you sure?",
"Are you sure you want to {0}?/{0} is the action being confirmed": {
"message": "Are you sure you want to {0}?",
"comment": ["{0} is the action being confirmed"]
},
"Close": "Close",
"Apply": "Apply",
"Next": "Next",
"Clear Selection": "Clear Selection",
"Clear": "Clear",
"Find": "Find",
"Find Next": "Find Next",
"Find Previous": "Find Previous",
"No results": "No results",
"{0} of {1}/{0} is the number of active elements{1} is the total number of elements": {
"message": "{0} of {1}",
"comment": ["{0} is the number of active elements", "{1} is the total number of elements"]
},
"Close Find": "Close Find",
"Load": "Load",
"Select": "Select",
"Finish": "Finish",
"Retry": "Retry",
"Refresh": "Refresh",
"Show password": "Show password",
"Hide password": "Hide password",
"Save": "Save",
"Try it": "Try it",
"Dismiss": "Dismiss",
"Error": "Error",
"Get Started": "Get Started",
"Back": "Back",
"Warning": "Warning",
"Sign In": "Sign In",
"Loading": "Loading",
"General": "General",
"Previous": "Previous",
"OK": "OK",
"Step {0} of {1}/{0} is the current step number{1} is the total number of steps": {
"message": "Step {0} of {1}",
"comment": ["{0} is the current step number", "{1} is the total number of steps"]
},
"Learn more": "Learn more",
"Filter Settings": "Filter Settings",
"Clear All": "Clear All",
"And": "And",
"Contains": "Contains",
"Not Contains": "Not Contains",
"Starts With": "Starts With",
"Not Starts With": "Not Starts With",
"Ends With": "Ends With",
"Not Ends With": "Not Ends With",
"Equals": "Equals",
"Not Equals": "Not Equals",
"Less Than": "Less Than",
"Less Than or Equals": "Less Than or Equals",
"Greater Than": "Greater Than",
"Greater Than or Equals": "Greater Than or Equals",
"Between": "Between",
"Not Between": "Not Between",
"Path: {0}/{0} is the path of the node in the object explorer": {
"message": "Path: {0}",
"comment": ["{0} is the path of the node in the object explorer"]
},
"The first value must be set for the {0} operator in the {1} filter/{0} is the operator for the filter{1} is the name of the filter": {
"message": "The first value must be set for the {0} operator in the {1} filter",
"comment": ["{0} is the operator for the filter", "{1} is the name of the filter"]
},
"The second value must be set for the {0} operator in the {1} filter/{0} is the operator for the filter{1} is the name of the filter": {
"message": "The second value must be set for the {0} operator in the {1} filter",
"comment": ["{0} is the operator for the filter", "{1} is the name of the filter"]
},
"The first value must be less than the second value for the {0} operator in the {1} filter/{0} is the operator for the filter{1} is the name of the filter": {
"message": "The first value must be less than the second value for the {0} operator in the {1} filter",
"comment": ["{0} is the operator for the filter", "{1} is the name of the filter"]
},
"Property": "Property",
"Operator": "Operator",
"Value": "Value",
"Publishing Changes": "Publishing Changes",
"Changes published successfully": "Changes published successfully",
"Close Designer": "Close Designer",
"Continue Editing": "Continue Editing",
"Loading Table Designer": "Loading Table Designer",
"Loading Report": "Loading Report",
"Error loading preview": "Error loading preview",
"Update Database": "Update Database",
"Generate Script": "Generate Script",
"Publish": "Publish",
"Preview Database Updates": "Preview Database Updates",
"Error loading Table Designer": "Error loading Table Designer",
"Severity": "Severity",
"Description": "Description",
"Script as Create": "Script as Create",
"I have read the summary and understand the potential risks.": "I have read the summary and understand the potential risks.",
"Copy script": "Copy script",
"Open in editor": "Open in editor",
"Maximize panel size": "Maximize panel size",
"Restore panel size": "Restore panel size",
"Issues ({0})/{0} is the number of issues": {
"message": "Issues ({0})",
"comment": ["{0} is the number of issues"]
},
"{0} properties/{0} is the object type": {
"message": "{0} properties",
"comment": ["{0} is the object type"]
},
"Expand properties pane": "Expand properties pane",
"Restore properties pane": "Restore properties pane",
"Close properties pane": "Close properties pane",
"Table name": "Table name",
"Remove {0}/{0} is the object type": {
"message": "Remove {0}",
"comment": ["{0} is the object type"]
},
"Schema": "Schema",
"Back to preview": "Back to preview",
"You must review and accept the terms to proceed": "You must review and accept the terms to proceed",
"Apply Changes": "Apply Changes",
"Open Publish Script": "Open Publish Script",
"Code Analysis - {0}/{0} is the name of the database project": {
"message": "Code Analysis - {0}",
"comment": ["{0} is the name of the database project"]
},
"Loading code analysis rules...": "Loading code analysis rules...",
"No code analysis rules available.": "No code analysis rules available.",
"{0} rules/{0} is the number of code analysis rules": {
"message": "{0} rules",
"comment": ["{0} is the number of code analysis rules"]
},
"Rules": "Rules",
"Enable {0}/{0} is the rule identifier, e.g. SR0001": {
"message": "Enable {0}",
"comment": ["{0} is the rule identifier, e.g. SR0001"]
},
"Enable all rules in {0}/{0} is the category name, e.g. Design": {
"message": "Enable all rules in {0}",
"comment": ["{0} is the category name, e.g. Design"]
},
"Expand {0}/{0} is the category name, e.g. Design": {
"message": "Expand {0}",
"comment": ["{0} is the category name, e.g. Design"]
},
"Collapse {0}/{0} is the category name, e.g. Design": {
"message": "Collapse {0}",
"comment": ["{0} is the category name, e.g. Design"]
},
"Severity for {0}/{0} is the rule identifier, e.g. SR0001": {
"message": "Severity for {0}",
"comment": ["{0} is the rule identifier, e.g. SR0001"]
},
"Reset": "Reset",
"Reset to Defaults?": "Reset to Defaults?",
"This will reset all rules to their default severity and disable 'Enable Code Analysis on Build'. This cannot be undone. Would you like to continue?": "This will reset all rules to their default severity and disable 'Enable Code Analysis on Build'. This cannot be undone. Would you like to continue?",
"Unsaved Changes": "Unsaved Changes",
"You have unsaved changes. Do you want to save before closing?": "You have unsaved changes. Do you want to save before closing?",
"Don't Save": "Don't Save",
"Enable Code Analysis on Build": "Enable Code Analysis on Build",
"Search rules...": "Search rules...",
"Filter by severity": "Filter by severity",
"All severities": "All severities",
"No rules match the current filter.": "No rules match the current filter.",
"{0} of {1} rules/{0} is the filtered count, {1} is the total count": {
"message": "{0} of {1} rules",
"comment": ["{0} is the filtered count, {1} is the total count"]
},
"Rule enabled": "Rule enabled",
"Rule disabled": "Rule disabled",
"Create new firewall rule for {0}/{0} is the server name that the firewall rule will be created for": {
"message": "Create new firewall rule for {0}",
"comment": ["{0} is the server name that the firewall rule will be created for"]
},
"Create a new firewall rule": "Create a new firewall rule",
"A firewall rule is required to access this server.": "A firewall rule is required to access this server.",
"Add Firewall Rule": "Add Firewall Rule",
"Sign into Azure in order to add a firewall rule.": "Sign into Azure in order to add a firewall rule.",
"Rule name": "Rule name",
"Add my client IP ({0})/{0} is the IP address of the client": {
"message": "Add my client IP ({0})",
"comment": ["{0} is the IP address of the client"]
},
"Add my subnet IP range": "Add my subnet IP range",
"From/Label for the start IP address in the firewall rule IP range": {
"message": "From",
"comment": ["Label for the start IP address in the firewall rule IP range"]
},
"To/Label for the end IP address in the firewall rule IP range": {
"message": "To",
"comment": ["Label for the end IP address in the firewall rule IP range"]
},
"Search workspaces...": "Search workspaces...",
"Loading Fabric Accounts": "Loading Fabric Accounts",
"Fabric Account": "Fabric Account",
"Select an account": "Select an account",
"Account": "Account",
"Tenant ID": "Tenant ID",
"Authentication Type": "Authentication Type",
"Browse By": "Browse By",
"My Data": "My Data",
"Recent": "Recent",
"Favorites": "Favorites",
"Fabric Workspaces": "Fabric Workspaces",
"Sign into Fabric": "Sign into Fabric",
"Filter by keyword": "Filter by keyword",
"Filter": "Filter",
"Filter by type": "Filter by type",
"Show All": "Show All",
"SQL Analytics Endpoint": "SQL Analytics Endpoint",
"SQL Database": "SQL Database",
"No workspaces found": "No workspaces found",
"Name": "Name",
"Type": "Type",
"Location (Workspace)": "Location (Workspace)",
"Expand Workspace Explorer": "Expand Workspace Explorer",
"Explorer": "Explorer",
"Collapse Workspace Explorer": "Collapse Workspace Explorer",
"Select a workspace to view the databases in it.": "Select a workspace to view the databases in it.",
"No databases found in workspace '{0}'./{0} is the name of the workspace": {
"message": "No databases found in workspace '{0}'.",
"comment": ["{0} is the name of the workspace"]
},
"No databases found in the selected workspace.": "No databases found in the selected workspace.",
"Database list": "Database list",
"Connect": "Connect",
"Connection actions": "Connection actions",
"Advanced Connection Settings": "Advanced Connection Settings",
"Advanced": "Advanced",
"Test connection": "Test connection",
"Connection test succeeded": "Connection test succeeded",
"Testing...": "Testing...",
"Connecting...": "Connecting...",
"Save without connecting": "Save without connecting",
"Connect to Database": "Connect to Database",
"Edit Database Connection - {0}/{0} is the name of the connection profile": {
"message": "Edit Database Connection - {0}",
"comment": ["{0} is the name of the connection profile"]
},
"Edit {0}/{0} is the name of the connection profile": {
"message": "Edit {0}",
"comment": ["{0} is the name of the connection profile"]
},
"Create new connection copied from {0}/{0} is the name of the connection profile": {
"message": "Create new connection copied from {0}",
"comment": ["{0} is the name of the connection profile"]
},
"Connect to {0}/{0} is the name of the connection profile": {
"message": "Connect to {0}",
"comment": ["{0} is the name of the connection profile"]
},
"Parameters": "Parameters",
"Connection String": "Connection String",
"Browse Azure": "Browse Azure",
"Browse Fabric": "Browse Fabric",
"Load from Connection String": "Load from Connection String",
"Saved Connections": "Saved Connections",
"Recent Connections": "Recent Connections",
"Subscription": "Subscription",
"subscription": "subscription",
"Resource Group": "Resource Group",
"resource group": "resource group",
"Location": "Location",
"location": "location",
"Server": "Server",
"server": "server",
"Database": "Database",
"database": "database",
"Filter Azure subscriptions": "Filter Azure subscriptions",
"Connection Error": "Connection Error",
"Encryption was enabled on this connection; review your SSL and certificate configuration for the target SQL Server, or enable 'Trust server certificate' in the connection dialog.": "Encryption was enabled on this connection; review your SSL and certificate configuration for the target SQL Server, or enable 'Trust server certificate' in the connection dialog.",
"Note: A self-signed certificate offers only limited protection and is not a recommended practice for production environments. Do you want to enable 'Trust server certificate' on this connection and retry?": "Note: A self-signed certificate offers only limited protection and is not a recommended practice for production environments. Do you want to enable 'Trust server certificate' on this connection and retry?",
"Read more": "Read more",
"Enable 'Trust Server Certificate'": "Enable 'Trust Server Certificate'",
"Select a {0} for filtering/{0} is the type of the dropdown's contents, e.g 'resource group' or 'server'": {
"message": "Select a {0} for filtering",
"comment": ["{0} is the type of the dropdown's contents, e.g 'resource group' or 'server'"]
},
"Select a valid {0} from the dropdown/{0} is the type of the dropdown's contents, e.g 'resource group' or 'server'": {
"message": "Select a valid {0} from the dropdown",
"comment": ["{0} is the type of the dropdown's contents, e.g 'resource group' or 'server'"]
},
"Default": "Default",
"Delete saved connection": "Delete saved connection",
"Remove recent connection": "Remove recent connection",
"Copy connection string to clipboard": "Copy connection string to clipboard",
"Paste connection string from clipboard": "Paste connection string from clipboard",
"Paste": "Paste",
"Search settings...": "Search settings...",
"You must be signed into Azure in order to browse SQL databases.": "You must be signed into Azure in order to browse SQL databases.",
"You must be signed into Fabric in order to browse SQL databases.": "You must be signed into Fabric in order to browse SQL databases.",
"{0} of {1} tenants/{0} is the number of tenants with active sessions{1} is the total number of tenants": {
"message": "{0} of {1} tenants",
"comment": [
"{0} is the number of tenants with active sessions",
"{1} is the total number of tenants"
]
},
"Sign into tenant": "Sign into tenant",
"No tenants are currently signed in.": "No tenants are currently signed in.",
"Loading workspaces...": "Loading workspaces...",
"Loading databases in '{0}'.../{0} is the name of the workspace": {
"message": "Loading databases in '{0}'...",
"comment": ["{0} is the name of the workspace"]
},
"Loading databases in selected workspace...": "Loading databases in selected workspace...",
"Error loading workspaces": "Error loading workspaces",
"Error loading databases": "Error loading databases",
"Connection Authentication": "Connection Authentication",
"Advanced Options": "Advanced Options",
"Import from Azure Data Studio": "Import from Azure Data Studio",
"Sign into Azure": "Sign into Azure",
"Not signed in": "Not signed in",
"Azure Account": "Azure Account",
"Add Account": "Add Account",
"+ Add Azure Account": "+ Add Azure Account",
"{0} accounts/{0} is the number of accounts": {
"message": "{0} accounts",
"comment": ["{0} is the number of accounts"]
},
"Click to sign into an Azure account": "Click to sign into an Azure account",
"Currently signed in as:": "Currently signed in as:",
"Loading Azure Accounts": "Loading Azure Accounts",
"Tenant": "Tenant",
"Loading tenants...": "Loading tenants...",
"Select a tenant": "Select a tenant",
"Loading execution plan...": "Loading execution plan...",
"Query {0}: Query cost (relative to the script): {1}%/{0} is the query number{1} is the query cost": {
"message": "Query {0}: Query cost (relative to the script): {1}%",
"comment": ["{0} is the query number", "{1} is the query cost"]
},
"Actual Elapsed Time": "Actual Elapsed Time",
"Actual Elapsed CPU Time": "Actual Elapsed CPU Time",
"Cost": "Cost",
"Subtree Cost": "Subtree Cost",
"Actual Number of Rows For All Executions": "Actual Number of Rows For All Executions",
"Number of Rows Read": "Number of Rows Read",
"Off": "Off",
"Metric": "Metric",
"Find Nodes": "Find Nodes",
"Save Plan": "Save Plan",
"Open XML": "Open XML",
"Open Query": "Open Query",
"Zoom In": "Zoom In",
"Zoom Out": "Zoom Out",
"Zoom to Fit": "Zoom to Fit",
"Custom Zoom": "Custom Zoom",
"Find Node": "Find Node",
"Highlight Expensive Operation": "Highlight Expensive Operation",
"Toggle Tooltips": "Toggle Tooltips",
"Properties": "Properties",
"Importance": "Importance",
"Alphabetical": "Alphabetical",
"Reverse Alphabetical": "Reverse Alphabetical",
"Expand All": "Expand All",
"Collapse All": "Collapse All",
"Filter for any field...": "Filter for any field...",
"Estimated Subtree Cost": "Estimated Subtree Cost",
"Estimated Operator Cost": "Estimated Operator Cost",
"Microsoft would like your feedback": "Microsoft would like your feedback",
"Overall, how satisfied are you with the MSSQL extension?": "Overall, how satisfied are you with the MSSQL extension?",
"Very Satisfied": "Very Satisfied",
"Satisfied": "Satisfied",
"Dissatisfied": "Dissatisfied",
"Very Dissatisfied": "Very Dissatisfied",
"Submit": "Submit",
"Not likely at all": "Not likely at all",
"Extremely likely": "Extremely likely",
"Privacy notice": "Privacy notice",
"Privacy Statement": "Privacy Statement",
"Microsoft will process the feedback you submit pursuant to your organization’s instructions in order to improve your and your organization’s experience with this product. If you have any questions about the use of feedback data, please contact your tenant administrator. Processing of feedback data is governed by the Microsoft Products and Services Data Protection Addendum between your organization and Microsoft, and the feedback you submit is considered Personal Data under that addendum.": "Microsoft will process the feedback you submit pursuant to your organization’s instructions in order to improve your and your organization’s experience with this product. If you have any questions about the use of feedback data, please contact your tenant administrator. Processing of feedback data is governed by the Microsoft Products and Services Data Protection Addendum between your organization and Microsoft, and the feedback you submit is considered Personal Data under that addendum.",
"Results ({0})/{0} is the keyboard shortcut for the results tab": {
"message": "Results ({0})",
"comment": ["{0} is the keyboard shortcut for the results tab"]
},
"Results": "Results",
"Results ({0})/{0} is the number of results": {
"message": "Results ({0})",
"comment": ["{0} is the number of results"]
},
"Messages ({0})/{0} is the keyboard shortcut for the messages tab": {
"message": "Messages ({0})",
"comment": ["{0} is the keyboard shortcut for the messages tab"]
},
"Messages": "Messages",
"Timestamp": "Timestamp",
"Message": "Message",
"Open in New Tab": "Open in New Tab",
"Showplan XML": "Showplan XML",
"Show Menu ({0})/{0} is the keyboard shortcut for showing the menu": {
"message": "Show Menu ({0})",
"comment": ["{0} is the keyboard shortcut for showing the menu"]
},
"Show Menu": "Show Menu",
"Sort Ascending": "Sort Ascending",
"Sort Descending": "Sort Descending",
"Toggle Sort": "Toggle Sort",
"Clear Sort": "Clear Sort",
"Save as CSV ({0})/{0} is the keyboard shortcut for saving as CSV": {
"message": "Save as CSV ({0})",
"comment": ["{0} is the keyboard shortcut for saving as CSV"]
},
"Save as CSV": "Save as CSV",
"Save as Excel ({0})/{0} is the keyboard shortcut for saving as Excel": {
"message": "Save as Excel ({0})",
"comment": ["{0} is the keyboard shortcut for saving as Excel"]
},
"Save as Excel": "Save as Excel",
"Save as JSON ({0})/{0} is the keyboard shortcut for saving as JSON": {
"message": "Save as JSON ({0})",
"comment": ["{0} is the keyboard shortcut for saving as JSON"]
},
"Save as JSON": "Save as JSON",
"Save as INSERT INTO ({0})/{0} is the keyboard shortcut for saving as INSERT INTO": {
"message": "Save as INSERT INTO ({0})",
"comment": ["{0} is the keyboard shortcut for saving as INSERT INTO"]
},
"Save as INSERT INTO": "Save as INSERT INTO",
"More Query Actions": "More Query Actions",
"Hide this panel": "Hide this panel",
"Query Plan ({0})/{0} is the number of query plans": {
"message": "Query Plan ({0})",
"comment": ["{0} is the number of query plans"]
},
"Query Plan ({0})/{0} is the keyboard shortcut for the query plan tab": {
"message": "Query Plan ({0})",
"comment": ["{0} is the keyboard shortcut for the query plan tab"]
},
"Query Plan": "Query Plan",
"Copy As": "Copy As",
"Copy as CSV": "Copy as CSV",
"Copy as JSON": "Copy as JSON",
"Copy as IN clause": "Copy as IN clause",
"Copy as INSERT INTO": "Copy as INSERT INTO",
"NULL": "NULL",
"Blanks": "Blanks",
"Search...": "Search...",
"Maximize ({0})/{0} is the keyboard shortcut for maximizing the grid": {
"message": "Maximize ({0})",
"comment": ["{0} is the keyboard shortcut for maximizing the grid"]
},
"Maximize": "Maximize",
"Restore ({0})/{0} is the keyboard shortcut for restoring the grid": {
"message": "Restore ({0})",
"comment": ["{0} is the keyboard shortcut for restoring the grid"]
},
"Restore": "Restore",
"Switch to Grid View ({0})/{0} is the keyboard shortcut for switching to grid view": {
"message": "Switch to Grid View ({0})",
"comment": ["{0} is the keyboard shortcut for switching to grid view"]
},
"Switch to Grid View": "Switch to Grid View",
"Switch to Text View ({0})/{0} is the keyboard shortcut for switching to text view": {
"message": "Switch to Text View ({0})",
"comment": ["{0} is the keyboard shortcut for switching to text view"]
},
"Switch to Text View": "Switch to Text View",
"Grid View": "Grid View",
"Text View": "Text View",
"No results to display": "No results to display",
"Error generating text view. Please try switching back to grid view.": "Error generating text view. Please try switching back to grid view.",
"(0 rows affected)": "(0 rows affected)",
"(1 row affected)": "(1 row affected)",
"({0} rows affected)/{0} is the number of rows affected": {
"message": "({0} rows affected)",
"comment": ["{0} is the number of rows affected"]
},
"Result Set Batch {0} - Query {1}/{0} is the batch number{1} is the query number": {
"message": "Result Set Batch {0} - Query {1}",
"comment": ["{0} is the batch number", "{1} is the query number"]
},
"Loading text view...": "Loading text view...",
"Loading results...": "Loading results...",
"No results for the active editor": "No results for the active editor",
"Run a query in the current editor, or switch to an editor that has results.": "Run a query in the current editor, or switch to an editor that has results.",
"Failed to start query.": "Failed to start query.",
"Filter Options": "Filter Options",
"Remove Sort": "Remove Sort",
"{0} selected/{0} is the number of selected rows": {
"message": "{0} selected",
"comment": ["{0} is the number of selected rows"]
},
"Sort": "Sort",
"Resize": "Resize",
"Copy Column Name": "Copy Column Name",
"Resize column '{0}'/{0} is the name of the column": {
"message": "Resize column '{0}'",
"comment": ["{0} is the name of the column"]
},
"Enter desired column width in pixels": "Enter desired column width in pixels",
"Column width must be at least {0} pixels./{0} is the minimum column width in pixels": {
"message": "Column width must be at least {0} pixels.",
"comment": ["{0} is the minimum column width in pixels"]
},
"Columns": "Columns",
"Add new column": "Add new column",
"Table": "Table",
"Foreign Keys": "Foreign Keys",
"Add": "Add",
"Primary Key": "Primary Key",
"Cannot delete column because it is used by a foreign key.": "Cannot delete column because it is used by a foreign key.",
"Cannot delete column because it is referenced by a foreign key.": "Cannot delete column because it is referenced by a foreign key.",
"Cannot delete column because it is part of foreign key relationships.": "Cannot delete column because it is part of foreign key relationships.",
"Add new foreign key": "Add new foreign key",
"Foreign Key {0}/{0} is the index of the foreign key": {
"message": "Foreign Key {0}",
"comment": ["{0} is the index of the foreign key"]
},
"Source Column": "Source Column",
"Target Table": "Target Table",
"Foreign Column": "Foreign Column",
"Export": "Export",
"Add Table": "Add Table",
"Auto Arrange": "Auto Arrange",
"Auto Arrange Confirmation": "Auto Arrange Confirmation",
"Auto Arrange will automatically reposition all diagram elements based on optimal layout algorithms. Any custom positioning you've created will be lost. Do you want to proceed with auto-arranging your schema diagram?": "Auto Arrange will automatically reposition all diagram elements based on optimal layout algorithms. Any custom positioning you've created will be lost. Do you want to proceed with auto-arranging your schema diagram?",
"Filter ({0})/{0} is the number of selected tables": {
"message": "Filter ({0})",
"comment": ["{0} is the number of selected tables"]
},
"Chat": "Chat",
"Open in GitHub Copilot Chat": "Open in GitHub Copilot Chat",
"Ask GitHub Copilot to Fix": "Ask GitHub Copilot to Fix",
"Open GitHub Copilot Chat to help fix these errors": "Open GitHub Copilot Chat to help fix these errors",
"Design Schemas with GitHub Copilot (Preview)": "Design Schemas with GitHub Copilot (Preview)",
"Ask questions or propose schema changes in chat, and GitHub Copilot updates the schema instantly in the diagram.": "Ask questions or propose schema changes in chat, and GitHub Copilot updates the schema instantly in the diagram.",
"Build APIs with GitHub Copilot": "Build APIs with GitHub Copilot",
"Review or propose API configuration changes in chat, and GitHub Copilot updates your configuration instantly in the Data API builder.": "Review or propose API configuration changes in chat, and GitHub Copilot updates your configuration instantly in the Data API builder.",
"Edit Table": "Edit Table",
"Open in Editor": "Open in Editor",
"Changed Tables": "Changed Tables",
"Create as Script": "Create as Script",
"Details": "Details",
"Script": "Script",
"New column mapping": "New column mapping",
"Column Name": "Column Name",
"Table '{0}' already exists/{0} is the table name": {
"message": "Table '{0}' already exists",
"comment": ["{0} is the table name"]
},
"Table name cannot be empty": "Table name cannot be empty",
"Table '{0}' not found/{0} is the table name": {
"message": "Table '{0}' not found",
"comment": ["{0} is the table name"]
},
"Schema designer is not initialized.": "Schema designer is not initialized.",
"Invalid table payload. Expected table with columns array.": "Invalid table payload. Expected table with columns array.",
"Failed to add table.": "Failed to add table.",
"Failed to update table.": "Failed to update table.",
"Failed to delete table.": "Failed to delete table.",
"Table id already exists.": "Table id already exists.",
"Foreign key column mappings are required.": "Foreign key column mappings are required.",
"Foreign key column mappings must be the same length.": "Foreign key column mappings must be the same length.",
"Invalid foreign key.": "Invalid foreign key.",
"Table must include at least one column.": "Table must include at least one column.",
"Schema '{0}' is not available./{0} is the schema name": {
"message": "Schema '{0}' is not available.",
"comment": ["{0} is the schema name"]
},
"Referenced table '{0}' not found/{0} is the table name": {
"message": "Referenced table '{0}' not found",
"comment": ["{0} is the table name"]
},
"Column '{0}' not found/{0} is the column name": {
"message": "Column '{0}' not found",
"comment": ["{0} is the column name"]
},
"Referenced column '{0}' not found/{0} is the column name": {
"message": "Referenced column '{0}' not found",
"comment": ["{0} is the column name"]
},
"Data type mismatch: '{0}' in column '{1}' incompatible with '{2}' in '{3}'/{0} is source data type{1} is source column{2} is target data type{3} is target column": {
"message": "Data type mismatch: '{0}' in column '{1}' incompatible with '{2}' in '{3}'",
"comment": [
"{0} is source data type",
"{1} is source column",
"{2} is target data type",
"{3} is target column"
]
},
"Length mismatch: Column '{0}' ({1}) incompatible with '{2}' ({3})/{0} is source column{1} is source length{2} is target column{3} is target length": {
"message": "Length mismatch: Column '{0}' ({1}) incompatible with '{2}' ({3})",
"comment": [
"{0} is source column",
"{1} is source length",
"{2} is target column",
"{3} is target length"
]
},
"Precision/scale mismatch between '{0}' and '{1}'/{0} is source column{1} is target column": {
"message": "Precision/scale mismatch between '{0}' and '{1}'",
"comment": ["{0} is source column", "{1} is target column"]
},
"Scale mismatch between '{0}' and '{1}'/{0} is source column{1} is target column": {
"message": "Scale mismatch between '{0}' and '{1}'",
"comment": ["{0} is source column", "{1} is target column"]
},
"Column '{0}' must be a primary key/{0} is the referenced column": {
"message": "Column '{0}' must be a primary key",
"comment": ["{0} is the referenced column"]
},
"Circular reference detected: '{0}' → '{1}' creates a cycle/{0} is source table{1} is target table": {
"message": "Circular reference detected: '{0}' → '{1}' creates a cycle",
"comment": ["{0} is source table", "{1} is target table"]
},
"Cannot create foreign key": "Cannot create foreign key",
"Column '{0}' already has a foreign key/{0} is the column name": {
"message": "Column '{0}' already has a foreign key",
"comment": ["{0} is the column name"]
},
"Consider adding a name for this foreign key": "Consider adding a name for this foreign key",
"Foreign key '{0}' already exists/{0} is the foreign key name": {
"message": "Foreign key '{0}' already exists",
"comment": ["{0} is the foreign key name"]
},
"{0} column data/{0} is the number of columns": {
"message": "{0} column data",
"comment": ["{0} is the number of columns"]
},
"Column '{0}' is an identity column and cannot have a cascading foreign key/{0} is the column name": {
"message": "Column '{0}' is an identity column and cannot have a cascading foreign key",
"comment": ["{0} is the column name"]
},
"Manage relationships": "Manage relationships",
"No changes detected": "No changes detected",
"Allow Null": "Allow Null",
"Max Length": "Max Length",
"Is Identity": "Is Identity",
"Scale": "Scale",
"Precision": "Precision",
"Default Value": "Default Value",
"Is Computed": "Is Computed",
"Formula": "Formula",
"Is Persisted": "Is Persisted",
"SVG": "SVG",
"PNG": "PNG",
"JPEG": "JPEG",
"Column '{0}' already exists/{0} is the column name": {
"message": "Column '{0}' already exists",
"comment": ["{0} is the column name"]
},
"Column name cannot be empty": "Column name cannot be empty",
"Column '{0}' cannot be null because it is a primary key/{0} is the column name": {
"message": "Column '{0}' cannot be null because it is a primary key",
"comment": ["{0} is the column name"]
},
"Column max length cannot be empty": "Column max length cannot be empty",
"Invalid max length '{0}'/{0} is the max length": {
"message": "Invalid max length '{0}'",
"comment": ["{0} is the max length"]
},
"Loading Schema Designer": "Loading Schema Designer",
"Error loading Schema Designer": "Error loading Schema Designer",
"Generating report, this might take a while...": "Generating report, this might take a while...",
"{0} warnings/{0} is the number of warnings": {
"message": "{0} warnings",
"comment": ["{0} is the number of warnings"]
},
"{0} errors/{0} is the number of errors": {
"message": "{0} errors",
"comment": ["{0} is the number of errors"]
},
"On Update": "On Update",
"On Delete": "On Delete",
"Cascade": "Cascade",
"Set Null": "Set Null",
"Set Default": "Set Default",
"No Action": "No Action",
"Possible Data Loss detected. Please review the changes.": "Possible Data Loss detected. Please review the changes.",
"Warnings detected. Please review the changes.": "Warnings detected. Please review the changes.",
"Definition": "Definition",
"Show Definition": "Show Definition",
"Hide Definition": "Hide Definition",
"Delete Confirmation": "Delete Confirmation",
"Are you sure you want to delete the selected items?": "Are you sure you want to delete the selected items?",
"Undo": "Undo",
"Redo": "Redo",
"Search tables...": "Search tables...",
"Show table relationships": "Show table relationships",
"Visualize and Design Schema (Preview)": "Visualize and Design Schema (Preview)",
"Build Data API (Preview)": "Build Data API (Preview)",
"Show Changes": "Show Changes",
"Hide Changes": "Hide Changes",
"Copilot Changes": "Copilot Changes",
"Highlight Changes": "Highlight Changes",
"Hide Changes Highlight": "Hide Changes Highlight",
"Changes ({0})/{0} is the number of schema changes": {
"message": "Changes ({0})",
"comment": ["{0} is the number of schema changes"]
},
"Copilot Changes ({0})/{0} is the number of copilot changes": {
"message": "Copilot Changes ({0})",
"comment": ["{0} is the number of copilot changes"]
},
"No changes yet.": "No changes yet.",
"Edit your schema to see changes here.": "Edit your schema to see changes here.",
"{0}: {1}/{0} is the qualified table name{1} is the change description": {
"message": "{0}: {1}",
"comment": ["{0} is the qualified table name", "{1} is the change description"]
},
"undefined": "undefined",
"{0} changed from '{1}' to '{2}'/{0} is the display name of the property{1} is the old value{2} is the new value": {
"message": "{0} changed from '{1}' to '{2}'",
"comment": [
"{0} is the display name of the property",
"{1} is the old value",
"{2} is the new value"
]
},
"Created table {0}/{0} is the qualified table name": {
"message": "Created table {0}",
"comment": ["{0} is the qualified table name"]
},
"Deleted table {0}/{0} is the qualified table name": {
"message": "Deleted table {0}",
"comment": ["{0} is the qualified table name"]
},
"Modified table {0}/{0} is the qualified table name": {
"message": "Modified table {0}",
"comment": ["{0} is the qualified table name"]
},
"Modified table {0}: {1}/{0} is the qualified table name{1} is a list of property changes": {
"message": "Modified table {0}: {1}",
"comment": ["{0} is the qualified table name", "{1} is a list of property changes"]
},
"Added column '{0}'/{0} is the column name": {
"message": "Added column '{0}'",
"comment": ["{0} is the column name"]
},
"Deleted column '{0}'/{0} is the column name": {
"message": "Deleted column '{0}'",
"comment": ["{0} is the column name"]
},
"Modified column '{0}'/{0} is the column name": {
"message": "Modified column '{0}'",
"comment": ["{0} is the column name"]
},
"Modified column '{0}': {1}/{0} is the column name{1} is a list of property changes": {
"message": "Modified column '{0}': {1}",
"comment": ["{0} is the column name", "{1} is a list of property changes"]
},
"Added foreign key '{0}'/{0} is the foreign key name": {
"message": "Added foreign key '{0}'",
"comment": ["{0} is the foreign key name"]
},
"Deleted foreign key '{0}'/{0} is the foreign key name": {
"message": "Deleted foreign key '{0}'",
"comment": ["{0} is the foreign key name"]
},
"Modified foreign key '{0}'/{0} is the foreign key name": {
"message": "Modified foreign key '{0}'",
"comment": ["{0} is the foreign key name"]
},
"Modified foreign key '{0}': {1}/{0} is the foreign key name{1} is a list of property changes": {
"message": "Modified foreign key '{0}': {1}",
"comment": ["{0} is the foreign key name", "{1} is a list of property changes"]
},
"Added": "Added",
"Modified": "Modified",
"Deleted": "Deleted",
"All": "All",
"Filter changes": "Filter changes",
"Filter Changes": "Filter Changes",
"Action Type": "Action Type",
"Object Type": "Object Type",
"Action": "Action",
"Category": "Category",
"Clear all": "Clear all",
"Clear Filters": "Clear Filters",
"{0} changes/{0} is the number of property changes": {
"message": "{0} changes",
"comment": ["{0} is the number of property changes"]
},
"Before": "Before",
"After": "After",
"No property changes available.": "No property changes available.",
"(empty)": "(empty)",
"Reveal": "Reveal",
"Revert": "Revert",
"Search changes...": "Search changes...",
"No changes match your search.": "No changes match your search.",
"Changes view mode": "Changes view mode",
"Schema Changes": "Schema Changes",
"Schema Diff": "Schema Diff",
"Navigate to this item in the diagram": "Navigate to this item in the diagram",
"Revert this change to its original state": "Revert this change to its original state",
"Cannot revert: The referenced table or column has been deleted": "Cannot revert: The referenced table or column has been deleted",
"Cannot revert: The column is part of a foreign key that references a deleted table": "Cannot revert: The column is part of a foreign key that references a deleted table",
"Column": "Column",
"Foreign Key": "Foreign Key",
"{0} change(s)/{0} is the number of changes": {
"message": "{0} change(s)",
"comment": ["{0} is the number of changes"]
},
"Accept": "Accept",
"Accept All": "Accept All",
"Undo All": "Undo All",
"Undo All Copilot Changes": "Undo All Copilot Changes",
"Are you sure you want to undo all copilot changes? This will revert all tracked changes to their original state.": "Are you sure you want to undo all copilot changes? This will revert all tracked changes to their original state.",
"Reject": "Reject",
"Reviewing Copilot Change": "Reviewing Copilot Change",
"Change {0} of {1}/{0} is the current change number{1} is the total number of changes": {
"message": "Change {0} of {1}",
"comment": ["{0} is the current change number", "{1} is the total number of changes"]
},
"Unknown": "Unknown",
"Referenced schema": "Referenced schema",
"Referenced table": "Referenced table",
"Referenced columns": "Referenced columns",
"Foreign keys": "Foreign keys",
"Data type": "Data type",
"Primary key": "Primary key",
"Allow null": "Allow null",
"{0}, +{1} more/{0} is the first changed property label{1} is the count of additional changed properties": {
"message": "{0}, +{1} more",
"comment": [
"{0} is the first changed property label",
"{1} is the count of additional changed properties"
]
},
"Data API builder Configuration (Preview)": "Data API builder Configuration (Preview)",
"API Type": "API Type",
"REST API": "REST API",
"GraphQL": "GraphQL",
"MCP": "MCP",
"Entity Endpoints": "Entity Endpoints",
"All Schemas": "All Schemas",
"Filter entities...": "Filter entities...",
"{0} of {1} enabled/{0} is the number of enabled entities{1} is the total number of entities": {
"message": "{0} of {1} enabled",
"comment": ["{0} is the number of enabled entities", "{1} is the total number of entities"]
},
"Create": "Create",
"Read": "Read",
"Update": "Update",
"Entity name used in API routes": "Entity name used in API routes",
"View Config": "View Config",
"Deploy": "Deploy",
"Local container deployment is currently only supported with SQL Authentication connections.": "Local container deployment is currently only supported with SQL Authentication connections.",
"At least one API type must be selected.": "At least one API type must be selected.",
"Authentication not supported": "Authentication not supported",
"In the Data API builder (Preview) experience, local container deployment is only available for connections using SQL Authentication. Your current connection type is not supported.": "In the Data API builder (Preview) experience, local container deployment is only available for connections using SQL Authentication. Your current connection type is not supported.",
"Unsupported data types detected": "Unsupported data types detected",
"One or more of your entities contain column types that are not currently supported by Data API builder. These entities cannot be selected for deployment.": "One or more of your entities contain column types that are not currently supported by Data API builder. These entities cannot be selected for deployment.",
"Back to Schema": "Back to Schema",
"Design API": "Design API",
"Advanced Entity Configuration": "Advanced Entity Configuration",
"Entity Name": "Entity Name",
"Used in API routes and responses": "Used in API routes and responses",
"Authorization Role": "Authorization Role",
"Define who can access this endpoint": "Define who can access this endpoint",
"Anonymous": "Anonymous",
"No authentication required": "No authentication required",
"Authenticated": "Authenticated",
"Requires user authentication": "Requires user authentication",
"Custom REST Path": "Custom REST Path",
"Optional - Override default api/entityName path": "Optional - Override default api/entityName path",
"Custom GraphQL Type": "Custom GraphQL Type",
"Optional - Override default GraphQL type name": "Optional - Override default GraphQL type name",
"Source Table": "Source Table",
"Loading...": "Loading...",
"Initializing DAB configuration...": "Initializing DAB configuration...",
"No entities found": "No entities found",
"Toggle all entities in {0}/{0} is the schema name": {
"message": "Toggle all entities in {0}",
"comment": ["{0} is the schema name"]
},
"Enable {0}/{0} is the entity name": {
"message": "Enable {0}",
"comment": ["{0} is the entity name"]
},
"{0} action for {1}/{0} is the action name (Create, Read, etc.){1} is the entity name": {
"message": "{0} action for {1}",
"comment": ["{0} is the action name (Create, Read, etc.)", "{1} is the entity name"]
},
"Settings for {0}/{0} is the entity name": {
"message": "Settings for {0}",
"comment": ["{0} is the entity name"]
},
"Select all {0}/{0} is the action name (Create, Read, etc.)": {
"message": "Select all {0}",
"comment": ["{0} is the action name (Create, Read, etc.)"]
},
"Deploy DAB Container": "Deploy DAB Container",
"Local Container Deployment": "Local Container Deployment",
"This will deploy a Data API builder container locally using Docker. The container will expose {0} APIs based on your configuration./{0} is a list of API types, e.g. 'REST and GraphQL'": {
"message": "This will deploy a Data API builder container locally using Docker. The container will expose {0} APIs based on your configuration.",
"comment": ["{0} is a list of API types, e.g. 'REST and GraphQL'"]
},
"Requirements:": "Requirements:",
"Docker Desktop must be installed and running on your machine.": "Docker Desktop must be installed and running on your machine.",
"Container Settings": "Container Settings",
"Container Name": "Container Name",
"Container name is required": "Container name is required",
"Must start with an alphanumeric character and contain only alphanumeric characters, underscores, periods, or hyphens": "Must start with an alphanumeric character and contain only alphanumeric characters, underscores, periods, or hyphens",
"Name for the Docker container running DAB": "Name for the Docker container running DAB",
"Port": "Port",
"Port must be between 1 and 65535": "Port must be between 1 and 65535",
"Port to expose the API on (default: 5000)": "Port to expose the API on (default: 5000)",
"Deployment Complete": "Deployment Complete",
"Deployment Failed": "Deployment Failed",
"DAB container is running!": "DAB container is running!",
"Your API is available at:": "Your API is available at:",
"Your APIs are available at the following endpoints:": "Your APIs are available at the following endpoints:",
"Copy {0} URL/{0} is the API type name, e.g. REST API or GraphQL": {
"message": "Copy {0} URL",
"comment": ["{0} is the API type name, e.g. REST API or GraphQL"]
},
"Add to VS Code": "Add to VS Code",
"Add MCP server to workspace configuration": "Add MCP server to workspace configuration",
"View Swagger": "View Swagger",
"Open Nitro": "Open Nitro",
"Table must have a primary key to be used with Data API builder": "Table must have a primary key to be used with Data API builder",
"Table contains column types not supported by Data API builder: {0}/{0} is a comma-separated list of column names and their data types": {
"message": "Table contains column types not supported by Data API builder: {0}",
"comment": ["{0} is a comma-separated list of column names and their data types"]
},
"Checking Docker installation": "Checking Docker installation",
"Verifying Docker is installed on your system": "Verifying Docker is installed on your system",
"Starting Docker Desktop": "Starting Docker Desktop",
"Ensuring Docker Desktop is running": "Ensuring Docker Desktop is running",
"Checking Docker engine": "Checking Docker engine",
"Verifying Docker engine is ready": "Verifying Docker engine is ready",
"Pulling DAB container image": "Pulling DAB container image",
"Downloading the Data API builder container image": "Downloading the Data API builder container image",
"Starting DAB container": "Starting DAB container",
"Creating and starting the container": "Creating and starting the container",
"Checking container readiness": "Checking container readiness",
"Verifying the API is ready to accept requests": "Verifying the API is ready to accept requests",
"Container logs": "Container logs",
"To compare two schemas, first select a source schema and target schema, then press compare.": "To compare two schemas, first select a source schema and target schema, then press compare.",
"Select Source Schema": "Select Source Schema",
"Select Target Schema": "Select Target Schema",
"Add Server Connection": "Add Server Connection",
"No schema differences were found.": "No schema differences were found.",
"Initializing comparison, this might take a while...": "Initializing comparison, this might take a while...",
"default": "default",
"Folder Structure": "Folder Structure",
"File": "File",
"Flat": "Flat",
"Schema/Object Type": "Schema/Object Type",
"Settings": "Settings",
"Compare": "Compare",
"Schema Compare Options": "Schema Compare Options",
"Search options...": "Search options...",
"General Options": "General Options",
"Include Object Types": "Include Object Types",
"Select all options": "Select all options",
"Include all object types": "Include all object types",
"Option Description": "Option Description",
"Stop": "Stop",
"Generate script to deploy changes to target": "Generate script to deploy changes to target",
"Apply changes to target": "Apply changes to target",
"Options": "Options",
"Switch Direction": "Switch Direction",
"Switch Source and Target": "Switch Source and Target",
"Open .scmp file": "Open .scmp file",
"Load source, target, and options saved in an .scmp file": "Load source, target, and options saved in an .scmp file",
"Save .scmp file": "Save .scmp file",
"Save source and target, options, and excluded elements": "Save source and target, options, and excluded elements",
"Source Name": "Source Name",
"Include": "Include",
"Target Name": "Target Name",
"Change": "Change",
"Select Source": "Select Source",
"Select Target": "Select Target",
"Data-tier Application File (.dacpac)": "Data-tier Application File (.dacpac)",
"Database Project": "Database Project",
"Source": "Source",
"Target": "Target",
"Comparison Details": "Comparison Details",
"Are you sure you want to update the target?": "Are you sure you want to update the target?",
"There was an error updating the project": "There was an error updating the project",
"Failed to apply changes: '{0}'/{0} is the error message returned from the publish changes operation": {