-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathout.gotext.json.lcl
More file actions
3618 lines (3618 loc) · 167 KB
/
out.gotext.json.lcl
File metadata and controls
3618 lines (3618 loc) · 167 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"?>
<LCX SchemaVersion="6.0" Name="D:\a\1\s\internal\translations\locales\en-US\out.gotext.json" PsrId="306" FileType="1" SrcCul="en-US" TgtCul="it-IT" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@SettingsPath@\default.lss" Type="Lss" />
<Item ItemId=";String Table" ItemType="0" PsrId="306" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
<Item ItemId=";Strings" ItemType="0" PsrId="306" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";language" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[en-US]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[it-IT]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[0].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Install/Create, Query, Uninstall SQL Server]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Installare/creare, eseguire query, disinstallare SQL Server]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[100].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Both environment variables {PasswordEnvVar} and {PasswordEnvVar2} are set.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Entrambe le variabili di ambiente {PasswordEnvVar} e {PasswordEnvVar2} sono impostate.]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[User '{UniqueUserName}' added]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[101].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[User '{UniqueUserName}' added]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[L'utente '{UniqueUserName}' è stato aggiunto]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Display connections strings for the current context]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[102].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Display connections strings for the current context]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Visualizzare stringhe di connessione per il contesto corrente]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[List connection strings for all client drivers]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[103].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[List connection strings for all client drivers]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Elencare le stringhe di connessione per tutti i driver client]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Database for the connection string (default is taken from the T/SQL login)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[104].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Database for the connection string (default is taken from the T/SQL login)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Database per la stringa di connessione (l’impostazione predefinita è tratta dall'account di accesso T/SQL)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Connection Strings only supported for {ModernAuthTypeBasic} Auth type]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[105].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Connection Strings only supported for {ModernAuthTypeBasic} Auth type]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Stringhe di connessione supportate solo per il tipo di autenticazione {ModernAuthTypeBasic}]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Display the current-context]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[106].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Display the current-context]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Visualizzare il contesto corrente]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Delete a context]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[107].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Delete a context]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Eliminare un contesto]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Delete a context (including its endpoint and user)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[108].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Delete a context (including its endpoint and user)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Eliminare un contesto (compresi endpoint e utente)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Delete a context (excluding its endpoint and user)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[109].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Delete a context (excluding its endpoint and user)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Eliminare un contesto (esclusi endpoint e utente)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Name of context to delete]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[10].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Open tools (e.g Azure Data Studio) for current context]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Aprire gli strumenti (ad esempio Azure Data Studio) per il contesto corrente]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[110].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Name of context to delete]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nome del contesto da eliminare]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Delete the context's endpoint and user as well]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[111].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Delete the context's endpoint and user as well]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Eliminare anche l'endpoint e l'utente del contesto]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Use the {NameFlag} flag to pass in a context name to delete]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[112].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Use the {NameFlag} flag to pass in a context name to delete]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Usare il flag {NameFlag} per passare un nome di contesto da eliminare]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Context '{Name}' deleted]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[113].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Context '{Name}' deleted]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Contesto '{Name}' eliminato]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Context '{Name}' does not exist]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[114].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Context '{Name}' does not exist]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Il contesto '{Name}' non esiste]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Delete an endpoint]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[115].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Delete an endpoint]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Eliminare un endpoint]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Name of endpoint to delete]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[116].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Name of endpoint to delete]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nome dell'endpoint da eliminare]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Endpoint name must be provided. Provide endpoint name with {NameFlag} flag]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[117].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Endpoint name must be provided. Provide endpoint name with {NameFlag} flag]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[È necessario specificare il nome dell'endpoint. Specificare il nome dell'endpoint con il flag {NameFlag}]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[View endpoints]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[118].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[View endpoints]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Visualizzare gli endpoint]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Endpoint '{Name}' does not exist]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[119].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Endpoint '{Name}' does not exist]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[L'endpoint '{Name}' non esiste]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Endpoint '{Name}' deleted]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[11].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Run a query against the current context]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Eseguire una query sul contesto corrente]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[120].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Endpoint '{Name}' deleted]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Endpoint '{Name}' eliminato]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Delete a user]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[121].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Delete a user]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Eliminare un utente]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Name of user to delete]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[122].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Name of user to delete]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nome dell'utente da eliminare]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[User name must be provided. Provide user name with {NameFlag} flag]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[123].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[User name must be provided. Provide user name with {NameFlag} flag]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[È necessario specificare il nome utente. Specificare il nome utente con il flag {NameFlag}]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[View users]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[124].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[View users]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Visualizzare gli utenti]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[User {Name} does not exist]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[125].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[User {Name} does not exist]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[L'utente {Name} non esiste]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[User {Name} deleted]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[126].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[User {Name} deleted]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Utente {Name} eliminato]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Display one or many contexts from the sqlconfig file]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[127].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Display one or many contexts from the sqlconfig file]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Visualizzare uno o più contesti dal file sqlconfig]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[List all the context names in your sqlconfig file]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[128].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[List all the context names in your sqlconfig file]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Elencare tutti i nomi di contesto nel file sqlconfig]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[List all the contexts in your sqlconfig file]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[129].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[List all the contexts in your sqlconfig file]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Elencare tutti i contesti nel file sqlconfig]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Describe one context in your sqlconfig file]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[12].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Run a query]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Eseguire una query]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[130].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Describe one context in your sqlconfig file]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Descrivere un contesto nel file sqlconfig]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Context name to view details of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[131].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Context name to view details of]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nome contesto di cui visualizzare i dettagli]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Include context details]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[132].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Include context details]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Includere i dettagli del contesto]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To view available contexts run `{ContextCommand}`]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[133].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To view available contexts run `{ContextCommand}`]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Per visualizzare i contesti disponibili, eseguire '{ContextCommand}']]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[error: no context exists with the name: "{Name}"]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[134].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[error: no context exists with the name: "{Name}"]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[errore: nessun contesto con il nome: "{Name}"]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Display one or many endpoints from the sqlconfig file]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[135].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Display one or many endpoints from the sqlconfig file]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Visualizzare uno o più endpoint dal file sqlconfig]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[List all the endpoints in your sqlconfig file]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[136].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[List all the endpoints in your sqlconfig file]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Elencare tutti gli endpoint nel file sqlconfig]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Describe one endpoint in your sqlconfig file]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[137].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Describe one endpoint in your sqlconfig file]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Descrivere un endpoint nel file sqlconfig]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Endpoint name to view details of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[138].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Endpoint name to view details of]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nome dell'endpoint di cui visualizzare i dettagli]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Include endpoint details]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[139].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Include endpoint details]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Includere i dettagli dell'endpoint]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To view available endpoints run `{EndpointsCommand}`]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[13].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Run a query using [{Master}]5D; database]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Eseguire una query usando il database [{Master}]5D;]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[140].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To view available endpoints run `{EndpointsCommand}`]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Per visualizzare gli endpoint disponibili, eseguire '{EndpointsCommand}']]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[error: no endpoint exists with the name: "{Name}"]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[141].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[error: no endpoint exists with the name: "{Name}"]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[errore: nessun endpoint con il nome: "{Name}"]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Display one or many users from the sqlconfig file]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[142].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Display one or many users from the sqlconfig file]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Visualizzare uno o più utenti dal file sqlconfig]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[List all the users in your sqlconfig file]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[143].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[List all the users in your sqlconfig file]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Elencare tutti gli utenti nel file sqlconfig]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Describe one user in your sqlconfig file]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[144].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Describe one user in your sqlconfig file]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Descrivere un utente nel file sqlconfig]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[User name to view details of]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[145].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[User name to view details of]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nome utente di cui visualizzare i dettagli]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Include user details]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[146].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Include user details]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Includere i dettagli utente]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To view available users run `{UsersCommand}`]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[147].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To view available users run `{UsersCommand}`]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Per visualizzare gli utenti disponibili, eseguire '{UsersCommand}']]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[error: no user exists with the name: "{Name}"]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[148].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[error: no user exists with the name: "{Name}"]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[errore: nessun utente con il nome: "{Name}"]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Set the current context]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[149].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Set the current context]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Impostare il contesto corrente]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Set the mssql context (endpoint/user) to be the current context]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[14].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Set new default database]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Impostare nuovo database predefinito]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[150].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Set the mssql context (endpoint/user) to be the current context]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Impostare il contesto mssql (endpoint/utente) come contesto corrente]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Name of context to set as current context]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[151].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Name of context to set as current context]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nome del contesto da impostare come contesto corrente]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To run a query: {RunQueryExample}]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[152].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To run a query: {RunQueryExample}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Per eseguire una query: {RunQueryExample}]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[To remove: {UninstallCommand}]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[153].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[To remove: {UninstallCommand}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Per rimuovere: {UninstallCommand}]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Switched to context "{Name}".]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[154].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Switched to context "{Name}".]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Passato al contesto "{Name}".]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[No context exists with the name: "{Name}"]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[155].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No context exists with the name: "{Name}"]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nessun contesto con il nome: "{Name}"]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Display merged sqlconfig settings or a specified sqlconfig file]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[156].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Display merged sqlconfig settings or a specified sqlconfig file]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Visualizzare le impostazioni di sqlconfig unite o un file sqlconfig specificato]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Show sqlconfig settings, with REDACTED authentication data]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[157].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Show sqlconfig settings, with REDACTED authentication data]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Mostrare le impostazioni di sqlconfig con i dati di autenticazione REDATTI]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Show sqlconfig settings and raw authentication data]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[158].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Show sqlconfig settings and raw authentication data]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Mostrare le impostazioni sqlconfig e dati di autenticazione non elaborati]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Display raw byte data]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[159].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Display raw byte data]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Visualizzare i dati in byte non elaborati]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Install Azure Sql Edge]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[15].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Command text to run]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Testo del comando da eseguire]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[160].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Install Azure Sql Edge]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Installa SQL Edge di Azure]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Install/Create Azure SQL Edge in a container]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[161].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Install/Create Azure SQL Edge in a container]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Installare/creare SQL Edge di Azure in un contenitore]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Tag to use, use get-tags to see list of tags]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[162].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Tag to use, use get-tags to see list of tags]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tag da usare, usare get-tags per visualizzare l'elenco dei tag]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Context name (a default context name will be created if not provided)]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[163].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Context name (a default context name will be created if not provided)]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nome contesto (se non specificato, verrà creato un nome di contesto predefinito)]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Create a user database and set it as the default for login]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[164].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Create a user database and set it as the default for login]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Creare un database utente e impostarlo come predefinito per l'account di accesso]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Accept the SQL Server EULA]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[165].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Accept the SQL Server EULA]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Accettare il contratto di licenza di SQL Server]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Generated password length]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[166].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Generated password length]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Lunghezza password generata]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Minimum number of special characters]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[167].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Minimum number of special characters]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Numero minimo di caratteri speciali]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Minimum number of numeric characters]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[168].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Minimum number of numeric characters]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Numero minimo di caratteri numerici]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Minimum number of upper characters]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[169].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Minimum number of upper characters]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Numero minimo di caratteri maiuscoli]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Special character set to include in password]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[16].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Database to use]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Database da usare]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[170].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Special character set to include in password]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Set di caratteri speciali da includere nella password]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Don't download image. Use already downloaded image]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[171].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Don't download image. Use already downloaded image]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Non scaricare l'immagine. Usare un'immagine già scaricata]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Line in errorlog to wait for before connecting]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[172].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Line in errorlog to wait for before connecting]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Riga nel log degli errori da attendere prima della connessione]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Specify a custom name for the container rather than a randomly generated one]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[173].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Specify a custom name for the container rather than a randomly generated one]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Specificare un nome personalizzato per il contenitore anziché un nome generato in modo casuale]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Explicitly set the container hostname, it defaults to the container ID]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[174].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Explicitly set the container hostname, it defaults to the container ID]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Impostare in modo esplicito il nome host del contenitore, per impostazione predefinita è l'ID contenitore]]></Val>
</Tgt>
<Prev Cat="Text">
<Val><![CDATA[Specifies the image CPU architecture]]></Val>
</Prev>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";messages[175].translation" ItemType="0" PsrId="306" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Specifies the image CPU architecture]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Specifica l'architettura della CPU dell'immagine]]></Val>
</Tgt>
<Prev Cat="Text">