virtui-manager 1.1.6__py3-none-any.whl → 1.4.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. {virtui_manager-1.1.6.dist-info → virtui_manager-1.4.0.dist-info}/METADATA +1 -1
  2. virtui_manager-1.4.0.dist-info/RECORD +76 -0
  3. vmanager/constants.py +739 -108
  4. vmanager/dialog.css +24 -0
  5. vmanager/firmware_manager.py +4 -1
  6. vmanager/i18n.py +32 -0
  7. vmanager/libvirt_utils.py +132 -3
  8. vmanager/locales/de/LC_MESSAGES/virtui-manager.mo +0 -0
  9. vmanager/locales/de/LC_MESSAGES/virtui-manager.po +3158 -0
  10. vmanager/locales/fr/LC_MESSAGES/virtui-manager.mo +0 -0
  11. vmanager/locales/fr/LC_MESSAGES/virtui-manager.po +3155 -0
  12. vmanager/locales/it/LC_MESSAGES/virtui-manager.mo +0 -0
  13. vmanager/locales/it/LC_MESSAGES/virtui-manager.po +3132 -0
  14. vmanager/locales/virtui-manager.pot +3033 -0
  15. vmanager/modals/bulk_modals.py +13 -12
  16. vmanager/modals/cache_stats_modal.py +6 -5
  17. vmanager/modals/capabilities_modal.py +133 -0
  18. vmanager/modals/config_modal.py +25 -24
  19. vmanager/modals/cpu_mem_pc_modals.py +22 -21
  20. vmanager/modals/custom_migration_modal.py +10 -9
  21. vmanager/modals/disk_pool_modals.py +60 -59
  22. vmanager/modals/host_dashboard_modal.py +137 -0
  23. vmanager/modals/host_stats.py +199 -0
  24. vmanager/modals/howto_disk_modal.py +2 -1
  25. vmanager/modals/howto_network_modal.py +2 -1
  26. vmanager/modals/howto_overlay_modal.py +2 -1
  27. vmanager/modals/howto_ssh_modal.py +2 -1
  28. vmanager/modals/howto_virtiofs_modal.py +2 -1
  29. vmanager/modals/input_modals.py +11 -10
  30. vmanager/modals/log_modal.py +2 -1
  31. vmanager/modals/migration_modals.py +21 -19
  32. vmanager/modals/network_modals.py +45 -36
  33. vmanager/modals/provisioning_modals.py +56 -56
  34. vmanager/modals/select_server_modals.py +8 -7
  35. vmanager/modals/selection_modals.py +7 -6
  36. vmanager/modals/server_modals.py +24 -23
  37. vmanager/modals/server_prefs_modals.py +78 -71
  38. vmanager/modals/utils_modals.py +10 -9
  39. vmanager/modals/virsh_modals.py +3 -2
  40. vmanager/modals/virtiofs_modals.py +6 -5
  41. vmanager/modals/vm_type_info_modal.py +2 -1
  42. vmanager/modals/vmanager_modals.py +19 -19
  43. vmanager/modals/vmcard_dialog.py +57 -57
  44. vmanager/modals/vmdetails_modals.py +115 -123
  45. vmanager/modals/xml_modals.py +3 -2
  46. vmanager/network_manager.py +4 -1
  47. vmanager/storage_manager.py +157 -39
  48. vmanager/utils.py +54 -7
  49. vmanager/vm_actions.py +48 -24
  50. vmanager/vm_migration.py +4 -1
  51. vmanager/vm_queries.py +67 -25
  52. vmanager/vm_service.py +8 -5
  53. vmanager/vmanager.css +55 -1
  54. vmanager/vmanager.py +247 -120
  55. vmanager/vmcard.css +3 -1
  56. vmanager/vmcard.py +270 -205
  57. vmanager/webconsole_manager.py +22 -22
  58. virtui_manager-1.1.6.dist-info/RECORD +0 -65
  59. {virtui_manager-1.1.6.dist-info → virtui_manager-1.4.0.dist-info}/WHEEL +0 -0
  60. {virtui_manager-1.1.6.dist-info → virtui_manager-1.4.0.dist-info}/entry_points.txt +0 -0
  61. {virtui_manager-1.1.6.dist-info → virtui_manager-1.4.0.dist-info}/licenses/LICENSE +0 -0
  62. {virtui_manager-1.1.6.dist-info → virtui_manager-1.4.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,3033 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR VirtUI Manager
3
+ # This file is distributed under the same license as the VirtUI Manager package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: VirtUI Manager 1.4.0\n"
10
+ "Report-Msgid-Bugs-To: https://github.com/aginies/virtui-manager/issues\n"
11
+ "POT-Creation-Date: 2026-02-02 20:49+0100\n"
12
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Language: \n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+
20
+ #: constants.py:64
21
+ msgid "Add"
22
+ msgstr ""
23
+
24
+ #: constants.py:65
25
+ msgid "Save"
26
+ msgstr ""
27
+
28
+ #: constants.py:66
29
+ msgid "Hibernate VM"
30
+ msgstr ""
31
+
32
+ #: constants.py:67
33
+ msgid "Save Changes"
34
+ msgstr ""
35
+
36
+ #: constants.py:68
37
+ msgid "Create Network"
38
+ msgstr ""
39
+
40
+ #: constants.py:69
41
+ msgid "Install"
42
+ msgstr ""
43
+
44
+ #: constants.py:70
45
+ msgid "Info"
46
+ msgstr ""
47
+
48
+ #: constants.py:71
49
+ msgid "Browse"
50
+ msgstr ""
51
+
52
+ #: constants.py:72
53
+ msgid "Start"
54
+ msgstr ""
55
+
56
+ #: constants.py:73
57
+ msgid "Shutdown"
58
+ msgstr ""
59
+
60
+ #: constants.py:74
61
+ msgid "Force Off"
62
+ msgstr ""
63
+
64
+ #: constants.py:75
65
+ msgid "Remove"
66
+ msgstr ""
67
+
68
+ #: constants.py:76
69
+ msgid "Pause"
70
+ msgstr ""
71
+
72
+ #: constants.py:77
73
+ msgid "Resume"
74
+ msgstr ""
75
+
76
+ #: constants.py:78
77
+ msgid "Configure"
78
+ msgstr ""
79
+
80
+ #: constants.py:79
81
+ msgid "Web Console"
82
+ msgstr ""
83
+
84
+ #: constants.py:80
85
+ msgid "Text Console"
86
+ msgstr ""
87
+
88
+ #: constants.py:81
89
+ msgid "Connect"
90
+ msgstr ""
91
+
92
+ #: constants.py:82
93
+ msgid "Snapshot"
94
+ msgstr ""
95
+
96
+ #: constants.py:83
97
+ msgid "Restore Snapshot"
98
+ msgstr ""
99
+
100
+ #: constants.py:84
101
+ msgid "Del Snapshot"
102
+ msgstr ""
103
+
104
+ #: constants.py:85 constants.py:117
105
+ msgid "Delete"
106
+ msgstr ""
107
+
108
+ #: constants.py:86
109
+ msgid "Edit"
110
+ msgstr ""
111
+
112
+ #: constants.py:87
113
+ msgid "Custom URL"
114
+ msgstr ""
115
+
116
+ #: constants.py:88
117
+ msgid "SSH Help"
118
+ msgstr ""
119
+
120
+ #: constants.py:89
121
+ msgid "View"
122
+ msgstr ""
123
+
124
+ #: constants.py:90 constants.py:113 constants.py:118 constants.py:174
125
+ msgid "Help"
126
+ msgstr ""
127
+
128
+ #: constants.py:91
129
+ msgid "Add Pool"
130
+ msgstr ""
131
+
132
+ #: constants.py:92
133
+ msgid "Delete Pool"
134
+ msgstr ""
135
+
136
+ #: constants.py:93
137
+ msgid "New Volume"
138
+ msgstr ""
139
+
140
+ #: constants.py:94
141
+ msgid "Attach Vol"
142
+ msgstr ""
143
+
144
+ #: constants.py:95
145
+ msgid "Move Volume"
146
+ msgstr ""
147
+
148
+ #: constants.py:96
149
+ msgid "Delete Volume"
150
+ msgstr ""
151
+
152
+ #: constants.py:97
153
+ msgid "Edit XML"
154
+ msgstr ""
155
+
156
+ #: constants.py:98
157
+ msgid "Edit CPU Tune"
158
+ msgstr ""
159
+
160
+ #: constants.py:99
161
+ msgid "Edit NUMA Tune"
162
+ msgstr ""
163
+
164
+ #: constants.py:100
165
+ msgid "Switch to BIOS"
166
+ msgstr ""
167
+
168
+ #: constants.py:101
169
+ msgid "Switch to UEFI"
170
+ msgstr ""
171
+
172
+ #: constants.py:102
173
+ msgid "Save Boot Order"
174
+ msgstr ""
175
+
176
+ #: constants.py:103
177
+ msgid "<"
178
+ msgstr ""
179
+
180
+ #: constants.py:104
181
+ msgid ">"
182
+ msgstr ""
183
+
184
+ #: constants.py:105
185
+ msgid "Up"
186
+ msgstr ""
187
+
188
+ #: constants.py:106
189
+ msgid "Down"
190
+ msgstr ""
191
+
192
+ #: constants.py:107
193
+ msgid "Remove Disk"
194
+ msgstr ""
195
+
196
+ #: constants.py:108
197
+ msgid "Disable Disk"
198
+ msgstr ""
199
+
200
+ #: constants.py:109
201
+ msgid "Enable Disk"
202
+ msgstr ""
203
+
204
+ #: constants.py:110
205
+ msgid "Add Disk"
206
+ msgstr ""
207
+
208
+ #: constants.py:111
209
+ msgid "Attach Existing Disk"
210
+ msgstr ""
211
+
212
+ #: constants.py:112
213
+ msgid "Edit Disk"
214
+ msgstr ""
215
+
216
+ #: constants.py:114
217
+ msgid "Edit Interface"
218
+ msgstr ""
219
+
220
+ #: constants.py:115
221
+ msgid "Add Interface"
222
+ msgstr ""
223
+
224
+ #: constants.py:116
225
+ msgid "Remove Interface"
226
+ msgstr ""
227
+
228
+ #: constants.py:119
229
+ msgid "Apply Graphics Settings"
230
+ msgstr ""
231
+
232
+ #: constants.py:120
233
+ msgid "Apply TPM Settings"
234
+ msgstr ""
235
+
236
+ #: constants.py:121
237
+ msgid "Apply RNG Settings"
238
+ msgstr ""
239
+
240
+ #: constants.py:122
241
+ msgid "Add PTY Console"
242
+ msgstr ""
243
+
244
+ #: constants.py:123
245
+ msgid "Remove Console"
246
+ msgstr ""
247
+
248
+ #: constants.py:124
249
+ msgid "Apply Watchdog Settings"
250
+ msgstr ""
251
+
252
+ #: constants.py:125
253
+ msgid "Remove Watchdog"
254
+ msgstr ""
255
+
256
+ #: constants.py:126
257
+ msgid "Add Input"
258
+ msgstr ""
259
+
260
+ #: constants.py:127
261
+ msgid "Remove Input"
262
+ msgstr ""
263
+
264
+ #: constants.py:128
265
+ msgid "Add USB2"
266
+ msgstr ""
267
+
268
+ #: constants.py:129
269
+ msgid "Add USB3"
270
+ msgstr ""
271
+
272
+ #: constants.py:130
273
+ msgid "Add SCSI"
274
+ msgstr ""
275
+
276
+ #: constants.py:131
277
+ msgid "Attach >"
278
+ msgstr ""
279
+
280
+ #: constants.py:132
281
+ msgid "< Detach"
282
+ msgstr ""
283
+
284
+ #: constants.py:133
285
+ msgid "Add Channel"
286
+ msgstr ""
287
+
288
+ #: constants.py:134
289
+ msgid "Remove Channel"
290
+ msgstr ""
291
+
292
+ #: constants.py:135
293
+ msgid "Other Tabs"
294
+ msgstr ""
295
+
296
+ #: constants.py:136
297
+ msgid "Apply"
298
+ msgstr ""
299
+
300
+ #: constants.py:137
301
+ msgid "! Clone !"
302
+ msgstr ""
303
+
304
+ #: constants.py:138
305
+ msgid "! Migration !"
306
+ msgstr ""
307
+
308
+ #: constants.py:139
309
+ msgid "View XML"
310
+ msgstr ""
311
+
312
+ #: constants.py:140
313
+ msgid "Rename"
314
+ msgstr ""
315
+
316
+ #: constants.py:141
317
+ msgid "[b][#FFD700]S[/][/]elect Servers"
318
+ msgstr ""
319
+
320
+ #: constants.py:142
321
+ msgid "Servers [b][#FFD700]L[/][/]ist"
322
+ msgstr ""
323
+
324
+ #: constants.py:143
325
+ msgid "Server Prefs"
326
+ msgstr ""
327
+
328
+ #: constants.py:144
329
+ msgid "[b][#FFD700]F[/][/]ilter VM"
330
+ msgstr ""
331
+
332
+ #: constants.py:145 constants.py:182
333
+ msgid "Log"
334
+ msgstr ""
335
+
336
+ #: constants.py:146
337
+ msgid "[b][#FFD700]B[/][/]ulk CMD"
338
+ msgstr ""
339
+
340
+ #: constants.py:147
341
+ msgid "[b][#FFD700]P[/][/]attern Sel"
342
+ msgstr ""
343
+
344
+ #: constants.py:148 constants.py:186
345
+ msgid "Config"
346
+ msgstr ""
347
+
348
+ #: constants.py:149
349
+ msgid "\\[Previous Page]"
350
+ msgstr ""
351
+
352
+ #: constants.py:150
353
+ msgid "\\[Next Page]"
354
+ msgstr ""
355
+
356
+ #: constants.py:151
357
+ msgid "Yes"
358
+ msgstr ""
359
+
360
+ #: constants.py:152
361
+ msgid "No"
362
+ msgstr ""
363
+
364
+ #: constants.py:153
365
+ msgid "Cancel"
366
+ msgstr ""
367
+
368
+ #: constants.py:154
369
+ msgid "Create"
370
+ msgstr ""
371
+
372
+ #: constants.py:155
373
+ msgid "Change"
374
+ msgstr ""
375
+
376
+ #: constants.py:156
377
+ msgid "Stop"
378
+ msgstr ""
379
+
380
+ #: constants.py:157
381
+ msgid "Close"
382
+ msgstr ""
383
+
384
+ #: constants.py:158
385
+ msgid "Move"
386
+ msgstr ""
387
+
388
+ #: constants.py:159
389
+ msgid "Attach"
390
+ msgstr ""
391
+
392
+ #: constants.py:160
393
+ msgid "De/Active"
394
+ msgstr ""
395
+
396
+ #: constants.py:161
397
+ msgid "Autostart"
398
+ msgstr ""
399
+
400
+ #: constants.py:162
401
+ msgid "Execute"
402
+ msgstr ""
403
+
404
+ #: constants.py:163
405
+ msgid "Done"
406
+ msgstr ""
407
+
408
+ #: constants.py:164
409
+ msgid "Search VMs"
410
+ msgstr ""
411
+
412
+ #: constants.py:165
413
+ msgid "Select Matching"
414
+ msgstr ""
415
+
416
+ #: constants.py:166
417
+ msgid "Refresh"
418
+ msgstr ""
419
+
420
+ #: constants.py:167
421
+ msgid "Clear All Caches"
422
+ msgstr ""
423
+
424
+ #: constants.py:168
425
+ msgid "Confirm"
426
+ msgstr ""
427
+
428
+ #: constants.py:169
429
+ msgid "Check Compatibility"
430
+ msgstr ""
431
+
432
+ #: constants.py:170
433
+ msgid "Start Migration"
434
+ msgstr ""
435
+
436
+ #: constants.py:171
437
+ msgid "New Overlay"
438
+ msgstr ""
439
+
440
+ #: constants.py:172
441
+ msgid "Commit Disk"
442
+ msgstr ""
443
+
444
+ #: constants.py:173
445
+ msgid "Discard Overlay"
446
+ msgstr ""
447
+
448
+ #: constants.py:175
449
+ msgid "Compact"
450
+ msgstr ""
451
+
452
+ #: constants.py:176
453
+ msgid "Select"
454
+ msgstr ""
455
+
456
+ #: constants.py:177
457
+ msgid "OK"
458
+ msgstr ""
459
+
460
+ #: constants.py:183
461
+ msgid "Filter"
462
+ msgstr ""
463
+
464
+ #: constants.py:184
465
+ msgid "CompactView"
466
+ msgstr ""
467
+
468
+ #: constants.py:185
469
+ msgid "ServerPrefs"
470
+ msgstr ""
471
+
472
+ #: constants.py:187
473
+ msgid "BulkCMD"
474
+ msgstr ""
475
+
476
+ #: constants.py:188
477
+ msgid "SelServers"
478
+ msgstr ""
479
+
480
+ #: constants.py:189
481
+ msgid "ServList"
482
+ msgstr ""
483
+
484
+ #: constants.py:190
485
+ msgid "PatternSel"
486
+ msgstr ""
487
+
488
+ #: constants.py:191
489
+ msgid "Sel/Des All"
490
+ msgstr ""
491
+
492
+ #: constants.py:192
493
+ msgid "Unselect All"
494
+ msgstr ""
495
+
496
+ #: constants.py:193
497
+ msgid "Previous Page"
498
+ msgstr ""
499
+
500
+ #: constants.py:194
501
+ msgid "Next Page"
502
+ msgstr ""
503
+
504
+ #: constants.py:195
505
+ msgid "Running VMs"
506
+ msgstr ""
507
+
508
+ #: constants.py:196
509
+ msgid "All VMs"
510
+ msgstr ""
511
+
512
+ #: constants.py:197
513
+ msgid "Virsh"
514
+ msgstr ""
515
+
516
+ #: constants.py:198
517
+ msgid "Host Caps"
518
+ msgstr ""
519
+
520
+ #: constants.py:199
521
+ msgid "InstallVM"
522
+ msgstr ""
523
+
524
+ #: constants.py:200
525
+ msgid "Log Stats"
526
+ msgstr ""
527
+
528
+ #: constants.py:201
529
+ msgid "Show cache Stats"
530
+ msgstr ""
531
+
532
+ #: constants.py:202
533
+ msgid "Quit"
534
+ msgstr ""
535
+
536
+ #: constants.py:203
537
+ msgid "Host Dashboard"
538
+ msgstr ""
539
+
540
+ #: constants.py:208
541
+ msgid "Manage"
542
+ msgstr ""
543
+
544
+ #: constants.py:209
545
+ msgid "Other"
546
+ msgstr ""
547
+
548
+ #: constants.py:210
549
+ msgid "State Management"
550
+ msgstr ""
551
+
552
+ #: constants.py:211
553
+ msgid "Updating Data..."
554
+ msgstr ""
555
+
556
+ #: constants.py:212 constants.py:403
557
+ msgid "Active Allocation"
558
+ msgstr ""
559
+
560
+ #: constants.py:213 constants.py:404
561
+ msgid "Total Allocation"
562
+ msgstr ""
563
+
564
+ #: constants.py:217 constants.py:307
565
+ msgid "Stopped"
566
+ msgstr ""
567
+
568
+ #: constants.py:218 constants.py:303
569
+ msgid "Running"
570
+ msgstr ""
571
+
572
+ #: constants.py:219 constants.py:304
573
+ msgid "Paused"
574
+ msgstr ""
575
+
576
+ #: constants.py:220 constants.py:305
577
+ msgid "PMSuspended"
578
+ msgstr ""
579
+
580
+ #: constants.py:221 constants.py:306
581
+ msgid "Blocked"
582
+ msgstr ""
583
+
584
+ #: constants.py:222
585
+ msgid "Loading"
586
+ msgstr ""
587
+
588
+ #: constants.py:223
589
+ msgid "Unknown"
590
+ msgstr ""
591
+
592
+ #: constants.py:228
593
+ msgid "Cache Performance Statistics"
594
+ msgstr ""
595
+
596
+ #: constants.py:229
597
+ #, python-brace-format
598
+ msgid "(Editing: {get_user_config_path})"
599
+ msgstr ""
600
+
601
+ #: constants.py:230
602
+ msgid "[bold]Custom Migration Plan[/bold]"
603
+ msgstr ""
604
+
605
+ #: constants.py:231
606
+ #, python-brace-format
607
+ msgid "Disk: [b]{volume_name}[/b]"
608
+ msgstr ""
609
+
610
+ #: constants.py:232
611
+ #, python-brace-format
612
+ msgid " Source Pool: {source_pool}"
613
+ msgstr ""
614
+
615
+ #: constants.py:233
616
+ msgid " No destination pools available."
617
+ msgstr ""
618
+
619
+ #: constants.py:234
620
+ #, python-brace-format
621
+ msgid "Disk: [b]{disk_path}[/b]"
622
+ msgstr ""
623
+
624
+ #: constants.py:235
625
+ #, python-brace-format
626
+ msgid " Action: {message}"
627
+ msgstr ""
628
+
629
+ #: constants.py:236
630
+ #, python-brace-format
631
+ msgid "From Pool: {source_pool_name}"
632
+ msgstr ""
633
+
634
+ #: constants.py:237
635
+ msgid "Select destination server:"
636
+ msgstr ""
637
+
638
+ #: constants.py:238
639
+ msgid "Migration Options:"
640
+ msgstr ""
641
+
642
+ #: constants.py:239
643
+ msgid "Compatibility Check Results / Migration Log:"
644
+ msgstr ""
645
+
646
+ #: constants.py:240
647
+ msgid "[b]VMs [green]Ready[/] for Migration[/b]"
648
+ msgstr ""
649
+
650
+ #: constants.py:241
651
+ msgid "[b]VMs [red]Not[/] Ready for Migration[/b]"
652
+ msgstr ""
653
+
654
+ #: constants.py:242
655
+ msgid "Delete associated storage"
656
+ msgstr ""
657
+
658
+ #: constants.py:243
659
+ msgid "Create new disk image"
660
+ msgstr ""
661
+
662
+ #: constants.py:244
663
+ msgid "CD-ROM"
664
+ msgstr ""
665
+
666
+ #: constants.py:245
667
+ msgid "Copy storage all"
668
+ msgstr ""
669
+
670
+ #: constants.py:246
671
+ msgid "Unsafe migration"
672
+ msgstr ""
673
+
674
+ #: constants.py:247
675
+ msgid "Persistent migration"
676
+ msgstr ""
677
+
678
+ #: constants.py:248
679
+ msgid "Compress data"
680
+ msgstr ""
681
+
682
+ #: constants.py:249
683
+ msgid "Tunnelled migration"
684
+ msgstr ""
685
+
686
+ #: constants.py:250
687
+ msgid "Custom migration"
688
+ msgstr ""
689
+
690
+ #: constants.py:251
691
+ msgid "Enable remote web console"
692
+ msgstr ""
693
+
694
+ #: constants.py:252
695
+ msgid "Enable DHCPv4"
696
+ msgstr ""
697
+
698
+ #: constants.py:253
699
+ msgid "Validate Checksum"
700
+ msgstr ""
701
+
702
+ #: constants.py:254
703
+ msgid "UEFI"
704
+ msgstr ""
705
+
706
+ #: constants.py:255
707
+ msgid "Configure before install"
708
+ msgstr ""
709
+
710
+ #: constants.py:256
711
+ #, python-brace-format
712
+ msgid "Install OpenSUSE VM on {uri}"
713
+ msgstr ""
714
+
715
+ #: constants.py:257
716
+ msgid "VM Name:"
717
+ msgstr ""
718
+
719
+ #: constants.py:258
720
+ msgid "VM Type:"
721
+ msgstr ""
722
+
723
+ #: constants.py:259
724
+ msgid "Distribution:"
725
+ msgstr ""
726
+
727
+ #: constants.py:260
728
+ msgid "ISO Image (Repo):"
729
+ msgstr ""
730
+
731
+ #: constants.py:261
732
+ #, python-brace-format
733
+ msgid "ISOs will be downloaded to: {iso_path}"
734
+ msgstr ""
735
+
736
+ #: constants.py:262
737
+ msgid "Custom ISO (Local Path):"
738
+ msgstr ""
739
+
740
+ #: constants.py:263
741
+ msgid "Select Storage Pool:"
742
+ msgstr ""
743
+
744
+ #: constants.py:264
745
+ msgid "Select ISO Volume:"
746
+ msgstr ""
747
+
748
+ #: constants.py:265
749
+ msgid "Storage Pool:"
750
+ msgstr ""
751
+
752
+ #: constants.py:266
753
+ msgid " Memory (GB)"
754
+ msgstr ""
755
+
756
+ #: constants.py:267
757
+ msgid " CPUs"
758
+ msgstr ""
759
+
760
+ #: constants.py:268
761
+ msgid " Disk Size(GB)"
762
+ msgstr ""
763
+
764
+ #: constants.py:269
765
+ msgid " Disk Format"
766
+ msgstr ""
767
+
768
+ #: constants.py:270
769
+ msgid " Firmware"
770
+ msgstr ""
771
+
772
+ #: constants.py:271
773
+ msgid "Delete storage volumes"
774
+ msgstr ""
775
+
776
+ #: constants.py:272
777
+ msgid "Quiesce guest (requires agent)"
778
+ msgstr ""
779
+
780
+ #: constants.py:273
781
+ msgid "Select interface and new network"
782
+ msgstr ""
783
+
784
+ #: constants.py:274
785
+ msgid "Enter base name for new VM(s)"
786
+ msgstr ""
787
+
788
+ #: constants.py:275
789
+ msgid "Suffix for clone names (e.g., _C)"
790
+ msgstr ""
791
+
792
+ #: constants.py:276
793
+ msgid "Number of clones to create"
794
+ msgstr ""
795
+
796
+ #: constants.py:277
797
+ msgid "Do Not Clone storage"
798
+ msgstr ""
799
+
800
+ #: constants.py:278
801
+ #, python-brace-format
802
+ msgid "Current name: {current_name}"
803
+ msgstr ""
804
+
805
+ #: constants.py:279
806
+ msgid "Enter new VM name"
807
+ msgstr ""
808
+
809
+ #: constants.py:280
810
+ #, python-brace-format
811
+ msgid "Current time: {now}"
812
+ msgstr ""
813
+
814
+ #: constants.py:281
815
+ msgid "Enter snapshot name"
816
+ msgstr ""
817
+
818
+ #: constants.py:282
819
+ msgid "Description (optional)"
820
+ msgstr ""
821
+
822
+ #: constants.py:283
823
+ msgid "Web Console Configuration"
824
+ msgstr ""
825
+
826
+ #: constants.py:284
827
+ msgid "Remote"
828
+ msgstr ""
829
+
830
+ #: constants.py:285
831
+ msgid "Enter QEMU Connection URI:"
832
+ msgstr ""
833
+
834
+ #: constants.py:286
835
+ msgid "Add New Server"
836
+ msgstr ""
837
+
838
+ #: constants.py:287
839
+ msgid "Autoconnect at startup"
840
+ msgstr ""
841
+
842
+ #: constants.py:288
843
+ msgid "Edit Server"
844
+ msgstr ""
845
+
846
+ #: constants.py:289
847
+ msgid "Server List Management"
848
+ msgstr ""
849
+
850
+ #: constants.py:290
851
+ msgid "Select Servers to Display"
852
+ msgstr ""
853
+
854
+ #: constants.py:291
855
+ msgid "Enter new VCPU count"
856
+ msgstr ""
857
+
858
+ #: constants.py:292
859
+ msgid "Enter new memory size (MB)"
860
+ msgstr ""
861
+
862
+ #: constants.py:293
863
+ msgid "Select Machine Type:"
864
+ msgstr ""
865
+
866
+ #: constants.py:294
867
+ msgid "Format: 0:0-3; 1:4-7"
868
+ msgstr ""
869
+
870
+ #: constants.py:295
871
+ msgid "NUMA Memory Mode"
872
+ msgstr ""
873
+
874
+ #: constants.py:296
875
+ msgid "Nodeset"
876
+ msgstr ""
877
+
878
+ #: constants.py:297
879
+ #, python-brace-format
880
+ msgid "Enter CPU Pinning (max vcpu: {max_vcpus})"
881
+ msgstr ""
882
+
883
+ #: constants.py:298
884
+ msgid "Select VMs by Pattern (ctrl+u to unselect All VMS)"
885
+ msgstr ""
886
+
887
+ #: constants.py:299
888
+ msgid "Regex"
889
+ msgstr ""
890
+
891
+ #: constants.py:300
892
+ msgid "Matching VMs:"
893
+ msgstr ""
894
+
895
+ #: constants.py:301
896
+ msgid "Filter by Name"
897
+ msgstr ""
898
+
899
+ #: constants.py:302
900
+ msgid "All"
901
+ msgstr ""
902
+
903
+ #: constants.py:308
904
+ msgid "Manually Selected"
905
+ msgstr ""
906
+
907
+ #: constants.py:309
908
+ msgid "Create New VM"
909
+ msgstr ""
910
+
911
+ #: constants.py:310
912
+ msgid "Start VMs"
913
+ msgstr ""
914
+
915
+ #: constants.py:311
916
+ msgid "Stop VMs (Graceful Shutdown)"
917
+ msgstr ""
918
+
919
+ #: constants.py:312
920
+ msgid "Force Off VMs"
921
+ msgstr ""
922
+
923
+ #: constants.py:313
924
+ msgid "Pause VMs"
925
+ msgstr ""
926
+
927
+ #: constants.py:314
928
+ msgid "Delete VMs"
929
+ msgstr ""
930
+
931
+ #: constants.py:315
932
+ msgid "Edit Configuration"
933
+ msgstr ""
934
+
935
+ #: constants.py:316
936
+ msgid "Hypervisor default"
937
+ msgstr ""
938
+
939
+ #: constants.py:317
940
+ msgid "Localhost only"
941
+ msgstr ""
942
+
943
+ #: constants.py:318
944
+ msgid "All interfaces"
945
+ msgstr ""
946
+
947
+ #: constants.py:319
948
+ msgid "NAT Network"
949
+ msgstr ""
950
+
951
+ #: constants.py:320
952
+ msgid "Routed Network"
953
+ msgstr ""
954
+
955
+ #: constants.py:321
956
+ msgid "e.g., 192.168.1.0/24"
957
+ msgstr ""
958
+
959
+ #: constants.py:322
960
+ msgid "e.g., 192.168.1.10"
961
+ msgstr ""
962
+
963
+ #: constants.py:323
964
+ msgid "e.g., 192.168.1.200"
965
+ msgstr ""
966
+
967
+ #: constants.py:324
968
+ msgid "Select Network and Model"
969
+ msgstr ""
970
+
971
+ #: constants.py:325
972
+ msgid "Use Custom DNS Domain"
973
+ msgstr ""
974
+
975
+ #: constants.py:326
976
+ msgid "Use Network Name for DNS"
977
+ msgstr ""
978
+
979
+ #: constants.py:327
980
+ msgid "Custom DNS Domain"
981
+ msgstr ""
982
+
983
+ #: constants.py:328
984
+ msgid "Network Details"
985
+ msgstr ""
986
+
987
+ #: constants.py:329
988
+ msgid "Undefine source VM"
989
+ msgstr ""
990
+
991
+ #: constants.py:330
992
+ #, python-brace-format
993
+ msgid "Edit Disk: {path}"
994
+ msgstr ""
995
+
996
+ #: constants.py:331
997
+ #, python-brace-format
998
+ msgid "Move Volume: {volume_name}"
999
+ msgstr ""
1000
+
1001
+ #: constants.py:332
1002
+ #, python-brace-format
1003
+ msgid "[{migration_type}] Migrate VMs: [b]{vm_names}[/b]"
1004
+ msgstr ""
1005
+
1006
+ #: constants.py:334
1007
+ msgid "Server Preferences"
1008
+ msgstr ""
1009
+
1010
+ #: constants.py:335 constants.py:390
1011
+ msgid "Select a Directory"
1012
+ msgstr ""
1013
+
1014
+ #: constants.py:336 constants.py:391
1015
+ msgid "Select a File"
1016
+ msgstr ""
1017
+
1018
+ #: constants.py:337
1019
+ msgid "Select Disk to Remove"
1020
+ msgstr ""
1021
+
1022
+ #: constants.py:338
1023
+ msgid "Add New Disk"
1024
+ msgstr ""
1025
+
1026
+ #: constants.py:339
1027
+ msgid "Add New Storage Pool"
1028
+ msgstr ""
1029
+
1030
+ #: constants.py:340
1031
+ msgid "Target Path (for volumes)"
1032
+ msgstr ""
1033
+
1034
+ #: constants.py:341
1035
+ msgid "Target Path (on this host)"
1036
+ msgstr ""
1037
+
1038
+ #: constants.py:342
1039
+ msgid "Source Hostname"
1040
+ msgstr ""
1041
+
1042
+ #: constants.py:343
1043
+ msgid "Source Path (on remote host)"
1044
+ msgstr ""
1045
+
1046
+ #: constants.py:344
1047
+ msgid "Create New Storage Volume"
1048
+ msgstr ""
1049
+
1050
+ #: constants.py:345
1051
+ msgid "Device Type:"
1052
+ msgstr ""
1053
+
1054
+ #: constants.py:346
1055
+ msgid "Bus Type:"
1056
+ msgstr ""
1057
+
1058
+ #: constants.py:347
1059
+ msgid "Cache Mode:"
1060
+ msgstr ""
1061
+
1062
+ #: constants.py:348
1063
+ msgid "Discard Mode:"
1064
+ msgstr ""
1065
+
1066
+ #: constants.py:349 constants.py:623
1067
+ msgid "VM must be stopped to edit disk settings."
1068
+ msgstr ""
1069
+
1070
+ #: constants.py:350
1071
+ msgid "Destination Pool:"
1072
+ msgstr ""
1073
+
1074
+ #: constants.py:351
1075
+ msgid "New Volume Name:"
1076
+ msgstr ""
1077
+
1078
+ #: constants.py:352
1079
+ msgid "Attach Existing Disk as Volume"
1080
+ msgstr ""
1081
+
1082
+ #: constants.py:353
1083
+ msgid "Boot Order"
1084
+ msgstr ""
1085
+
1086
+ #: constants.py:354
1087
+ msgid "Available Devices"
1088
+ msgstr ""
1089
+
1090
+ #: constants.py:355
1091
+ msgid "Type:"
1092
+ msgstr ""
1093
+
1094
+ #: constants.py:356
1095
+ msgid "Listen Type:"
1096
+ msgstr ""
1097
+
1098
+ #: constants.py:357
1099
+ msgid "Address:"
1100
+ msgstr ""
1101
+
1102
+ #: constants.py:358
1103
+ msgid "TPM Model:"
1104
+ msgstr ""
1105
+
1106
+ #: constants.py:359
1107
+ msgid "TPM Type:"
1108
+ msgstr ""
1109
+
1110
+ #: constants.py:360
1111
+ msgid "Device Path (for passthrough):"
1112
+ msgstr ""
1113
+
1114
+ #: constants.py:361
1115
+ msgid "Backend Type (for passthrough):"
1116
+ msgstr ""
1117
+
1118
+ #: constants.py:362
1119
+ msgid "Backend Path (for passthrough):"
1120
+ msgstr ""
1121
+
1122
+ #: constants.py:363
1123
+ msgid "Host device"
1124
+ msgstr ""
1125
+
1126
+ #: constants.py:364
1127
+ msgid "Watchdog Model:"
1128
+ msgstr ""
1129
+
1130
+ #: constants.py:365
1131
+ msgid "Action:"
1132
+ msgstr ""
1133
+
1134
+ #: constants.py:366
1135
+ msgid "Available Host USB Devices"
1136
+ msgstr ""
1137
+
1138
+ #: constants.py:367
1139
+ msgid "Attached to VM"
1140
+ msgstr ""
1141
+
1142
+ #: constants.py:368
1143
+ msgid "Available Host PCI Devices"
1144
+ msgstr ""
1145
+
1146
+ #: constants.py:369
1147
+ msgid "Virsh Interactive Shell (esc to quit)"
1148
+ msgstr ""
1149
+
1150
+ #: constants.py:370
1151
+ msgid ""
1152
+ "Note: This shell starts a new `virsh` process, which may require re-"
1153
+ "authentication for remote connections. Using SSH keys is recommended."
1154
+ msgstr ""
1155
+
1156
+ #: constants.py:371
1157
+ msgid "Input Device"
1158
+ msgstr ""
1159
+
1160
+ #: constants.py:372
1161
+ msgid "Add Channel Device"
1162
+ msgstr ""
1163
+
1164
+ #: constants.py:373
1165
+ msgid "Standard Target Names:"
1166
+ msgstr ""
1167
+
1168
+ #: constants.py:374
1169
+ msgid "Target Name:"
1170
+ msgstr ""
1171
+
1172
+ #: constants.py:375
1173
+ msgid "Selected VMs for Bulk Action"
1174
+ msgstr ""
1175
+
1176
+ #: constants.py:376
1177
+ msgid "Choose Action:"
1178
+ msgstr ""
1179
+
1180
+ #: constants.py:377
1181
+ msgid "Performance"
1182
+ msgstr ""
1183
+
1184
+ #: constants.py:378
1185
+ msgid "Stats Interval (seconds):"
1186
+ msgstr ""
1187
+
1188
+ #: constants.py:379
1189
+ msgid "Log File Path:"
1190
+ msgstr ""
1191
+
1192
+ #: constants.py:380
1193
+ msgid "Logging Level:"
1194
+ msgstr ""
1195
+
1196
+ #: constants.py:381
1197
+ msgid "Remote Viewer"
1198
+ msgstr ""
1199
+
1200
+ #: constants.py:382
1201
+ msgid "No remote viewers found (virt-viewer or virtui-remote-viewer)"
1202
+ msgstr ""
1203
+
1204
+ #: constants.py:383
1205
+ msgid "Websockify Path:"
1206
+ msgstr ""
1207
+
1208
+ #: constants.py:384
1209
+ msgid "noVNC Path:"
1210
+ msgstr ""
1211
+
1212
+ #: constants.py:385
1213
+ msgid "Websockify Port Range:"
1214
+ msgstr ""
1215
+
1216
+ #: constants.py:386
1217
+ msgid "VNC Quality (0-9):"
1218
+ msgstr ""
1219
+
1220
+ #: constants.py:387
1221
+ msgid "VNC Compression (0-9):"
1222
+ msgstr ""
1223
+
1224
+ #: constants.py:388
1225
+ msgid "Host Capabilities"
1226
+ msgstr ""
1227
+
1228
+ #: constants.py:389
1229
+ msgid "Capabilities"
1230
+ msgstr ""
1231
+
1232
+ #: constants.py:392
1233
+ msgid "Export filesystem as readonly mount"
1234
+ msgstr ""
1235
+
1236
+ #: constants.py:393
1237
+ msgid "Web console will run locally."
1238
+ msgstr ""
1239
+
1240
+ #: constants.py:394
1241
+ msgid "Enable boot menu"
1242
+ msgstr ""
1243
+
1244
+ #: constants.py:395
1245
+ msgid "Web Console (novnc)"
1246
+ msgstr ""
1247
+
1248
+ #: constants.py:396
1249
+ msgid "Host Resource Dashboard"
1250
+ msgstr ""
1251
+
1252
+ #: constants.py:397
1253
+ msgid "Host Details"
1254
+ msgstr ""
1255
+
1256
+ #: constants.py:398
1257
+ msgid "VM Allocation"
1258
+ msgstr ""
1259
+
1260
+ #: constants.py:399
1261
+ msgid "CPU Usage"
1262
+ msgstr ""
1263
+
1264
+ #: constants.py:400
1265
+ msgid "Memory Usage"
1266
+ msgstr ""
1267
+
1268
+ #: constants.py:401
1269
+ msgid "Allocated VCPUs"
1270
+ msgstr ""
1271
+
1272
+ #: constants.py:402
1273
+ msgid "Allocated Memory"
1274
+ msgstr ""
1275
+
1276
+ #: constants.py:405
1277
+ msgid "Model:"
1278
+ msgstr ""
1279
+
1280
+ #: constants.py:406
1281
+ msgid "Topology:"
1282
+ msgstr ""
1283
+
1284
+ #: constants.py:407
1285
+ msgid "Waiting to start collection..."
1286
+ msgstr ""
1287
+
1288
+ #: constants.py:408
1289
+ #, python-brace-format
1290
+ msgid "Collecting VM info: {current}/{total}"
1291
+ msgstr ""
1292
+
1293
+ #: constants.py:409
1294
+ msgid "Edit VirtIO-FS"
1295
+ msgstr ""
1296
+
1297
+ #: constants.py:413
1298
+ #, python-brace-format
1299
+ msgid "Disk R/W {read:.2f}/{write:.2f} MB/s"
1300
+ msgstr ""
1301
+
1302
+ #: constants.py:414
1303
+ #, python-brace-format
1304
+ msgid "Net Rx/Tx {rx:.2f}/{tx:.2f} MB/s"
1305
+ msgstr ""
1306
+
1307
+ #: constants.py:415
1308
+ #, python-brace-format
1309
+ msgid "{cpu} VCPU"
1310
+ msgstr ""
1311
+
1312
+ #: constants.py:416
1313
+ #, python-brace-format
1314
+ msgid "{mem} Gb"
1315
+ msgstr ""
1316
+
1317
+ #: constants.py:420
1318
+ msgid "Remote viewer command not found. Please ensure it is installed."
1319
+ msgstr ""
1320
+
1321
+ #: constants.py:421
1322
+ msgid "Could not open display. Ensure you are in a graphical session."
1323
+ msgstr ""
1324
+
1325
+ #: constants.py:422
1326
+ msgid "This is a hard stop, like unplugging the power cord."
1327
+ msgstr ""
1328
+
1329
+ #: constants.py:423
1330
+ msgid ""
1331
+ "Migration from localhost (qemu:///system) is not supported.\n"
1332
+ "A full remote URI (e.g., qemu+ssh://user@host/system) is required."
1333
+ msgstr ""
1334
+
1335
+ #: constants.py:424
1336
+ msgid "No destination servers available."
1337
+ msgstr ""
1338
+
1339
+ #: constants.py:425
1340
+ msgid "Cannot migrate VMs from different source hosts at the same time."
1341
+ msgstr ""
1342
+
1343
+ #: constants.py:426
1344
+ msgid "Cannot migrate running/paused and stopped VMs at the same time."
1345
+ msgstr ""
1346
+
1347
+ #: constants.py:427
1348
+ msgid "websockify is not installed. 'Web Console' button will be disabled."
1349
+ msgstr ""
1350
+
1351
+ #: constants.py:428
1352
+ msgid "novnc is not installed. 'Web Console' button will be disabled."
1353
+ msgstr ""
1354
+
1355
+ #: constants.py:429
1356
+ #, python-brace-format
1357
+ msgid "Failed to open connection to [b]{uri}[/b]"
1358
+ msgstr ""
1359
+
1360
+ #: constants.py:430 constants.py:553
1361
+ msgid "Not connected to any server."
1362
+ msgstr ""
1363
+
1364
+ #: constants.py:431
1365
+ #, python-brace-format
1366
+ msgid "Could not connect to {uri}"
1367
+ msgstr ""
1368
+
1369
+ #: constants.py:432
1370
+ msgid "No action type received from bulk action modal."
1371
+ msgstr ""
1372
+
1373
+ #: constants.py:433
1374
+ msgid "Could not find any of the selected VMs for editing."
1375
+ msgstr ""
1376
+
1377
+ #: constants.py:434
1378
+ #, python-brace-format
1379
+ msgid "All VMs must be stopped for bulk editing. Running VMs: {running_vms}"
1380
+ msgstr ""
1381
+
1382
+ #: constants.py:435
1383
+ msgid "Could not load details for reference VM."
1384
+ msgstr ""
1385
+
1386
+ #: constants.py:436
1387
+ #, python-brace-format
1388
+ msgid ""
1389
+ "Server(s) {names} disconnected and autoconnect disabled due to connection "
1390
+ "failures."
1391
+ msgstr ""
1392
+
1393
+ #: constants.py:437
1394
+ msgid "No active servers."
1395
+ msgstr ""
1396
+
1397
+ #: constants.py:438
1398
+ msgid "No VMs found in cache. Try refreshing first."
1399
+ msgstr ""
1400
+
1401
+ #: constants.py:439
1402
+ msgid "No VMs selected."
1403
+ msgstr ""
1404
+
1405
+ #: constants.py:440
1406
+ #, python-brace-format
1407
+ msgid "Error fetching VM data: {error}"
1408
+ msgstr ""
1409
+
1410
+ #: constants.py:441
1411
+ #, python-brace-format
1412
+ msgid "Error during initial cache loading: {error}"
1413
+ msgstr ""
1414
+
1415
+ #: constants.py:442
1416
+ #, python-brace-format
1417
+ msgid "Error on VM [b]{vm_name}[/b] during '{action}': {error}"
1418
+ msgstr ""
1419
+
1420
+ #: constants.py:443
1421
+ #, python-brace-format
1422
+ msgid "A fatal error occurred during bulk action: {error}"
1423
+ msgstr ""
1424
+
1425
+ #: constants.py:444
1426
+ #, python-brace-format
1427
+ msgid "Error getting info for VM '{vm_name}': {error}"
1428
+ msgstr ""
1429
+
1430
+ #: constants.py:445
1431
+ #, python-brace-format
1432
+ msgid "Could not find VM with ID [b]{vm_id}[/b]"
1433
+ msgstr ""
1434
+
1435
+ #: constants.py:446
1436
+ #, python-brace-format
1437
+ msgid "Error preparing bulk edit: {error}"
1438
+ msgstr ""
1439
+
1440
+ #: constants.py:447
1441
+ #, python-brace-format
1442
+ msgid "Server [b]{server_name}[/b]: {error_msg}"
1443
+ msgstr ""
1444
+
1445
+ #: constants.py:448
1446
+ #, python-brace-format
1447
+ msgid "Failed to connect to [b]{server_name}[/b]: {error_msg}"
1448
+ msgstr ""
1449
+
1450
+ #: constants.py:449
1451
+ #, python-brace-format
1452
+ msgid "Bulk action [b]{action_type}[/b] failed for {count} VMs."
1453
+ msgstr ""
1454
+
1455
+ #: constants.py:450
1456
+ #, python-brace-format
1457
+ msgid "Error launching preferences: {error}"
1458
+ msgstr ""
1459
+
1460
+ #: constants.py:451
1461
+ msgid "Could not retrieve names for selected VMs."
1462
+ msgstr ""
1463
+
1464
+ #: constants.py:452
1465
+ #, python-brace-format
1466
+ msgid "Failed to clone to: {vm_names}"
1467
+ msgstr ""
1468
+
1469
+ #: constants.py:453
1470
+ msgid "No suitable disks found for overlay."
1471
+ msgstr ""
1472
+
1473
+ #: constants.py:454
1474
+ msgid "Overlay volume name cannot be empty after sanitization."
1475
+ msgstr ""
1476
+
1477
+ #: constants.py:455
1478
+ #, python-brace-format
1479
+ msgid "Error creating overlay: {error}"
1480
+ msgstr ""
1481
+
1482
+ #: constants.py:456
1483
+ #, python-brace-format
1484
+ msgid "Error preparing overlay creation: {error}"
1485
+ msgstr ""
1486
+
1487
+ #: constants.py:457
1488
+ msgid "No overlay disks found."
1489
+ msgstr ""
1490
+
1491
+ #: constants.py:458
1492
+ #, python-brace-format
1493
+ msgid "Error discarding overlay: {error}"
1494
+ msgstr ""
1495
+
1496
+ #: constants.py:459
1497
+ #, python-brace-format
1498
+ msgid "Error preparing discard overlay: {error}"
1499
+ msgstr ""
1500
+
1501
+ #: constants.py:460
1502
+ msgid "No disks found to commit."
1503
+ msgstr ""
1504
+
1505
+ #: constants.py:461
1506
+ #, python-brace-format
1507
+ msgid "Error committing disk: {error}"
1508
+ msgstr ""
1509
+
1510
+ #: constants.py:462
1511
+ #, python-brace-format
1512
+ msgid "Error preparing commit: {error}"
1513
+ msgstr ""
1514
+
1515
+ #: constants.py:463
1516
+ #, python-brace-format
1517
+ msgid ""
1518
+ "Invalid XML for '[b]{vm_name}[/b]': {error}. Your changes have been "
1519
+ "discarded."
1520
+ msgstr ""
1521
+
1522
+ #: constants.py:464
1523
+ #, python-brace-format
1524
+ msgid "Error getting XML for VM [b]{vm_name}[/b]: {error}"
1525
+ msgstr ""
1526
+
1527
+ #: constants.py:465 constants.py:563
1528
+ #, python-brace-format
1529
+ msgid "An unexpected error occurred: {error}"
1530
+ msgstr ""
1531
+
1532
+ #: constants.py:466
1533
+ msgid "Connection info not available for this VM."
1534
+ msgstr ""
1535
+
1536
+ #: constants.py:467
1537
+ #, python-brace-format
1538
+ msgid "{viewer} failed to start for {domain_name}: {error}"
1539
+ msgstr ""
1540
+
1541
+ #: constants.py:468
1542
+ #, python-brace-format
1543
+ msgid "Error getting VM details for [b]{vm_name}[/b]: {error}"
1544
+ msgstr ""
1545
+
1546
+ #: constants.py:469
1547
+ msgid "An unexpected error occurred while trying to connect."
1548
+ msgstr ""
1549
+
1550
+ #: constants.py:470
1551
+ #, python-brace-format
1552
+ msgid "Error checking web console status for [b]{vm_name}[/b]: {error}"
1553
+ msgstr ""
1554
+
1555
+ #: constants.py:471
1556
+ #, python-brace-format
1557
+ msgid "Snapshot error for [b]{vm_name}[/b]: {error}"
1558
+ msgstr ""
1559
+
1560
+ #: constants.py:472
1561
+ msgid "No snapshots to restore."
1562
+ msgstr ""
1563
+
1564
+ #: constants.py:473
1565
+ #, python-brace-format
1566
+ msgid "Error fetching snapshots: {error}"
1567
+ msgstr ""
1568
+
1569
+ #: constants.py:474
1570
+ msgid "No snapshots to delete."
1571
+ msgstr ""
1572
+
1573
+ #: constants.py:475
1574
+ #, python-brace-format
1575
+ msgid "Error deleting VM '{vm_name}': {error}"
1576
+ msgstr ""
1577
+
1578
+ #: constants.py:476
1579
+ msgid "VM name cannot be empty after sanitization."
1580
+ msgstr ""
1581
+
1582
+ #: constants.py:477
1583
+ #, python-brace-format
1584
+ msgid "Error renaming VM [b]{vm_name}[/b]: {error}"
1585
+ msgstr ""
1586
+
1587
+ #: constants.py:478
1588
+ #, python-brace-format
1589
+ msgid ""
1590
+ "VM [b]{vm_name}[/b] with internal ID [b]{uuid}[/b] not found on any active "
1591
+ "server."
1592
+ msgstr ""
1593
+
1594
+ #: constants.py:479
1595
+ #, python-brace-format
1596
+ msgid "Error getting ID for [b]{vm_name}[/b]: {error}"
1597
+ msgstr ""
1598
+
1599
+ #: constants.py:480
1600
+ msgid ""
1601
+ "Please select at least two servers in 'Select Servers' to enable migration."
1602
+ msgstr ""
1603
+
1604
+ #: constants.py:481
1605
+ #, python-brace-format
1606
+ msgid "Selected VM with ID [b]{uuid}[/b] not found on any active server."
1607
+ msgstr ""
1608
+
1609
+ #: constants.py:482
1610
+ #, python-brace-format
1611
+ msgid "Error getting existing VM names: {error}"
1612
+ msgstr ""
1613
+
1614
+ #: constants.py:483
1615
+ msgid "Web console only supports VNC graphics."
1616
+ msgstr ""
1617
+
1618
+ #: constants.py:484
1619
+ msgid "Could not determine VNC port for the VM."
1620
+ msgstr ""
1621
+
1622
+ #: constants.py:485
1623
+ #, python-brace-format
1624
+ msgid "Failed to start web console: {error}"
1625
+ msgstr ""
1626
+
1627
+ #: constants.py:486
1628
+ msgid ""
1629
+ "Could not find a free port for the web console (all ports in range used by "
1630
+ "other sessions)."
1631
+ msgstr ""
1632
+
1633
+ #: constants.py:487
1634
+ msgid "Remote key generation failed. Falling back to insecure ws connection."
1635
+ msgstr ""
1636
+
1637
+ #: constants.py:488
1638
+ #, python-brace-format
1639
+ msgid "Failed to start remote websockify for [b]{vm_name}[/b]. Check logs."
1640
+ msgstr ""
1641
+
1642
+ #: constants.py:489
1643
+ #, python-brace-format
1644
+ msgid ""
1645
+ "Remote web console process for [b]{vm_name}[/b] failed to start or crashed. "
1646
+ "Check remote logs."
1647
+ msgstr ""
1648
+
1649
+ #: constants.py:490
1650
+ msgid "Could not find a free local port for SSH tunnel."
1651
+ msgstr ""
1652
+
1653
+ #: constants.py:491
1654
+ #, python-brace-format
1655
+ msgid "Failed to create SSH tunnel: {error}"
1656
+ msgstr ""
1657
+
1658
+ #: constants.py:492
1659
+ msgid "SSH command not found. Cannot create tunnel."
1660
+ msgstr ""
1661
+
1662
+ #: constants.py:493
1663
+ msgid "Failed to create SSH tunnel..."
1664
+ msgstr ""
1665
+
1666
+ #: constants.py:494
1667
+ msgid "Please select an action."
1668
+ msgstr ""
1669
+
1670
+ #: constants.py:495
1671
+ #, python-brace-format
1672
+ msgid "Error saving configuration: {e}"
1673
+ msgstr ""
1674
+
1675
+ #: constants.py:496
1676
+ #, python-brace-format
1677
+ msgid "Validation error: {error}"
1678
+ msgstr ""
1679
+
1680
+ #: constants.py:497
1681
+ #, python-brace-format
1682
+ msgid "Invalid format: {error}"
1683
+ msgstr ""
1684
+
1685
+ #: constants.py:498
1686
+ #, python-brace-format
1687
+ msgid "Invalid nodeset syntax: {nodeset}"
1688
+ msgstr ""
1689
+
1690
+ #: constants.py:499
1691
+ msgid "Pool, Volume Name, and Size are required to create a new disk."
1692
+ msgstr ""
1693
+
1694
+ #: constants.py:500
1695
+ msgid "Path to disk image is required."
1696
+ msgstr ""
1697
+
1698
+ #: constants.py:501
1699
+ msgid "Pool name is required."
1700
+ msgstr ""
1701
+
1702
+ #: constants.py:502
1703
+ msgid "Target Path is required for `dir` type."
1704
+ msgstr ""
1705
+
1706
+ #: constants.py:503
1707
+ msgid "For `netfs`, all fields are required."
1708
+ msgstr ""
1709
+
1710
+ #: constants.py:504
1711
+ msgid "Name and size are required."
1712
+ msgstr ""
1713
+
1714
+ #: constants.py:505
1715
+ msgid "Size must be an integer."
1716
+ msgstr ""
1717
+
1718
+ #: constants.py:506
1719
+ msgid "Destination pool and new name are required."
1720
+ msgstr ""
1721
+
1722
+ #: constants.py:507
1723
+ msgid "Name, path, and format are required. Ensure a file is selected."
1724
+ msgstr ""
1725
+
1726
+ #: constants.py:508 constants.py:576
1727
+ #, python-brace-format
1728
+ msgid "Error creating storage pool: {error}"
1729
+ msgstr ""
1730
+
1731
+ #: constants.py:509
1732
+ msgid "Please select a destination server."
1733
+ msgstr ""
1734
+
1735
+ #: constants.py:510
1736
+ msgid "Please run compatibility check first."
1737
+ msgstr ""
1738
+
1739
+ #: constants.py:511
1740
+ msgid "Cannot start migration due to compatibility errors."
1741
+ msgstr ""
1742
+
1743
+ #: constants.py:512 constants.py:526
1744
+ #, python-brace-format
1745
+ msgid "Network '{network}' not found. Please select an available network."
1746
+ msgstr ""
1747
+
1748
+ #: constants.py:513
1749
+ msgid "Please select a network."
1750
+ msgstr ""
1751
+
1752
+ #: constants.py:514
1753
+ #, python-brace-format
1754
+ msgid "Forward device '{device}' not found on host."
1755
+ msgstr ""
1756
+
1757
+ #: constants.py:515
1758
+ #, python-brace-format
1759
+ msgid "Error getting host interfaces: {error}"
1760
+ msgstr ""
1761
+
1762
+ #: constants.py:516
1763
+ #, python-brace-format
1764
+ msgid "Invalid Network Name: {error}"
1765
+ msgstr ""
1766
+
1767
+ #: constants.py:517
1768
+ #, python-brace-format
1769
+ msgid "Invalid Custom DNS Domain: {error}"
1770
+ msgstr ""
1771
+
1772
+ #: constants.py:518
1773
+ msgid "Network Name cannot be empty."
1774
+ msgstr ""
1775
+
1776
+ #: constants.py:519
1777
+ #, python-brace-format
1778
+ msgid "DHCP IPs are not in the network {network}"
1779
+ msgstr ""
1780
+
1781
+ #: constants.py:520
1782
+ msgid "DHCP start IP must be before the end IP."
1783
+ msgstr ""
1784
+
1785
+ #: constants.py:521
1786
+ #, python-brace-format
1787
+ msgid "Invalid IP address or network: {error}"
1788
+ msgstr ""
1789
+
1790
+ #: constants.py:522
1791
+ msgid "DHCP cannot be enabled without an IP network."
1792
+ msgstr ""
1793
+
1794
+ #: constants.py:523
1795
+ #, python-brace-format
1796
+ msgid "Subnet {subnet} overlaps with an existing network."
1797
+ msgstr ""
1798
+
1799
+ #: constants.py:524
1800
+ #, python-brace-format
1801
+ msgid "Error creating network: {error}"
1802
+ msgstr ""
1803
+
1804
+ #: constants.py:525 constants.py:605
1805
+ #, python-brace-format
1806
+ msgid "Error updating network: {error}"
1807
+ msgstr ""
1808
+
1809
+ #: constants.py:527
1810
+ #, python-brace-format
1811
+ msgid ""
1812
+ "A VM with the name '{vm_name}' already exists. Please choose a different "
1813
+ "name."
1814
+ msgstr ""
1815
+
1816
+ #: constants.py:528
1817
+ #, python-brace-format
1818
+ msgid "Error checking VM name: {error}"
1819
+ msgstr ""
1820
+
1821
+ #: constants.py:529
1822
+ msgid "Please select a valid storage pool."
1823
+ msgstr ""
1824
+
1825
+ #: constants.py:530
1826
+ #, python-brace-format
1827
+ msgid "Selected ISO volume does not exist: {iso_url}"
1828
+ msgstr ""
1829
+
1830
+ #: constants.py:531
1831
+ msgid "Please select a valid ISO volume from the storage pool."
1832
+ msgstr ""
1833
+
1834
+ #: constants.py:532
1835
+ msgid "Invalid input for expert settings. Using defaults."
1836
+ msgstr ""
1837
+
1838
+ #: constants.py:533
1839
+ msgid "Memory must be between 1 and 8192 GB."
1840
+ msgstr ""
1841
+
1842
+ #: constants.py:534
1843
+ msgid "CPU count must be between 1 and 768."
1844
+ msgstr ""
1845
+
1846
+ #: constants.py:535
1847
+ msgid "Disk size must be between 1 and 10000 GB."
1848
+ msgstr ""
1849
+
1850
+ #: constants.py:536
1851
+ #, python-brace-format
1852
+ msgid "Storage pool '{pool_name}' is not active. Please activate it first."
1853
+ msgstr ""
1854
+
1855
+ #: constants.py:537
1856
+ #, python-brace-format
1857
+ msgid "Error accessing storage pool '{pool_name}': {error}"
1858
+ msgstr ""
1859
+
1860
+ #: constants.py:538
1861
+ #, python-brace-format
1862
+ msgid "Custom ISO path does not exist: {path}"
1863
+ msgstr ""
1864
+
1865
+ #: constants.py:539
1866
+ #, python-brace-format
1867
+ msgid "Custom ISO path is not a file: {path}"
1868
+ msgstr ""
1869
+
1870
+ #: constants.py:540
1871
+ msgid "Checksum validation enabled but no checksum provided"
1872
+ msgstr ""
1873
+
1874
+ #: constants.py:541
1875
+ msgid "Checksum validation failed!"
1876
+ msgstr ""
1877
+
1878
+ #: constants.py:542
1879
+ msgid "No ISO URL specified for provisioning"
1880
+ msgstr ""
1881
+
1882
+ #: constants.py:543
1883
+ #, python-brace-format
1884
+ msgid "Could not get details for {vm_name}"
1885
+ msgstr ""
1886
+
1887
+ #: constants.py:544
1888
+ #, python-brace-format
1889
+ msgid "Failed to start VM or viewer: {error}"
1890
+ msgstr ""
1891
+
1892
+ #: constants.py:545
1893
+ #, python-brace-format
1894
+ msgid "Provisioning failed: {error}"
1895
+ msgstr ""
1896
+
1897
+ #: constants.py:546
1898
+ #, python-brace-format
1899
+ msgid "Failed to fetch ISO volumes from {pool_name}: {error}"
1900
+ msgstr ""
1901
+
1902
+ #: constants.py:547
1903
+ #, python-brace-format
1904
+ msgid "Failed to fetch ISOs: {error}"
1905
+ msgstr ""
1906
+
1907
+ #: constants.py:548 constants.py:600
1908
+ msgid "VM name cannot be empty."
1909
+ msgstr ""
1910
+
1911
+ #: constants.py:549
1912
+ #, python-brace-format
1913
+ msgid "Connecting to {uri}..."
1914
+ msgstr ""
1915
+
1916
+ #: constants.py:550
1917
+ #, python-brace-format
1918
+ msgid "Failed to connect to {uri}"
1919
+ msgstr ""
1920
+
1921
+ #: constants.py:551
1922
+ #, python-brace-format
1923
+ msgid "Error deleting server '{server_name}': {error}"
1924
+ msgstr ""
1925
+
1926
+ #: constants.py:552
1927
+ #, python-brace-format
1928
+ msgid ""
1929
+ "Are you sure you want to delete Server;\n"
1930
+ "'{server_name}'\n"
1931
+ "from list?"
1932
+ msgstr ""
1933
+
1934
+ #: constants.py:554
1935
+ msgid "Multiple servers active but none selected for preferences."
1936
+ msgstr ""
1937
+
1938
+ #: constants.py:555
1939
+ #, python-brace-format
1940
+ msgid "Failed to get connection for server preferences on {uri}."
1941
+ msgstr ""
1942
+
1943
+ #: constants.py:556
1944
+ msgid "Could not find object to display XML for."
1945
+ msgstr ""
1946
+
1947
+ #: constants.py:557
1948
+ #, python-brace-format
1949
+ msgid "Error getting XML for {obj_type}: {error}"
1950
+ msgstr ""
1951
+
1952
+ #: constants.py:558
1953
+ msgid "Could not find pool object to edit."
1954
+ msgstr ""
1955
+
1956
+ #: constants.py:559
1957
+ msgid "Pool must be inactive to edit its XML definition."
1958
+ msgstr ""
1959
+
1960
+ #: constants.py:560
1961
+ #, python-brace-format
1962
+ msgid "Error getting XML for pool: {error}"
1963
+ msgstr ""
1964
+
1965
+ #: constants.py:561
1966
+ #, python-brace-format
1967
+ msgid "Storage pool '{pool_name}' updated successfully."
1968
+ msgstr ""
1969
+
1970
+ #: constants.py:562
1971
+ #, python-brace-format
1972
+ msgid "Error updating pool XML: {error}"
1973
+ msgstr ""
1974
+
1975
+ #: constants.py:564
1976
+ msgid ""
1977
+ "Editing a pool's XML definition is an advanced operation.\n"
1978
+ "An invalid configuration may make its volumes inaccessible to VMs.\n"
1979
+ "\n"
1980
+ "Are you sure you want to proceed?"
1981
+ msgstr ""
1982
+
1983
+ #: constants.py:567
1984
+ #, python-brace-format
1985
+ msgid "Error toggling pool active state: {error}"
1986
+ msgstr ""
1987
+
1988
+ #: constants.py:568
1989
+ #, python-brace-format
1990
+ msgid "Error toggling pool autostart state: {error}"
1991
+ msgstr ""
1992
+
1993
+ #: constants.py:569
1994
+ #, python-brace-format
1995
+ msgid "Volume [b]{name} {size_gb}Gb {format}[/b] created successfully."
1996
+ msgstr ""
1997
+
1998
+ #: constants.py:570
1999
+ #, python-brace-format
2000
+ msgid "Invalid or non-existent path: {path}"
2001
+ msgstr ""
2002
+
2003
+ #: constants.py:571
2004
+ #, python-brace-format
2005
+ msgid "Error refreshing pool: {error}"
2006
+ msgstr ""
2007
+
2008
+ #: constants.py:572 constants.py:761
2009
+ #, python-brace-format
2010
+ msgid ""
2011
+ "A pool named '{pool_name}' already manages this directory.\n"
2012
+ "Refreshed pool to include the new volume."
2013
+ msgstr ""
2014
+
2015
+ #: constants.py:574
2016
+ #, python-brace-format
2017
+ msgid ""
2018
+ "No storage pool exists for the directory:\n"
2019
+ "'{directory}'.\n"
2020
+ "\n"
2021
+ "Create a new pool named '{pool_name}'?"
2022
+ msgstr ""
2023
+
2024
+ #: constants.py:577 constants.py:672
2025
+ msgid "Could not determine the source pool."
2026
+ msgstr ""
2027
+
2028
+ #: constants.py:578
2029
+ #, python-brace-format
2030
+ msgid "Volume '{volume_name}' moved to pool '{dest_pool_name}'."
2031
+ msgstr ""
2032
+
2033
+ #: constants.py:579
2034
+ #, python-brace-format
2035
+ msgid "Updated VM configurations for: {vm_list}"
2036
+ msgstr ""
2037
+
2038
+ #: constants.py:580
2039
+ #, python-brace-format
2040
+ msgid "Move operation failed: {error}"
2041
+ msgstr ""
2042
+
2043
+ #: constants.py:581
2044
+ #, python-brace-format
2045
+ msgid "Error getting network XML: {error}"
2046
+ msgstr ""
2047
+
2048
+ #: constants.py:582
2049
+ #, python-brace-format
2050
+ msgid "Could not retrieve info for network '{network_name}'."
2051
+ msgstr ""
2052
+
2053
+ #: constants.py:583
2054
+ #, python-brace-format
2055
+ msgid "Network '{network_name}' deleted successfully."
2056
+ msgstr ""
2057
+
2058
+ #: constants.py:584
2059
+ #, python-brace-format
2060
+ msgid "Error deleting network '{network_name}': {error}"
2061
+ msgstr ""
2062
+
2063
+ #: constants.py:585
2064
+ #, python-brace-format
2065
+ msgid ""
2066
+ "Are you sure you want to delete network:\n"
2067
+ "'{network_name}'"
2068
+ msgstr ""
2069
+
2070
+ #: constants.py:586
2071
+ #, python-brace-format
2072
+ msgid ""
2073
+ "\n"
2074
+ "This network is currently in use by the following VMs:\n"
2075
+ "{vm_list}."
2076
+ msgstr ""
2077
+
2078
+ #: constants.py:587
2079
+ msgid "Not connected to libvirt."
2080
+ msgstr ""
2081
+
2082
+ #: constants.py:588
2083
+ msgid "Pool is not active"
2084
+ msgstr ""
2085
+
2086
+ #: constants.py:589
2087
+ #, python-brace-format
2088
+ msgid "Storage pool '{pool_name}' deleted successfully."
2089
+ msgstr ""
2090
+
2091
+ #: constants.py:590
2092
+ #, python-brace-format
2093
+ msgid ""
2094
+ "Are you sure you want to delete storage pool:\n"
2095
+ "' {pool_name}'\n"
2096
+ "This will delete the pool definition but not the data on it."
2097
+ msgstr ""
2098
+
2099
+ #: constants.py:591
2100
+ #, python-brace-format
2101
+ msgid "Volume '{volume_name}' deleted successfully."
2102
+ msgstr ""
2103
+
2104
+ #: constants.py:592
2105
+ #, python-brace-format
2106
+ msgid ""
2107
+ "Are you sure you want to delete volume:\n"
2108
+ "'{vol_name}'"
2109
+ msgstr ""
2110
+
2111
+ #: constants.py:593
2112
+ msgid "Source Path and Target Path cannot be empty."
2113
+ msgstr ""
2114
+
2115
+ #: constants.py:594
2116
+ #, python-brace-format
2117
+ msgid "{error}"
2118
+ msgstr ""
2119
+
2120
+ #: constants.py:595
2121
+ msgid "Please select an interface and a network."
2122
+ msgstr ""
2123
+
2124
+ #: constants.py:596
2125
+ msgid "Base name cannot be empty."
2126
+ msgstr ""
2127
+
2128
+ #: constants.py:597
2129
+ #, python-brace-format
2130
+ msgid "Invalid characters in suffix: {error}"
2131
+ msgstr ""
2132
+
2133
+ #: constants.py:598
2134
+ msgid "Number of clones must be a positive integer."
2135
+ msgstr ""
2136
+
2137
+ #: constants.py:599
2138
+ msgid "Suffix is mandatory when creating multiple clones."
2139
+ msgstr ""
2140
+
2141
+ #: constants.py:601
2142
+ msgid "Snapshot name cannot be empty."
2143
+ msgstr ""
2144
+
2145
+ #: constants.py:602
2146
+ msgid ""
2147
+ "QEMU Guest Agent not detected. It is recommended to pause the VM before "
2148
+ "taking a snapshot."
2149
+ msgstr ""
2150
+
2151
+ #: constants.py:603
2152
+ #, python-brace-format
2153
+ msgid "Could not load networks: {error}"
2154
+ msgstr ""
2155
+
2156
+ #: constants.py:604
2157
+ msgid "Cannot enable secure boot without a UEFI file selected."
2158
+ msgstr ""
2159
+
2160
+ #: constants.py:606
2161
+ msgid "VM must be stopped to apply graphics settings."
2162
+ msgstr ""
2163
+
2164
+ #: constants.py:607
2165
+ msgid "VM must be stopped to apply RNG settings."
2166
+ msgstr ""
2167
+
2168
+ #: constants.py:608
2169
+ msgid "RNG device path cannot be empty."
2170
+ msgstr ""
2171
+
2172
+ #: constants.py:609
2173
+ msgid "VM must be stopped to apply TPM settings."
2174
+ msgstr ""
2175
+
2176
+ #: constants.py:610
2177
+ msgid "Device path is required for passthrough TPM."
2178
+ msgstr ""
2179
+
2180
+ #: constants.py:611
2181
+ msgid "PCI passthrough not implemented yet."
2182
+ msgstr ""
2183
+
2184
+ #: constants.py:612
2185
+ msgid "Selected channel has no target name."
2186
+ msgstr ""
2187
+
2188
+ #: constants.py:613
2189
+ #, python-brace-format
2190
+ msgid "Error adding channel: {error}"
2191
+ msgstr ""
2192
+
2193
+ #: constants.py:614
2194
+ #, python-brace-format
2195
+ msgid "Error removing channel: {error}"
2196
+ msgstr ""
2197
+
2198
+ #: constants.py:615
2199
+ #, python-brace-format
2200
+ msgid "VM '{vm_name}' not found for details."
2201
+ msgstr ""
2202
+
2203
+ #: constants.py:616
2204
+ #, python-brace-format
2205
+ msgid "Could not get XML for VM '{vm_name}': {error}"
2206
+ msgstr ""
2207
+
2208
+ #: constants.py:617
2209
+ msgid "VM must be stopped to edit CPU settings."
2210
+ msgstr ""
2211
+
2212
+ #: constants.py:618
2213
+ msgid "VM must be stopped to edit memory settings."
2214
+ msgstr ""
2215
+
2216
+ #: constants.py:619
2217
+ msgid "VM must be stopped to change machine type."
2218
+ msgstr ""
2219
+
2220
+ #: constants.py:620
2221
+ msgid "VM must be stopped to change shared memory settings."
2222
+ msgstr ""
2223
+
2224
+ #: constants.py:621
2225
+ msgid "VM must be stopped to change firmware settings."
2226
+ msgstr ""
2227
+
2228
+ #: constants.py:622
2229
+ msgid "VM must be stopped to edit boot order."
2230
+ msgstr ""
2231
+
2232
+ #: constants.py:624
2233
+ msgid "VM must be stopped to edit network settings."
2234
+ msgstr ""
2235
+
2236
+ #: constants.py:625
2237
+ msgid "VM must be stopped to edit VirtIO-FS settings."
2238
+ msgstr ""
2239
+
2240
+ #: constants.py:626
2241
+ msgid "VM must be stopped to edit video settings."
2242
+ msgstr ""
2243
+
2244
+ #: constants.py:627
2245
+ msgid "VM must be stopped to edit sound settings."
2246
+ msgstr ""
2247
+
2248
+ #: constants.py:628
2249
+ msgid "VM must be stopped to edit graphics settings."
2250
+ msgstr ""
2251
+
2252
+ #: constants.py:629
2253
+ msgid "VM must be stopped to edit TPM settings."
2254
+ msgstr ""
2255
+
2256
+ #: constants.py:630
2257
+ msgid "VM must be stopped to edit RNG settings."
2258
+ msgstr ""
2259
+
2260
+ #: constants.py:631
2261
+ msgid "VM must be stopped to edit serial settings."
2262
+ msgstr ""
2263
+
2264
+ #: constants.py:632
2265
+ msgid "VM must be stopped to edit watchdog settings."
2266
+ msgstr ""
2267
+
2268
+ #: constants.py:633
2269
+ msgid "VM must be stopped to edit PCI settings."
2270
+ msgstr ""
2271
+
2272
+ #: constants.py:634
2273
+ msgid "VM must be stopped to edit USB settings."
2274
+ msgstr ""
2275
+
2276
+ #: constants.py:635
2277
+ msgid "VM must be stopped to edit controller settings."
2278
+ msgstr ""
2279
+
2280
+ #: constants.py:636
2281
+ msgid "VM must be stopped to edit channel settings."
2282
+ msgstr ""
2283
+
2284
+ #: constants.py:637
2285
+ msgid "VM must be stopped to edit input settings."
2286
+ msgstr ""
2287
+
2288
+ #: constants.py:638
2289
+ #, python-brace-format
2290
+ msgid "Error toggling disk state: {error}"
2291
+ msgstr ""
2292
+
2293
+ #: constants.py:639
2294
+ #, python-brace-format
2295
+ msgid "Error removing disk: {error}"
2296
+ msgstr ""
2297
+
2298
+ #: constants.py:640
2299
+ #, python-brace-format
2300
+ msgid "Error adding disk: {error}"
2301
+ msgstr ""
2302
+
2303
+ #: constants.py:641
2304
+ #, python-brace-format
2305
+ msgid "Error attaching existing disk: {error}"
2306
+ msgstr ""
2307
+
2308
+ #: constants.py:642
2309
+ #, python-brace-format
2310
+ msgid "Error editing disk: {error}"
2311
+ msgstr ""
2312
+
2313
+ #: constants.py:643
2314
+ #, python-brace-format
2315
+ msgid "Error setting VM video model: {error}"
2316
+ msgstr ""
2317
+
2318
+ #: constants.py:644
2319
+ #, python-brace-format
2320
+ msgid "Error setting CPU model: {error}"
2321
+ msgstr ""
2322
+
2323
+ #: constants.py:645
2324
+ #, python-brace-format
2325
+ msgid "Error setting UEFI file: {error}"
2326
+ msgstr ""
2327
+
2328
+ #: constants.py:646
2329
+ #, python-brace-format
2330
+ msgid "Error setting shared memory: {error}"
2331
+ msgstr ""
2332
+
2333
+ #: constants.py:647
2334
+ #, python-brace-format
2335
+ msgid "Error setting VM graphics: {error}"
2336
+ msgstr ""
2337
+
2338
+ #: constants.py:648
2339
+ #, python-brace-format
2340
+ msgid "Error setting VM sound model: {error}"
2341
+ msgstr ""
2342
+
2343
+ #: constants.py:649
2344
+ #, python-brace-format
2345
+ msgid "Error setting VM RNG: {error}"
2346
+ msgstr ""
2347
+
2348
+ #: constants.py:650
2349
+ #, python-brace-format
2350
+ msgid "Error setting VM TPM: {error}"
2351
+ msgstr ""
2352
+
2353
+ #: constants.py:651
2354
+ #, python-brace-format
2355
+ msgid "Error attaching USB device: {error}"
2356
+ msgstr ""
2357
+
2358
+ #: constants.py:652
2359
+ #, python-brace-format
2360
+ msgid "Error detaching USB device: {error}"
2361
+ msgstr ""
2362
+
2363
+ #: constants.py:653
2364
+ #, python-brace-format
2365
+ msgid "Error adding serial console: {error}"
2366
+ msgstr ""
2367
+
2368
+ #: constants.py:654
2369
+ #, python-brace-format
2370
+ msgid "Error removing serial console: {error}"
2371
+ msgstr ""
2372
+
2373
+ #: constants.py:655
2374
+ #, python-brace-format
2375
+ msgid "Error adding input device: {error}"
2376
+ msgstr ""
2377
+
2378
+ #: constants.py:656
2379
+ #, python-brace-format
2380
+ msgid "Error removing input device: {error}"
2381
+ msgstr ""
2382
+
2383
+ #: constants.py:657
2384
+ #, python-brace-format
2385
+ msgid "Error setting VM watchdog: {error}"
2386
+ msgstr ""
2387
+
2388
+ #: constants.py:658
2389
+ #, python-brace-format
2390
+ msgid "Error removing VM watchdog: {error}"
2391
+ msgstr ""
2392
+
2393
+ #: constants.py:659
2394
+ #, python-brace-format
2395
+ msgid "Error adding USB device: {error}"
2396
+ msgstr ""
2397
+
2398
+ #: constants.py:660
2399
+ #, python-brace-format
2400
+ msgid "Error removing USB device: {error}"
2401
+ msgstr ""
2402
+
2403
+ #: constants.py:661
2404
+ #, python-brace-format
2405
+ msgid "Error adding SCSI controller: {error}"
2406
+ msgstr ""
2407
+
2408
+ #: constants.py:662
2409
+ #, python-brace-format
2410
+ msgid "Error removing SCSI controller: {error}"
2411
+ msgstr ""
2412
+
2413
+ #: constants.py:663
2414
+ #, python-brace-format
2415
+ msgid "Error migrating VM machine type: {error}"
2416
+ msgstr ""
2417
+
2418
+ #: constants.py:664
2419
+ #, python-brace-format
2420
+ msgid "Error setting VM NUMA tune: {error}"
2421
+ msgstr ""
2422
+
2423
+ #: constants.py:665
2424
+ #, python-brace-format
2425
+ msgid "Error setting VM CPU tune: {error}"
2426
+ msgstr ""
2427
+
2428
+ #: constants.py:666
2429
+ #, python-brace-format
2430
+ msgid "Error removing VirtIO-FS: {error}"
2431
+ msgstr ""
2432
+
2433
+ #: constants.py:667
2434
+ #, python-brace-format
2435
+ msgid "Error adding VirtIO-FS: {error}"
2436
+ msgstr ""
2437
+
2438
+ #: constants.py:668
2439
+ #, python-brace-format
2440
+ msgid "Error checking for other SPICE devices: {error}"
2441
+ msgstr ""
2442
+
2443
+ #: constants.py:669
2444
+ #, python-brace-format
2445
+ msgid "Error removing SPICE devices: {error}"
2446
+ msgstr ""
2447
+
2448
+ #: constants.py:670
2449
+ msgid ""
2450
+ "This VM has other SPICE-related devices (e.g., channels, QXL video).\\nDo "
2451
+ "you want to remove them for a clean switch to VNC?"
2452
+ msgstr ""
2453
+
2454
+ #: constants.py:671
2455
+ msgid ""
2456
+ "Some selected VMs have other SPICE-related devices.\\nDo you want to remove "
2457
+ "them from ALL selected VMs for a clean switch to VNC?"
2458
+ msgstr ""
2459
+
2460
+ #: constants.py:673
2461
+ #, python-brace-format
2462
+ msgid "Error saving boot order: {error}"
2463
+ msgstr ""
2464
+
2465
+ #: constants.py:678
2466
+ #, python-brace-format
2467
+ msgid "Are you sure you want to delete '{name}'?"
2468
+ msgstr ""
2469
+
2470
+ #: constants.py:679
2471
+ #, python-brace-format
2472
+ msgid "Are you sure you want to delete snapshot '{name}'?"
2473
+ msgstr ""
2474
+
2475
+ #: constants.py:680
2476
+ #, python-brace-format
2477
+ msgid ""
2478
+ "VM has {count} snapshot(s). To rename, they must be deleted.\n"
2479
+ "Delete snapshots and continue?"
2480
+ msgstr ""
2481
+
2482
+ #: constants.py:681
2483
+ msgid ""
2484
+ "Experimental Feature! Still contains bugs, fix in progress. You have been "
2485
+ "informed"
2486
+ msgstr ""
2487
+
2488
+ #: constants.py:682
2489
+ #, python-brace-format
2490
+ msgid "Are you sure you want to remove channel '{target_name}'?"
2491
+ msgstr ""
2492
+
2493
+ #: constants.py:683
2494
+ #, python-brace-format
2495
+ msgid "Are you sure you want to remove input device '{device_type}'?"
2496
+ msgstr ""
2497
+
2498
+ #: constants.py:684
2499
+ #, python-brace-format
2500
+ msgid "Are you sure you want to remove serial console '{port}'?"
2501
+ msgstr ""
2502
+
2503
+ #: constants.py:685
2504
+ #, python-brace-format
2505
+ msgid "Are you sure you want to remove USB device '{description}'?"
2506
+ msgstr ""
2507
+
2508
+ #: constants.py:686
2509
+ #, python-brace-format
2510
+ msgid ""
2511
+ "Are you sure you want to remove SCSI controller '{model}' at index '{index}'?"
2512
+ msgstr ""
2513
+
2514
+ #: constants.py:687
2515
+ #, python-brace-format
2516
+ msgid "Are you sure you want to remove VirtIO-FS mount '{target_path}'?"
2517
+ msgstr ""
2518
+
2519
+ #: constants.py:692 constants.py:715
2520
+ #, python-brace-format
2521
+ msgid "The remove viewer {viewer} has been selected."
2522
+ msgstr ""
2523
+
2524
+ #: constants.py:693
2525
+ msgid "VM data loaded. Displaying VMs..."
2526
+ msgstr ""
2527
+
2528
+ #: constants.py:694
2529
+ msgid "Filter: Running VMs"
2530
+ msgstr ""
2531
+
2532
+ #: constants.py:695
2533
+ msgid "Filter: All VMs"
2534
+ msgstr ""
2535
+
2536
+ #: constants.py:696
2537
+ msgid "All VMs unselected."
2538
+ msgstr ""
2539
+
2540
+ #: constants.py:697
2541
+ #, python-brace-format
2542
+ msgid "Caching VM state for: {vms_list}"
2543
+ msgstr ""
2544
+
2545
+ #: constants.py:702
2546
+ msgid "Compact view is locked during bulk operations."
2547
+ msgstr ""
2548
+
2549
+ #: constants.py:703
2550
+ #, python-brace-format
2551
+ msgid ""
2552
+ "Displaying [b]{vms_per_page}[/b] VMs per page. CPU usage may increase; 9 is "
2553
+ "recommended for optimal performance."
2554
+ msgstr ""
2555
+
2556
+ #: constants.py:704
2557
+ #, python-brace-format
2558
+ msgid "VM '{vm_name}' is not in a pausable state."
2559
+ msgstr ""
2560
+
2561
+ #: constants.py:705
2562
+ #, python-brace-format
2563
+ msgid ""
2564
+ "VM [b]{vm_name}[/b]: Libvirt accepted the XML but the configuration remains "
2565
+ "unchanged. Your changes may have been ignored or normalized away."
2566
+ msgstr ""
2567
+
2568
+ #: constants.py:706
2569
+ msgid "No remote viewer selected. Auto-detection will be used."
2570
+ msgstr ""
2571
+
2572
+ #: constants.py:707
2573
+ msgid ""
2574
+ "Running network usage scan, this can freeze the UI for larger numbers of VMs."
2575
+ msgstr ""
2576
+
2577
+ #: constants.py:708
2578
+ #, python-brace-format
2579
+ msgid ""
2580
+ "More than {count} VMs detected on this server.\n"
2581
+ "Skipping disk usage scan to prevent UI freeze."
2582
+ msgstr ""
2583
+
2584
+ #: constants.py:709
2585
+ msgid ""
2586
+ "Running disk usage scan, this can freeze the UI for larger numbers of VMs "
2587
+ "and disks."
2588
+ msgstr ""
2589
+
2590
+ #: constants.py:710
2591
+ msgid ""
2592
+ "! Shared Memory is Mandatory to use VirtIO-FS.\\n! Enable it in Mem tab."
2593
+ msgstr ""
2594
+
2595
+ #: constants.py:716
2596
+ #, python-brace-format
2597
+ msgid "Connected to [b]{uri}[/b]"
2598
+ msgstr ""
2599
+
2600
+ #: constants.py:717
2601
+ msgid "Statistics logging and monitoring disabled."
2602
+ msgstr ""
2603
+
2604
+ #: constants.py:718
2605
+ msgid "Statistics logging and monitoring enabled (every 10s)."
2606
+ msgstr ""
2607
+
2608
+ #: constants.py:719
2609
+ msgid "Configuration updated."
2610
+ msgstr ""
2611
+
2612
+ #: constants.py:720
2613
+ #, python-brace-format
2614
+ msgid "Selected {count} VMs matching pattern."
2615
+ msgstr ""
2616
+
2617
+ #: constants.py:721
2618
+ msgid ""
2619
+ "In some Terminal use [b]Shift[/b] key while selecting text with the mouse to "
2620
+ "copy it."
2621
+ msgstr ""
2622
+
2623
+ #: constants.py:722
2624
+ msgid "No servers configured. Please add one via 'Servers List'."
2625
+ msgstr ""
2626
+
2627
+ #: constants.py:723
2628
+ #, python-brace-format
2629
+ msgid "Log level changed to {level}"
2630
+ msgstr ""
2631
+
2632
+ #: constants.py:724
2633
+ #, python-brace-format
2634
+ msgid "Bulk action [b]{action_type}[/b] successful for {count} VMs."
2635
+ msgstr ""
2636
+
2637
+ #: constants.py:725
2638
+ #, python-brace-format
2639
+ msgid "Connected to [b]{name}[/b]"
2640
+ msgstr ""
2641
+
2642
+ #: constants.py:726
2643
+ #, python-brace-format
2644
+ msgid "Input sanitized: '{original_input}' changed to '{sanitized_input}'"
2645
+ msgstr ""
2646
+
2647
+ #: constants.py:727
2648
+ #, python-brace-format
2649
+ msgid "Overlay [b]{overlay_name}[/b] created and attached."
2650
+ msgstr ""
2651
+
2652
+ #: constants.py:728
2653
+ #, python-brace-format
2654
+ msgid "Overlay for [b]{target_disk}[/b] discarded and reverted to base image."
2655
+ msgstr ""
2656
+
2657
+ #: constants.py:729
2658
+ msgid "Disk changes committed successfully."
2659
+ msgstr ""
2660
+
2661
+ #: constants.py:730
2662
+ #, python-brace-format
2663
+ msgid "VM [b]{vm_name}[/b] configuration updated successfully."
2664
+ msgstr ""
2665
+
2666
+ #: constants.py:731
2667
+ msgid "No changes made to the XML configuration."
2668
+ msgstr ""
2669
+
2670
+ #: constants.py:732
2671
+ #, python-brace-format
2672
+ msgid "Snapshot [b]{snapshot_name}[/b] created successfully."
2673
+ msgstr ""
2674
+
2675
+ #: constants.py:733
2676
+ #, python-brace-format
2677
+ msgid "Restored to snapshot [b]{snapshot_name}[/b] successfully."
2678
+ msgstr ""
2679
+
2680
+ #: constants.py:734
2681
+ #, python-brace-format
2682
+ msgid "Snapshot [b]{snapshot_name}[/b] deleted successfully."
2683
+ msgstr ""
2684
+
2685
+ #: constants.py:735
2686
+ #, python-brace-format
2687
+ msgid "VM '{vm_name}' deleted successfully."
2688
+ msgstr ""
2689
+
2690
+ #: constants.py:736
2691
+ #, python-brace-format
2692
+ msgid "VM '{old_name}' renamed to '{new_name}' successfully."
2693
+ msgstr ""
2694
+
2695
+ #: constants.py:737
2696
+ msgid "VM rename cancelled."
2697
+ msgstr ""
2698
+
2699
+ #: constants.py:738
2700
+ msgid "New VM name is the same as the old name. No rename performed."
2701
+ msgstr ""
2702
+
2703
+ #: constants.py:739
2704
+ #, python-brace-format
2705
+ msgid "Successfully cloned to: {vm_names}"
2706
+ msgstr ""
2707
+
2708
+ #: constants.py:740
2709
+ msgid "Web console stopped."
2710
+ msgstr ""
2711
+
2712
+ #: constants.py:741
2713
+ msgid "Remote user cert/key found, using secure wss connection."
2714
+ msgstr ""
2715
+
2716
+ #: constants.py:742
2717
+ msgid "Remote system cert/key found, using secure wss connection."
2718
+ msgstr ""
2719
+
2720
+ #: constants.py:743
2721
+ msgid "No remote cert/key found. Attempting to generate in system directory..."
2722
+ msgstr ""
2723
+
2724
+ #: constants.py:744
2725
+ msgid "Could not check for remote cert/key, using insecure ws connection."
2726
+ msgstr ""
2727
+
2728
+ #: constants.py:745
2729
+ msgid "Remote connection detected. Setting up SSH tunnel..."
2730
+ msgstr ""
2731
+
2732
+ #: constants.py:746
2733
+ msgid "Found cert/key, using secure wss connection."
2734
+ msgstr ""
2735
+
2736
+ #: constants.py:747
2737
+ msgid "All caches cleared"
2738
+ msgstr ""
2739
+
2740
+ #: constants.py:748
2741
+ msgid "Configuration saved successfully."
2742
+ msgstr ""
2743
+
2744
+ #: constants.py:749
2745
+ #, python-brace-format
2746
+ msgid "Storage pool '{name}' created and started."
2747
+ msgstr ""
2748
+
2749
+ #: constants.py:750
2750
+ #, python-brace-format
2751
+ msgid "Network {name} created successfully."
2752
+ msgstr ""
2753
+
2754
+ #: constants.py:751
2755
+ #, python-brace-format
2756
+ msgid "Network {name} updated successfully."
2757
+ msgstr ""
2758
+
2759
+ #: constants.py:752
2760
+ #, python-brace-format
2761
+ msgid "VM name sanitized: '{original}' -> '{sanitized}'"
2762
+ msgstr ""
2763
+
2764
+ #: constants.py:753
2765
+ #, python-brace-format
2766
+ msgid "VM '{vm_name}' started."
2767
+ msgstr ""
2768
+
2769
+ #: constants.py:754
2770
+ #, python-brace-format
2771
+ msgid "VM '{vm_name}' saved (hibernated)."
2772
+ msgstr ""
2773
+
2774
+ #: constants.py:755
2775
+ #, python-brace-format
2776
+ msgid "Remote viewer {viewer} started for {vm_name}"
2777
+ msgstr ""
2778
+
2779
+ #: constants.py:756
2780
+ #, python-brace-format
2781
+ msgid "VM '{vm_name}' defined. Please configure and start it."
2782
+ msgstr ""
2783
+
2784
+ #: constants.py:757
2785
+ #, python-brace-format
2786
+ msgid "VM '{vm_name}' created successfully!"
2787
+ msgstr ""
2788
+
2789
+ #: constants.py:758
2790
+ #, python-brace-format
2791
+ msgid "Server '{server_name}' deleted successfully."
2792
+ msgstr ""
2793
+
2794
+ #: constants.py:759
2795
+ #, python-brace-format
2796
+ msgid "Pool '{pool_name}' is now {status}."
2797
+ msgstr ""
2798
+
2799
+ #: constants.py:760
2800
+ #, python-brace-format
2801
+ msgid "Autostart for pool '{pool_name}' is now {status}."
2802
+ msgstr ""
2803
+
2804
+ #: constants.py:762
2805
+ #, python-brace-format
2806
+ msgid "Network '{net_name}' is now {status}."
2807
+ msgstr ""
2808
+
2809
+ #: constants.py:763
2810
+ #, python-brace-format
2811
+ msgid "Autostart for network '{net_name}' is now {status}."
2812
+ msgstr ""
2813
+
2814
+ #: constants.py:764
2815
+ #, python-brace-format
2816
+ msgid "Base name sanitized: [b]{original}[/b] changed to [b]{sanitized}[/b]"
2817
+ msgstr ""
2818
+
2819
+ #: constants.py:765
2820
+ #, python-brace-format
2821
+ msgid "Suffix sanitized: [b]{original}[/b] changed to [b]{sanitized}[/b]"
2822
+ msgstr ""
2823
+
2824
+ #: constants.py:766
2825
+ #, python-brace-format
2826
+ msgid "Input sanitized: [b]{original}[/b] changed to [b]{sanitized}[/b]"
2827
+ msgstr ""
2828
+
2829
+ #: constants.py:767
2830
+ msgid "Boot order saved successfully."
2831
+ msgstr ""
2832
+
2833
+ #: constants.py:768
2834
+ msgid "Graphics settings applied successfully"
2835
+ msgstr ""
2836
+
2837
+ #: constants.py:769
2838
+ #, python-brace-format
2839
+ msgid "RNG settings applied successfully. Device: {rng_device}"
2840
+ msgstr ""
2841
+
2842
+ #: constants.py:770
2843
+ msgid "TPM settings applied successfully"
2844
+ msgstr ""
2845
+
2846
+ #: constants.py:771
2847
+ #, python-brace-format
2848
+ msgid "Attached USB device: {description}"
2849
+ msgstr ""
2850
+
2851
+ #: constants.py:772
2852
+ #, python-brace-format
2853
+ msgid "Detached USB device: {description}"
2854
+ msgstr ""
2855
+
2856
+ #: constants.py:773
2857
+ msgid "Channel added successfully."
2858
+ msgstr ""
2859
+
2860
+ #: constants.py:774
2861
+ #, python-brace-format
2862
+ msgid "Channel '{target_name}' removed successfully."
2863
+ msgstr ""
2864
+
2865
+ #: constants.py:775
2866
+ #, python-brace-format
2867
+ msgid "Input device '{device_type}' added successfully."
2868
+ msgstr ""
2869
+
2870
+ #: constants.py:776
2871
+ #, python-brace-format
2872
+ msgid "Input device '{device_type}' removed successfully."
2873
+ msgstr ""
2874
+
2875
+ #: constants.py:777
2876
+ msgid "Serial console added successfully."
2877
+ msgstr ""
2878
+
2879
+ #: constants.py:778
2880
+ msgid "Serial console removed successfully."
2881
+ msgstr ""
2882
+
2883
+ #: constants.py:779
2884
+ msgid "Watchdog settings applied successfully."
2885
+ msgstr ""
2886
+
2887
+ #: constants.py:780
2888
+ msgid "Watchdog removed successfully."
2889
+ msgstr ""
2890
+
2891
+ #: constants.py:781
2892
+ #, python-brace-format
2893
+ msgid "USB device '{description}' attached successfully."
2894
+ msgstr ""
2895
+
2896
+ #: constants.py:782
2897
+ #, python-brace-format
2898
+ msgid "USB device '{description}' removed successfully."
2899
+ msgstr ""
2900
+
2901
+ #: constants.py:783
2902
+ msgid "SCSI controller added successfully."
2903
+ msgstr ""
2904
+
2905
+ #: constants.py:784
2906
+ msgid "SCSI controller removed successfully."
2907
+ msgstr ""
2908
+
2909
+ #: constants.py:785
2910
+ msgid "VirtIO-FS mount added successfully."
2911
+ msgstr ""
2912
+
2913
+ #: constants.py:786
2914
+ msgid "VirtIO-FS mount removed successfully."
2915
+ msgstr ""
2916
+
2917
+ #: constants.py:787
2918
+ msgid "Removed associated SPICE devices"
2919
+ msgstr ""
2920
+
2921
+ #: constants.py:788
2922
+ #, python-brace-format
2923
+ msgid "Video model set to {new_model}"
2924
+ msgstr ""
2925
+
2926
+ #: constants.py:789
2927
+ #, python-brace-format
2928
+ msgid "3D Acceleration {state}"
2929
+ msgstr ""
2930
+
2931
+ #: constants.py:790
2932
+ #, python-brace-format
2933
+ msgid "Sound model set to {new_model}"
2934
+ msgstr ""
2935
+
2936
+ #: constants.py:791
2937
+ #, python-brace-format
2938
+ msgid "Secure Boot {state}"
2939
+ msgstr ""
2940
+
2941
+ #: constants.py:792
2942
+ #, python-brace-format
2943
+ msgid "Shared memory {state}"
2944
+ msgstr ""
2945
+
2946
+ #: constants.py:793
2947
+ #, python-brace-format
2948
+ msgid "Machine type set to {new_machine_type}"
2949
+ msgstr ""
2950
+
2951
+ #: constants.py:794
2952
+ #, python-brace-format
2953
+ msgid "VCPU set to {vcpu_count}"
2954
+ msgstr ""
2955
+
2956
+ #: constants.py:795
2957
+ #, python-brace-format
2958
+ msgid "Memory set to {memory_mb} MB"
2959
+ msgstr ""
2960
+
2961
+ #: constants.py:796
2962
+ #, python-brace-format
2963
+ msgid "CPU model set to {new_cpu_model}"
2964
+ msgstr ""
2965
+
2966
+ #: constants.py:797
2967
+ #, python-brace-format
2968
+ msgid "UEFI file set to {uefi_file_name}"
2969
+ msgstr ""
2970
+
2971
+ #: constants.py:798
2972
+ #, python-brace-format
2973
+ msgid "Disk '{disk_path}' enabled successfully."
2974
+ msgstr ""
2975
+
2976
+ #: constants.py:799
2977
+ #, python-brace-format
2978
+ msgid "Disk '{disk_path}' disabled successfully."
2979
+ msgstr ""
2980
+
2981
+ #: constants.py:800
2982
+ #, python-brace-format
2983
+ msgid "Disk '{disk_path}' removed successfully."
2984
+ msgstr ""
2985
+
2986
+ #: constants.py:801
2987
+ #, python-brace-format
2988
+ msgid "Disk '{disk_path}' added successfully."
2989
+ msgstr ""
2990
+
2991
+ #: constants.py:802
2992
+ #, python-brace-format
2993
+ msgid "Existing disk '{disk_path}' attached successfully."
2994
+ msgstr ""
2995
+
2996
+ #: constants.py:803
2997
+ #, python-brace-format
2998
+ msgid "Disk '{disk_path}' updated successfully."
2999
+ msgstr ""
3000
+
3001
+ #: constants.py:804
3002
+ msgid "Network interface added successfully."
3003
+ msgstr ""
3004
+
3005
+ #: constants.py:805
3006
+ msgid "Network interface removed successfully."
3007
+ msgstr ""
3008
+
3009
+ #: constants.py:806
3010
+ #, python-brace-format
3011
+ msgid "Interface {mac_address} switched to {new_network}"
3012
+ msgstr ""
3013
+
3014
+ #: constants.py:807
3015
+ msgid "CPU pinning settings applied successfully."
3016
+ msgstr ""
3017
+
3018
+ #: constants.py:808
3019
+ msgid "NUMA tuning settings applied successfully."
3020
+ msgstr ""
3021
+
3022
+ #: constants.py:813
3023
+ #, python-brace-format
3024
+ msgid "Connecting to [b]{uri}[/b]..."
3025
+ msgstr ""
3026
+
3027
+ #: constants.py:814
3028
+ msgid "Configuration updated. Refreshing VM list..."
3029
+ msgstr ""
3030
+
3031
+ #: constants.py:815
3032
+ msgid "Loading VM data from remote server(s)..."
3033
+ msgstr ""