-
Notifications
You must be signed in to change notification settings - Fork 577
Expand file tree
/
Copy pathvscode-mssql.xlf
More file actions
7890 lines (7890 loc) · 461 KB
/
vscode-mssql.xlf
File metadata and controls
7890 lines (7890 loc) · 461 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
<?xml version="1.0" encoding="utf-8"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file original="bundle" source-language="en" datatype="plaintext"><body>
<trans-unit id="++CODE++fd10453f63e5c663d4e640ea9cbe1adcc832b6fed0454e62686773ac486ce64d">
<source xml:lang="en"> is required.</source>
</trans-unit>
<trans-unit id="++CODE++18b63db64aa0aff55a9f4784ad62abdc2b70cedb95b5e89d5551996cc9bd25ac">
<source xml:lang="en">$(plug) Connect to MSSQL</source>
</trans-unit>
<trans-unit id="++CODE++e59b9e59be153f480e2e2f5836749b5d33fe1776d037625761e5a957462aadd8">
<source xml:lang="en">'{0}' started.</source>
<note>{0} is the service name</note>
</trans-unit>
<trans-unit id="++CODE++77d57e39b407cbca2770fb31b55c148c757f4f84d1e2ce824c7d5cf9412a6298">
<source xml:lang="en">></source>
</trans-unit>
<trans-unit id="++CODE++0dd9aaac823c795196de2c13a409f5adf2652723f32be4c32c2831fcf47fdf51">
<source xml:lang="en">>=</source>
</trans-unit>
<trans-unit id="++CODE++3885ff5ae3386f58e4f1f1363d4863d8c9a5f280fe15e346ad7c78a09529637a">
<source xml:lang="en"><</source>
</trans-unit>
<trans-unit id="++CODE++5db520ece127b89d67ed03b42b26dfc85e0e9e55c8e16e33e58bf2fc7a484b23">
<source xml:lang="en"><></source>
</trans-unit>
<trans-unit id="++CODE++53047fb5d5fdae95544c86b244ac7919f3bcb3fed509de00e7fd91c093698974">
<source xml:lang="en"><=</source>
</trans-unit>
<trans-unit id="++CODE++b52e3b22bc74f576e4eb67d09ab37f79383db3c62b03686731fe777b42e5f0e6">
<source xml:lang="en"><Default></source>
</trans-unit>
<trans-unit id="++CODE++0d7668d337e375d8ccfc1a69ca8f6e22a0b0c850a78c4770b0c4aa3b0daca630">
<source xml:lang="en"><default></source>
</trans-unit>
<trans-unit id="++CODE++44db9a12f4699cefd03940639b9675924d76fc9dc7faed967e044f5fbaf7bfb6">
<source xml:lang="en">(0 rows affected)</source>
</trans-unit>
<trans-unit id="++CODE++46d92f6624a397f87a752409b0d15b0777438ad6fcbebfb6573a2720b065b094">
<source xml:lang="en">(0 rows)</source>
</trans-unit>
<trans-unit id="++CODE++666e175d7e3437548ba8bc1a84d083677a73792a61fa2184e8d6a6675eb8d030">
<source xml:lang="en">(1 row affected)</source>
</trans-unit>
<trans-unit id="++CODE++130aea5a0d1dd689e85fedca3a2c57e179d4a58d3e7d62875e2bf25799c0762f">
<source xml:lang="en">(Command completed successfully)</source>
</trans-unit>
<trans-unit id="++CODE++10901a1c32c7ff27302839dda36a950d6b522c7ca85b8d9605112601a8a392f9">
<source xml:lang="en">(current)</source>
</trans-unit>
<trans-unit id="++CODE++d29a0939bcb51176dd565a5e2d33214ce5204806b384bd80a72cb40861cdc7b9">
<source xml:lang="en">(empty)</source>
</trans-unit>
<trans-unit id="++CODE++2dbc3a842e150a69d5a35dc7e059907884fff202bead2f25e3284cdbecedf340">
<source xml:lang="en">({0} row(s) affected)</source>
<note>{0} is the number of rows affected</note>
</trans-unit>
<trans-unit id="++CODE++e4da59cc908db66f1c176e3b1ca74b35f3e1f863a6a07156a2f5516f3991a051">
<source xml:lang="en">({0} row)</source>
<note>{0} is the number of rows (singular)</note>
</trans-unit>
<trans-unit id="++CODE++e7784428bb0e21b36bb1248598086656cb640b0fdacf03835a1299416e507237">
<source xml:lang="en">({0} rows affected)</source>
<note>{0} is the number of rows affected</note>
</trans-unit>
<trans-unit id="++CODE++d7dc6d22bafdce672e9ed0f4266f83ead05837f27d30656b5e480b1893188d5e">
<source xml:lang="en">({0} rows)</source>
<note>{0} is the number of rows (plural)</note>
</trans-unit>
<trans-unit id="++CODE++58ce5122060a06a437de1d4c7d19886005ef98b2bae3c455c677baa4f30b7d71">
<source xml:lang="en">+ Add Azure Account</source>
</trans-unit>
<trans-unit id="++CODE++75aeb47c4c40ae9ea18e7b77776ff62be55ce308e85a64f870e49b056533d5cb">
<source xml:lang="en">+ Add Fabric Account</source>
</trans-unit>
<trans-unit id="++CODE++dbfb6fb3f275d24e8e32113cbbabeffe9d78165e6bdaf5b82c0fede5881451b5">
<source xml:lang="en">+ Create Connection Group</source>
</trans-unit>
<trans-unit id="++CODE++3973e022e93220f9212c18d0d0c543ae7c309e46640da93a4a0314de999f5112">
<source xml:lang="en">-</source>
</trans-unit>
<trans-unit id="++CODE++380918b946a526640a40df5dced6516794f3d97bbd9e6bb553d037c4439f31c3">
<source xml:lang="en">=</source>
</trans-unit>
<trans-unit id="++CODE++08fef8ce26bbc554c749504c8d169642c3039345674331079add345b808e96a7">
<source xml:lang="en">A SQL editor must have focus before executing this command</source>
</trans-unit>
<trans-unit id="++CODE++ac9fb8995fba687acf368ee05b5a54245e4a642be4c7a794cce8a2873e8aa11f">
<source xml:lang="en">A connection is already being established. Please wait for it to complete before running a query.</source>
</trans-unit>
<trans-unit id="++CODE++c8de997b7629be28d0a23b5051675226cd94e8dbce3b837e10491b7d60dc9903">
<source xml:lang="en">A database with this name already exists on the server</source>
</trans-unit>
<trans-unit id="++CODE++6ab58ce9ca23e017bf594366b66b620458a5580640ddaf3aebf96f3c8fdf0977">
<source xml:lang="en">A firewall rule is required to access this server.</source>
</trans-unit>
<trans-unit id="++CODE++6b262b5e3f3a492b857cb857bded5d039fa91cbc72a121ef398ef5676b2be947">
<source xml:lang="en">A highly integrated, developer-ready transactional database that auto-scales, auto-tunes, and mirrors data to OneLake for analytics across Fabric services</source>
</trans-unit>
<trans-unit id="++CODE++880a0618dd92395efe1446e54fe5d50854c148586fdc14f5da8aecda61c827ae">
<source xml:lang="en">A predefined global default value for the column or binding.</source>
</trans-unit>
<trans-unit id="++CODE++0ead4aa08784fedbf2a89d6c0958d7704ede494d920130913de6de5e42fdca50">
<source xml:lang="en">A query is already running for this editor session. Please cancel this query or wait for its completion.</source>
</trans-unit>
<trans-unit id="++CODE++c9cc5580497f31a6459320e9857b20d5c7638e934bf3e7ec2ba1b0f4c13a13ab">
<source xml:lang="en">A required .NET runtime could not be found or installed.</source>
</trans-unit>
<trans-unit id="++CODE++72e7cc4c4f1c083b8607c0e8d0e5093cb5756df15336523ee5d00f194829168b">
<source xml:lang="en">API Type</source>
</trans-unit>
<trans-unit id="++CODE++9aa3df89bd0844fc7cab254d4e810af6cf12b5d9fa011b7675f45bbae8bcadf7">
<source xml:lang="en">Accelerate schema evolution by autogenerating ORM migrations or T-SQL change scripts</source>
</trans-unit>
<trans-unit id="++CODE++89713b9c9c1b8f659c9f49db25e4a47886dd673fee248c3f650391f09a759cef">
<source xml:lang="en">Accept</source>
</trans-unit>
<trans-unit id="++CODE++3e86b1723088cc27e8589fe3f3a24b4ceb5d70f2d857414e77ff2580a688724c">
<source xml:lang="en">Accept All</source>
</trans-unit>
<trans-unit id="++CODE++e21e734aaaff27306eeaba840397aea3b25480cb0426c9c21386cbf141e56e34">
<source xml:lang="en">Accept the SQL Server EULA to deploy a SQL Server Docker container</source>
</trans-unit>
<trans-unit id="++CODE++fa0563b6f04578f7a2a7cff43aed611c4835bbb2f3a21dfed76a0601a1d63859">
<source xml:lang="en">Access denied. Please ensure you have the necessary permissions to use this tool or model.</source>
</trans-unit>
<trans-unit id="++CODE++52ae6aab4cdc82d0d33bc1d81946e10fb184e12e0d7e77149aa6b5d7dc60bd3b">
<source xml:lang="en">Access to the XEL file was denied.</source>
</trans-unit>
<trans-unit id="++CODE++ea9df7a87af305f04a7ca43d0ce60433e16504061c265ab11d0029cdf8cae372">
<source xml:lang="en">Access token expired for connection {0} with uri {1}</source>
<note>{0} is the connection id
{1} is the uri</note>
</trans-unit>
<trans-unit id="++CODE++7e1b0d5641f2640ce9a953ec231eea2c27a2a7633f7d3c273e5735e2b30c10b7">
<source xml:lang="en">Account</source>
</trans-unit>
<trans-unit id="++CODE++08a2ef94ef94039eed728a4a3ab703508a7bfe442d702183ecbd763d5852a232">
<source xml:lang="en">Account not found</source>
</trans-unit>
<trans-unit id="++CODE++64cff1319d2fd2cbb7a1e84ccecf22c1cc07b24435cdb522f8c0aa525d6002a6">
<source xml:lang="en">Action</source>
</trans-unit>
<trans-unit id="++CODE++4a7870205fd96778561ad4653fea7c80cc5fffbc97a43337c1d45f0493e4ee0e">
<source xml:lang="en">Action Type</source>
</trans-unit>
<trans-unit id="++CODE++ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43">
<source xml:lang="en">Actions</source>
</trans-unit>
<trans-unit id="++CODE++2c599b85806c57eccd08af9ac2bfb4a6f1f81b2ea125bdca3fdb22dc902695e3">
<source xml:lang="en">Active filters:</source>
</trans-unit>
<trans-unit id="++CODE++0fee17081211a1d4460499aa376fa2a12beb83c33a43e14f1832a72901f3ed1c">
<source xml:lang="en">Actual Elapsed CPU Time</source>
</trans-unit>
<trans-unit id="++CODE++3a64334fae4e284bc2271562216edc298bd734ca4ec8512af9c53291173a7d2e">
<source xml:lang="en">Actual Elapsed Time</source>
</trans-unit>
<trans-unit id="++CODE++63d01a41e50ddec3d6edfabbbf3f1c34d09f581236beab50bf510ea11e9ef4c5">
<source xml:lang="en">Actual Number of Rows For All Executions</source>
</trans-unit>
<trans-unit id="++CODE++9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8">
<source xml:lang="en">Add</source>
</trans-unit>
<trans-unit id="++CODE++3d0d3f78acca7d0def0c881e924ececb285c1791711ab008ae5a0297e09a717a">
<source xml:lang="en">Add Account</source>
</trans-unit>
<trans-unit id="++CODE++c26c65459a782d2065f5a9cda97c098c2e49e5734d5d16c8a8c86d4c177373cc">
<source xml:lang="en">Add Column</source>
</trans-unit>
<trans-unit id="++CODE++d72d67f0f765e5584e6db8bd1e591a84914d23ff29e9f5b20d8b39125091fca0">
<source xml:lang="en">Add Connection</source>
</trans-unit>
<trans-unit id="++CODE++079cd7244ce7f3c0fe474c025b5ff8e58c3678fba1ed67f0120416ac0071df85">
<source xml:lang="en">Add Firewall Rule</source>
</trans-unit>
<trans-unit id="++CODE++07d072b97d1e2346b3eed5778ffb9d979a83de20ca00ff8a5f8bfa99d41993a5">
<source xml:lang="en">Add Firewall Rule to {0}</source>
<note>{0} is the server name</note>
</trans-unit>
<trans-unit id="++CODE++e055f3ddb9f539f2c4d96b44e4821f09a1d8760a52da1eb0a8cdbf1002b3100e">
<source xml:lang="en">Add MCP server to workspace configuration</source>
</trans-unit>
<trans-unit id="++CODE++02a16a835f1e9c9cbe76a8cb9042d2f3861fc237036221e1f0c60383600f45f6">
<source xml:lang="en">Add Row</source>
</trans-unit>
<trans-unit id="++CODE++937a7b0b3cc8c58a787de5a63bfc07573789ee22a22918957f92651c0edb31f9">
<source xml:lang="en">Add Server Connection</source>
</trans-unit>
<trans-unit id="++CODE++cbc187e255409f8de0f011bbebfc96b04028928cce72ccb35ca8a088f156aba9">
<source xml:lang="en">Add Table</source>
</trans-unit>
<trans-unit id="++CODE++09857ad18f3cf066330f9fc08318e41f71ecb7b7d71f12bd1dd3b9d050db4ca0">
<source xml:lang="en">Add a Microsoft Entra account...</source>
</trans-unit>
<trans-unit id="++CODE++ee7ee5830f091690030fed013c05a7073f6cb971891c3fc6f16e928bd6d69e61">
<source xml:lang="en">Add account</source>
</trans-unit>
<trans-unit id="++CODE++7c0d6c25e58caa429d8df44b1266a82eff13a7fe9f477b164863aea8a9acc658">
<source xml:lang="en">Add my client IP ({0})</source>
<note>{0} is the IP address of the client</note>
</trans-unit>
<trans-unit id="++CODE++119f58d6a58b3f47f5c837a12f2f47a5201453288fc7ec0267e5886c2deba6e9">
<source xml:lang="en">Add my subnet IP range</source>
</trans-unit>
<trans-unit id="++CODE++cf502b3a94444bf574bf8c1ca17b7ba9f954543af389a62e0eeca0ec3faa08f3">
<source xml:lang="en">Add new column</source>
</trans-unit>
<trans-unit id="++CODE++18ef399051716731a65e9412dca68fc9d35b38850e7dff905d9771fe15bde438">
<source xml:lang="en">Add new foreign key</source>
</trans-unit>
<trans-unit id="++CODE++4eeee164cd7b783f58eca583f898bdb923ed56ab94ae7d3604dc11738090fe7f">
<source xml:lang="en">Add to VS Code</source>
</trans-unit>
<trans-unit id="++CODE++6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632">
<source xml:lang="en">Added</source>
</trans-unit>
<trans-unit id="++CODE++bc6eb3b452e596a92b620948e6858d0f740a07cec116ff572cf7202785894cbf">
<source xml:lang="en">Added column '{0}'</source>
<note>{0} is the column name</note>
</trans-unit>
<trans-unit id="++CODE++f1488f38e72433af73c22c2016b43e97e5d652e4cdd8ee0baa86d2ddd19e4447">
<source xml:lang="en">Added foreign key '{0}'</source>
<note>{0} is the foreign key name</note>
</trans-unit>
<trans-unit id="++CODE++69bcade64ab9094e6b5fd3b235f0dcc9e723977c25283af0fa746bd154fc386e">
<source xml:lang="en">Additional parameters</source>
</trans-unit>
<trans-unit id="++CODE++9f088dbebd6c3c70a5ddbc2c943b11e4ca9acea5757b0b4f2b32479f0dbb747e">
<source xml:lang="en">Advanced</source>
</trans-unit>
<trans-unit id="++CODE++6630a9b9edd3bcc11353a201a5cbfa499d925cdc660c9928deb123c36e9356db">
<source xml:lang="en">Advanced Backup Options</source>
</trans-unit>
<trans-unit id="++CODE++d2cab259e6e6da600d35907f2b627f8bf69c49ab40f8f129b9d9f206f149a8f9">
<source xml:lang="en">Advanced Connection Settings</source>
</trans-unit>
<trans-unit id="++CODE++59b9bc625f3deaf53650dfb541e848b7452cc3ede80793c43fd3ca68351c7c9d">
<source xml:lang="en">Advanced Entity Configuration</source>
</trans-unit>
<trans-unit id="++CODE++dfa2817fb2221c8b89c47c4fe8326d07c119b7c32e89e509d1061fc596fdf801">
<source xml:lang="en">Advanced Options</source>
</trans-unit>
<trans-unit id="++CODE++fe80d12c71bbc300158260094cf676c1a9f3546b792f027c84e7a91d9fc75b20">
<source xml:lang="en">Advanced Publish Options</source>
</trans-unit>
<trans-unit id="++CODE++cfbdd6edf1303a7731f7ba735eee41c3618043e3cb424fe470dced0126aa8c71">
<source xml:lang="en">Advanced restore options</source>
</trans-unit>
<trans-unit id="++CODE++7b68fe5510851da3d89100c569d3265e044d8656d95750c376b7a0972dea7330">
<source xml:lang="en">After</source>
</trans-unit>
<trans-unit id="++CODE++a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2">
<source xml:lang="en">All</source>
</trans-unit>
<trans-unit id="++CODE++6ae05840acdd06389f12106699a3e0a576640acff674dba36b6f0c4720913361">
<source xml:lang="en">All Files (*.*)</source>
</trans-unit>
<trans-unit id="++CODE++00cf214a7dfb7d94c1e2ff944723bb21250ac45fa4fbf9add906bd3532c56563">
<source xml:lang="en">All Schemas</source>
</trans-unit>
<trans-unit id="++CODE++08d0861fba87c9910b6c76342c1783be7d5504ff5248fbacd869963a7322992d">
<source xml:lang="en">All permissions for extensions to access your connections have been cleared.</source>
</trans-unit>
<trans-unit id="++CODE++b339f58d00ef993ac62d6cdf1341fd6dd3351e51031e9e04da27b34d4bb793ce">
<source xml:lang="en">All selected</source>
</trans-unit>
<trans-unit id="++CODE++222b823b4b06fbaee8182e65844c15a278fe21f952490451c025e85fed20945f">
<source xml:lang="en">All severities</source>
</trans-unit>
<trans-unit id="++CODE++4d33c136b843b3ddc449137e1c655e000f830c7ce36da8d6645e9a76633d035f">
<source xml:lang="en">Allow Null</source>
</trans-unit>
<trans-unit id="++CODE++ab4db1a876378f718e4073baa75897c34c0e7d2608d68cda6461e01de42fa962">
<source xml:lang="en">Allow Nulls</source>
</trans-unit>
<trans-unit id="++CODE++49ac2c72f4aa327cb385b0c76a52b02ae819504641492120e52b1070d9db5663">
<source xml:lang="en">Allow null</source>
</trans-unit>
<trans-unit id="++CODE++5823192e37f38baf2e14f1fba3486615cbfa097b26c05b2a13a6c3473ce11c74">
<source xml:lang="en">Allow this extension to access your connections</source>
</trans-unit>
<trans-unit id="++CODE++a49d631f8c6cf6fb1660fb5229dfa0c08b55727549c0e48cc0cef1f7770ba0e2">
<source xml:lang="en">Alphabetical</source>
</trans-unit>
<trans-unit id="++CODE++482b98e1609bd828db30a1c85f78a5e6e6ee55dcfb01db094432c1db2c1ae168">
<source xml:lang="en">Alter</source>
</trans-unit>
<trans-unit id="++CODE++2377437eeccabd24162dbc0f1d9e2ed6af6102f30ef6da601f39ce4237cb6bee">
<source xml:lang="en">Always Encrypted</source>
</trans-unit>
<trans-unit id="++CODE++1888bd4ce917e9c8cecde43608d69624f56668f86f1bbe4331494db33fb52578">
<source xml:lang="en">Always show in new tab</source>
</trans-unit>
<trans-unit id="++CODE++df50fadac20ad5c3b190a9af94532fd84c01e0787f15b55212fa2f41de09a091">
<source xml:lang="en">An active connection is required for GitHub Copilot to understand your database schema and proceed. Select "{0}" to establish a connection.</source>
<note>{0} is the button text (e.g., 'Connect' or 'Open SQL editor and connect')</note>
</trans-unit>
<trans-unit id="++CODE++d4fd4b3da177dfc06dbcde0a7f62d637dbf3d90298fdc9b6aeba4f9230441e1f">
<source xml:lang="en">An error occurred refreshing nodes. See the MSSQL output channel for more details.</source>
</trans-unit>
<trans-unit id="++CODE++0e0aa36ee32c59d59231919e47412a12d29c1f3459800637634bb73fb949f541">
<source xml:lang="en">An error occurred while copying results: {0}</source>
<note>{0} is the error message</note>
</trans-unit>
<trans-unit id="++CODE++066b4b1960893bf9e47272e16da8b7933d4731aa3f49db85a960752dc6d4257c">
<source xml:lang="en">An error occurred while loading data.</source>
</trans-unit>
<trans-unit id="++CODE++b80f19578e3d6cc4f8693e307caf7f4fc739be0f2eb550a9f78a0874ae0205e5">
<source xml:lang="en">An error occurred while processing your request.</source>
</trans-unit>
<trans-unit id="++CODE++8cf147a84fa5b378df2fb1c8d2001b12404768f0de0871a152ed488136a3b350">
<source xml:lang="en">An error occurred while removing Microsoft Entra account: {0}</source>
<note>{0} is the error message</note>
</trans-unit>
<trans-unit id="++CODE++381d558ea8ee3e00d772e070932d5a334e7743c399dda1ddd675e1962d6e32bc">
<source xml:lang="en">An error occurred while retrieving rows: {0}</source>
<note>{0} is the error message</note>
</trans-unit>
<trans-unit id="++CODE++56f99fbd59570e105fca5070d135f8f86c67f48168d43f8020b70523f06b21bb">
<source xml:lang="en">An error occurred: {0}</source>
<note>{0} is the error message</note>
</trans-unit>
<trans-unit id="++CODE++6615bf1c8fddf2fbb0970f969c21c5d919d912608bd1cceb93855780bec3123d">
<source xml:lang="en">An unexpected error occurred</source>
</trans-unit>
<trans-unit id="++CODE++8b8fe298945f010c0411318ce29f36e4d4da70cdd0d28299dc0b64e7c8866e74">
<source xml:lang="en">An unexpected error occurred with the language model. Please try again.</source>
</trans-unit>
<trans-unit id="++CODE++82fcdad573baa3443513b5c61196ed142a07d6b967afc2778c8932549a5ad455">
<source xml:lang="en">An unknown error occurred. Please try again.</source>
</trans-unit>
<trans-unit id="++CODE++6ca0797fa56ecdc7f5f08c99504d70d93a42ccbe0e904e273144c6fd9efdc21c">
<source xml:lang="en">Analytics-ready by default</source>
</trans-unit>
<trans-unit id="++CODE++44b00c0e282443ba0669be2f57be8a112820909a49b2e026121d446409e42d21">
<source xml:lang="en">Analyze static code with customizable rulesets in SQL Database Projects.</source>
</trans-unit>
<trans-unit id="++CODE++0f67514b901da8b9c613167848294cb0010b3c0e696732aa1a0c9737e5be69b1">
<source xml:lang="en">And</source>
</trans-unit>
<trans-unit id="++CODE++e7a8aa2df7e5d0b233da615af4e7fef148bec39aef1709da0a80391ad0316563">
<source xml:lang="en">Anonymous</source>
</trans-unit>
<trans-unit id="++CODE++a6f31505cd1943fe9695363ab1c0a08e79c015c0747830d411a24e29689f4899">
<source xml:lang="en">Append to the existing backup set</source>
</trans-unit>
<trans-unit id="++CODE++f548fb847184961d59c59fd5b4ff10720726475e1768037348dec8e7c6bd6468">
<source xml:lang="en">Application Intent</source>
</trans-unit>
<trans-unit id="++CODE++e9865ab4cac1f8559837db62fe175d0784978b075680404a655ce2a6182ff532">
<source xml:lang="en">Application Name</source>
</trans-unit>
<trans-unit id="++CODE++a187c7382f4026c938df224dd7484977538cd582c67e94b62861499fe68c68a4">
<source xml:lang="en">Application Version</source>
</trans-unit>
<trans-unit id="++CODE++3bce900ec4939301dbcf9f9199be4416b9c310a90af78e6a083fcbb7c517696e">
<source xml:lang="en">Application version must be in format n.n.n or n.n.n.n where n is a number (e.g., 1.0.0.0)</source>
</trans-unit>
<trans-unit id="++CODE++70e9cc5a50f7eb5ba95c18dffd367c22caeef8814be8188d6af4f5654a8fc728">
<source xml:lang="en">Application version must be in format n.n.n.n where n is a number (e.g., 1.0.0.0)</source>
</trans-unit>
<trans-unit id="++CODE++31e392d1c0378beca611de66c0f4c71cba29159905cc54242d9bddee5b23d851">
<source xml:lang="en">Apply</source>
</trans-unit>
<trans-unit id="++CODE++d80d0faa58963b92ed9852bcaab84b26d34ded47f6abe3ac786e9ad48c983aa2">
<source xml:lang="en">Apply Changes</source>
</trans-unit>
<trans-unit id="++CODE++757ac56c1f67056996dba37c6407eb302cbee2e590429afcb42210d125337f6a">
<source xml:lang="en">Apply changes to target</source>
</trans-unit>
<trans-unit id="++CODE++c4a87b18e24f113de61cbf89c652cf2ecc1d73abd2d01baf409c174c8242ef7d">
<source xml:lang="en">Apply contextual suggestions for SQL syntax, relationships, and constraints</source>
</trans-unit>
<trans-unit id="++CODE++6007acbe30b2cd98703e83350ea665c06009fcd51f26dd73b309294235f45f21">
<source xml:lang="en">Approve</source>
</trans-unit>
<trans-unit id="++CODE++34ab1d94f3f0ea49596bfd3fdbba6358a366ecd259be4bf46543ee58caad0614">
<source xml:lang="en">Are you sure you want to close the current session? All captured events will be lost. You can export events to CSV from the toolbar before closing.</source>
</trans-unit>
<trans-unit id="++CODE++9d9d0bfa74aaf1db2f58269ddd7f7e8141a4069574d576aab3174f0f810ad1e0">
<source xml:lang="en">Are you sure you want to delete the container {0}? This will remove both the container and its connection from VS Code.</source>
<note>{0} is the container name</note>
</trans-unit>
<trans-unit id="++CODE++dc1158b4986e0eadcc929a35b9de0147ca4e8e317ec963db232cb2516688ed79">
<source xml:lang="en">Are you sure you want to delete the selected items?</source>
</trans-unit>
<trans-unit id="++CODE++64f0ebe202fcbb5561671715f3bff0cf6b5219648ffe9bca961824b243d4c5bc">
<source xml:lang="en">Are you sure you want to delete {0}?</source>
<note>{0} is the group name</note>
</trans-unit>
<trans-unit id="++CODE++26c70151bceb55fb84b8e652a205659bd5736420cfa72a4e3fa92bdaa5a3b526">
<source xml:lang="en">Are you sure you want to delete {0}? You can delete its connections as well, or move them to the root folder.</source>
<note>{0} is the group name</note>
</trans-unit>
<trans-unit id="++CODE++3d283f80f43f1833dcab882ad9efc24a86c0b17b0febb10fc37336590a7016e1">
<source xml:lang="en">Are you sure you want to disconnect?</source>
</trans-unit>
<trans-unit id="++CODE++8a6ddc1941c7b1576cc5674f2969dde12347408d66861ed151f2ed506588f42c">
<source xml:lang="en">Are you sure you want to remove {0}?</source>
<note>{0} is the node label</note>
</trans-unit>
<trans-unit id="++CODE++aa77fc627924038ff6102753f77884b3fac27ed5e3f422e7b96ea681cb99a417">
<source xml:lang="en">Are you sure you want to undo all copilot changes? This will revert all tracked changes to their original state.</source>
</trans-unit>
<trans-unit id="++CODE++2f582613dd0458d381445844942f7e490b54f428e2c1e42e8c7643e1aa646a17">
<source xml:lang="en">Are you sure you want to update the target?</source>
</trans-unit>
<trans-unit id="++CODE++7eef7067697ade3fc0f13737f97978c65df37d0c48ff8f50718f6062f6e6e246">
<source xml:lang="en">Are you sure you want to {0}?</source>
<note>{0} is the action being confirmed</note>
</trans-unit>
<trans-unit id="++CODE++f0762c4f3bfcd695e32e7fcd087dc2a60bc26cda108b4fc0a643445b397168c7">
<source xml:lang="en">Are you sure?</source>
</trans-unit>
<trans-unit id="++CODE++0dfc3f06b7fb664c12d91fc6a7ec665c092f9e79fb8da300d344fc0250348b5d">
<source xml:lang="en">Ask GitHub Copilot to Fix</source>
</trans-unit>
<trans-unit id="++CODE++75e12513d00f783f9aaecccd95c59520bca219b3991587d51c43adc8487975b3">
<source xml:lang="en">Ask questions or propose schema changes in chat, and GitHub Copilot updates the schema instantly in the diagram.</source>
</trans-unit>
<trans-unit id="++CODE++6b17def22e3775d608a7cdc7f600aa9fd107e2209e657a6d358a5687f9f7c7bd">
<source xml:lang="en">At least one API type must be selected.</source>
</trans-unit>
<trans-unit id="++CODE++8ff1f9a47f14327a26fd3a548d2babeec226cb63828a0803433b4a34a19c09ff">
<source xml:lang="en">Auth type</source>
</trans-unit>
<trans-unit id="++CODE++6ab694cfc6fa5d8c7045d318bba5f3eb791ab0a859ea54c54b1c660a4ccf8ed1">
<source xml:lang="en">Authenticated</source>
</trans-unit>
<trans-unit id="++CODE++66880d2d8216260d201917a72eb245440ef18ba9b54c070ee39aa4c343ae126f">
<source xml:lang="en">Authentication</source>
</trans-unit>
<trans-unit id="++CODE++eccf8ea40318babf1bd28fa823e0fa905383eed481da5fccb9f54ea4a6152943">
<source xml:lang="en">Authentication Library has changed, please reload Visual Studio Code.</source>
</trans-unit>
<trans-unit id="++CODE++53c90adec54ba3992244fa9a6edbef327f573af7d2c99f2a110ba57949283b38">
<source xml:lang="en">Authentication Type</source>
</trans-unit>
<trans-unit id="++CODE++9a1bed14bd9674de782c072cb0e866910c7df51326e29f8a0bea807d4791a7e6">
<source xml:lang="en">Authentication error for account '{0}' (tenant '{1}'). Resolving this requires clearing your token cache, which will sign you out of all connected accounts.</source>
<note>{0} is the account display name
{1} is the tenant id</note>
</trans-unit>
<trans-unit id="++CODE++b1b511843263fa8435aafed7abebc29efd242c576fd5d386e04e349e7288e092">
<source xml:lang="en">Authentication error for account. Resolving this requires clearing your token cache, which will sign you out of all connected accounts.</source>
</trans-unit>
<trans-unit id="++CODE++439a99b0935fb17d372edb14b699ddd05330257d8c40b464365c1129bdf94d6a">
<source xml:lang="en">Authentication failed due to a nonce mismatch, please close Azure Data Studio and try again.</source>
</trans-unit>
<trans-unit id="++CODE++13bab964ffdfa4aca05306fd4c1f3e7aed36fb36a62c85dc6ef588e841299878">
<source xml:lang="en">Authentication failed due to a state mismatch, please close ADS and try again.</source>
</trans-unit>
<trans-unit id="++CODE++7eaca18a3c11c60ab2d50c764174699f66bb634b8d7324a2303d1e3ea541b626">
<source xml:lang="en">Authentication not supported</source>
</trans-unit>
<trans-unit id="++CODE++a06725099766746b634d3d1caf6928e6553311ad0e910f795ab97c69fac0f246">
<source xml:lang="en">Authorization Role</source>
</trans-unit>
<trans-unit id="++CODE++d58bbb838e095ea400fb432477d5657a6b5a32da8da836299f4f7e20020bb42d">
<source xml:lang="en">Auto Arrange</source>
</trans-unit>
<trans-unit id="++CODE++ebe205c96ccbd815b1ba5c318ebfad7ce72d76dfea65929bf8c5203cd0c72a93">
<source xml:lang="en">Auto Arrange Confirmation</source>
</trans-unit>
<trans-unit id="++CODE++a27adfa57c8938761efd3fc482ea8e81fc898b286f29d04c783c9d3b60b22824">
<source xml:lang="en">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?</source>
</trans-unit>
<trans-unit id="++CODE++30fb5ec81b38c80bd2d85fce38abae5feb4cd8e3afcf2084fc37b76c8e2ae6a8">
<source xml:lang="en">Auto-scroll</source>
</trans-unit>
<trans-unit id="++CODE++2dcc68490694632d6cbfafe090666d170ed7a4e66bc160ca4c4feef1cf974c8b">
<source xml:lang="en">Auto-scroll disabled</source>
</trans-unit>
<trans-unit id="++CODE++70d2e37ffe6556af0cba5c43fa55ab55f9235530987956b396745510a5d4d471">
<source xml:lang="en">Auto-scroll enabled</source>
</trans-unit>
<trans-unit id="++CODE++0b88b412b158e1648835456305f857b2228f04cdd61b08afc1924ea48fcee4c0">
<source xml:lang="en">Automatic tuning features like automatic index creation enabled by default.</source>
</trans-unit>
<trans-unit id="++CODE++87cdec8b1acc8c61a853ce73e9707a8a0c55e57922ff53e108262128e97553f2">
<source xml:lang="en">Available Servers</source>
</trans-unit>
<trans-unit id="++CODE++fb226d6b73aa48dadaf6a46992c5d7a707fb8d1fe58b0865de04d08c848fecff">
<source xml:lang="en">Average: {0}</source>
<note>{0} is the average</note>
</trans-unit>
<trans-unit id="++CODE++8dd4f3a846ac5cf5452d53cc438aaae7ad47df96a29ad32857a87718cdeefbca">
<source xml:lang="en">Average: {0} Count: {1} Sum: {2}</source>
<note>{0} is the average, {1} is the count, {2} is the sum</note>
</trans-unit>
<trans-unit id="++CODE++994c049faf0fd65f191759cacf91508d01743fda1b2f06cfc7f779fc49ae4991">
<source xml:lang="en">Azure (China)</source>
</trans-unit>
<trans-unit id="++CODE++cdf9c75db21efc1ddc557d567de91e9bc67533606ce4bbc049c592d77f122e68">
<source xml:lang="en">Azure (Public)</source>
</trans-unit>
<trans-unit id="++CODE++cf582c92b799b117f2d093534bbe7b99aea5df658f201220f320f2976c0ebbba">
<source xml:lang="en">Azure (US Government)</source>
</trans-unit>
<trans-unit id="++CODE++63d6f58b83d48a7543f95534cb99f84ecd4273176e77feb7fd925ecbd81a4f39">
<source xml:lang="en">Azure Account</source>
</trans-unit>
<trans-unit id="++CODE++9caca4621a4e79e9eba8871a8b0772c87fe7af38b1e5ce6518083abfd676c241">
<source xml:lang="en">Azure Account is required</source>
</trans-unit>
<trans-unit id="++CODE++34ec466979918ed648dd5ae40b41e849fa6398b0d0a5f076ac3b0061d149d168">
<source xml:lang="en">Azure Code Grant</source>
</trans-unit>
<trans-unit id="++CODE++efc3409dd68fd9fbc2ec4fa00216475abce7178376f44e57227516047ae5eaad">
<source xml:lang="en">Azure Data Studio Migration</source>
</trans-unit>
<trans-unit id="++CODE++504bf1ffb9df3a36b614b608a56ee9e99f8fd63637ca7f6ed0773b373a732cc6">
<source xml:lang="en">Azure Data Studio Migration Toolkit - Now Including Keymap!</source>
</trans-unit>
<trans-unit id="++CODE++386d70c1c775d30bdadd4cb0db6b7e6d55f6fce325963f190afcdf24cf67f7b7">
<source xml:lang="en">Azure Data Studio settings file</source>
</trans-unit>
<trans-unit id="++CODE++c5023bdd36d362e05c245ab15ab6839ad7562bcd42f1e1b0c759dca9d5fec4f7">
<source xml:lang="en">Azure Device Code</source>
</trans-unit>
<trans-unit id="++CODE++aa3e45296e9592fa302b1adc67d9b4467e467a4ffa11fee0c0430063a3372707">
<source xml:lang="en">Azure MFA</source>
</trans-unit>
<trans-unit id="++CODE++ba5528fbaf5a47fa7cb9ab8214c97d40ed77a42a1258edd947bff8447eb8dabf">
<source xml:lang="en">Azure SQL Database is not supported for backup.</source>
</trans-unit>
<trans-unit id="++CODE++bc2a386616d4df1bf0313bdc4a7161a6c66b93554d20c9ad2dd3bc8ffe04e4ad">
<source xml:lang="en">Azure SQL Database is not supported for restore.</source>
</trans-unit>
<trans-unit id="++CODE++314afcc6e23d362133e764e1ebfacabe4d330308b528392570949a17270248b9">
<source xml:lang="en">Azure sign in failed.</source>
</trans-unit>
<trans-unit id="++CODE++f71dfcecebed757febe54c711e436e17521c71da90d4c5cc61ef6717918173a4">
<source xml:lang="en">Azure: Sign In</source>
</trans-unit>
<trans-unit id="++CODE++e23a962d1e7c0f13d0ebf6da9eb0d8bf43afcb391bcbb9227c3939d932219dad">
<source xml:lang="en">Azure: Sign In to Azure Cloud</source>
</trans-unit>
<trans-unit id="++CODE++29852e83a6613ccf439cb69654f96550fd0ce1de27609b5167992cef02a9ea55">
<source xml:lang="en">Azure: Sign In with Device Code</source>
</trans-unit>
<trans-unit id="++CODE++3f0ddb46dd6305bf6e540e48d31bb83d2b269566ab7d0c8b742bf37022ee716b">
<source xml:lang="en">BACPAC exported successfully</source>
</trans-unit>
<trans-unit id="++CODE++c77ba6ce31916c226def02930b4f3867d3bba2e1814b5528c12d5b3b62828eca">
<source xml:lang="en">BACPAC exported successfully to '{0}'</source>
<note>{0} is the file path</note>
</trans-unit>
<trans-unit id="++CODE++2ba87440799be3f6c8b0aa29316cf97584087cc46962e689c375699adb392137">
<source xml:lang="en">BACPAC imported successfully</source>
</trans-unit>
<trans-unit id="++CODE++98dbbe35459fbe282206441874ff66bc527f1c735eb99367c073ac68f713c396">
<source xml:lang="en">BACPAC imported successfully to database '{0}'</source>
<note>{0} is the database name</note>
</trans-unit>
<trans-unit id="++CODE++76900f1bfd16c8d4dd3d25e6f46638d7165aee23883ccea6bfe071c514421769">
<source xml:lang="en">Back</source>
</trans-unit>
<trans-unit id="++CODE++760bb46db5b9f7594d6a52062c3f044fac1a2dc55ec95bfd659eb345bd1425fa">
<source xml:lang="en">Back to Schema</source>
</trans-unit>
<trans-unit id="++CODE++e6885d7f1ab90cd7529fb7e3690957e6324d73e7a2dc017014bb9667d7524a76">
<source xml:lang="en">Back to preview</source>
</trans-unit>
<trans-unit id="++CODE++838557924a5cdfb2f10f233635223e79be8443aef62f9d176cfe18787a2e8b03">
<source xml:lang="en">Backup</source>
</trans-unit>
<trans-unit id="++CODE++131339547c38a888800811c65663ba4a48be297f76a3ffdf6075afd06b591df8">
<source xml:lang="en">Backup Database (Preview) - {0}</source>
<note>{0} is the database name</note>
</trans-unit>
<trans-unit id="++CODE++55e3ec5a66490b401352f97b8c81d967c3e0f06782815833b8ebef7c4113a1f3">
<source xml:lang="en">Backup File</source>
</trans-unit>
<trans-unit id="++CODE++88c034e88df7490dfba55dcc2b7bb315853dfd7c098859b0ffc57305276067a0">
<source xml:lang="en">Backup Files</source>
</trans-unit>
<trans-unit id="++CODE++d95d004ad14bd593baeab8b9f19836c13acb2782cd809abf208de46785f072ab">
<source xml:lang="en">Backup Files (*.bak, *.log, *.trn)</source>
</trans-unit>
<trans-unit id="++CODE++6e6366fc532db7e72acafa9a571366c241f4f09ce49b8b29e193abb62a228cf9">
<source xml:lang="en">Backup Location</source>
</trans-unit>
<trans-unit id="++CODE++8915311eca19414aaa965b09dc2d3837b11600b7ddef68a3aaf3a0d304b052a8">
<source xml:lang="en">Backup Name</source>
</trans-unit>
<trans-unit id="++CODE++767e443808512901f6097797d8054570a7bbd053e7db6fc556679e2757ac4162">
<source xml:lang="en">Backup Type</source>
</trans-unit>
<trans-unit id="++CODE++55f5bbd2445f982b9d79752bd9a713b9a00708684504bdd581d4db0be4476091">
<source xml:lang="en">Backup sets to restore</source>
</trans-unit>
<trans-unit id="++CODE++c29bc3a4b89534cd7d948252743e5d9efa498244ba82fb6839a8ceaa26b12c41">
<source xml:lang="en">Backup the tail of the log</source>
</trans-unit>
<trans-unit id="++CODE++9b58bb027ad8dd51cee6dfa3d8a10bc1a9cc66cd1bedbbbc4947d7071450614b">
<source xml:lang="en">Backup to a new media set</source>
</trans-unit>
<trans-unit id="++CODE++785f39d515b5f700c4f9cfec99b46d49fdc412522e0e24a9316fc25e7bfd06a3">
<source xml:lang="en">Batch execution time: {0}</source>
<note>{0} is the batch time</note>
</trans-unit>
<trans-unit id="++CODE++9bb725005055412c75a8e8d1fb5a0780595174ac8bbe5a24f768647bd4e4debe">
<source xml:lang="en">Before</source>
</trans-unit>
<trans-unit id="++CODE++c1ea3f5e7aa473034872296473c7fcf9c79344355ba4fd003120627f6ec1a5f7">
<source xml:lang="en">Between</source>
</trans-unit>
<trans-unit id="++CODE++79654f98221029c4c838b279ed9a41aa49c8a3cdb1cc95d81a456c510e6854d0">
<source xml:lang="en">Blanks</source>
</trans-unit>
<trans-unit id="++CODE++24bafb0b2477f80fafd003f8104d90cb0a4ccf72dd30290872be59d153168476">
<source xml:lang="en">Blob</source>
</trans-unit>
<trans-unit id="++CODE++3bf71473ff495ab4a9690ac9038833f16a653b91035bc92de727390d919f5854">
<source xml:lang="en">Blob Container</source>
</trans-unit>
<trans-unit id="++CODE++f1cdbe727c1ab3c34a61ae29fff12d3ea8db8ff4950ab8f30fd9f4a72a8eb80c">
<source xml:lang="en">Blob Container is required</source>
</trans-unit>
<trans-unit id="++CODE++1b44eb64ce4dfb86012871e80751e6bb4dbba15132ea65db6b5b4c16f0d3c9f2">
<source xml:lang="en">Blob does not contain a valid database backup</source>
</trans-unit>
<trans-unit id="++CODE++7385d063677f43714fbd217363885c3059c6fce8bc61082e7a96e22a2d0996dc">
<source xml:lang="en">Blob is required</source>
</trans-unit>
<trans-unit id="++CODE++886089b371ee3596c742b0c91467d1b7239b1d7f8f3eb86b88c1304644266abc">
<source xml:lang="en">Block this extension from accessing your connections</source>
</trans-unit>
<trans-unit id="++CODE++ec811d30a89ce96d1c7555ffaede78b188fedb1d283adf7cdf55a4edae6697a7">
<source xml:lang="en">Brightness</source>
</trans-unit>
<trans-unit id="++CODE++ecc77aec6ef08eda8ac83e4a4062c7509261b6fadd0f7939f483aed310bea9e3">
<source xml:lang="en">Bring your saved connections, groups, and configuration from Azure Data Studio into the MSSQL extension and discover familiar experiences.</source>
</trans-unit>
<trans-unit id="++CODE++3227aa9666253f7a736509074fb83bc4d47b19582faaa0233f228746de29217a">
<source xml:lang="en">Browse</source>
</trans-unit>
<trans-unit id="++CODE++221cedb44469e4b0b105f777c771d70c7097c40a4e3e914cec4b6ba266db1970">
<source xml:lang="en">Browse Azure</source>
</trans-unit>
<trans-unit id="++CODE++d2945638af819132af21f6c456f562493e7bf76e6ce1bb782eeef16cbfbeb85b">
<source xml:lang="en">Browse By</source>
</trans-unit>
<trans-unit id="++CODE++9b0636db073a79048ef4de667c447e516b7241e55ecf311c2a6f1fbe662574a1">
<source xml:lang="en">Browse Fabric</source>
</trans-unit>
<trans-unit id="++CODE++aaadc23aff35d3da3916780fe2e84c913d08a2d1840d19f3600b2cb75efc1b91">
<source xml:lang="en">Browse Fabric workspaces and provision SQL databases in Fabric without leaving VS Code.</source>
</trans-unit>
<trans-unit id="++CODE++c8bb105f01017ced7bd39ba3dd2e7a2d276f16f202f5c29a2c2e51ff0eb31fc3">
<source xml:lang="en">Browse files</source>
</trans-unit>
<trans-unit id="++CODE++2f95c7d9dd257b91376a5bd75a57121de6f9b0cabcb2dbc09591aed6c206ee43">
<source xml:lang="en">Browse forvpath</source>
</trans-unit>
<trans-unit id="++CODE++043f707c8797404ec37a61f1a7ffa6be1279cc285b1889771b5f464e8dcaedde">
<source xml:lang="en">Browse to Azure Data Studio settings.json</source>
</trans-unit>
<trans-unit id="++CODE++c58a6bd402efb06c3e7dfd6d68910412fee2dfc1788ae384dc123089ce912285">
<source xml:lang="en">Browse...</source>
</trans-unit>
<trans-unit id="++CODE++64d5072bf4262a316002cc3ca229a06b9cfb0b98a5bfae93402cc978bef5f53b">
<source xml:lang="en">Build APIs with GitHub Copilot</source>
</trans-unit>
<trans-unit id="++CODE++0b7fa74a368845afd65888dc1e437a2afe5a96728dd43433760a2fe01c167033">
<source xml:lang="en">Build Data API (Preview)</source>
</trans-unit>
<trans-unit id="++CODE++00ea757097babdd3471ed3dbcef6f4a33b46658dfb023aa009b53fa1dd0ae30c">
<source xml:lang="en">Build failed with exit code {0}</source>
</trans-unit>
<trans-unit id="++CODE++070df86dfd0e7f4066a971ef2e0d5b9ee8ddbb826c4edf0924026bca37ac603f">
<source xml:lang="en">Build {0}</source>
</trans-unit>
<trans-unit id="++CODE++9168a1046e45504ed34edeecd99ec73be336161e82395399aa9a3c1d912be6b2">
<source xml:lang="en">Building {0}...</source>
</trans-unit>
<trans-unit id="++CODE++6f52d618fb243f0ae137c3c850eb0bda8b347766a553b613fc210f6eb6bb5c97">
<source xml:lang="en">Bulk-logged</source>
</trans-unit>
<trans-unit id="++CODE++eb6b42f54c42d2832e296319f7fdad64d46aecd1ec19b0e9c80b85b7cfc6dcae">
<source xml:lang="en">CSV</source>
</trans-unit>
<trans-unit id="++CODE++ec5bba01c0ecebae4bcbcf149b4aa52c4eea045c03875f558224d2965fb0dd8d">
<source xml:lang="en">CSV/TXT Files (*.csv;*.txt)</source>
</trans-unit>
<trans-unit id="++CODE++d9a998bc5b0b1a8720c33d843590e55895977f19f6d8f56e440c778b673ab17a">
<source xml:lang="en">Calling tool: {0} with {1}.</source>
<note>{0} is the tool function name
{1} is the SQL tool parameters</note>
</trans-unit>
<trans-unit id="++CODE++19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27">
<source xml:lang="en">Cancel</source>
</trans-unit>
<trans-unit id="++CODE++a6dab3e65af40b4f3bca5c056278a22a48972adfa26a46fa3cc16aa4e07e86e0">
<source xml:lang="en">Cancel failed: {0}</source>
<note>{0} is the error message</note>
</trans-unit>
<trans-unit id="++CODE++d6efd131712ed1115d720d4cfdb68b1819ad1de1587f4c2176c9c055c7c03a67">
<source xml:lang="en">Cancel schema compare failed: '{0}'</source>
<note>{0} is the error message returned from the cancel operation</note>
</trans-unit>
<trans-unit id="++CODE++13ca2ee2499310d97a5515fb5fd80b75da66f4cf2775273658eb2b3fdcd3bd3d">
<source xml:lang="en">Canceled</source>
</trans-unit>
<trans-unit id="++CODE++f0f958e0da473b18b76ef9febe543579a601b532c9acd58ddab45f2d6549a3b3">
<source xml:lang="en">Canceling</source>
</trans-unit>
<trans-unit id="++CODE++e98afd3714a8d3c15f84793e425b681975e26f06503850e4122965ee9825e907">
<source xml:lang="en">Canceling query </source>
</trans-unit>
<trans-unit id="++CODE++a3b871209f5c0ce02e28669f9d6aeb1bd614ecdbd7e18a413fcc9a40e666fa59">
<source xml:lang="en">Canceling the query failed: {0}</source>
<note>{0} is the error message</note>
</trans-unit>
<trans-unit id="++CODE++6a091418a02336bbb67e1aefe9453dc51828139a059a7f3cae6044273c277a54">
<source xml:lang="en">Cannot cancel query as no query is running.</source>
</trans-unit>
<trans-unit id="++CODE++4dfa72354bcd12e5cf7c9f4bf75d9136658d8614d8372e2191526fd10e855efd">
<source xml:lang="en">Cannot change session while active</source>
</trans-unit>
<trans-unit id="++CODE++78caadaa3d12c39131d70d9b85b2aa5b4fdc874138c7fa884349a843312e02c7">
<source xml:lang="en">Cannot connect due to expired tokens. Please re-authenticate and try again.</source>
</trans-unit>
<trans-unit id="++CODE++7c2b8feda9e74131c46fcd8892b9661d32e0dcfc3d10d9f4d4d948540ea4bb87">
<source xml:lang="en">Cannot create foreign key</source>
</trans-unit>
<trans-unit id="++CODE++bb58744a335d26ffe911eb87fea07fb73d8d4e3569295bbb62c143a5fe561b15">
<source xml:lang="en">Cannot delete column because it is part of foreign key relationships.</source>
</trans-unit>
<trans-unit id="++CODE++7e4bf1f743585db3be8afd457365a3b7f162846f32d1ef1bfd620c5958c72281">
<source xml:lang="en">Cannot delete column because it is referenced by a foreign key.</source>
</trans-unit>
<trans-unit id="++CODE++0fedcf43eba06c5379c3c9a1d2242e2c7a929c3067e3a2e9cfa8fbd85d7d9c6c">
<source xml:lang="en">Cannot delete column because it is used by a foreign key.</source>
</trans-unit>
<trans-unit id="++CODE++5bf30206188ff92ec48bba56b2bf99fcb46ba9c20a05460485cf684b81a9c54b">
<source xml:lang="en">Cannot exclude {0}. Included dependents exist</source>
<note>{0} is the name of the entry</note>
</trans-unit>
<trans-unit id="++CODE++14c454076816c0b275e2257bbf79446718f442983b537c0c96d0c69451924452">
<source xml:lang="en">Cannot exclude {0}. Included dependents exist, such as {1}</source>
<note>{0} is the name of the entry
{1} is the name of the blocking dependency preventing exclusion.</note>
</trans-unit>
<trans-unit id="++CODE++33006e40439b93db7f082f388bbbb20f56d76f840597c3929027c24aa07fd9eb">
<source xml:lang="en">Cannot generate script without a restore plan</source>
</trans-unit>
<trans-unit id="++CODE++01adf8aae81a6ef23bd48a183bc221def8cebdf0dc5490668df49f07e3eb3615">
<source xml:lang="en">Cannot include {0}. Excluded dependents exist</source>
<note>{0} is the name of the entry</note>
</trans-unit>
<trans-unit id="++CODE++9e3eef26ce324ceb6b5c6f2cb1d94e3961f1bc4915d314c3324c6cd5d6b12710">
<source xml:lang="en">Cannot include {0}. Excluded dependents exist, such as {1}</source>
<note>{0} is the name of the entry
{1} is the name of the blocking dependency preventing inclusion.</note>
</trans-unit>
<trans-unit id="++CODE++6911a1b423a04fe5c7be67cef3b8f03bd45b8ef5c986041317322d8131df5edf">
<source xml:lang="en">Cannot revert: The column is part of a foreign key that references a deleted table</source>
</trans-unit>
<trans-unit id="++CODE++cb0415b7eba8d09fece0299cef934d73da69c94720cfc5583914aca2a16fcac2">
<source xml:lang="en">Cannot revert: The referenced table or column has been deleted</source>
</trans-unit>
<trans-unit id="++CODE++9527fb2b3d5ccb62606c88f7604ddb16febed19faead67b1edf263f6e0c8fe0b">
<source xml:lang="en">Cascade</source>
</trans-unit>
<trans-unit id="++CODE++292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24">
<source xml:lang="en">Category</source>
</trans-unit>
<trans-unit id="++CODE++c0bf75bd78bf9572596720d596bd5a20a5b9145cde0fe50dec1e783cb184d69b">
<source xml:lang="en">Change</source>
</trans-unit>
<trans-unit id="++CODE++6bd09f9171ad9aa3824a8e54ea5edf59d28c768124be9dc7f9d2c5c7eee6780b">
<source xml:lang="en">Change Database</source>
</trans-unit>
<trans-unit id="++CODE++a949f46230748d3f7496809b82cec6daa6ec8a671d17ac1ca03a17173cbcb2d6">
<source xml:lang="en">Change Password</source>
</trans-unit>
<trans-unit id="++CODE++7cd8625322b19db450bf5b5df61bd30ef4b1905e112753ea458faf1881b2ff01">
<source xml:lang="en">Change database to '{2}' for connection '{0}' (ID: {1})?</source>
<note>{0} is the connection display name
{1} is the connection ID
{2} is the database name</note>
</trans-unit>
<trans-unit id="++CODE++03e884ddf92692afa483662c376c0ddbe134c6b0e73c8506a40d7731d2f9fe3d">
<source xml:lang="en">Change {0} of {1}</source>
<note>{0} is the current change number
{1} is the total number of changes</note>
</trans-unit>
<trans-unit id="++CODE++aa115b472e9ca1287d8404ed9c69fb8612db771dfcb9ec5f560662fd0a7d653b">
<source xml:lang="en">Changed Tables</source>
</trans-unit>
<trans-unit id="++CODE++6ba2dfc2755e1d829986d3bf36cdea9fc88fa8c16d079b7d0f6a6309e8e67a6a">
<source xml:lang="en">Changed database context to "{0}" for document "{1}"</source>
<note>{0} is the database name
{1} is the document name</note>
</trans-unit>
<trans-unit id="++CODE++88dcff06d01faeaf2253a502d07b9358b907ef3497a0f69c2f6546ffdc06b7b7">
<source xml:lang="en">Changed database context to "{0}" on server "{1}" on document "{2}".</source>
<note>{0} is the database name
{1} is the server name
{2} is the document name</note>
</trans-unit>
<trans-unit id="++CODE++720013ab95347611fa0f2918e0e719accc806e30e5f0cb349c8594b2a0e46dc2">
<source xml:lang="en">Changes ({0})</source>
<note>{0} is the number of schema changes</note>
</trans-unit>
<trans-unit id="++CODE++cf51bd8ae1e56e8e81b07f1e7f35e10d580788d9e0892a8a4896c2378227f4f0">
<source xml:lang="en">Changes published successfully</source>
</trans-unit>
<trans-unit id="++CODE++35c09389e41adb1bb2bf8991c39e3927981a271ab80a41ec216995e909344c23">
<source xml:lang="en">Changes saved successfully.</source>
</trans-unit>
<trans-unit id="++CODE++a49c556a0c0853ed9f434360953ce0088ffa041d83bff7c0ba57f7ce9c668186">
<source xml:lang="en">Changes view mode</source>
</trans-unit>
<trans-unit id="++CODE++37b6d72a119e5ec53d1dc71ba94cbed9566519488230f6a4e40ae82bfc8bc79f">
<source xml:lang="en">Changing database context to "{0}" on server "{1}" on document "{2}".</source>
<note>{0} is the database name
{1} is the server name
{2} is the document name</note>
</trans-unit>
<trans-unit id="++CODE++05f3d402836232769e679102361ab60a576dc268c9a53003baac88f0b742157d">
<source xml:lang="en">Changing database to '{2}' for connection '{0}' (ID: {1})</source>
<note>{0} is the connection display name
{1} is the connection ID
{2} is the database name</note>
</trans-unit>
<trans-unit id="++CODE++460b3a7da007b7af9d35bca54181dc91382263b2bf133ca214871ca1fed1fc1c">
<source xml:lang="en">Chat</source>
</trans-unit>
<trans-unit id="++CODE++6822b8489308b650f2e36cb439297b0c4a43859fe39e164aea3ad453f4bd14d7">
<source xml:lang="en">Chat command not available in this VS Code version</source>
</trans-unit>
<trans-unit id="++CODE++c8cabf4a998e678eb3213d46a3e9e80217b7839fb5f3537ee550a65e3b2202c9">
<source xml:lang="en">Check Constraint</source>
</trans-unit>
<trans-unit id="++CODE++4a41af1285aa71f4e677bc3fa729070b3c3c0af177cb4e9f12e34f1e21045894">
<source xml:lang="en">Check Constraints</source>
</trans-unit>
<trans-unit id="++CODE++43034967e711bc54bfe87c71c74ca2a19a39ca0d6e18c5d495cd90634d25eea0">
<source xml:lang="en">Checking Docker Engine Configuration</source>
</trans-unit>
<trans-unit id="++CODE++c4d0dafd128387fb1c4553a2fe77c141f1fffdf1f10f4d605e40b8517d80c56d">
<source xml:lang="en">Checking Docker engine</source>
</trans-unit>
<trans-unit id="++CODE++a50cb68f78c39490b180c6145c6ed95e4a691961e5aa7b8253ce9567281c73ba">
<source xml:lang="en">Checking Docker installation</source>
</trans-unit>
<trans-unit id="++CODE++75fa3318f66944d01336b10cbb1e3c08afc6e230d849ee6fff4f4dba7f19489c">
<source xml:lang="en">Checking Docker prerequisites...</source>
</trans-unit>
<trans-unit id="++CODE++a03fe5c6bd995e5dd1d1f1972329ecc85747bd329900c6fbd46344bd110d9a7d">
<source xml:lang="en">Checking container readiness</source>
</trans-unit>
<trans-unit id="++CODE++469663d6e6c1f487f123cf95220bce4d9ac1c98f2cd06e373ccb0baa14c343d4">
<source xml:lang="en">Checking if Docker is installed</source>
</trans-unit>
<trans-unit id="++CODE++75053118ac86a00be268a5a2a66b8b40a5249559ce3fc76bb45463dcc532782d">
<source xml:lang="en">Checking if Docker is installed on your machine</source>
</trans-unit>
<trans-unit id="++CODE++2341d1c3197fc3205cd4550c118259316a51c665389e9a3c74db361c6e11d83a">
<source xml:lang="en">Checking if Docker is running on your machine. If not, we'll start it for you.</source>
</trans-unit>
<trans-unit id="++CODE++6be7e803f4291ec5e83f38d2789fd4ea6c31923cdf1eedfa48564e33708cc5d3">
<source xml:lang="en">Checking if Docker is started</source>
</trans-unit>
<trans-unit id="++CODE++741262e58e1274cef3f38a5aa8042fcf05db92d4ca8e9c9e573acd0e2242ba97">
<source xml:lang="en">Checking if the Docker Engine is configured correctly on your machine.</source>
</trans-unit>
<trans-unit id="++CODE++38ccc9db5b300e54116d6f6e8b8ee1420fea7792e8483c7368fdd964b6ecef0a">
<source xml:lang="en">Checking pre-requisites</source>
</trans-unit>
<trans-unit id="++CODE++de88f00e461bb1cd413f9c556b06e1b903006bb3c0123f2e75fdff92532034af">
<source xml:lang="en">Choose An Action</source>
</trans-unit>
<trans-unit id="++CODE++4d7f20b4a7223bae862f00b4d5e41f37ededf7d987dba4546b315d891c5fbe08">
<source xml:lang="en">Choose Existing</source>
</trans-unit>
<trans-unit id="++CODE++61f2371ac2547488417f83422706e0e6c12b3c12f5f3595e90da91cbb167c174">
<source xml:lang="en">Choose Query History</source>
</trans-unit>
<trans-unit id="++CODE++a1578b6089ec41921bc4a70b05ca1b1171199d5d5fea6ac6c345cba9b29a83ef">
<source xml:lang="en">Choose SQL Language</source>
</trans-unit>
<trans-unit id="++CODE++dcee789e6048807617a646e20bfba75832b8e459fdd8a9e41c08665ee4d8d36a">
<source xml:lang="en">Choose a Microsoft Entra account</source>
</trans-unit>
<trans-unit id="++CODE++a89bad7e873f85fc6867185da8c42b2743f3264bf2df68800c16c23a20e1a9cf">
<source xml:lang="en">Choose a Microsoft Entra tenant</source>
</trans-unit>
<trans-unit id="++CODE++b05ab4483a5949bf2effb49592a7bb9dceafedb9a3c6aae12a32341025fc1511">
<source xml:lang="en">Choose a connection profile from the list below</source>
</trans-unit>
<trans-unit id="++CODE++c7bd40bc64cc1051c5198092da16048ef651147d7b291becd00c0467d63408e0">
<source xml:lang="en">Choose a database</source>
</trans-unit>
<trans-unit id="++CODE++3b961516b68d49db85d3ded5bc5c1129e02be1a647845d77b1eb2ab5260284cb">
<source xml:lang="en">Choose a database from the list below</source>
</trans-unit>
<trans-unit id="++CODE++f374a2978746011d60b5e1785696b4f2c1fe9165edc4f876767d2f1282240cb2">
<source xml:lang="en">Choose a hostname for the container</source>
</trans-unit>
<trans-unit id="++CODE++3152aa1eecc4ae815f286d840683f8a27d00ed17af850886caef1ff5e3d9e122">
<source xml:lang="en">Choose a name for the SQL Server Docker Container</source>
</trans-unit>
<trans-unit id="++CODE++2191d6b3f382356ffd46db277fcd0896e4b5f73a62989e0af8754832ed84c319">
<source xml:lang="en">Choose a port to host the SQL Server Docker Container</source>
</trans-unit>
<trans-unit id="++CODE++8dc22bcccf1fa2165bc27bcd3af9d5979985733f54896c185307a1ccd0e0d134">
<source xml:lang="en">Choose an option to provision a database</source>
</trans-unit>
<trans-unit id="++CODE++ac64b397d6dc32aa86e749583723d12ec51ada87e971cfe6c41de1454f7131b0">
<source xml:lang="en">Choose color</source>
</trans-unit>
<trans-unit id="++CODE++4e42da2b0c2533c1a0dfa98e9f4ec67fbaf07a0da192dafa93aaf98bc07fd959">
<source xml:lang="en">Choose the Right Version</source>
</trans-unit>
<trans-unit id="++CODE++be798452e0ca7a38f6487ecb9115f26ba148e2d4475608bdc4277d34d41be0a7">
<source xml:lang="en">Circular reference detected: '{0}' → '{1}' creates a cycle</source>
<note>{0} is source table
{1} is target table</note>
</trans-unit>
<trans-unit id="++CODE++83b12c2216efb4fdc924e1deb5182e905e4926ed0c1c324d467107f46d5a26a9">
<source xml:lang="en">Clear</source>
</trans-unit>
<trans-unit id="++CODE++ddceb7adfdb8816e4747bc48a2221702e830340e5596a701dc0993766eba5e60">
<source xml:lang="en">Clear All</source>
</trans-unit>
<trans-unit id="++CODE++209d178dae312190122119feaf037ac343e2cb4f298ee03d7254fcc71da5e50a">
<source xml:lang="en">Clear All Filters</source>
</trans-unit>
<trans-unit id="++CODE++b3f9fe4f22f94874a7277a4c1b461e0c9233ff480fde5a8c431d3841fe52acef">
<source xml:lang="en">Clear Data</source>
</trans-unit>
<trans-unit id="++CODE++910bda6aed78b23e29c53e12a4f1da7d4cad3793e138ab7839990e2ce507b68e">
<source xml:lang="en">Clear Filter</source>
</trans-unit>
<trans-unit id="++CODE++5776503c1a52f4fa028ff4c82b779bde7010023e3ae9f877c88156b673212e2e">
<source xml:lang="en">Clear Filters</source>
</trans-unit>
<trans-unit id="++CODE++08e2c4e53c4b3b6008b7bc4d82eb29ab933d3b6c08b34eda0637fbf148fb1529">
<source xml:lang="en">Clear Recent Connections List</source>
</trans-unit>
<trans-unit id="++CODE++c52ff5ea803d577544a8224d1404ecefa836b803f029d87cd7450af6c18a70ef">
<source xml:lang="en">Clear Selection</source>
</trans-unit>
<trans-unit id="++CODE++8046678782bb5feaf7131b03db70b9f5f66007fcc8b0c670c186db149edeb041">
<source xml:lang="en">Clear Sort</source>
</trans-unit>
<trans-unit id="++CODE++29a390f9237e3c84e5641785eca25199620e53f7b6f4b9d843b23dcb5c12904f">
<source xml:lang="en">Clear all</source>
</trans-unit>
<trans-unit id="++CODE++d6352ab85759b6f5b9cae594a4b92e97b81d85af640c575ba7d553d7a6833443">
<source xml:lang="en">Clear all events (keeps session running)</source>
</trans-unit>
<trans-unit id="++CODE++de22447d91bbb54edb718c661ff961ca832ff4260ec61ea538be1fed4e688cd8">
<source xml:lang="en">Clear all filters</source>
</trans-unit>
<trans-unit id="++CODE++2e05d0864b79bf5feb3776495d63cfde72a56aac038a6557620b5107b06fa701">
<source xml:lang="en">Clear all filters and show all events</source>
</trans-unit>
<trans-unit id="++CODE++2c41036cefbc864e021ed1f12d45fe960a9ac85b8586d9338a1e3f9a2dcd65a1">
<source xml:lang="en">Clear all grouping</source>
</trans-unit>
<trans-unit id="++CODE++64b1f96ecb4f24b2df07eb570a31246b394e2b09d4d19d942ed0f815c1c5c6be">
<source xml:lang="en">Clear all sorting</source>
</trans-unit>
<trans-unit id="++CODE++bb7638a0d8b3b374d81381caaf50ea1e5639135dd6ec1df7bc2dae0f344b72ec">
<source xml:lang="en">Clear cache and refresh token</source>
</trans-unit>
<trans-unit id="++CODE++21f5ea19572773c428e8375b3d63058ad4f04aea83df347deb633f9ddad9a643">
<source xml:lang="en">Clear permissions for all extensions to access your connections</source>
</trans-unit>
<trans-unit id="++CODE++9d57c82931ed2fcf9bbbc9dbc259e850c0c2b7d57b06e24b627597e60019bc6a">
<source xml:lang="en">Clear quick filter and all column filters</source>
</trans-unit>
<trans-unit id="++CODE++524ed5b794acd857648e76bead9db5ba131ebcb17f3a92d98ece51db61e65dbf">
<source xml:lang="en">Clear token cache</source>
</trans-unit>
<trans-unit id="++CODE++4e0d71f8a0b3fdc5cdaba4028072ad8cf788bac47864232a1988ac9453453a36">
<source xml:lang="en">Click to cancel loading summary</source>
</trans-unit>
<trans-unit id="++CODE++2bbd3f4d1c961e88f378b374bc1ce96b67f857965c2fa26ae0898d38a6caab94">
<source xml:lang="en">Click to change connection</source>
</trans-unit>
<trans-unit id="++CODE++2f0d8da82f0ec7faa6c57d5c857f4f157770858322f3b81a13782d19ba9fca85">
<source xml:lang="en">Click to change database</source>
</trans-unit>
<trans-unit id="++CODE++6bca6724e27bd109d1b946c1684e16c2c4a5d71731a9ffe5f666bdd9d9846b1e">
<source xml:lang="en">Click to connect to a database</source>
</trans-unit>
<trans-unit id="++CODE++66abaeec0367ba4920e21447dfa2dafb94c7f38dc262dfb91e76799022a436d5">
<source xml:lang="en">Click to load summary</source>
</trans-unit>
<trans-unit id="++CODE++88af7d4ffbbad0f31d9dd918e49ceb713036db12524cbdc4b93e8922b0655429">
<source xml:lang="en">Click to sign into an Azure account</source>
</trans-unit>
<trans-unit id="++CODE++7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed">
<source xml:lang="en">Close</source>