-
Notifications
You must be signed in to change notification settings - Fork 469
/
Copy pathvscode-mssql.xlf
2143 lines (2143 loc) · 128 KB
/
vscode-mssql.xlf
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++0d7668d337e375d8ccfc1a69ca8f6e22a0b0c850a78c4770b0c4aa3b0daca630">
<source xml:lang="en"><default></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++6ab58ce9ca23e017bf594366b66b620458a5580640ddaf3aebf96f3c8fdf0977">
<source xml:lang="en">A firewall rule is required to access this server.</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++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++08a2ef94ef94039eed728a4a3ab703508a7bfe442d702183ecbd763d5852a232">
<source xml:lang="en">Account not found</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++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++09857ad18f3cf066330f9fc08318e41f71ecb7b7d71f12bd1dd3b9d050db4ca0">
<source xml:lang="en">Add a Microsoft Entra account...</source>
</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++d2cab259e6e6da600d35907f2b627f8bf69c49ab40f8f129b9d9f206f149a8f9">
<source xml:lang="en">Advanced Connection Settings</source>
</trans-unit>
<trans-unit id="++CODE++dfa2817fb2221c8b89c47c4fe8326d07c119b7c32e89e509d1061fc596fdf801">
<source xml:lang="en">Advanced Options</source>
</trans-unit>
<trans-unit id="++CODE++ab4db1a876378f718e4073baa75897c34c0e7d2608d68cda6461e01de42fa962">
<source xml:lang="en">Allow Nulls</source>
</trans-unit>
<trans-unit id="++CODE++a49d631f8c6cf6fb1660fb5229dfa0c08b55727549c0e48cc0cef1f7770ba0e2">
<source xml:lang="en">Alphabetical</source>
</trans-unit>
<trans-unit id="++CODE++1888bd4ce917e9c8cecde43608d69624f56668f86f1bbe4331494db33fb52578">
<source xml:lang="en">Always show in new tab</source>
</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++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++0f67514b901da8b9c613167848294cb0010b3c0e696732aa1a0c9737e5be69b1">
<source xml:lang="en">And</source>
</trans-unit>
<trans-unit id="++CODE++31e392d1c0378beca611de66c0f4c71cba29159905cc54242d9bddee5b23d851">
<source xml:lang="en">Apply</source>
</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++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++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++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++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++c5023bdd36d362e05c245ab15ab6839ad7562bcd42f1e1b0c759dca9d5fec4f7">
<source xml:lang="en">Azure Device Code</source>
</trans-unit>
<trans-unit id="++CODE++dd0c9a87e191fd735e4b79b2006a4804b2190b078a05aff1ea23945f37b309c2">
<source xml:lang="en">Azure Logs</source>
</trans-unit>
<trans-unit id="++CODE++314afcc6e23d362133e764e1ebfacabe4d330308b528392570949a17270248b9">
<source xml:lang="en">Azure sign in failed.</source>
</trans-unit>
<trans-unit id="++CODE++3d1ae152f7c95ef16327aafe54bc82e4565547c236299ef06d54a8db5980c24f">
<source xml:lang="en">Azure token cache cleared successfully.</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++e6885d7f1ab90cd7529fb7e3690957e6324d73e7a2dc017014bb9667d7524a76">
<source xml:lang="en">Back to preview</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++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++221cedb44469e4b0b105f777c771d70c7097c40a4e3e914cec4b6ba266db1970">
<source xml:lang="en">Browse Azure</source>
</trans-unit>
<trans-unit id="++CODE++eb6b42f54c42d2832e296319f7fdad64d46aecd1ec19b0e9c80b85b7cfc6dcae">
<source xml:lang="en">CSV</source>
</trans-unit>
<trans-unit id="++CODE++19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27">
<source xml:lang="en">Cancel</source>
</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++78caadaa3d12c39131d70d9b85b2aa5b4fdc874138c7fa884349a843312e02c7">
<source xml:lang="en">Cannot connect due to expired tokens. Please re-authenticate and try again.</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++cf51bd8ae1e56e8e81b07f1e7f35e10d580788d9e0892a8a4896c2378227f4f0">
<source xml:lang="en">Changes published successfully</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++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++de88f00e461bb1cd413f9c556b06e1b903006bb3c0123f2e75fdff92532034af">
<source xml:lang="en">Choose An Action</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++3b961516b68d49db85d3ded5bc5c1129e02be1a647845d77b1eb2ab5260284cb">
<source xml:lang="en">Choose a database from the list below</source>
</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++08e2c4e53c4b3b6008b7bc4d82eb29ab933d3b6c08b34eda0637fbf148fb1529">
<source xml:lang="en">Clear Recent Connections List</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++7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed">
<source xml:lang="en">Close</source>
</trans-unit>
<trans-unit id="++CODE++a9d0b49f48a51a21c93552032bd3ac0b356430187424536e274c84b493cac48e">
<source xml:lang="en">Close Designer</source>
</trans-unit>
<trans-unit id="++CODE++548e8cc0e8c2423c61f30c6e8b75a1a40c995e3be119df6272b280ab6c15a011">
<source xml:lang="en">Close the current connection</source>
</trans-unit>
<trans-unit id="++CODE++be6eb1fc3b05bf9dceebad2eac7841d1b2f40bda9aa2da34df8ca22af02bc3ed">
<source xml:lang="en">Collapse</source>
</trans-unit>
<trans-unit id="++CODE++55988e28a4e8720a588c5c53fd47616d929a404d3d2af7e6f8ba313dce6dc3e4">
<source xml:lang="en">Collapse All</source>
</trans-unit>
<trans-unit id="++CODE++3fdc9a587693f9e63574b30ec55c2b947a7fb4ba5fd11f0cf213072f53d91bdd">
<source xml:lang="en">Column</source>
</trans-unit>
<trans-unit id="++CODE++53aade77cd69a77bbb51bf8ca4e7ea8b282db75edce8883775e47042478d35b5">
<source xml:lang="en">Columns</source>
</trans-unit>
<trans-unit id="++CODE++9504ef48c5eab40c3e3a086cbbdc3d70b44e607552db6adfbdd7c278ddabe357">
<source xml:lang="en">Columns in the primary key.</source>
</trans-unit>
<trans-unit id="++CODE++eb83f1820ce359dc5c9aa6ca4d08fad60256a9808c58ad93f89db3c182908364">
<source xml:lang="en">Confirm to clear recent connections list</source>
</trans-unit>
<trans-unit id="++CODE++99fb39ba4e498877a20049303aa3318b2004884dab008c65a3b5dd48f47cdd04">
<source xml:lang="en">Confirm to remove this profile.</source>
</trans-unit>
<trans-unit id="++CODE++1a2303ede07493acc7caaa7c737f3c52bcc9cf04372be19ed1b0af6b9f2c791e">
<source xml:lang="en">Connect</source>
</trans-unit>
<trans-unit id="++CODE++8a8bef20f041d1f1fc0ea7966a3fa58563c599617464a303258ed302ddca5a79">
<source xml:lang="en">Connect to SQL Server</source>
</trans-unit>
<trans-unit id="++CODE++b6c3dc8ba33b3a93b9060f81da8fa7d496f07487cec7a12353257242b2ea9e24">
<source xml:lang="en">Connected to server "{0}" on document "{1}". Server information: {2}</source>
<note>{0} is the server name
{1} is the document name
{2} is the server info</note>
</trans-unit>
<trans-unit id="++CODE++d403c686f6a1048014bdd230f59963271b0123ea48245754fc9f264b962a2182">
<source xml:lang="en">Connecting</source>
</trans-unit>
<trans-unit id="++CODE++4f7403da68117c9595b82a6c264837910b1421a60537bcfa77a004a58b0a4c7a">
<source xml:lang="en">Connecting to server "{0}" on document "{1}".</source>
<note>{0} is the server name
{1} is the document name</note>
</trans-unit>
<trans-unit id="++CODE++031d95e24e24622c128716284eb67a80331c825272813bf720f2c35a0b18f96c">
<source xml:lang="en">Connecting to: </source>
</trans-unit>
<trans-unit id="++CODE++f82e876fbb96757b5e0ff7d062baaaf01763104fc6bba89647cc06e4e327b648">
<source xml:lang="en">Connection Dialog (Preview)</source>
</trans-unit>
<trans-unit id="++CODE++ddb621f87c5c0baf1158d527d62ad1bf9752e53483d2540591ce3ae35e06fd6b">
<source xml:lang="en">Connection Error</source>
</trans-unit>
<trans-unit id="++CODE++52d8d284995954ca5f68adbc705bb4ff2a930cc1ff2a3885a1002ff477394eee">
<source xml:lang="en">Connection Errors</source>
</trans-unit>
<trans-unit id="++CODE++d913a8ab7732ff7d26c8afceb2e2706c5c991762df193b236fd839bd3a616cb6">
<source xml:lang="en">Connection Profile could not be updated. Please modify the connection details manually in settings.json and try again.</source>
</trans-unit>
<trans-unit id="++CODE++a2caae6025f30a0976030ae3ea92ab948f6b580d5f50272514ba36e31c8d1d09">
<source xml:lang="en">Connection String</source>
</trans-unit>
<trans-unit id="++CODE++8d137af9c64fba09bbb003aba93f0b029898fe19e7927cd696f4c3e2b69f538d">
<source xml:lang="en">Connection error</source>
</trans-unit>
<trans-unit id="++CODE++28512f31201abdd26ae93d0caaba3b8a3c77113b9665059a9e1d2ba4e47de64d">
<source xml:lang="en">Connection not found for uri "{0}".</source>
<note>{0} is the uri</note>
</trans-unit>
<trans-unit id="++CODE++e0626fd341a12763ec4285d858397c3d4ba2507c9ef567f1284c658bde195cd2">
<source xml:lang="en">Connection string is required</source>
</trans-unit>
<trans-unit id="++CODE++2eaecb3d0cf1282f01fc09568b63dc633753a0dbf337365d929d9c28df3d6ca4">
<source xml:lang="en">Contains</source>
</trans-unit>
<trans-unit id="++CODE++56fd975f4cea21a748feabb6cb1cfb49161141245c2d4d1698cee7ae99c69bf2">
<source xml:lang="en">Continue Editing</source>
</trans-unit>
<trans-unit id="++CODE++8d525e5f158b9afe05f3122af363ac67763bdc4e1395b46597b320c289766ce3">
<source xml:lang="en">Copied</source>
</trans-unit>
<trans-unit id="++CODE++e21f935f11d7e966dbbae78da9daa378fe8142a14e7c0cd7434183005faa6c5c">
<source xml:lang="en">Copy</source>
</trans-unit>
<trans-unit id="++CODE++e172d8c5fbb864a5f85d4926588ef06167cdd4a29ddffdf07714bf25336c2269">
<source xml:lang="en">Copy Headers</source>
</trans-unit>
<trans-unit id="++CODE++d2b6ebb67aeb8ede651aa24682be64c81d2e0a970c297908b470e55fd14c0bcc">
<source xml:lang="en">Copy code and open webpage</source>
</trans-unit>
<trans-unit id="++CODE++c8b5428b9ac790b3952e08ceea5a8a170ad8b0af1e0f51c98a159f1147631e8a">
<source xml:lang="en">Copy script</source>
</trans-unit>
<trans-unit id="++CODE++3ae569f53ee1e765e3551a7f7881999f868289afbf0b1c6077d906c68cd10525">
<source xml:lang="en">Copy with Headers</source>
</trans-unit>
<trans-unit id="++CODE++204a5eb2cd28bcfdf3be9f8c765948e9e831609e3c57048cdbd6b8a94cf49126">
<source xml:lang="en">Cost</source>
</trans-unit>
<trans-unit id="++CODE++4759498ac2a719c619e2c8cf8ee60af2d2407425e95d308eb208425b2a6d427a">
<source xml:lang="en">Create</source>
</trans-unit>
<trans-unit id="++CODE++71c1ec27a8c136ecdc781c1fd2364676155fbab7abf8837b9075eb3b9f9af7c0">
<source xml:lang="en">Create Connection Profile</source>
</trans-unit>
<trans-unit id="++CODE++0d5e7861b9a1710c8e1d2347dbb8d4dde272143bbeca537d216474ef7bd9193f">
<source xml:lang="en">Create Firewall Rule</source>
</trans-unit>
<trans-unit id="++CODE++4cbb437498e0de07f05b633c28f811c67840a2f67e956543557c6085560869e3">
<source xml:lang="en">Create a new firewall rule</source>
</trans-unit>
<trans-unit id="++CODE++60c0c05c936ef432e55dd4ea862b5dd1d454413310190ddaef63ef2dbbf75c03">
<source xml:lang="en">Credential Error: An error occurred while attempting to refresh account credentials. Please re-authenticate.</source>
</trans-unit>
<trans-unit id="++CODE++3cc30692596cf10ca4319a818741998997632cce895dbf138cb3299b1314d37f">
<source xml:lang="en">Custom Zoom</source>
</trans-unit>
<trans-unit id="++CODE++68cd154732021d9684d0dcad6276e99d675f962c9b08774f23f5de9398e19290">
<source xml:lang="en">Data Type</source>
</trans-unit>
<trans-unit id="++CODE++fa7fe67124e94375d97e50896e0c32f44b03bb7ed5e9fb026341b55da724126b">
<source xml:lang="en">Database</source>
</trans-unit>
<trans-unit id="++CODE++e97a0773fb7b656c174155270bd9ded70bc82caa0fc5d65b3ba24871577a5b08">
<source xml:lang="en">Database name</source>
</trans-unit>
<trans-unit id="++CODE++21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d">
<source xml:lang="en">Default</source>
</trans-unit>
<trans-unit id="++CODE++647cc4253428b25fe686fa8d5d5da5841fed53ad85395cdd43920d0226900c1d">
<source xml:lang="en">Default Value</source>
</trans-unit>
<trans-unit id="++CODE++b6ca9a06ebcc8ea511648b46b103859960924b42fa98231c0ca4b69b84943687">
<source xml:lang="en">DefinitionRequestCompleted</source>
</trans-unit>
<trans-unit id="++CODE++fe0ec38fb92c70d80fd5a36ff72c37cb3ed759bba91373c96a21bde631e03db3">
<source xml:lang="en">DefinitionRequested</source>
</trans-unit>
<trans-unit id="++CODE++e2d0a54968ead24efc0dffa6ac78fc606dceec34a0f586177a74a54cc2272cf8">
<source xml:lang="en">Delete</source>
</trans-unit>
<trans-unit id="++CODE++ce719226a83119822d8c5e6c1981ecfe801b8324890fce617664184849c24491">
<source xml:lang="en">Delete saved connection</source>
</trans-unit>
<trans-unit id="++CODE++526e0087cc3f254d9f86f6c7d8e23d954c4dfda2b312efc29194ae8a860106ba">
<source xml:lang="en">Description</source>
</trans-unit>
<trans-unit id="++CODE++b16cf0590a6c78b2e8047509582e5448bd55e408cd112bd1f064e34529f6ce3d">
<source xml:lang="en">Description for the table.</source>
</trans-unit>
<trans-unit id="++CODE++6fbed214e0ea21c683db0ba2d648ef09b11edf4b4bb23835d4fdda84b5d097f3">
<source xml:lang="en">Disable intellisense and syntax error checking on current document</source>
</trans-unit>
<trans-unit id="++CODE++acfc5be785a9bb3da11c9f05adb69bd5633096f09002aa44813a1b3207e912ad">
<source xml:lang="en">Disconnect</source>
</trans-unit>
<trans-unit id="++CODE++04dfac3671b494ad53fcd152f7a14511bfb35747278aad8ce254a0d6e4ba4718">
<source xml:lang="en">Disconnected</source>
</trans-unit>
<trans-unit id="++CODE++2458834a3d92abf750b8161a959ff2bb0405a29bd8b3b77015d065249bd02b7f">
<source xml:lang="en">Disconnected on document "{0}"</source>
<note>{0} is the document name</note>
</trans-unit>
<trans-unit id="++CODE++48845bff334a50a59aaecf499f28a7a24c3b4b891b8b18a9f1169ad8e8a6b261">
<source xml:lang="en">Dismiss</source>
</trans-unit>
<trans-unit id="++CODE++8a2ada67a303fe2602331dc153b30259b92e7cc2d741f8d5955d8af906ef016a">
<source xml:lang="en">Displays the data type name for the column</source>
</trans-unit>
<trans-unit id="++CODE++85297edc780e231f74a5f8ed6ec249358dfae002e468ef4fdf8e568b95e27c94">
<source xml:lang="en">Displays the description of the column</source>
</trans-unit>
<trans-unit id="++CODE++7bba5bcc44de61b37dcadb5824fac7130483b749da0c5e9eea5e02765e06e37d">
<source xml:lang="en">Displays the unified data type (including length, scale and precision) for the column</source>
</trans-unit>
<trans-unit id="++CODE++7a417a747e385113d9c481ed4937ff3d5b31de744c4db4312464f6f50729b616">
<source xml:lang="en">Dissatisfied</source>
</trans-unit>
<trans-unit id="++CODE++5ce32ed24291b6ee178d1069ca31842e8ead67e82f070a284cec1ab95498476c">
<source xml:lang="en">Do you mind taking a quick feedback survey about the MSSQL Extension for VS Code?</source>
</trans-unit>
<trans-unit id="++CODE++79520a5688933d6fc7b0f540292cbbfb2898a9edc2d85d0ee231b6ed63adaad1">
<source xml:lang="en">Do you want to always display query results in a new tab instead of the query pane?</source>
</trans-unit>
<trans-unit id="++CODE++1d60d0cdcb5408b8e39ed364f675c9cad8a2f6174a413324d1e34437bd41269b">
<source xml:lang="en">Don't Show Again</source>
</trans-unit>
<trans-unit id="++CODE++464c4ffd019e1e9691dcf0537c797353ef2b1c1d4833d3d463e5b74ae4547344">
<source xml:lang="en">Edit</source>
</trans-unit>
<trans-unit id="++CODE++1e71b5c8f3211f1f01b27341d3ddc6a2ad651800264b495c12b50867f998662c">
<source xml:lang="en">Enable 'Trust Server Certificate'</source>
</trans-unit>
<trans-unit id="++CODE++fab99ae162d8056598a1ab43c81a2a5a296873c0868800c4f092697d8470720a">
<source xml:lang="en">Enable Experiences & Reload</source>
</trans-unit>
<trans-unit id="++CODE++45e33ceba31737f1cb793c231fafc9dd99074ca1f26476a70b0c830ef155c9d3">
<source xml:lang="en">Enable Trust Server Certificate</source>
</trans-unit>
<trans-unit id="++CODE++76ad7b53af548367c78d7216972ce81ee53ecf7ee1d6fe5f3d16a73633bd4e49">
<source xml:lang="en">Encountering a problem? Share the details with us by opening a GitHub issue so we can improve!</source>
</trans-unit>
<trans-unit id="++CODE++4f03bf1cdf8e7d1882e5198384139c078fa527857e7371ac6cb2d030dede15a3">
<source xml:lang="en">Encrypt</source>
</trans-unit>
<trans-unit id="++CODE++ac8fee089cebcddef6529d9c8b467120173dbd02a46992ecbaf62fe25c925ae0">
<source xml:lang="en">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.</source>
</trans-unit>
<trans-unit id="++CODE++a04452986b48c7c3c21f78712b31a68f2aecb85566c134d87d55348c7b16b9a8">
<source xml:lang="en">Encryption was enabled on this connection; review your SSL and certificate configuration for the target SQL Server, or set 'Trust server certificate' to 'true' in the settings file. 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?</source>
</trans-unit>
<trans-unit id="++CODE++6051d2070e8e51a99adfa6b3f5171cfa92107943f46417bcd51a8f5e995c881f">
<source xml:lang="en">End IP Address</source>
</trans-unit>
<trans-unit id="++CODE++1a77d555bedbf97481907d505c8c8ba64d32d3525b77122e16178dd4054c3c93">
<source xml:lang="en">Ends With</source>
</trans-unit>
<trans-unit id="++CODE++b35ebaaf32f469f2fa86b0b2fb67e6f51fae3fb8e6ceaeaea97c2696321a8ee4">
<source xml:lang="en">Enter new column width</source>
</trans-unit>
<trans-unit id="++CODE++f939ae3d30c69e332a36892f70d401d457e6993f056b8d0af3fe3d736821f5a1">
<source xml:lang="en">Equals</source>
</trans-unit>
<trans-unit id="++CODE++54a0e8c17ebb21a11f8a25b8042786ef7efe52441e6cc87e92c67e0c4c0c6e78">
<source xml:lang="en">Error</source>
</trans-unit>
<trans-unit id="++CODE++f251a7b2d632de7a4122dafe6fd4a9e984d632ffe0c1e71591e5e253ea9fda11">
<source xml:lang="en">Error Message: </source>
</trans-unit>
<trans-unit id="++CODE++d0778b9c6b80f4a1e5c99227f273ca819714dbc51f673a92c354874eaa4a3f7c">
<source xml:lang="en">Error code: </source>
</trans-unit>
<trans-unit id="++CODE++609a5b573e17dee5039d1039c26a1601bb44dd596695c7767c81877925759cd7">
<source xml:lang="en">Error connecting to server "{0}". Details: {1}</source>
<note>{0} is the server name
{1} is the error message</note>
</trans-unit>
<trans-unit id="++CODE++480311d3f925f85184b69381dc5f05bb2607e6beb8d354ffe58276a0cd1dd5d9">
<source xml:lang="en">Error connecting to: </source>
</trans-unit>
<trans-unit id="++CODE++268604d30ba8caf436360709d0933805fb33fe3c3bb87a0782ce8c393ecf7da4">
<source xml:lang="en">Error creating firewall rule {0}. Check your Azure account settings and try again. Error: {1}</source>
<note>{0} is the rule info in format 'name (startIp - endIp)'
{1} is the error message</note>
</trans-unit>
<trans-unit id="++CODE++8f53a6df59ae589cf0996134e10ad383f8914500648095194f2d16cc2427954b">
<source xml:lang="en">Error loading Azure account information for tenant ID '{0}'</source>
<note>{0} is the tenant ID</note>
</trans-unit>
<trans-unit id="++CODE++5a50d3034b36e62aa3eaca3fc11e55b184039c652bfdfe1ffb032321677bd530">
<source xml:lang="en">Error loading Azure databases for subscription {0} ({1}). Confirm that you have permission.</source>
<note>{0} is the subscription name
{1} is the subscription id</note>
</trans-unit>
<trans-unit id="++CODE++4eca430ed6ea02cdcd0e956ce27d238e2659997f15a4f580b0fd3385cfd815a0">
<source xml:lang="en">Error loading Azure databases.</source>
</trans-unit>
<trans-unit id="++CODE++5b149b9da8f7cd0bdae05ad12cd9e4f650db61436fb31c868a6568695dce21f2">
<source xml:lang="en">Error loading Azure subscriptions.</source>
</trans-unit>
<trans-unit id="++CODE++f6d7eb5fe821427ad07a3bf9a3cc35423ddc3ccd3a745b1f09584fbf26f377fe">
<source xml:lang="en">Error loading designer</source>
</trans-unit>
<trans-unit id="++CODE++6d89c16c7cf3f832b29fe1d181d420d4a583f93bb02e63fdfa266c33b6b3fcaf">
<source xml:lang="en">Error loading preview</source>
</trans-unit>
<trans-unit id="++CODE++2b850d590d607436d4cbf751406a7626e01d0e5c775f26c880ab4fd21e70bb66">
<source xml:lang="en">Error loading; refresh to try again</source>
</trans-unit>
<trans-unit id="++CODE++619d1a6dc49f043552f7b8d14e6483de4a2caf1c8270d6168a642c8eccc3a752">
<source xml:lang="en">Error occurred opening content in editor.</source>
</trans-unit>
<trans-unit id="++CODE++e3bd07d6d5ddff1c7aefd27f1d3af9d23b97fc19d29d732816ea80fddb08f4dc">
<source xml:lang="en">Error when refreshing token</source>
</trans-unit>
<trans-unit id="++CODE++126ac0f6a36d10138034e44aae3e764f15c8eabba9192445716609b37d21bda9">
<source xml:lang="en">Error {0}: {1}</source>
<note>{0} is the error number
{1} is the error message</note>
</trans-unit>
<trans-unit id="++CODE++ff26e86bb0cdcae6cd4f1dcfbf7c61047f96a2ae5cdbd9fe0111ed6bd95b2193">
<source xml:lang="en">Error {0}: {1} Please login as a different user and change the password using ALTER LOGIN.</source>
<note>{0} is the error number
{1} is the error message</note>
</trans-unit>
<trans-unit id="++CODE++8eecdde079a9092758e271d5a21f28eadbeedb35716353e07cfeb33f52e8005c">
<source xml:lang="en">Error: </source>
</trans-unit>
<trans-unit id="++CODE++6c1ebcf47761be137441b5293902752b802776fa5edd4ebf0193950f1adff0e8">
<source xml:lang="en">Error: Login failed. Retry using different credentials?</source>
</trans-unit>
<trans-unit id="++CODE++9d8c40f184be0169233d713fa64128ca200db300743a2adbb700912c74b5620d">
<source xml:lang="en">Error: Unable to connect using the connection information provided. Retry profile creation?</source>
</trans-unit>
<trans-unit id="++CODE++48d53635551c8fd4564251d49f4e6eba58c2774469144e4346310955fbadbf4c">
<source xml:lang="en">Excel</source>
</trans-unit>
<trans-unit id="++CODE++0a716f1cfed3e0da68a8eee920bd5ca51a470c790800d878429da7ab9ecf0d56">
<source xml:lang="en">Executing query...</source>
</trans-unit>
<trans-unit id="++CODE++bd705ebabe1919a636a0e09b2ee27d43a5aba05d645cc0339451e54b37f42bd6">
<source xml:lang="en">Execution Plan</source>
</trans-unit>
<trans-unit id="++CODE++07548c2c6511d4d1780564de8a237a1966cf9c99a97cf5c8a185e6c2aeacff09">
<source xml:lang="en">Expand</source>
</trans-unit>
<trans-unit id="++CODE++9f5b023a413a7d0771cc3fb51b103dc0aaaafe8f7b7c88c7258d43e3bc5b243d">
<source xml:lang="en">Expand All</source>
</trans-unit>
<trans-unit id="++CODE++c67415bcff328a59fd399e2a7ca9691e0044192fb7480ae501644339965d046d">
<source xml:lang="en">Expression</source>
</trans-unit>
<trans-unit id="++CODE++0556bfb755c73e8c60da1230c38f26ce0eaf79dc7bd5f5368371d561e5eab52f">
<source xml:lang="en">Extremely likely</source>
</trans-unit>
<trans-unit id="++CODE++031a8f0f659df890dfd53c92e45295b0f14c997185bae46e168831e403b273f7">
<source xml:lang="en">Failed</source>
</trans-unit>
<trans-unit id="++CODE++1bad386b21fcdca2a014d1f185f32ca31c641b4b0218b478988b8e7b373447b5">
<source xml:lang="en">Failed to connect: {0}</source>
<note>{0} is the error message</note>
</trans-unit>
<trans-unit id="++CODE++62498a2ba93779ef3c23a936f530e6a9286a241a90243dcf1eb13bf44c3f0aa0">
<source xml:lang="en">Failed to delete credential with id: {0}. {1}</source>
<note>{0} is the id
{1} is the error</note>
</trans-unit>
<trans-unit id="++CODE++fa3e091290b3ba78f8eaf354e98df990932f0b9bed9c453f61ac1a887867da16">
<source xml:lang="en">Failed to fetch user tokens.</source>
</trans-unit>
<trans-unit id="++CODE++8eec604197ddc90723c687678e1e97206d9146c079b5e0ead48d533c67970d23">
<source xml:lang="en">Failed to get authentication method, please remove and re-add the account.</source>
</trans-unit>
<trans-unit id="++CODE++7f8ed04b6c80f9c80c6b9644594472ad2fd1da77707d2fa30f63418c0024f68c">
<source xml:lang="en">Failed to refresh connection ${0} with uri {1}, invalid connection result.</source>
<note>{0} is the connection id
{1} is the uri</note>
</trans-unit>
<trans-unit id="++CODE++283dc9bd4f27ff0efed1b3ac27910746f64f860e2e0c2240f9723ff02c1dc29c">
<source xml:lang="en">Failed to save results. </source>
</trans-unit>
<trans-unit id="++CODE++3905257a1ca17a05ee44a95330afe24483f05af738cc05090d1c2522910a5671">
<source xml:lang="en">Filter Azure subscriptions</source>
</trans-unit>
<trans-unit id="++CODE++103456e9e42f094edd7aa359537505ad54de66ac826f5bddd03f9f569fbace89">
<source xml:lang="en">Filter Settings</source>
</trans-unit>
<trans-unit id="++CODE++01a0e0d1c3cdcf7bac1e7280e753431937f8773ddd7b6ba85bf7fea4b842ad4e">
<source xml:lang="en">Filter for any field...</source>
</trans-unit>
<trans-unit id="++CODE++051ab9f3bd7362945f1e2adc7c118c48d4286a3e181158b32e8e87f915103e73">
<source xml:lang="en">Find Node</source>
</trans-unit>
<trans-unit id="++CODE++92fddef2012c2e36eec5c67f7c3c447fbc326c9700a9501f395ce6409de2c855">
<source xml:lang="en">Find Nodes</source>
</trans-unit>
<trans-unit id="++CODE++b9ab95c28bb1c6c21592e63cc03daacec4bb7be9774e47ec9a1c6f8721e26b08">
<source xml:lang="en">Finished query execution for document "{0}"</source>
<note>{0} is the document name</note>
</trans-unit>
<trans-unit id="++CODE++8a9ba2938bc6bfe8f093b2168aeb656e1be8e1792c61db93cb074a6e32300b1b">
<source xml:lang="en">Firewall rule name</source>
</trans-unit>
<trans-unit id="++CODE++69564d37d68e80fe6d9e0507695069d1393632c9f82f5587b79f980436d9cb00">
<source xml:lang="en">Firewall rule successfully added. Retry profile creation? </source>
</trans-unit>
<trans-unit id="++CODE++3a5a47667104807574cb0875e1ad13546429f3ed63efe6b4bddee62fe1f4cf5b">
<source xml:lang="en">Firewall rule successfully created.</source>
</trans-unit>
<trans-unit id="++CODE++52742c9dc235ecbc2154d3bef091d1e39dd0b8b542ebac8031331a146b83242d">
<source xml:lang="en">For numeric data, the maximum number of decimal digits that can be stored in this database object to the right of decimal point.</source>
</trans-unit>
<trans-unit id="++CODE++20b04b0eb9264d54736120dae88c712700ee14a95803823187961e630998a7fc">
<source xml:lang="en">For numeric data, the maximum number of decimal digits that can be stored in this database object.</source>
</trans-unit>
<trans-unit id="++CODE++2390e8502ba64cd13706dd2af52d9983efe51a28984739601b0b86fbf7c65904">
<source xml:lang="en">Foreign Column</source>
</trans-unit>
<trans-unit id="++CODE++43aaa008cb8b129bc33f70e1c70317da8a00fd95e83728587f3a84053b4df2a1">
<source xml:lang="en">Foreign Key</source>
</trans-unit>
<trans-unit id="++CODE++7d30023ced5527cc9061c41e18c832bba55267935cbfc5c45a68dbf5dcc5a310">
<source xml:lang="en">Foreign Keys</source>
</trans-unit>
<trans-unit id="++CODE++343460cabeff0fb48d3eaab8a7b7cec8ab6533656b987b607002e6fae59daa8b">
<source xml:lang="en">Foreign Table</source>
</trans-unit>
<trans-unit id="++CODE++936af734b4badd8602cb27237f8dea0fd3950e12b5bab278565babc15e854136">
<source xml:lang="en">Found pending reconnect promise for uri {0}, failed.</source>
<note>{0} is the uri</note>
</trans-unit>
<trans-unit id="++CODE++463124bedefc986e5dc0c3e34607c881ba0337297037552decc1df70945e57e8">
<source xml:lang="en">Found pending reconnect promise for uri {0}, waiting.</source>
<note>{0} is the uri</note>
</trans-unit>
<trans-unit id="++CODE++c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa">
<source xml:lang="en">General</source>
</trans-unit>
<trans-unit id="++CODE++e7789e4d6916633a7461743194a10f2bc4d20b06c2e329b35c7a2da87aa8cbae">
<source xml:lang="en">Generate Script</source>
</trans-unit>
<trans-unit id="++CODE++bccb449867268397632519e5695a6bb611a30529b735cac4f7d5ecbaee80e785">
<source xml:lang="en">Getting definition ...</source>
</trans-unit>
<trans-unit id="++CODE++774b3dff4a0e941fad0742c915bd93885c9cb15f769f2c92c2ea384b69780f51">
<source xml:lang="en">Greater Than</source>
</trans-unit>
<trans-unit id="++CODE++0ca098e2022c5054b1ec77c08df3f3b1d5ccecfbf78f232071f644eb71161e8d">
<source xml:lang="en">Greater Than or Equals</source>
</trans-unit>
<trans-unit id="++CODE++b79cac926e0b2e347e72cc91d5174037c9e17ae7733fd7bdb570f71b10cd7bfc">
<source xml:lang="en">Help</source>
</trans-unit>
<trans-unit id="++CODE++7a364dd1e84a9c227a255eac46ca09a24bf78df77f50f95dec04e8899516908d">
<source xml:lang="en">Hide this panel</source>
</trans-unit>
<trans-unit id="++CODE++881cda150f08bbb74d0fa62b161f8a953cf0e98bf734b60d0e059b408b75522b">
<source xml:lang="en">Highlight Expensive Operation</source>
</trans-unit>
<trans-unit id="++CODE++cdcc527989217aea79f51128ad3c86fa74d6c9def496f199f6b8d9728791d3b4">
<source xml:lang="en">How likely it is that you would recommend the MSSQL extension to a friend or colleague?</source>
</trans-unit>
<trans-unit id="++CODE++31a89f9bfc36d6f9ecf0a7e2e82cb5a9a0f1e7b1702f08bd3aced239c4f48a0b">
<source xml:lang="en">How likely it is that you would recommend {0} to a friend or colleague?</source>
<note>{0} is the feature name</note>
</trans-unit>
<trans-unit id="++CODE++9638b09db2ce74e3d600f9a512a6116df9ba9b3a147569930a5d5b4682ac5a20">
<source xml:lang="en">I have read the summary and understand the potential risks.</source>
</trans-unit>
<trans-unit id="++CODE++1d59e3e131d04ce9ba04c0f297dbd4eddb83c0bfe977b2a6bf19bdeb73f2d5c3">
<source xml:lang="en">Ignore Tenant</source>
</trans-unit>
<trans-unit id="++CODE++3fc78b5e12952afa58a49beceabae7348dd0a44be1b9104b998dc1efc2967de4">
<source xml:lang="en">Importance</source>
</trans-unit>
<trans-unit id="++CODE++c1f88e9d6c4145cf0530ae020155384d5688d70ed82a07a35d783bbc4b32238c">
<source xml:lang="en">In progress</source>
</trans-unit>
<trans-unit id="++CODE++39c3be1198a2fddf18d03608348d9cfaf8823d2dda4d5ff13fdb851bd15d29ea">
<source xml:lang="en">Index</source>
</trans-unit>
<trans-unit id="++CODE++90b901a30c3f089e10d82e1b842bbdc736a36b536a19d207b36a8e7be1904dcb">
<source xml:lang="en">Indexes</source>
</trans-unit>
<trans-unit id="++CODE++afe3d8a0f4733dcd43ec5b17d8c6d8d3ec7e53c511f1ad49d1168ea289bdd055">
<source xml:lang="en">Integrated</source>
</trans-unit>
<trans-unit id="++CODE++eced7daa046aa47caa62c3306d8114cb2f558fd2f53ebd2cc4d3b802857d200b">
<source xml:lang="en">Invalid Firewall rule name</source>
</trans-unit>
<trans-unit id="++CODE++4480c895a6e66acfc4e43550d8a60598168463e52699be5ed28eae3ecf7200c7">
<source xml:lang="en">Invalid IP Address</source>
</trans-unit>
<trans-unit id="++CODE++b6b50087a99bf4427265eff9dd813914f1ceb8c55260fa6e7075f9c89fcd45d7">
<source xml:lang="en">Invalid column width</source>
</trans-unit>
<trans-unit id="++CODE++fa95e3dd5aa6339906552abd3b5613f356ea1c6e4a3a3d376b450d3856b0b8d6">
<source xml:lang="en">Issues ({0})</source>
<note>{0} is the number of issues</note>
</trans-unit>
<trans-unit id="++CODE++db1a21a0bc2ef8fbe13ac4cf044e8c9116d29137d5ed8b916ab63dcb2d4290df">
<source xml:lang="en">JSON</source>
</trans-unit>
<trans-unit id="++CODE++29b39d81b8651e8717f85c00002b2b087bafb969eb289ac991fa41b17522e775">
<source xml:lang="en">Keep in query pane</source>
</trans-unit>
<trans-unit id="++CODE++a3c13b491573b0d54bf743caf0f5d59d5a791c42ae1072f16bb941be925fae18">
<source xml:lang="en">Keys for token cache could not be saved in credential store, this may cause Microsoft Entra Id access token persistence issues and connection instabilities. It's likely that SqlTools has reached credential storage limit on Windows, please clear at least 2 credentials that start with "Microsoft.SqlTools|" in Windows Credential Manager and reload.</source>
</trans-unit>
<trans-unit id="++CODE++8d8cd546b58d91c300d3149ef40b8d98d3061dc38f15ea937d2ed785a3f25771">
<source xml:lang="en">Learn More</source>
</trans-unit>
<trans-unit id="++CODE++adc95605a1b30c73959fbaf21e60f9723efe855c482fa336a957924d4ea0a08b">
<source xml:lang="en">Length</source>
</trans-unit>
<trans-unit id="++CODE++ab7e3aa3d0d8c78763c986b6a831726ff623b195a38a8d4b1191976c0becf72e">
<source xml:lang="en">Less Than</source>
</trans-unit>
<trans-unit id="++CODE++f3efd3e5531c7b16003d81bb5085288ace97366792c480484895fd2583ca5842">
<source xml:lang="en">Less Than or Equals</source>
</trans-unit>
<trans-unit id="++CODE++d05f53bafc473abafc1af3b592a9186f7c8b2579999c953b6f3d9f9450c43f50">
<source xml:lang="en">Line {0}</source>
<note>{0} is the line number</note>
</trans-unit>
<trans-unit id="++CODE++dc380888c4e2c7762212480ff86eb39150ec70b45009c33bc6adcbd0041384b1">
<source xml:lang="en">Loading</source>
</trans-unit>
<trans-unit id="++CODE++f71c42d1d9ac676535360465df8ce04aacb3b40ecb8b1ba01906d9b4971a51c9">
<source xml:lang="en">Loading Report</source>
</trans-unit>
<trans-unit id="++CODE++10a371b8dc47cdf83c4cd7f926daf76305a6b52311a69b3087d744151dc53501">
<source xml:lang="en">Loading Table Designer</source>
</trans-unit>
<trans-unit id="++CODE++15b61974b2707a7b3d4201385e0f01f4ff5eb1f17c5639d98788ee5add2025cd">
<source xml:lang="en">Location</source>
</trans-unit>
<trans-unit id="++CODE++aaaeb8d7872b0c49ed19d951314516d2dcd84ca23411320f05fac3d87bac8a32">
<source xml:lang="en">MSSQL</source>
</trans-unit>
<trans-unit id="++CODE++9f67971ab8a605f2aedf0b33a5fce37d2b135aef48f886231da5d8163aa488a6">
<source xml:lang="en">MSSQL Feedback</source>
</trans-unit>
<trans-unit id="++CODE++614e5389e87ce465fe548a0665aeaa67a52a06ff792f2f791615cd37fb610178">
<source xml:lang="en">Manage Connection Profiles</source>
</trans-unit>
<trans-unit id="++CODE++f7fbe0b74789184e887d43fff291578ae0fe4d2b6b9fa4550271dc4a51ff980e">
<source xml:lang="en">Mandatory (Recommended)</source>
</trans-unit>
<trans-unit id="++CODE++d54543fb6beb1b6dc5aaa5961c0d92fe25a4ae3bc6fe81b241bd9064e43f46d7">
<source xml:lang="en">Mandatory (True)</source>
</trans-unit>
<trans-unit id="++CODE++fba6c2c5d9468e741725c7dfa1ac14fb59523c74fa86744027ec0a175e6cae3f">
<source xml:lang="en">Maximize</source>
</trans-unit>
<trans-unit id="++CODE++1aa744e397147289dead3a2403f0826fe7b0e380f9bdcc90253477175f18632c">
<source xml:lang="en">Maximize panel size</source>
</trans-unit>
<trans-unit id="++CODE++2f77668a9dfbf8d5848b9eeb4a7145ca94c6ed9236e4a773f6dcafa5132b2f91">
<source xml:lang="en">Message</source>
</trans-unit>
<trans-unit id="++CODE++04d7b48339271ea67d3c8493e07e90bc68dc565485eebe5e0b67c21c1586e3c0">
<source xml:lang="en">Messages</source>
</trans-unit>
<trans-unit id="++CODE++2d275a74912cca2e02e6d41f9cae3a75ceef3ed0ef734eff3710e10eb7112228">
<source xml:lang="en">Metric</source>
</trans-unit>
<trans-unit id="++CODE++8055a31cb4833efbf1b76994151d8256bfc8500f2985d3d0ab1cf222dd91a043">
<source xml:lang="en">Microsoft Corp</source>
</trans-unit>
<trans-unit id="++CODE++73c5b19bd87f6238ea91f7a12afda7927ec9708f0d2a5ca86154b2e0bbe06109">
<source xml:lang="en">Microsoft Entra Account</source>
</trans-unit>
<trans-unit id="++CODE++4cca27a3569729f8e3fa178db33f438eaa136c7491a5c3d26c807c876a02c292">
<source xml:lang="en">Microsoft Entra Id</source>
</trans-unit>
<trans-unit id="++CODE++d24b24ff2640e9b5731d40ac97ea534034176c1478b681eca122262c4d98a8a2">
<source xml:lang="en">Microsoft Entra Id - Universal w/ MFA Support</source>
</trans-unit>
<trans-unit id="++CODE++d7f406a55a763bcaf21ae757e59b0ba9b5e2954c074d760a6afa484f977dcf3d">
<source xml:lang="en">Microsoft Entra account {0} successfully added.</source>
<note>{0} is the account name</note>
</trans-unit>
<trans-unit id="++CODE++951f4af90cfde827d87f358b3d8d275ee60a3306d9ddb5c4615483cff067697a">
<source xml:lang="en">Microsoft reviews your feedback to improve our products, so don't share any personal data or confidential/proprietary content.</source>
</trans-unit>
<trans-unit id="++CODE++1f5c209a4ee7cb85322b1d1fbde63de014d0871930fa88895405ebaea926535d">
<source xml:lang="en">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.</source>
</trans-unit>
<trans-unit id="++CODE++87a43e5185b677199f2369f90cd8518b8b1d7702edff307ed9e79883f43aaaaa">
<source xml:lang="en">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...</source>
</trans-unit>
<trans-unit id="++CODE++7d4b99d7fea1f8fb56040b0f388071d3f886f709000859485129c0ce1930fce9">
<source xml:lang="en">Microsoft would like your feedback</source>
</trans-unit>
<trans-unit id="++CODE++b58330ac25057a441365f4f4f1be20daba2d6d940142c891231e0eac66843ff4">
<source xml:lang="en">Move Down</source>
</trans-unit>
<trans-unit id="++CODE++1359626e7b6964345896285446db7977e67469251bb0cc52808db2a85ed940c1">
<source xml:lang="en">Move Up</source>
</trans-unit>
<trans-unit id="++CODE++fb329000228cc5a24c264c57139de8bf854fc86fc18bf1c04ab61a2b5cb4b921">
<source xml:lang="en">NULL</source>
</trans-unit>
<trans-unit id="++CODE++dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50">
<source xml:lang="en">Name</source>
</trans-unit>
<trans-unit id="++CODE++ad4811485a0a0f3f000987d581730b04c0bf33a9d4ccf59a9ff1c127b33d76d1">
<source xml:lang="en">Name of the primary key.</source>
</trans-unit>
<trans-unit id="++CODE++e7d029a3c1b85e562db8e25ceb52958e3c3da9e6e50b95ebf95f3fae85091a15">
<source xml:lang="en">New Check Constraint</source>
</trans-unit>
<trans-unit id="++CODE++5a59551b2622ee0d2767d9bbc3d03aa227824d88c6b25ac233cfb2a98684512c">
<source xml:lang="en">New Column</source>
</trans-unit>
<trans-unit id="++CODE++4a00fefe019ef43393da250ba4b62d7b6af849a1acac99b1192ffbeda8828fe7">
<source xml:lang="en">New Column Mapping</source>
</trans-unit>
<trans-unit id="++CODE++b71586503f1694b5328fa16ed600eb0d20d4d9608dfb54f44ae97fe4ac43f0bf">
<source xml:lang="en">New Foreign Key</source>
</trans-unit>
<trans-unit id="++CODE++30a5aebdb4a5faa3b927c90ef856e84e039707488be19e760b3701f24889875d">
<source xml:lang="en">New Index</source>
</trans-unit>
<trans-unit id="++CODE++6334507f512e52b67d0a5a0fb392e35e5d3acc29acdce7218f66b6199150f589">
<source xml:lang="en">New Microsoft Entra account could not be added.</source>
</trans-unit>
<trans-unit id="++CODE++1ff57a29d7c9d11bdf61c1b80f2b289b44c1ea844824d4b94a0d52b6ba5fc858">
<source xml:lang="en">Next</source>
</trans-unit>
<trans-unit id="++CODE++1ea442a134b2a184bd5d40104401f2a37fbc09ccf3f4bc9da161c6099be3691d">
<source xml:lang="en">No</source>
</trans-unit>
<trans-unit id="++CODE++dd1e244b4e319bb25477890a9327b3a2419908e042cd4063f9235a0afed6e908">
<source xml:lang="en">No Microsoft Entra account can be found for removal.</source>
</trans-unit>
<trans-unit id="++CODE++b5353eb771f89b7df467f5082500e61791da1296427482e4eb5bb0cc5b6bec04">
<source xml:lang="en">No Queries Available</source>
</trans-unit>
<trans-unit id="++CODE++e7877ea821bcdd1b117351c975bccabc10caea61e2e13fae7fe37e0179bd8470">
<source xml:lang="en">No connection profile to remove.</source>
</trans-unit>
<trans-unit id="++CODE++87a122216f22b55fd29964cf75c886ef5da5cd8369e2a6e24c73ec0ad22227ba">
<source xml:lang="en">No connection was found. Please connect to a server first.</source>
</trans-unit>
<trans-unit id="++CODE++c933cd0d45861a20699df513967542bc9b448f409d362d9bec4e7443dd96f403">
<source xml:lang="en">No need to refresh Microsoft Entra acccount token for connection {0} with uri {1}</source>
<note>{0} is the connection id
{1} is the uri</note>
</trans-unit>
<trans-unit id="++CODE++758ece29b31b4a752af1a78afe1fe8397bde2b565327c538b1f2fb5912d51418">
<source xml:lang="en">No result found for the active editor; please run a query or switch to another editor.</source>
</trans-unit>
<trans-unit id="++CODE++548271493601de8634bf0793fb0e09522c1bcce8e1e61c9e51186c9661137729">
<source xml:lang="en">No subscriptions available. Adjust your subscription filters to try again.</source>
</trans-unit>
<trans-unit id="++CODE++522f7c01e016bd0f95cd3b404ebb0751a2b6db89a57ff1c7e5110b39e1f136e0">
<source xml:lang="en">Non-SQL Server SQL file detected. Disable IntelliSense for such files?</source>
</trans-unit>
<trans-unit id="++CODE++dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91">
<source xml:lang="en">None</source>
</trans-unit>
<trans-unit id="++CODE++58601e3ffba5990d1be4db9f2bcc6107f9a72949aabd8f68f79bcb2c92195b5f">
<source xml:lang="en">Not Between</source>
</trans-unit>
<trans-unit id="++CODE++bfccbdda37b86c50ee3c10c461afc9fcc2854ca2d53d33b9bb079798a4f0cf21">
<source xml:lang="en">Not Contains</source>
</trans-unit>
<trans-unit id="++CODE++1035e37a14f3bc0faf8a937fddf3a6ca0ef9b7ad40aa1de814f0865e044eeda2">
<source xml:lang="en">Not Ends With</source>
</trans-unit>
<trans-unit id="++CODE++2abe6ce3689dddb31a75faaafb1a7293649d60f93bff0e48a87e7d5ddd7f2530">
<source xml:lang="en">Not Equals</source>
</trans-unit>
<trans-unit id="++CODE++544330f40460cbf3595ddb51445d81c643d5cd9dc72d601db887c01169b5f388">
<source xml:lang="en">Not Starts With</source>
</trans-unit>
<trans-unit id="++CODE++972711d90594be0ec9340bc56950dc455b2764187dcad7093ae641df2cbc10c5">
<source xml:lang="en">Not likely at all</source>
</trans-unit>
<trans-unit id="++CODE++ba35f0c47d862763dafa955d6716942f79b8bfe1d01d5968520db6f9ba665f6f">
<source xml:lang="en">Not started</source>
</trans-unit>
<trans-unit id="++CODE++07b555a4dd9446c56aae7bbe326905f8aabc205d5eee96191a71e15510fbb53f">
<source xml:lang="en">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?</source>
</trans-unit>
<trans-unit id="++CODE++6091a3057f7b1b8140c1ad2fc9232cc4d483a484667f76fe8bb305d77ca3deb1">
<source xml:lang="en">Number of Rows Read</source>
</trans-unit>
<trans-unit id="++CODE++565339bc4d33d72817b583024112eb7f5cdf3e5eef0252d6ec1b9c9a94e12bb3">
<source xml:lang="en">OK</source>
</trans-unit>
<trans-unit id="++CODE++e1d42d9f427d5f4d009777176781c6c5cd131a4abc0f3dd3beac983b29e3efdb">
<source xml:lang="en">Object Explorer Filter (Preview)</source>
</trans-unit>
<trans-unit id="++CODE++ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1">
<source xml:lang="en">Off</source>
</trans-unit>
<trans-unit id="++CODE++08cc7dbe92d634292815733fbf6b34fba13792fc61a838f93bcaf5fc639b12ee">
<source xml:lang="en">On Delete Action</source>
</trans-unit>
<trans-unit id="++CODE++53dbddd7bcdf5a51afae1447f034e76d78722d20c1d6d62002c00e19f68ea9b2">
<source xml:lang="en">On Update Action</source>
</trans-unit>
<trans-unit id="++CODE++ed077f3d8125d60dca1979c7133601bd187d47c73ed9975028f677e49e709942">
<source xml:lang="en">Open</source>
</trans-unit>
<trans-unit id="++CODE++27d46ec89f6c8889936e3d885b71d612efdbf08d8514f16157875104d01fd5f5">
<source xml:lang="en">Open Query</source>
</trans-unit>
<trans-unit id="++CODE++404eb1204c0e313b45f63c32657b2cabf3f3930b7a731969c82b5bc3061311ff">
<source xml:lang="en">Open Query History</source>
</trans-unit>
<trans-unit id="++CODE++458f7bdeed472d6583d8b0e14f2535e896f301136ee1ea3c63fdbf0845407225">
<source xml:lang="en">Open XML</source>
</trans-unit>
<trans-unit id="++CODE++35e74c3a943dcaf90a91c99a242ea7dbfb3ead16a012ba5a7d6a747a96e01d64">
<source xml:lang="en">Open in New Tab</source>
</trans-unit>
<trans-unit id="++CODE++ea1d0f038bbdb9e9aa6649671dcbff49e1f63b700b27d60890da5c60fb4e89af">
<source xml:lang="en">Open in editor</source>
</trans-unit>
<trans-unit id="++CODE++ea56aa4cb881e4c3d61d84b95881280b4c10519222fcfe40febcbd4b2d548333">
<source xml:lang="en">OpenSSL version >=1.0.1 is required to connect.</source>
</trans-unit>
<trans-unit id="++CODE++291101a07fe980e93b900ae85c9eb824f9e7e93d0d754be7440b9386b615cad7">
<source xml:lang="en">Operator</source>
</trans-unit>
<trans-unit id="++CODE++da53ba1a285ffae9c6528e235b57336fa85b4f05e9fc00a51ee922069c3d9865">
<source xml:lang="en">Optional (False)</source>
</trans-unit>
<trans-unit id="++CODE++eabaa5ba70b7871bd005170e9a540a993456433cdaad54eacc4e4c07a13c71bb">
<source xml:lang="en">Overall, how satisfied are you with the MSSQL extension?</source>
</trans-unit>
<trans-unit id="++CODE++cd184ad9e92906aa47b1a2a184c7d63d4c3642b0ee74079f2d428841ff17036c">
<source xml:lang="en">Overall, how satisfied are you with {0}?</source>
<note>{0} is the feature name</note>
</trans-unit>
<trans-unit id="++CODE++e68b36b17cbd990802f57741cb75cf3a73fa66a61999b0cd70e3cf7d26cfb25f">
<source xml:lang="en">Parameters</source>
</trans-unit>
<trans-unit id="++CODE++5cafcd08f15a2a6ce49d703f1da5861c94ec134cc92984cc6b2f67965c31b5ee">
<source xml:lang="en">Parent node was not TreeNodeInfo.</source>
</trans-unit>
<trans-unit id="++CODE++e7cf3ef4f17c3999a94f2c6f612e8a888e5b1026878e4e19398b23bd38ec221a">
<source xml:lang="en">Password</source>
</trans-unit>
<trans-unit id="++CODE++b0f439de4ac489dfe75bf62e7fb55c9c993851f6f462fbbacae37851a6cad588">
<source xml:lang="en">Password (SQL Login)</source>
</trans-unit>
<trans-unit id="++CODE++71f0edbc866bcd836e06eefc36556b0e6a3552f2d422dc8bc12bddd51e3b5a8e">
<source xml:lang="en">Path: {0}</source>
<note>{0} is the path of the node in the object explorer</note>
</trans-unit>
<trans-unit id="++CODE++b5d65f0ae389b60297c51acb9d3f3ee1e5b846deeb84a90fd69ccdfadca7c331">
<source xml:lang="en">Precision</source>
</trans-unit>
<trans-unit id="++CODE++9d13699b657fe91178f41ecf87e9c11095306c7b62e26f7e7a1b019df9ca50b1">
<source xml:lang="en">Preview Database Updates</source>
</trans-unit>
<trans-unit id="++CODE++a57b08a480b822a0a572b993391c292ede593bf8000b406675b180bbb16260fa">
<source xml:lang="en">Previous</source>
</trans-unit>
<trans-unit id="++CODE++a89f61eb88c67866f6b2666a2e7f19b6fa1c97ca8330b81f848895bcc3594a3f">
<source xml:lang="en">Previous pending reconnect promise for uri {0} is rejected with error {1}, will attempt to reconnect if necessary.</source>
<note>{0} is the uri
{1} is the error</note>
</trans-unit>
<trans-unit id="++CODE++74ddf875033fe6ed895f48a8abc4373883fb876b36dfa7614f3f130ceee1ab20">
<source xml:lang="en">Previous pending reconnection for uri {0}, succeeded.</source>
<note>{0} is the uri</note>
</trans-unit>
<trans-unit id="++CODE++92022c2f45b6a9ba92c51438e6fed444d69673e4bd6c529e3ea8f0a8bfe1e969">
<source xml:lang="en">Primary Key</source>
</trans-unit>
<trans-unit id="++CODE++a0de89c19964a6454c6d6b4f4205b8c8fcb6c1bfe9370b6d3183226ce8009141">
<source xml:lang="en">Primary Key Columns</source>
</trans-unit>
<trans-unit id="++CODE++25f4fe8cd149e57de765fa487f6e70395ed29ad8d1f2b9c116f9efa24262b420">
<source xml:lang="en">Privacy Statement</source>
</trans-unit>
<trans-unit id="++CODE++a423b47777783386516c79baa19b0dfcd12cb40e4fba79348ad14ab0169402cd">
<source xml:lang="en">Profile Name</source>
</trans-unit>
<trans-unit id="++CODE++f7821e5b83af275fa9638d6840dc6edd1e7c8179f566d99cb2fd713ca13e9e3c">
<source xml:lang="en">Profile created and connected</source>
</trans-unit>
<trans-unit id="++CODE++8a0d6f1276ee19a91fb06f73344d1d60f2d1f1c8d7e0454c8bb31ea00c2b9a30">
<source xml:lang="en">Profile created successfully</source>
</trans-unit>
<trans-unit id="++CODE++c7b24e72fefeade2fc1706604bb5c2ee848b055ed154428128c10d5020549a7a">
<source xml:lang="en">Profile removed successfully</source>
</trans-unit>
<trans-unit id="++CODE++ae43692b2a310b8ed2443d2b7d2a3e4cf0b6d73115badd72831b3d22381f235f">
<source xml:lang="en">Properties</source>
</trans-unit>
<trans-unit id="++CODE++40040cb181f7f0ee5add2b52e8467c6652477f7ce12af39fe380b5084b64f4fe">