-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathLocalizable.strings
More file actions
2112 lines (1417 loc) · 80.1 KB
/
Copy pathLocalizable.strings
File metadata and controls
2112 lines (1417 loc) · 80.1 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
/* A removable drive that has no image file inserted. */
"(empty)" = "(vuoto)";
/* VMConfigAppleDriveDetailsView */
"(New Drive)" = "(Nuovo Disco)";
/* No comment provided by engineer. */
"(new)" = "(nuovo)";
/* UTMWrappedVirtualMachine */
"(Unavailable)" = "(Non disponibile)";
/* QEMUConstant */
"%@ (%@)" = "%1$@ (%2$@)";
/* VMToolbarDriveMenuView */
"%@ (%@): %@" = "%1$@ (%2$@): %3$@";
/* VMDisplayMetalWindowController */
"%@ (Display %lld)" = "%1$@ (Monitor %2$lld)";
/* VMDisplayAppleTerminalWindowController
VMDisplayQemuTerminalWindowController */
"%@ (Terminal %lld)" = "%1$@ (Terminale %2$lld)";
/* No comment provided by engineer. */
"%@ ➡️ %@" = "%1$@ ➡️ %2$@";
/* VMDrivesSettingsView */
"%@ Drive" = "Disco %@";
/* VMDrivesSettingsView */
"%@ Image" = "Immagine %@";
/* Format string for remaining time until a download finishes */
"%@ remaining" = "%@ rimanente";
/* Format string for the 'per second' part of a download speed. */
"%@/s" = "%@/s";
/* Format string for download progress and speed, e. g. 5 MB of 6 GB (200 kbit/s) */
"%1$@ of %2$@ (%3$@)" = "%1$@ di %2$@ (%3$@)";
/* UTMAppleConfiguration */
"A valid kernel image must be specified." = "È necessario specificare un'immagine del kernel valida";
/* VMConfigDriveCreateViewController */
"A file already exists for this name, if you proceed, it will be replaced." = "Un file con questo nome esiste già, se procedi, verrà sovrascritto";
"Cannot create directory for disk image." = "Non è stato possibile creare una cartella per l'immagine disco";
/* VMListViewController */
"A VM already exists with this name." = "È già presente una Macchina Virtuale con questo nome.";
"Cannot find VM." = "Macchina Virtuale non trovata.";
/* VMDisplayAppleController */
"Add…" = "Aggiungi…";
/* No comment provided by engineer. */
"Additional Options" = "Opzioni Aggiuntive";
/* No comment provided by engineer. */
"Additional Settings" = "Impostazioni Aggiuntive";
/* No comment provided by engineer. */
"Advanced: Bypass configuration and manually specify arguments" = "Avanzato: Ometti la configurazione e specifica gli argomenti";
/* No comment provided by engineer. */
"Advanced" = "Avanzate";
/* VMConfigSystemView */
"Allocating too much memory will crash the VM." = "Allocare troppa memoria causerà crash della Macchina Virtuale";
"Allocating too much memory will crash the VM. Your device has %llu MB of memory and the estimated usage is %llu MB." = "Allocare troppa memoria causerà crash della Macchina Virtuale. Il tuo dispositivo dispone di %llu MB di memoria e l'uso stimato è di %llu MB.";
/* VMConfigDirectoryPickerViewController */
"Are you sure you want to delete this directory? All files and subdirectories WILL be deleted." = "Sei sicuro di voler eliminare questa cartella? Tutti i file e le cartelle contenute saranno elimininati.";
/* Delete confirmation */
"Are you sure you want to delete this VM? Any drives associated will also be deleted." = "Sei sicuro di voler eliminare questa Macchina Virtuale? Ogni disco associato sarà eliminato.";
/* No comment provided by engineer. */
"Auto Resolution" = "Risoluzione Automatica";
/* UTMData */
"AltJIT error: %@" = "Errore AltJIT: %@";
"AltJIT error: (error.localizedDescription)" = "Errore AltJIT: (error.localizedDescription)";
/* No comment provided by engineer. */
"Always use native (HiDPI) resolution" = "Usa sempre la risoluzione nativa (HiDPI)";
/* UTMData */
"An existing virtual machine already exists with this name." = "È già presente una Macchina Virtuale con questo nome.";
/* CSConnection */
"An error occurred trying to connect to SPICE." = "Errore di connessione a SPICE.";
/* VMDrivesSettingsView */
"An image already exists with that name." = "È già presente un'immagine con questo nome.";
/* UTMConfiguration
UTMVirtualMachine */
"An internal error has occurred." = "Si è verificato un errore interno";
"An internal error has occured. UTM will terminate." = "Si è verificato un errore interno. UTM verrà terminato.";
"Cannot start shared directory before SPICE starts." = "Impossibile condividere la directory prima dell'avvio di SPICE.";
/* No comment provided by engineer. */
"Argument" = "Argomento";
/* UTMConfiguration */
"An invalid value of '%@' is used in the configuration file." = "Un valore non corretto di “%@“ è presente nel file di configurazione.";
/* VMConfigSystemView */
"Any unsaved changes will be lost." = "Le modifiche non salvate andranno perse.";
/* No comment provided by engineer. */
"Application" = "Applicazione";
/* New VM window. */
"Apple Virtualization is experimental and only for advanced use cases. Leave unchecked to use QEMU, which is recommended." = "La Virtualizzazione Apple è sperimentale e consigliata per casi d'uso avanzati. È raccomandato lasciare questa opzione disabilitata per usare QEMU.";
/* No comment provided by engineer. */
"Architecture" = "Architettura";
/* No comment provided by engineer. */
"Are you sure you want to exit UTM?" = "Sei sicuro di voler uscire da UTM?";
/* No comment provided by engineer. */
"Are you sure you want to permanently delete this disk image?" = "Sei sicuro di voler eliminare questa immagine definitivamente?";
/* No comment provided by engineer. */
"Add a new drive." = "Aggiungi un nuovo disco.";
/* No comment provided by engineer. */
"Select an existing disk image." = "Selezione un'immagine disco esistente.";
/* No comment provided by engineer. */
"Create an empty drive." = "Crea un disco vuoto.";
/* No comment provided by engineer. */
"Add a new device." = "Aggiungi un nuovo dispositivo.";
/* No comment provided by engineer. */
"Are you sure you want to reset this VM? Any unsaved changes will be lost." = "Sei sicuro di voler riavviare questa Macchina Virtuale? Le modifiche non salvate andranno perse.";
/* No comment provided by engineer. */
"Are you sure you want to stop this VM and exit? Any unsaved changes will be lost." = "Sei sicuro di voler arrestare questa Macchina Virtuale e uscire? Le modifiche non salvate andranno perse.";
/* UTMQemuConstants */
"Automatic Serial Device (max 4)" = "Dispositivo seriale automatico (massimo 4)";
/* No comment provided by engineer. */
"Background Color" = "Colore di Sfondo";
/* No comment provided by engineer. */
"Balloon Device" = "Dispositivo Balloon";
/* No comment provided by engineer. */
"TPM can be used to protect secrets in the guest operating system. Note that the host will always be able to read these secrets and therefore no expectation of physical security is provided." = "TPM può essere utilizzato per conservare informazioni riservate del sistema. Il dispositivo host sarà sempre in grado di accedere a questi dati.";
/* UTMLegacyQemuConfiguration
UTMQemuConstants */
"BIOS" = "BIOS";
/* No comment provided by engineer. */
"Blinking Cursor" = "Cursore Lampeggiante";
/* UTMQemuConstants */
"Bold" = "Grassetto";
/* No comment provided by engineer. */
"Boot" = "Avvio";
/* No comment provided by engineer. */
"Boot from kernel image" = "Avvia da immagine del kernel";
/* No comment provided by engineer. */
"Ubuntu Install Guide" = "Guida all'installazione di Ubuntu";
/* No comment provided by engineer. */
"Boot Arguments" = "Argomenti di Avvio";
/* No comment provided by engineer. */
"Boot Image" = "Immagine di Avvio";
/* No comment provided by engineer. */
"Boot Image Type" = "Tipo di Immagine di Avvio";
/* No comment provided by engineer. */
"Boot ISO Image" = "Immagine ISO di Avvio";
/* No comment provided by engineer. */
"Boot ISO Image (optional)" = "Immagine ISO di Avvio (opzionale)";
/* No comment provided by engineer. */
"Boot VHDX Image" = "Immagine VHDX di Avvio";
/* No comment provided by engineer. */
"Boot into recovery mode." = "Avvia con modalità di ripristino";
/* UTMQemuConstants */
"Bridged (Advanced)" = "Bridged (Avanzata)";
/* No comment provided by engineer. */
"Bridged Settings" = "Impostazioni Bridged";
/* No comment provided by engineer. */
"Bridged Interface" = "Interfaccia Bridged";
/* Welcome view */
"Browse UTM Gallery" = "Scopri la UTM Gallery";
/* No comment provided by engineer. */
"Browse" = "Scegli";
/* No comment provided by engineer. */
"Browse…" = "Scegli...";
/* VMConfigDisplayView
VMToolbarDisplayMenuView */
"Built-in Framebuffer" = "Framebuffer integrato";
/* UTMQemuConstants */
"Built-in Terminal" = "Terminale Integrato";
/* VMDisplayWindowController
VMQemuDisplayMetalWindowController */
"Cancel" = "Annulla";
/* No comment provided by engineer. */
"Cancel download" = "Annulla Download";
/* UTMAppleVirtualMachine */
"Cannot access resource: %@" = "Impossibile accedere alla risorsa: %@";
/* UTMAppleVirtualMachine */
"Cannot create virtual terminal." = "Impossibile creare il terminale virtuale.";
/* UTMData */
"Cannot find AltServer for JIT enable. You cannot run VMs until JIT is enabled." = "Impossibile trovare AltServer per l'abilitazione di JIT. Non è possibile eseguire Macchine Virtuali senza che JIT sia abilitato.";
/* UTMData */
"Cannot import this VM. Either the configuration is invalid, created in a newer version of UTM, or on a platform that is incompatible with this version of UTM." = "Impossibile importare questa Macchina Virtuale. Potrebbe contenere una configurazione invalida, essere stata creata con una nuova versione di UTM, oppure su una piattaforma non supportata da questa versione di UTM.";
/* No comment provided by engineer. */
"Caps Lock (⇪) is treated as a key" = "Blocco Maiusc. (⇪) come tasto";
/* VMMetalView */
"Capture Input" = "Cattura Input";
/* VMDisplayQemuMetalWindowController */
"Captured mouse" = "Mouse catturato";
/* Configuration boot device */
"CD/DVD" = "CD/DVD";
/* UTMLegacyQemuConfiguration
UTMQemuConstants */
"CD/DVD (ISO) Image" = "Immagine (ISO) di CD/DVD";
/* VMDisplayWindowController */
"Change" = "Cambia";
/* VMDisplayAppleController */
"Change…" = "Cambia…";
/* No comment provided by engineer. */
"Clear" = "Pulisci";
/* No comment provided by engineer. */
"Clipboard Sharing" = "Condivisione Appunti";
/* VMQemuDisplayMetalWindowController */
"Closing this window will kill the VM." = "Chiudere questa finestra terminerà la Macchina Virtuale";
/* Clone context menu */
"Clone" = "Clona";
/* No comment provided by engineer. */
"Clone selected VM" = "Clona la VM selezionata";
/* No comment provided by engineer. */
"Clone…" = "Clona...";
/* No comment provided by engineer. */
"Close" = "Chiudi";
/* No comment provided by engineer. */
"Command to send when resizing the console. Placeholder $COLS is the number of columns and $ROWS is the number of rows." = "Comando da inviare quando la console viene ridimensionata. La variabile $COLS è il numero di colonne, $ROWS è il numero di righe.";
/* UTMVirtualMachine */
"Config format incorrect." = "Formato di configurazione incorretto.";
/* VMQemuDisplayMetalWindowController */
"Confirm" = "Conferma";
/* No comment provided by engineer. */
"Confirm Delete" = "Conferma Eliminazione";
/* VMDisplayWindowController */
"Confirmation" = "Conferma";
/* No comment provided by engineer. */
"Connection" = "Connessione";
/* No comment provided by engineer. */
"Console Only" = "Solo Console";
/* VMWizardSummaryView */
"Core" = "Core";
/* No comment provided by engineer. */
"Cores" = "Core";
/* No comment provided by engineer. */
"Continue" = "Continua";
/* No comment provided by engineer. */
"CPU" = "CPU";
/* No comment provided by engineer. */
"CPU Cores" = "Core della CPU";
/* No comment provided by engineer. */
"CPU Flags" = "Flag della CPU";
/* No comment provided by engineer. */
"Create" = "Crea";
/* Welcome view */
"Create a New Virtual Machine" = "Crea una Nuova Macchina Virtuale";
/* No comment provided by engineer. */
"Create a new VM with the same configuration as this one but without any data." = "Crea una nuova Macchina Virtuale con la stessa configurazione, ma senza alcun dato.";
/* No comment provided by engineer. */
"Custom" = "Personalizzata";
/* VMConfigDirectoryPickerViewController */
"Create Directory" = "Crea Cartella";
/* VMConfigDriveCreateViewController */
"Creating disk…" = "Creazione disco...";
/* No comment provided by engineer. */
"Debug Logging" = "Registro dei Log";
/* QEMUConstantGenerated
UTMQemuConstants */
"Default" = "Predefinito";
/* VMWizardSummaryView */
"Default Cores" = "Core Predefiniti";
/* No comment provided by engineer. */
"Default is 1/4 of the RAM size (above). The JIT cache size is additive to the RAM size in the total memory usage!" = "1/4 della RAM (sopra) come impostazione predefinita. La dimensione della cache JIT si aggiunge alla quantità di memoria utilizzata!";
/* No comment provided by engineer. */
"Delete" = "Elimina";
/* VMConfigDrivesViewController */
"Delete Data" = "Elimina Dati";
/* No comment provided by engineer. */
"Delete Drive" = "Elimina Disco";
/* No comment provided by engineer. */
"Delete this drive." = "Elimina questo disco";
/* No comment provided by engineer. */
"Delete selected VM" = "Elimina la VM selezionata";
/* No comment provided by engineer. */
"Delete…" = "Elimina...";
/* No comment provided by engineer. */
"Delete this shortcut. The underlying data will not be deleted." = "Elimina questa scorciatoia. I dati originali non saranno eliminati.";
/* No comment provided by engineer. */
"Delete this VM and all its data." = "Elimina questa Macchina Virtuale e tutti i suoi dati.";
/* Delete VM overlay */
"Deleting %@…" = "Eliminazione di %@...";
/* No comment provided by engineer. */
"DHCP Domain Name" = "Nome di Dominio DHCP";
/* No comment provided by engineer. */
"DHCP Host" = "Host DHCP";
/* No comment provided by engineer. */
"DHCP Start" = "Inzio DHCP";
/* No comment provided by engineer. */
"DHCP End" = "Fine DHCP";
/* No comment provided by engineer. */
"Directory" = "Cartella";
/* VMConfigDirectoryPickerViewController */
"Directory Name" = "Nome della Cartella";
/* No comment provided by engineer. */
"Devices" = "Dispositivi";
/* VMDisplayAppleWindowController */
"Directory sharing" = "Condivisione Cartella";
/* No comment provided by engineer. */
"Directory Share Mode" = "Modalità di Condivisione Cartelle";
/* UTMQemuConstants */
"Disabled" = "Disattivato";
/* VMDisplayTerminalViewController */
"Disable this bar in Settings -> General -> Keyboards -> Shortcuts" = "Disattiva questa barra in Impostazioni -> Generali -> Tastiere -> Scorciatoie";
/* No comment provided by engineer. */
"Disk" = "Disco";
/* UTMData
VMConfigDriveCreateViewController
VMWizardState */
"Disk creation failed." = "Creazione del disco fallita.";
/* UTMLegacyQemuConfiguration
UTMQemuConstants */
"Disk Image" = "Immagine del Disco";
/* VMDisplayAppleWindowController */
"Display" = "Schermo";
/* VMDisplayQemuDisplayController */
"Display %lld: %@" = "Schermo %1$lld: %2$@";
/* VMDisplayQemuDisplayController */
"Disposable Mode" = "Modalità usa e getta";
/* No comment provided by engineer. */
"DNS Search Domains" = "Dominio di Ricerca DNS";
/* No comment provided by engineer. */
"DNS Server" = "Server DNS";
/* No comment provided by engineer. */
"DNS Server (IPv6)" = "Server DNS (IPv6)";
/* No comment provided by engineer. */
"Do not save VM screenshot to disk" = "Non salvare gli screenshot delle Macchine Virtuali su disco";
/* VMDisplayMetalWindowController */
"Do Not Show Again" = "Non Mostrare di Nuovo";
/* No comment provided by engineer. */
"Do not show prompt when USB device is plugged in" = "Non mostrare una richiesta quando un dispositivo USB viene collegato";
/* VMConfigDrivesViewController */
"Do you want to also delete the disk image data? If yes, the data will be lost. Otherwise, you can create a new drive with the existing data." = "Vuoi anche eliminare i dati dell'immagine disco? Se sì, i dati saranno persi. In caso contrario, puoi creare un nuovo disco con i dati esistenti.";
/* No comment provided by engineer. */
"Do you want to delete this VM and all its data?" = "Vuoi eliminare questa Macchina Virtuale e tutti i suoi dati?";
/* No comment provided by engineer. */
"Do you want to duplicate this VM and all its data?" = "Vuoi clonare questa Macchina Virtuale e tutti i suoi dati?";
/* No comment provided by engineer. */
"Do you want to force stop this VM and lose all unsaved data?" = "Vuoi forzare l'arresto di questa Macchina Virtuale e perdere tutti i dati non salvati?";
/* No comment provided by engineer. */
"Do you want to move this VM to another location? This will copy the data to the new location, delete the data from the original location, and then create a shortcut." = "Vuoi spostare questa Macchina Virtuale in una nuova posizione? I dati saranno copiati nella nuova posizione ed eliminati dalla posizione originale. Verrà creata una nuova scorciatoia.";
/* No comment provided by engineer. */
"Do you want to remove this shortcut? The data will not be deleted." = "Vuoi eliminare questa scorciatoia? I dati originali non saranno eliminati.";
/* VMConfigDirectoryPickerViewController
VMConfigPortForwardingViewController */
"Done" = "Completato";
/* No comment provided by engineer. */
"Download and mount the guest support package for Windows. This is required for some features including dynamic resolution and clipboard sharing." = "Scarica e monta l'immagine del paccheto di strumenti di supporto per Windows. Questi sono necessari per alcune funzionalità come la risoluzione dinamica e la condivisione degli appunti.";
/* No comment provided by engineer. */
"Download and mount the guest tools for Windows." = "Scarica e monta gli strumenti guest per Windows.";
/* No comment provided by engineer. */
"Download prebuilt from UTM Gallery…" = "Scarica una VM pronta da usare da UTM Gallery...";
/* No comment provided by engineer. */
"Download Ubuntu Server for ARM" = "Scarica Ubuntu Server per ARM";
/* No comment provided by engineer. */
"Download Windows 11 for ARM64 Preview VHDX" = "Scarica l'immagine della Windows 11 ARM64 Preview VHDX";
/* No comment provided by engineer. */
"Downscaling" = "Downscaling";
/* No comment provided by engineer. */
"Drag and drop IPSW file here" = "Trascina il file IPSW qui";
/* VMRemovableDrivesViewController */
"Drive Options" = "Opzioni Disco";
/* No comment provided by engineer. */
"Drives" = "Dischi";
/* No comment provided by engineer. */
"Duplicate this VM along with all its data." = "Duplica questa Macchina Virtuale e tutti i suoi dati";
/* No comment provided by engineer. */
"Edit" = "Modifica";
/* No comment provided by engineer. */
"Edit…" = "Modifica...";
/* No comment provided by engineer. */
"Edit selected VM" = "Modifica la VM selezionata";
/* VMDrivesSettingsView */
"EFI Variables" = "Variabli EFI";
/* VMDisplayWindowController */
"Eject" = "Espelli";
/* New VM window. */
"Empty" = "Vuoto";
/* No comment provided by engineer. */
"Emulate" = "Emula";
/* No comment provided by engineer. */
"Emulated Audio Card" = "Scheda Audio Emulata";
/* No comment provided by engineer. */
"Emulated Display Card" = "Scheda Video Emulata";
/* No comment provided by engineer. */
"Emulated Network Card" = "Scheda di Rete Emulata";
/* UTMQemuConfiguration */
"Emulated VLAN" = "VLAN Emulata";
/* No comment provided by engineer. */
"Emulated Serial Device" = "Dispositivo Seriale Emulato";
/* No comment provided by engineer. */
"Enable Balloon Device" = "Abilita Dispositivo Balloon";
/* No comment provided by engineer. */
"Enable Entropy Device" = "Abilita Dispositivo Entropy";
/* No comment provided by engineer. */
"Enable Clipboard Sharing" = "Abilita Condivisione Appunti";
/* No comment provided by engineer. */
"Requires SPICE guest agent tools to be installed." = "Richiede l'installazione degli strumenti SPICE sul sistema guest.";
/* No comment provided by engineer. */
"Enable Directory Sharing" = "Abilita Condivisione Cartella";
/* No comment provided by engineer. */
"Enable Keyboard" = "Abilita Tastiera";
/* No comment provided by engineer. */
"Enable Sound" = "Abilita Suono";
/* No comment provided by engineer. */
"Enable Pointer" = "Abilita Puntatore";
"Enable Rosetta on Linux (x86_64 Emulation)" = "Abilita Rosetta su Linux (Emulazione x86_64)";
"If enabled, a virtiofs share tagged 'rosetta' will be available on the Linux guest for installing Rosetta for emulating x86_64 on ARM64." = "Se abilitato, verrà resa disponibile la condivisione virtiofs 'rosetta' al guest Linux, per poter installare Rosetta ed emulare x86_64 su ARM64.";
/* No comment provided by engineer. */
"Enable hardware OpenGL acceleration" = "Abilita l'accelerazione hardware OpenGL";
/* No comment provided by engineer. */
"Enabled" = "Abilitato";
/* No comment provided by engineer. */
"Engine" = "Engine";
/* VMDisplayWindowController */
"Error" = "Errore";
/* UTMJSONStream */
"Error parsing JSON." = "Errore di conversione JSON";
/* VMConfigDriveCreateViewController */
"Error renaming file" = "Errore di ridenominazione file";
/* UTMVirtualMachine */
"Error trying to restore external drives and shares: %@" = "Errore durante il tentativo di ripristino dei dischi esterni e delle condivisioni: %@";
/* UTMVirtualMachine */
"Error trying to start shared directory: %@" = "Errore durante l'avvio della cartella condivisa: %@";
/* No comment provided by engineer. */
"Existing" = "Esistente";
/* No comment provided by engineer. */
"Export Debug Log" = "Esporta Log di Debug";
/* No comment provided by engineer. */
"Export QEMU Command…" = "Esporta comando QEMU…";
/* No comment provided by engineer. */
"Export all arguments as a text file. This is only for debugging purposes as UTM's built-in QEMU differs from upstream QEMU in supported arguments." = "Esporta tutti gli argomenti in un file di testo. Consigliato per il debugging: gli argomenti QEMU utilizzati da UTM potrebbero differire da quelli di QEMU upstream";
/* Word for decompressing a compressed folder */
"Extracting…" = "Estrazione…";
/* UTMVirtualMachine+Drives */
"Failed create bookmark." = "Impossibile creare preferito.";
/* UTMQemuVirtualMachine */
"Failed to access data from shortcut." = "Impossibile accedere ai dati dalla scorciatoia.";
/* UTMQemuVirtualMachine */
"Failed to access drive image path." = "Impossibile accedere alla posizione dell'immagine disco.";
/* UTMQemuVirtualMachine */
"Failed to access shared directory." = "Impossibile accedere alla cartella condivisa.";
/* ContentView */
"Failed to attach to JitStreamer:\n%@" = "Errore di collegamento a JitStreamer: %@";
/* ContentView */
"Failed to attach to JitStreamer." = "Errore di collegamento a JitStreamer.";
/* VMConfigInfoView */
"Failed to check name." = "Impossibile verificare il nome.";
/* UTMData */
"Failed to clone VM." = "Impossibile clonare la Macchina Virtuale";
/* UTMSpiceIO */
"Failed to connect to SPICE server." = "Collegamento al server SPICE fallito";
/* ContentView */
"Failed to decode JitStreamer response." = "Impossibile interpretare la risposta di JitStreamer.";
/* UTMDataExtension */
"Failed to delete saved state." = "Salvataggio dello stato fallito.";
/* VMWizardState */
"Failed to get latest macOS version from Apple." = "Non è stato possibile ottenere l'ultima versione di macOS da Apple.";
/* VMRemovableDrivesViewController */
"Failed to get VM object." = "Non è stato possibile ottenere l'oggetto della VM";
/* UTMVirtualMachine */
"Failed to load plist" = "Caricamento del plist fallito";
/* UTMQemuConfigurationError */
"Failed to migrate configuration from a previous UTM version." = "Migrazione da una precedente versione di UTM fallita.";
/* UTMData */
"Failed to parse download URL." = "Errore nella lettura dell'URL di download.";
/* UTMData */
"Failed to parse imported VM." = "Errore di lettura della la Macchina Virtuale importata";
/* UTMDownloadVMTask */
"Failed to parse the downloaded VM." = "Errore di lettura della la Macchina Virtuale scaricata.";
/* UTMQemuVirtualMachine */
"Failed to save VM snapshot. Usually this means at least one device does not support snapshots. %@" = "Non è stato possibile salvare l'istantanea della VM. Generalmente, questo significa che almeno uno dei dispositivi non supporta le istantanee: %@";
"Failed to save VM snapshot. Usually this means at least one device does not support snapshots." = "Non è stato possibile salvare l'istantanea della VM. Generalmente, questo significa che almeno uno dei dispositivi non supporta le istantanee.";
/* UTMSpiceIO */
"Failed to start SPICE client." = "Errore di avvio del Client SPICE";
/* No comment provided by engineer. */
"Faster, but can only run the native CPU architecture." = "Più veloce, ma può solo eseguire VM con l'architettura nativa della CPU.";
/* No comment provided by engineer. */
"Fit To Screen" = "Adatta allo Schermo";
/* No comment provided by engineer. */
"Font" = "Font";
/* No comment provided by engineer. */
"Font Size" = "Dimensione Font";
/* VMDisplayQemuDisplayController */
"Force kill" = "Arresto Forzato";
/* No comment provided by engineer. */
"Force Multicore" = "Forza Multicore";
/* No comment provided by engineer. */
"Force multicore may improve speed of emulation but also might result in unstable and incorrect emulation." = "Forzare l'uso del Multicore potrebbe incrementare la velocità emulazione, ma potrebbe risultare in emulazione scorretta o instabile.";
/* No comment provided by engineer. */
"Force PS/2 controller" = "Forza Controller PS/2";
/* No comment provided by engineer. */
"Force Enable CPU Flags" = "Forza Abilitazione Flag CPU";
/* No comment provided by engineer. */
"Force Disable CPU Flags" = "Forza Disattivazioen Flag CPU";
/* VMDisplayQemuDisplayController */
"Force shut down" = "Forza Spegnimento";
"Force kill the VM process with high risk of data corruption." = "Forza l'interruzione del processo della VM, con un elevato rischio di compromettere dei dati.";
/* No comment provided by engineer. */
"Full Graphics" = "Grafica Completa";
/* No comment provided by engineer. */
"GiB" = "GiB";
/* UTMQemuConstants */
"GDB Debug Stub" = "GDB Debug Stub";
/* No comment provided by engineer. */
"Generate Windows Installer ISO" = "Genera l'immagine ISO dell'Installer di Windows";
/* No comment provided by engineer. */
"Generic" = "Generico";
/* No comment provided by engineer. */
"Gesture and Cursor Settings" = "Impostazioni Gesti e Cursore";
/* VMWizardView */
"Go Back" = "Indietro";
/* No comment provided by engineer. */
"Guest Address" = "Indirizzo Guest";
/* VMConfigPortForwardingViewController */
"Guest address (optional)" = "Indirizzo Guest (opcional)";
/* No comment provided by engineer. */
"Guest Network" = "Rete Guest";
/* No comment provided by engineer. */
"Guest Network (IPv6)" = "Rete Guest (IPv6)";
/* UTMQemuManager */
"Guest panic" = "Guest panic";
/* No comment provided by engineer. */
"Guest Port" = "Porta Guest";
/* VMConfigPortForwardingViewController */
"Guest port (required)" = "Porta Guest (richiesto)";
/* Configuration boot device */
"Hard Disk" = "Disco Rigido";
/* No comment provided by engineer. */
"Hardware" = "Hardware";
/* No comment provided by engineer. */
"Hardware OpenGL Acceleration" = "Accelerazione Hardware OpenGL";
/* No comment provided by engineer. */
"Hello" = "Ciao";
/* No comment provided by engineer. */
"Hide" = "Nascondi";
/* No comment provided by engineer. */
"Hide Unused…" = "Nascondi inutilizzati...";
/* VMDisplayViewController */
"Hint: To show the toolbar again, use a three-finger swipe down on the screen." = "Suggerimento: per mostrare di nuovo la barra degli strumenti, scorri con tre dita sullos chermo.";
/* No comment provided by engineer. */
"Hold Control (⌃) for right click" = "Tieni premuto Control (⌃) per il click destro";
/* No comment provided by engineer. */
"Host Address" = "Indirizzo Host";
/* No comment provided by engineer. */
"Host Address (IPv6)" = "Indirizzo Host (IPv6)";
/* VMConfigPortForwardingViewController */
"Host address (optional)" = "Indirizzo Host (opcional)";
/* UTMQemuConstants */
"Host Only" = "Solo Host";
/* No comment provided by engineer. */
"Host Port" = "Porta Host";
/* VMConfigPortForwardingViewController */
"Host port (required)" = "Porta Host (requerido)";
/* No comment provided by engineer. */
"Hypervisor" = "Hypervisor";
/* No comment provided by engineer. */
"I want to…" = "Voglio...";
/* No comment provided by engineer. */
"If enabled, the default input devices will be emulated on the USB bus." = "Se abilitato, i dispositivi di input predefiniti saranno emulati sul bus USB.";
"If enabled, a virtiofs share tagged 'rosetta' will be available on the Linux guest for installing Rosetta for emulating x86_64 on ARM64." = "Se abilitato, una cartella condvisa virtiofs con nome 'rosetta' sarà disponibile sul guest Linux, permettendoti di installare Rosetta per emulare x86_64 su ARM64.";
/* No comment provided by engineer. */
"If checked, use local time for RTC which is required for Windows. Otherwise, use UTC clock." = "Se abilitato, usa l'ora locale per il RTC, richiesto da Windows. Altrimenti, usa UTC.";
/* No comment provided by engineer. */
"If checked, the CPU flag will be enabled. Otherwise, the default value will be used." = "Se abilitato, la flag CPU verrà abilitata. In alternativa, sarà usato il valore predefinito.";
/* No comment provided by engineer. */
"If checked, the CPU flag will be disabled. Otherwise, the default value will be used." = "Se abiltato, la flag CPU verrà disabilitata. In alternativa, sarà usato il valore predefinito.";
/* No comment provided by engineer. */
"Icon" = "Icona";
/* UTMQemuConstants */
"IDE" = "IDE";
/* No comment provided by engineer. */
"If set, boot directly from a raw kernel image and initrd. Otherwise, boot from a supported ISO." = "Se impostato, avvia direttamente da un'immagine del kernel e initrd. In alternativa, avvia da una ISO supportata.";
/* No comment provided by engineer. */
"Image File Type" = "Tipo di File di Immagine";
/* No comment provided by engineer. */
"Image Type" = "Tipo di Immagine";
/* No comment provided by engineer. */
"Import IPSW" = "Importa un IPSW";
/* No comment provided by engineer. */
"Import…" = "Importa...";
/* No comment provided by engineer. */
"Import Drive…" = "Importa Disco...";
/* No comment provided by engineer. */
"Import VHDX Image" = "Importa un'Immagine VHDX";
/* No comment provided by engineer. */
"Fetch latest Windows installer…" = "Ottieni l'installer di Windows più recente";
/* No comment provided by engineer. */
"Windows Install Guide" = "Guida all'installazione di Windows";
/* No comment provided by engineer. */
"Import Virtual Machine…" = "Importa una Macchina Virtuale...";
/* Save VM overlay */
"Importing %@…" = "Importazione di %@...";
/* VMDetailsView */
"Inactive" = "Inattivo";
/* No comment provided by engineer. */
"Information" = "Informazioni";
/* No comment provided by engineer. */
"Initial Ramdisk" = "RAMDisk Iniziale";
/* No comment provided by engineer. */
"Input" = "Input";
/* No comment provided by engineer. */
"Interface" = "Interfaccia";
"Hardware interface on the guest used to mount this image. Different operating systems support different interfaces. The default will be the most common interface." = "L'interfaccia hardware utilizzata dal sistema guest per montare questa imnmagine. Ciascun sistema operativo può supportare diversi tipi di interfacce. L'interfaccia predefinita sarà quella utilizzata comunemente.";
/* VMDisplayWindowController */
"Install Windows Guest Tools…" = "Installa gli Strumenti Guest per Windows…";
/* No comment provided by engineer. */
"Install Windows 10 or higher" = "Installa Windows 10 o successivo";
/* No comment provided by engineer. */
"Install drivers and SPICE tools" = "Installa i Driver e gli Strumenti SPICE";
/* VMDisplayAppleWindowController */
"Installation: %@" = "Installazione: %@";
/* No comment provided by engineer. */
"Instantiate PS/2 controller even when USB input is supported. Required for older Windows." = "Inizializza il controller PS/2 anche quando l'input USB è supportato. Richiesto per versioni più vecchie di Windows.";
/* UTMQemu */
"Internal error has occurred." = "Si è verificato un errore interno.";
/* UTMSpiceIO */
"Internal error trying to connect to SPICE server." = "Si è verificato un errore interno durante la connessione al server SPICE.";
/* UTMVirtualMachine */
"Internal error starting main loop." = "Si è verificato un errore interno all'avvio del loop principale.";
/* UTMVirtualMachine */
"Internal error starting VM." = "Si è verificato un errore interno all'avvio della VM.";
/* VMDisplayMetalWindowController */
"Internal error." = "Errore interno.";
/* ContentView */
"Invalid JitStreamer attach URL:\n%@" = "Attach URL di JitStramer non valido: %@";
/* VMConfigAppleNetworkingView */
"Invalid MAC address." = "MAC address non corretto.";
/* VMConfigSystemViewController */
"Invalid core count." = "Numero di core non valido.";
/* UTMData */
"Invalid drive size." = "Dimensione del disco non valida.";
/* VMRemovableDrivesViewController */
"Invalid file selected." = "File selezionato non valido.";
/* VMConfigSystemViewController */
"Invalid memory size." = "Dimensione della memoria non valida.";
/* VMConfigDriveCreateViewController */
"Invalid name" = "Nome non valido";
/* VMConfigDriveCreateViewController */
"Invalid size" = "Dimensione non valida";
/* VMListViewController */
"Invalid UTM not imported." = "UTM non valido non importato.";
/* No comment provided by engineer. */
"Invert Mouse Scroll" = "Inverti lo scorrimento del mouse";
/* No comment provided by engineer. */
"Invert scrolling" = "Inverti lo scorrimento";
/* No comment provided by engineer. */
"If enabled, scroll wheel input will be inverted." = "Se abilitato, lo scorrimento della rotella del mouse verrà invertito";
/* No comment provided by engineer. */
"IP Configuration" = "Impostazioni IP";
/* No comment provided by engineer. */
"Isolate Guest from Host" = "Isola Guest";
/* UTMQemuConstants */
"Italic" = "Cursivo";
/* UTMQemuConstants */
"Italic, Bold" = "Cursivo, Grassetto";
/* No comment provided by engineer. */
"JIT Cache" = "Cache JIT";
/* VMConfigSystemViewController */
"JIT cache size cannot be larger than 2GB." = "La dimensione della cache JIT non può essere superiore a 2GB.";
/* VMConfigSystemViewController */
"JIT cache size too small." = "Dimensione della cache JIT insufficiente.";
/* No comment provided by engineer. */
"Kernel" = "Kernel";
/* No comment provided by engineer. */
"Keyboard" = "Tastiera";
/* No comment provided by engineer. */
"Keep UTM running after last window is closed and all VMs are shut down" = "Esegui UTM anche quando tutte le fineste sono chiuse e nessuna VM è in esecuzione";
/* No comment provided by engineer. */
"Show dock icon" = "Mostra icona nel dock";
/* No comment provided by engineer. */
"Show menu bar icon" = "Mostra icona nella barra dei menu";
/* No comment provided by engineer. */
"Prevent system from sleeping when any VM is running" = "Impedisci lo stop del sistema quando una VM è in esecuzione";
/* No comment provided by engineer. */
"Do not show confirmation when closing a running VM" = "Non mostrare un avviso alla chiusura di una VM in esecuzione";
/* No comment provided by engineer. */
"Closing a VM without properly shutting it down could result in data loss." = "La chiusura di una VM senza il corretto spegnimento potrebbe comportare perdita di dati.";
/* No comment provided by engineer. */
"QEMU Graphics Acceleration" = "Accelerazione Grafica QEMU";
/* No comment provided by engineer. */
"By default, the best renderer for this device will be used. You can override this with to always use a specific renderer. This only applies to QEMU VMs with GPU accelerated graphics." = "Il miglior Renderer per questo dispositivo verrà selezionato automaticamente. Puoi sceglierne un altro con questa opzione. Si applica solo alle VM QEMU con accelerazione GPU";
/* No comment provided by engineer. */
"If set, a frame limit can improve smoothness in rendering by preventing stutters when set to the lowest value your device can handle." = "Se impostato, un limite di frame può migliorare l'esperienza quando impostato al valore minimo di refresh del proprio dispositivo.";
/* No comment provided by engineer. */
"By default, the best backend for the target will be used. If the selected backend is not available for any reason, an alternative will automatically be selected." = "Il miglior backand disponibile verrà scelto automaticamente. Se il backend selezionato non fosse disponibile, verrà selezionata un'alternativa automaticamente";
/* No comment provided by engineer. */
"FPS Limit" = "Limite FPS";
/* No comment provided by engineer. */
"QEMU Sound" = "Suono QEMU";
/* No comment provided by engineer. */
"Renderer Backend" = "Backend Renderer";
/* No comment provided by engineer. */
"Sound Backend" = "Backend Suono";