File: eu.po

package info (click to toggle)
libguestfs 1%3A1.40.2-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 123,660 kB
  • sloc: ansic: 460,074; ml: 63,059; sh: 14,955; java: 9,512; makefile: 9,133; cs: 6,300; haskell: 5,652; python: 3,856; perl: 3,619; erlang: 2,435; xml: 1,683; ruby: 350; pascal: 255; lex: 135; yacc: 128; cpp: 10
file content (5892 lines) | stat: -rw-r--r-- 138,283 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Red Hat Inc.
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Asier Iturralde Sarasola <asier.iturralde@gmail.com>, 2012
msgid ""
msgstr ""
"Project-Id-Version: libguestfs 1.39.12\n"
"Report-Msgid-Bugs-To: https://bugzilla.redhat.com/enter_bug.cgi?"
"component=libguestfs&product=Virtualization+Tools\n"
"POT-Creation-Date: 2019-02-07 15:00+0000\n"
"PO-Revision-Date: 2015-02-21 10:49+0000\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Basque (http://www.transifex.com/projects/p/libguestfs/"
"language/eu/)\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Zanata 4.6.2\n"

#: align/scan.c:80 cat/cat.c:59 cat/filesystems.c:94 cat/log.c:69 cat/ls.c:97
#: cat/tail.c:66 df/main.c:72 diff/diff.c:106 edit/edit.c:68 fish/fish.c:115
#: fuse/guestmount.c:103 fuse/guestunmount.c:56 inspector/inspector.c:85
#: make-fs/make-fs.c:80 p2v/main.c:92 rescue/rescue.c:80
#, c-format
msgid "Try ‘%s --help’ for more information.\n"
msgstr ""

#: align/scan.c:83
#, c-format
msgid ""
"%s: check alignment of virtual machine partitions\n"
"Copyright (C) 2011 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] -d domname\n"
"  %s [--options] -a disk.img [-a disk.img ...]\n"
"Options:\n"
"  -a|--add image       Add image\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  -d|--domain guest    Add disks from libvirt guest\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  --help               Display brief help\n"
"  -P nr_threads        Use at most nr_threads\n"
"  -q|--quiet           No output, just exit code\n"
"  --uuid               Print UUIDs instead of names\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  -x                   Trace libguestfs API calls\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: align/scan.c:160 builder/index-validate.c:88 cat/cat.c:150
#: cat/filesystems.c:247 cat/log.c:153 cat/ls.c:248 cat/tail.c:158
#: df/main.c:162 diff/diff.c:282 edit/edit.c:163 fish/fish.c:303
#: format/format.c:185 fuse/guestmount.c:256 fuse/guestunmount.c:130
#: inspector/inspector.c:181 make-fs/make-fs.c:151 p2v/main.c:203
#: rescue/rescue.c:218 test-tool/test-tool.c:123
#, c-format
msgid "unknown long option: %s (%d)"
msgstr ""

#: align/scan.c:178 df/main.c:188
#, c-format
msgid "-P option is not numeric"
msgstr ""

#: align/scan.c:233
#, c-format
msgid "compiled without support for libvirt"
msgstr ""

#: align/scan.c:237
#, c-format
msgid "--uuid option cannot be used with -a or -d"
msgstr ""

#: align/scan.c:336
msgid "alignment < 4K"
msgstr ""

#: align/scan.c:339
msgid "alignment < 64K"
msgstr ""

#: builder/index-validate.c:118
#, c-format
msgid "%s: %s: error closing input file: %m (ignored)\n"
msgstr ""

#: builder/index-validate.c:125
#, c-format
msgid "‘%s’ could not be validated, see errors above"
msgstr ""

#: builder/index-validate.c:131
#, c-format
msgid "%s contains comments which will not work with virt-builder 1.24.1"
msgstr ""

#: builder/index-validate.c:144
#, c-format
msgid ""
"%s: section [%s] has invalid characters which will not work with virt-"
"builder 1.24.0"
msgstr ""

#: builder/index-validate.c:155
#, c-format
msgid ""
"%s: section [%s], field ‘%s’ has invalid characters which will not work with "
"virt-builder 1.24.0"
msgstr ""

#: builder/index-validate.c:164
#, c-format
msgid ""
"%s: section [%s], field ‘%s’ has invalid characters which will not work with "
"virt-builder 1.24.1"
msgstr ""

#: builder/index-validate.c:175
#, c-format
msgid ""
"%s: section [%s] is missing a ‘sig’ field which will not work with virt-"
"builder 1.24.0"
msgstr ""

#: cat/cat.c:62
#, c-format
msgid ""
"%s: display files in a virtual machine\n"
"Copyright (C) 2010 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] -d domname file [file ...]\n"
"  %s [--options] -a disk.img [-a disk.img ...] file [file ...]\n"
"Options:\n"
"  -a|--add image       Add image\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  -d|--domain guest    Add disks from libvirt guest\n"
"  --echo-keys          Don't turn off echo for passphrases\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  --help               Display brief help\n"
"  --key selector       Specify a LUKS key\n"
"  --keys-from-stdin    Read passphrases from stdin\n"
"  -m|--mount dev[:mnt[:opts[:fstype]]]\n"
"                       Mount dev on mnt (if omitted, /)\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  -x                   Trace libguestfs API calls\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: cat/cat.c:238 cat/filesystems.c:344 cat/log.c:210 cat/ls.c:362
#: cat/tail.c:223 diff/diff.c:336 edit/edit.c:263 fuse/guestmount.c:323
#: inspector/inspector.c:281 rescue/rescue.c:340
#, c-format
msgid "%s: error: you must specify at least one -a or -d option.\n"
msgstr ""

#: cat/filesystems.c:97
#, c-format
msgid ""
"%s: list filesystems, partitions, block devices, LVM in a VM\n"
"Copyright (C) 2010 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] -d domname\n"
"  %s [--options] -a disk.img [-a disk.img ...]\n"
"Options:\n"
"  -a|--add image       Add image\n"
"  --all                Display everything\n"
"  --blkdevs|--block-devices\n"
"                       Display block devices\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  --csv                Output as Comma-Separated Values\n"
"  -d|--domain guest    Add disks from libvirt guest\n"
"  --echo-keys          Don't turn off echo for passphrases\n"
"  --extra              Display swap and data filesystems\n"
"  --filesystems        Display mountable filesystems\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  -h|--human-readable  Human-readable sizes in --long output\n"
"  --help               Display brief help\n"
"  --keys-from-stdin    Read passphrases from stdin\n"
"  -l|--long            Long output\n"
"  --lvs|--logvols|--logical-volumes\n"
"                       Display LVM logical volumes\n"
"  --no-title           No title in --long output\n"
"  --parts|--partitions Display partitions\n"
"  --pvs|--physvols|--physical-volumes\n"
"                       Display LVM physical volumes\n"
"  --uuid|--uuids       Add UUIDs to --long output\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  --vgs|--volgroups|--volume-groups\n"
"                       Display LVM volume groups\n"
"  -x                   Trace libguestfs API calls\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: cat/filesystems.c:301 cat/log.c:199 inspector/inspector.c:257
#, c-format
msgid ""
"%s: error: extra argument ‘%s’ on command line.\n"
"Make sure to specify the argument for --format like '--format=%s'.\n"
msgstr ""

#: cat/filesystems.c:315 cat/ls.c:354 df/main.c:259 diff/diff.c:350
#, c-format
msgid "you cannot use -h and --csv options together."
msgstr ""

#: cat/filesystems.c:493
#, c-format
msgid "%s: cannot determine the subvolume for %s: %s: %s\n"
msgstr ""

#: cat/log.c:72
#, c-format
msgid ""
"%s: display log files in a virtual machine\n"
"Copyright (C) 2010-2019 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] -d domname\n"
"  %s [--options] -a disk.img [-a disk.img ...]\n"
"Options:\n"
"  -a|--add image       Add image\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  -d|--domain guest    Add disks from libvirt guest\n"
"  --echo-keys          Don't turn off echo for passphrases\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  --help               Display brief help\n"
"  --key selector       Specify a LUKS key\n"
"  --keys-from-stdin    Read passphrases from stdin\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  -x                   Trace libguestfs API calls\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: cat/log.c:263
#, c-format
msgid "%s: Windows Event Log for pre-Vista guests is not supported.\n"
msgstr ""

#: cat/log.c:371
#, c-format
msgid "%s: could not format journal entry timestamp\n"
msgstr ""

#: cat/log.c:437
#, c-format
msgid ""
"%s: you need to install ‘evtxdump.py’ (from the python-evtx package)\n"
"in order to parse Windows Event Logs.  If you cannot install this, then\n"
"use virt-copy-out(1) to copy the contents of /Windows/System32/winevt/Logs\n"
"from this guest, and examine in a binary file viewer.\n"
msgstr ""

#: cat/log.c:456
#, c-format
msgid "%s: Windows Event Log file (%s) not found\n"
msgstr ""

#: cat/ls.c:100
#, c-format
msgid ""
"%s: list files in a virtual machine\n"
"Copyright (C) 2010-2012 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] -d domname dir [dir ...]\n"
"  %s [--options] -a disk.img [-a disk.img ...] dir [dir ...]\n"
"Options:\n"
"  -a|--add image       Add image\n"
"  --checksum[=...]     Display file checksums\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  --csv                Comma-Separated Values output\n"
"  -d|--domain guest    Add disks from libvirt guest\n"
"  --echo-keys          Don't turn off echo for passphrases\n"
"  --extra-stats        Display extra stats\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  --help               Display brief help\n"
"  -h|--human-readable  Human-readable sizes in output\n"
"  --key selector       Specify a LUKS key\n"
"  --keys-from-stdin    Read passphrases from stdin\n"
"  -l|--long            Long listing\n"
"  -m|--mount dev[:mnt[:opts[:fstype]]]\n"
"                       Mount dev on mnt (if omitted, /)\n"
"  -R|--recursive       Recursive listing\n"
"  --times              Display file times\n"
"  --time-days          Display file times as days before now\n"
"  --time-relative      Display file times as seconds before now\n"
"  --time-t             Display file times as time_t's\n"
"  --uids               Display UID, GID\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  -x                   Trace libguestfs API calls\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: cat/ls.c:347
#, c-format
msgid ""
"used a flag which can only be combined with -lR mode\n"
"For more information, read the virt-ls(1) man page."
msgstr ""

#: cat/tail.c:69
#, c-format
msgid ""
"%s: follow (tail) files in a virtual machine\n"
"Copyright (C) 2016 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] -d domname file [file ...]\n"
"  %s [--options] -a disk.img [-a disk.img ...] file [file ...]\n"
"Options:\n"
"  -a|--add image       Add image\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  -d|--domain guest    Add disks from libvirt guest\n"
"  --echo-keys          Don't turn off echo for passphrases\n"
"  -f|--follow          Ignored for compatibility with tail\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  --help               Display brief help\n"
"  --key selector       Specify a LUKS key\n"
"  --keys-from-stdin    Read passphrases from stdin\n"
"  -m|--mount dev[:mnt[:opts[:fstype]]]\n"
"                       Mount dev on mnt (if omitted, /)\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  -x                   Trace libguestfs API calls\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: cat/tail.c:213
#, c-format
msgid ""
"%s: error: missing filenames on command line.\n"
"Please specify at least one file to follow.\n"
msgstr ""

#: cat/tail.c:416
#, c-format
msgid "%s: error: none of the files were found in the disk image\n"
msgstr ""

#: cat/tail.c:421
#, c-format
msgid "%s: all files deleted, exiting\n"
msgstr ""

#: common/mltools/getopt-c.c:73
#, c-format
msgid "Try ‘%s --help’ or consult %s(1) for more information.\n"
msgstr ""

#: common/mltools/getopt-c.c:192
#, c-format
msgid "%s: ‘%s’ is not a numeric value.\n"
msgstr ""

#: common/mltools/getopt-c.c:198 fish/run-0.c:513 fish/run-0.c:586
#: fish/run-0.c:873 fish/run-0.c:1687 fish/run-0.c:1720 fish/run-0.c:1743
#: fish/run-0.c:2398 fish/run-0.c:2494 fish/run-1.c:931 fish/run-1.c:1015
#: fish/run-1.c:1437 fish/run-1.c:1672 fish/run-1.c:1691 fish/run-1.c:1960
#: fish/run-1.c:2029 fish/run-1.c:2052 fish/run-1.c:2161 fish/run-1.c:2180
#: fish/run-1.c:2199 fish/run-1.c:2500 fish/run-1.c:2603 fish/run-2.c:582
#: fish/run-2.c:601 fish/run-2.c:853 fish/run-2.c:1483 fish/run-2.c:1534
#: fish/run-2.c:1631 fish/run-2.c:1868 fish/run-2.c:1921 fish/run-2.c:1978
#: fish/run-2.c:2296 fish/run-3.c:578 fish/run-3.c:790 fish/run-3.c:879
#: fish/run-3.c:1488 fish/run-3.c:1531 fish/run-3.c:2090 fish/run-3.c:2369
#: fish/run-3.c:2392 fish/run-3.c:2708 fish/run-3.c:2754 fish/run-3.c:2797
#: fish/run-3.c:2841 fish/run-3.c:2860 fish/run-3.c:2879 fish/run-3.c:2952
#: fish/run-3.c:3059 fish/run-3.c:3101 fish/run-3.c:3681 fish/run-3.c:3704
#: fish/run-3.c:3749 fish/run-3.c:3772 fish/run-3.c:4070 fish/run-4.c:144
#: fish/run-4.c:308 fish/run-4.c:653 fish/run-4.c:953 fish/run-4.c:1284
#: fish/run-4.c:1374 fish/run-4.c:1441 fish/run-4.c:1485 fish/run-4.c:1530
#: fish/run-4.c:1549 fish/run-4.c:1568 fish/run-4.c:1749 fish/run-4.c:1793
#: fish/run-4.c:1836 fish/run-4.c:1880 fish/run-4.c:2262 fish/run-5.c:877
#: fish/run-5.c:1006 fish/run-5.c:1567 fish/run-5.c:1615 fish/run-5.c:1659
#: fish/run-5.c:1777 fish/run-5.c:1805 fish/run-5.c:1828 fish/run-5.c:1892
#: fish/run-5.c:2047 fish/run-5.c:2090 fish/run-5.c:2134 fish/run-5.c:2178
#: fish/run-5.c:2315 fish/run-5.c:2433 fish/run-5.c:2452 fish/run-5.c:2471
#: fish/run-5.c:2549 fish/run-5.c:2568 fish/run-5.c:2587 fish/run-5.c:2606
#: fish/run-5.c:3061 fish/run-6.c:197 fish/run-6.c:434 fish/run-6.c:618
#: fish/run-6.c:637 fish/run-6.c:1079 fish/run-6.c:1204 fish/run-6.c:1432
#: fish/run-6.c:1451 fish/run-6.c:1496 fish/run-6.c:1959 fish/run-6.c:2046
#, c-format
msgid "%s: %s: integer out of range\n"
msgstr ""

#: common/mltools/getopt-c.c:385
#, c-format
msgid "%s: ‘%s’ is not allowed for -%c; allowed values are:\n"
msgstr ""

#: common/mltools/getopt-c.c:388
#, c-format
msgid "%s: ‘%s’ is not allowed for %s%s; allowed values are:\n"
msgstr ""

#: common/mltools/getopt-c.c:423
#, c-format
msgid "Extra parameter on the command line: ‘%s’.\n"
msgstr ""

#: common/options/config.c:72
#, c-format
msgid "%s: line %d: error parsing configuration file: %s"
msgstr ""

#: common/options/inspect.c:71
#, c-format
msgid "don’t use --live and -i options together"
msgstr ""

#: common/options/inspect.c:81
#, c-format
msgid ""
"%s: no operating system was found on this disk\n"
"\n"
"If using guestfish ‘-i’ option, remove this option and instead\n"
"use the commands ‘run’ followed by ‘list-filesystems’.\n"
"You can then mount filesystems you want by hand using the\n"
"‘mount’ or ‘mount-ro’ command.\n"
"\n"
"If using guestmount ‘-i’, remove this option and choose the\n"
"filesystem(s) you want to see by manually adding ‘-m’ option(s).\n"
"Use ‘virt-filesystems’ to see what filesystems are available.\n"
"\n"
"If using other virt tools, this disk image won’t work\n"
"with these tools.  Use the guestfish equivalent commands\n"
"(see the virt tool manual page).\n"
msgstr ""

#: common/options/inspect.c:102
#, c-format
msgid ""
"%s: multi-boot operating systems are not supported\n"
"\n"
"If using guestfish ‘-i’ option, remove this option and instead\n"
"use the commands ‘run’ followed by ‘list-filesystems’.\n"
"You can then mount filesystems you want by hand using the\n"
"‘mount’ or ‘mount-ro’ command.\n"
"\n"
"If using guestmount ‘-i’, remove this option and choose the\n"
"filesystem(s) you want to see by manually adding ‘-m’ option(s).\n"
"Use ‘virt-filesystems’ to see what filesystems are available.\n"
"\n"
"If using other virt tools, multi-boot operating systems won’t work\n"
"with these tools.  Use the guestfish equivalent commands\n"
"(see the virt tool manual page).\n"
msgstr ""

#: common/options/inspect.c:164
#, c-format
msgid "%s: some filesystems could not be mounted (ignored)\n"
msgstr ""

#: common/options/inspect.c:181
#, c-format
msgid "Operating system: %s\n"
msgstr ""

#: common/options/inspect.c:199
#, c-format
msgid "%s mounted on %s\n"
msgstr ""

#: common/options/keys.c:62
#, c-format
msgid "Enter key or passphrase (\"%s\"): "
msgstr ""

#: common/options/options.c:268
#, c-format
msgid "%s: ‘%s’ could not be mounted.\n"
msgstr ""

#: common/options/options.c:272
#, c-format
msgid ""
"%s: Check mount(8) man page to ensure options ‘%s’\n"
"%s: are supported by the filesystem that is being mounted.\n"
msgstr ""

#: common/options/options.c:276
#, c-format
msgid "%s: Did you mean to mount one of these filesystems?\n"
msgstr ""

#: common/options/options.c:289
#, c-format
msgid "cannot determine the subvolume for %s: %s (%d)"
msgstr ""

#: common/options/uri.c:119
#, c-format
msgid "%s: --add: could not parse URI ‘%s’\n"
msgstr ""

#: common/options/uri.c:130
#, c-format
msgid "%s: %s: scheme of URI is NULL or empty\n"
msgstr ""

#: common/options/uri.c:138
#, c-format
msgid "%s: %s: cannot both a server name and a socket query parameter\n"
msgstr ""

#: common/parallel/domains.c:106 lib/libvirt-domain.c:108
#, c-format
msgid "could not connect to libvirt (code %d, domain %d): %s"
msgstr ""

#: common/parallel/domains.c:114
#, c-format
msgid "could not get number of running domains (code %d, domain %d): %s"
msgstr ""

#: common/parallel/domains.c:125
#, c-format
msgid "could not list running domains (code %d, domain %d): %s"
msgstr ""

#: common/parallel/domains.c:135
#, c-format
msgid "could not get number of inactive domains (code %d, domain %d): %s"
msgstr ""

#: common/parallel/domains.c:146
#, c-format
msgid "could not list inactive domains (code %d, domain %d): %s"
msgstr ""

#: common/utils/utils.c:226
#, c-format
msgid "%s exited successfully"
msgstr ""

#: common/utils/utils.c:229
#, c-format
msgid "%s exited with error status %d"
msgstr ""

#: common/utils/utils.c:233
#, c-format
msgid "%s killed by signal %d (%s)"
msgstr ""

#: common/utils/utils.c:237
#, c-format
msgid "%s stopped by signal %d (%s)"
msgstr ""

#: common/utils/utils.c:241
#, c-format
msgid "%s exited for an unknown reason (status %d)"
msgstr ""

#: common/visit/visit.c:133
#, c-format
msgid "%s: error getting extended attrs for %s %s\n"
msgstr ""

#: common/visit/visit.c:147
#, c-format
msgid "%s: error: cannot parse xattr count for %s %s\n"
msgstr ""

#: common/windows/windows.c:139
#, c-format
msgid "to use Windows drive letters, this must be a Windows guest"
msgstr ""

#: common/windows/windows.c:150
#, c-format
msgid "drive '%c:' not found."
msgstr ""

#: df/main.c:75
#, c-format
msgid ""
"%s: display free space on virtual filesystems\n"
"Copyright (C) 2010 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] -d domname\n"
"  %s [--options] -a disk.img [-a disk.img ...]\n"
"Options:\n"
"  -a|--add image       Add image\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  --csv                Output as Comma-Separated Values\n"
"  -d|--domain guest    Add disks from libvirt guest\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  -h|--human-readable  Print sizes in human-readable format\n"
"  --help               Display brief help\n"
"  -i|--inodes          Display inodes\n"
"  --one-per-guest      Separate appliance per guest\n"
"  -P nr_threads        Use at most nr_threads\n"
"  --uuid               Print UUIDs instead of names\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  -x                   Trace libguestfs API calls\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: df/main.c:274
#, c-format
msgid "compiled without support for libvirt."
msgstr ""

#: df/output.c:49
msgid "VirtualMachine"
msgstr "MakinaBirtuala"

#: df/output.c:50
msgid "Filesystem"
msgstr "Fitxategi-sistema"

#: df/output.c:53
msgid "1K-blocks"
msgstr ""

#: df/output.c:55
msgid "Size"
msgstr "Tamaina"

#: df/output.c:56
msgid "Used"
msgstr "Erabilita"

#: df/output.c:57
msgid "Available"
msgstr "Eskuragarri"

#: df/output.c:58
msgid "Use%"
msgstr ""

#: df/output.c:60
msgid "Inodes"
msgstr ""

#: df/output.c:61
msgid "IUsed"
msgstr ""

#: df/output.c:62
msgid "IFree"
msgstr ""

#: df/output.c:63
msgid "IUse%"
msgstr ""

#: diff/diff.c:109
#, c-format
msgid ""
"%s: list differences between virtual machines\n"
"Copyright (C) 2010-2019 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] -d domain1 -D domain2\n"
"  %s [--options] -a disk1.img -A disk2.img [-a|-A ...]\n"
"Options:\n"
"  -a|--add image       Add image from first guest\n"
"  --all                Same as: --extra-stats --times --uids --xattrs\n"
"  --atime              Don't ignore access time changes\n"
"  -A image             Add image from second guest\n"
"  --checksum[=...]     Use checksum of file content\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  --csv                Comma-Separated Values output\n"
"  --dir-links          Don't ignore directory nlink changes\n"
"  --dir-times          Don't ignore directory time changes\n"
"  -d|--domain guest    Add disks from first libvirt guest\n"
"  -D guest             Add disks from second libvirt guest\n"
"  --echo-keys          Don't turn off echo for passphrases\n"
"  --extra-stats        Display extra stats\n"
"  --format[=raw|..]    Force disk format for -a or -A option\n"
"  --help               Display brief help\n"
"  -h|--human-readable  Human-readable sizes in output\n"
"  --key selector       Specify a LUKS key\n"
"  --keys-from-stdin    Read passphrases from stdin\n"
"  --times              Display file times\n"
"  --time-days          Display file times as days before now\n"
"  --time-relative      Display file times as seconds before now\n"
"  --time-t             Display file times as time_t's\n"
"  --uids               Display UID, GID\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  -x                   Trace libguestfs API calls\n"
"  --xattrs             Display extended attributes\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: diff/diff.c:341
#, c-format
msgid "%s: error: you must specify at least one -A or -D option.\n"
msgstr ""

#: diff/diff.c:353
#, c-format
msgid ""
"%s: error: extra argument ‘%s’ on command line.\n"
"Make sure to specify the argument for --checksum or --format like '--format="
"%s'.\n"
msgstr ""

#: diff/diff.c:761
#, c-format
msgid "%s: external diff command failed\n"
msgstr ""

#: diff/diff.c:765
msgid "End of diff"
msgstr ""

#: edit/edit.c:71
#, c-format
msgid ""
"%s: Edit a file in a virtual machine\n"
"Copyright (C) 2009-2019 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] -d domname file [file ...]\n"
"  %s [--options] -a disk.img [-a disk.img ...] file [file ...]\n"
"Options:\n"
"  -a|--add image        Add image\n"
"  -b|--backup .ext      Backup original as original.ext\n"
"  -c|--connect uri      Specify libvirt URI for -d option\n"
"  -d|--domain guest     Add disks from libvirt guest\n"
"  --echo-keys           Don't turn off echo for passphrases\n"
"  -e|--edit|--expr expr Non-interactive editing using Perl expr\n"
"  --format[=raw|..]     Force disk format for -a option\n"
"  --help                Display brief help\n"
"  --key selector       Specify a LUKS key\n"
"  --keys-from-stdin     Read passphrases from stdin\n"
"  -m|--mount dev[:mnt[:opts[:fstype]]]\n"
"                        Mount dev on mnt (if omitted, /)\n"
"  -v|--verbose          Verbose messages\n"
"  -V|--version          Display version and exit\n"
"  -x                    Trace libguestfs API calls\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: edit/edit.c:173
#, c-format
msgid "-b option given multiple times"
msgstr ""

#: edit/edit.c:187
#, c-format
msgid "-e option given multiple times"
msgstr ""

#: fish/alloc.c:42
#, c-format
msgid "use 'alloc file size' to create an image\n"
msgstr ""

#: fish/alloc.c:56
#, c-format
msgid "use 'sparse file size' to create a sparse image\n"
msgstr ""

#: fish/alloc.c:105
#, c-format
msgid "%s: invalid integer parameter (%s returned %u)\n"
msgstr ""

#: cmds-gperf.gperf:1772
#, c-format
msgid "error: incorrect number of arguments\n"
msgstr ""

#: cmds-gperf.gperf:1774
#, c-format
msgid "usage: %s\n"
msgstr ""

#: cmds-gperf.gperf:1775
#, c-format
msgid "type 'help %s' for more help on %s\n"
msgstr ""

#: cmds-gperf.gperf:1780
#, c-format
msgid "%s: unknown command\n"
msgstr ""

#: fish/cmds.c:487
msgid "Command"
msgstr "Komandoa"

#: fish/cmds.c:487
msgid "Description"
msgstr "Deskribapena"

#: fish/cmds.c:489
msgid "delete the default POSIX ACL of a directory"
msgstr ""

#: fish/cmds.c:490
msgid "get the POSIX ACL attached to a file"
msgstr ""

#: fish/cmds.c:491
msgid "set the POSIX ACL attached to a file"
msgstr ""

#: fish/cmds.c:493 fish/cmds.c:496 fish/cmds.c:507 fish/cmds.c:510
#: fish/cmds.c:513 fish/cmds.c:533 fish/cmds.c:538 fish/cmds.c:557
#: fish/cmds.c:600 fish/cmds.c:639 fish/cmds.c:648 fish/cmds.c:664
#: fish/cmds.c:692 fish/cmds.c:758 fish/cmds.c:761 fish/cmds.c:836
#: fish/cmds.c:888 fish/cmds.c:896 fish/cmds.c:940 fish/cmds.c:979
#: fish/cmds.c:982 fish/cmds.c:985 fish/cmds.c:991 fish/cmds.c:1005
#: fish/cmds.c:1014 fish/cmds.c:1033 fish/cmds.c:1036 fish/cmds.c:1042
#: fish/cmds.c:1090 fish/cmds.c:1117 fish/cmds.c:1121 fish/cmds.c:1134
#: fish/cmds.c:1137 fish/cmds.c:1146 fish/cmds.c:1168
#, c-format
msgid "alias for '%s'"
msgstr ""

#: fish/cmds.c:498
msgid "add a CD-ROM disk image to examine"
msgstr ""

#: fish/cmds.c:499
msgid "add the disk(s) from a named libvirt domain"
msgstr ""

#: fish/cmds.c:500
msgid "add an image to examine or modify"
msgstr ""

#: fish/cmds.c:501
msgid "add a drive in snapshot mode (read-only)"
msgstr ""

#: fish/cmds.c:502
msgid "add a drive read-only specifying the QEMU block emulation to use"
msgstr ""

#: fish/cmds.c:503
msgid "add a temporary scratch drive"
msgstr ""

#: fish/cmds.c:504
msgid "add a drive specifying the QEMU block emulation to use"
msgstr ""

#: fish/cmds.c:505
msgid "allocate and add a disk file"
msgstr ""

#: fish/cmds.c:515
msgid "clear Augeas path"
msgstr ""

#: fish/cmds.c:516
msgid "close the current Augeas handle"
msgstr ""

#: fish/cmds.c:517
msgid "define an Augeas node"
msgstr ""

#: fish/cmds.c:518
msgid "define an Augeas variable"
msgstr ""

#: fish/cmds.c:519
msgid "look up the value of an Augeas path"
msgstr ""

#: fish/cmds.c:520
msgid "create a new Augeas handle"
msgstr ""

#: fish/cmds.c:521
msgid "insert a sibling Augeas node"
msgstr ""

#: fish/cmds.c:522
msgid "return the label from an Augeas path expression"
msgstr ""

#: fish/cmds.c:523
msgid "load files into the tree"
msgstr ""

#: fish/cmds.c:524
msgid "list Augeas nodes under augpath"
msgstr ""

#: fish/cmds.c:525
msgid "return Augeas nodes which match augpath"
msgstr ""

#: fish/cmds.c:526
msgid "move Augeas node"
msgstr ""

#: fish/cmds.c:527
msgid "remove an Augeas path"
msgstr ""

#: fish/cmds.c:528
msgid "write all pending Augeas changes to disk"
msgstr ""

#: fish/cmds.c:529
msgid "set Augeas path to value"
msgstr ""

#: fish/cmds.c:530
msgid "set multiple Augeas nodes"
msgstr ""

#: fish/cmds.c:531
msgid "add/remove an Augeas lens transformation"
msgstr ""

#: fish/cmds.c:535 fish/cmds.c:673
msgid "test availability of some parts of the API"
msgstr ""

#: fish/cmds.c:536
msgid "return a list of all optional groups"
msgstr ""

#: fish/cmds.c:540
msgid "upload base64-encoded data to file"
msgstr ""

#: fish/cmds.c:541
msgid "download file and encode as base64"
msgstr ""

#: fish/cmds.c:542
msgid "discard all blocks on a device"
msgstr ""

#: fish/cmds.c:543
msgid "return true if discarded blocks are read as zeroes"
msgstr ""

#: fish/cmds.c:544
msgid "print block device attributes"
msgstr ""

#: fish/cmds.c:545
msgid "flush device buffers"
msgstr ""

#: fish/cmds.c:546
msgid "get blocksize of block device"
msgstr ""

#: fish/cmds.c:547
msgid "is block device set to read-only"
msgstr ""

#: fish/cmds.c:548
msgid "get total size of device in bytes"
msgstr ""

#: fish/cmds.c:549
msgid "get sectorsize of block device"
msgstr ""

#: fish/cmds.c:550
msgid "get total size of device in 512-byte sectors"
msgstr ""

#: fish/cmds.c:551
msgid "reread partition table"
msgstr ""

#: fish/cmds.c:552
msgid "set blocksize of block device"
msgstr ""

#: fish/cmds.c:553
msgid "set readahead"
msgstr ""

#: fish/cmds.c:554
msgid "set block device to read-only"
msgstr ""

#: fish/cmds.c:555
msgid "set block device to read-write"
msgstr ""

#: fish/cmds.c:559
msgid "cancel a running or paused balance"
msgstr ""

#: fish/cmds.c:560
msgid "pause a running balance"
msgstr ""

#: fish/cmds.c:561
msgid "resume a paused balance"
msgstr ""

#: fish/cmds.c:562
msgid "show the status of a running or paused balance"
msgstr ""

#: fish/cmds.c:563
msgid "add devices to a btrfs filesystem"
msgstr ""

#: fish/cmds.c:564
msgid "remove devices from a btrfs filesystem"
msgstr ""

#: fish/cmds.c:565
msgid "balance a btrfs filesystem"
msgstr ""

#: fish/cmds.c:566
msgid "defragment a file or directory"
msgstr ""

#: fish/cmds.c:567
msgid "resize a btrfs filesystem"
msgstr ""

#: fish/cmds.c:568
msgid "list devices for btrfs filesystem"
msgstr ""

#: fish/cmds.c:569
msgid "sync a btrfs filesystem"
msgstr ""

#: fish/cmds.c:570
msgid "check a btrfs filesystem"
msgstr ""

#: fish/cmds.c:571
msgid "create an image of a btrfs filesystem"
msgstr ""

#: fish/cmds.c:572
msgid "add a qgroup to a parent qgroup"
msgstr ""

#: fish/cmds.c:573
msgid "create a subvolume quota group"
msgstr ""

#: fish/cmds.c:574
msgid "destroy a subvolume quota group"
msgstr ""

#: fish/cmds.c:575
msgid "limit the size of a subvolume"
msgstr ""

#: fish/cmds.c:576
msgid "remove a qgroup from its parent qgroup"
msgstr ""

#: fish/cmds.c:577
msgid "show subvolume quota groups"
msgstr ""

#: fish/cmds.c:578
msgid "enable or disable subvolume quota support"
msgstr ""

#: fish/cmds.c:579
msgid ""
"trash all qgroup numbers and scan the metadata again with the current config"
msgstr ""

#: fish/cmds.c:580
msgid "replace a btrfs managed device with another device"
msgstr ""

#: fish/cmds.c:581
msgid "recover the chunk tree of btrfs filesystem"
msgstr ""

#: fish/cmds.c:582
msgid "recover bad superblocks from good copies"
msgstr ""

#: fish/cmds.c:583
msgid "cancel a running scrub"
msgstr ""

#: fish/cmds.c:584
msgid "resume a previously canceled or interrupted scrub"
msgstr ""

#: fish/cmds.c:585
msgid "read all data from all disks and verify checksums"
msgstr ""

#: fish/cmds.c:586
msgid "show status of running or finished scrub"
msgstr ""

#: fish/cmds.c:587
msgid "enable or disable the seeding feature of device"
msgstr ""

#: fish/cmds.c:588
msgid "create a btrfs subvolume"
msgstr ""

#: fish/cmds.c:589
msgid "delete a btrfs subvolume or snapshot"
msgstr ""

#: fish/cmds.c:590
msgid "get the default subvolume or snapshot of a filesystem"
msgstr ""

#: fish/cmds.c:591
msgid "list btrfs snapshots and subvolumes"
msgstr ""

#: fish/cmds.c:592
msgid "set default btrfs subvolume"
msgstr ""

#: fish/cmds.c:593
msgid "return detailed information of the subvolume"
msgstr ""

#: fish/cmds.c:594
msgid "create a btrfs snapshot"
msgstr ""

#: fish/cmds.c:595
msgid "enable extended inode refs"
msgstr ""

#: fish/cmds.c:596
msgid "enable skinny metadata extent refs"
msgstr ""

#: fish/cmds.c:597
msgid "enable or disable seeding of a btrfs device"
msgstr ""

#: fish/cmds.c:598
msgid "return the C pointer to the guestfs_h handle"
msgstr ""

#: fish/cmds.c:602
msgid "return canonical device name"
msgstr ""

#: fish/cmds.c:603
msgid "get the Linux capabilities attached to a file"
msgstr ""

#: fish/cmds.c:604
msgid "set the Linux capabilities attached to a file"
msgstr ""

#: fish/cmds.c:605
msgid "return true path on case-insensitive filesystem"
msgstr ""

#: fish/cmds.c:606
msgid "list the contents of a file"
msgstr ""

#: fish/cmds.c:607
msgid "compute MD5, SHAx or CRC checksum of file"
msgstr ""

#: fish/cmds.c:608
msgid "compute MD5, SHAx or CRC checksum of the contents of a device"
msgstr ""

#: fish/cmds.c:609
msgid "compute MD5, SHAx or CRC checksum of files in a directory"
msgstr ""

#: fish/cmds.c:610
msgid "change file mode"
msgstr "aldatu fitxategiaren modua"

#: fish/cmds.c:611 fish/cmds.c:824
msgid "change file owner and group"
msgstr "aldatu fitxategiaren jabea eta taldea"

#: fish/cmds.c:612
msgid "remove a single per-backend settings string"
msgstr ""

#: fish/cmds.c:613
msgid "run a command from the guest filesystem"
msgstr ""

#: fish/cmds.c:614
msgid "run a command, returning lines"
msgstr ""

#: fish/cmds.c:615
msgid "output compressed device"
msgstr ""

#: fish/cmds.c:616
msgid "output compressed file"
msgstr ""

#: fish/cmds.c:617
msgid "add hypervisor parameters"
msgstr ""

#: fish/cmds.c:618
msgid "copy the attributes of a path (file/directory) to another"
msgstr ""

#: fish/cmds.c:619
msgid "copy from source device to destination device"
msgstr ""

#: fish/cmds.c:620
msgid "copy from source device to destination file"
msgstr ""

#: fish/cmds.c:621
msgid "copy from source file to destination device"
msgstr ""

#: fish/cmds.c:622
msgid "copy from source file to destination file"
msgstr ""

#: fish/cmds.c:623
msgid "copy local files or directories into an image"
msgstr ""

#: fish/cmds.c:624
msgid "copy remote files or directories out of an image"
msgstr ""

#: fish/cmds.c:625
msgid "copy size bytes from source to destination using dd"
msgstr ""

#: fish/cmds.c:626
msgid "copy a file"
msgstr "kopiatu fitxategi bat"

#: fish/cmds.c:627 fish/cmds.c:628
msgid "copy a file or directory recursively"
msgstr "kopiatu fitxategi edo direktorio bat errekurtsiboki"

#: fish/cmds.c:629
msgid "pack directory into cpio file"
msgstr ""

#: fish/cmds.c:630
msgid "copy from source to destination using dd"
msgstr "kopiatu jatorritik helburura dd erabiliz"

#: fish/cmds.c:631
msgid "debugging and internals"
msgstr ""

#: fish/cmds.c:632
msgid "debug the drives (internal use only)"
msgstr ""

#: fish/cmds.c:633
msgid "upload a file to the appliance (internal use only)"
msgstr ""

#: fish/cmds.c:634
msgid "delete a previously registered event handler"
msgstr ""

#: fish/cmds.c:635
msgid "convert device to index"
msgstr ""

#: fish/cmds.c:636
msgid "report file system disk space usage"
msgstr ""

#: fish/cmds.c:637
msgid "report file system disk space usage (human readable)"
msgstr ""

#: fish/cmds.c:641
msgid "create a blank disk image"
msgstr ""

#: fish/cmds.c:642
msgid "detect the disk format of a disk image"
msgstr ""

#: fish/cmds.c:643
msgid "return whether disk has a backing file"
msgstr ""

#: fish/cmds.c:644
msgid "return virtual size of a disk"
msgstr ""

#: fish/cmds.c:645
msgid "display an image"
msgstr ""

#: fish/cmds.c:646
msgid "return kernel messages"
msgstr ""

#: fish/cmds.c:650
msgid "download a file to the local machine"
msgstr ""

#: fish/cmds.c:651
msgid "download the given data units from the disk"
msgstr ""

#: fish/cmds.c:652 fish/cmds.c:944
msgid "download a file to the local machine given its inode"
msgstr ""

#: fish/cmds.c:653
msgid "download a file to the local machine with offset and size"
msgstr ""

#: fish/cmds.c:654
msgid "drop kernel page cache, dentries and inodes"
msgstr ""

#: fish/cmds.c:655
msgid "estimate file space usage"
msgstr ""

#: fish/cmds.c:656 fish/cmds.c:657
msgid "check an ext2/ext3 filesystem"
msgstr ""

#: fish/cmds.c:658
msgid "display a line of text"
msgstr ""

#: fish/cmds.c:659
msgid "echo arguments back to the client"
msgstr ""

#: fish/cmds.c:660
msgid "edit a file"
msgstr "editatu fitxategi bat"

#: fish/cmds.c:661 fish/cmds.c:662 fish/cmds.c:674 fish/cmds.c:675
#: fish/cmds.c:732 fish/cmds.c:733 fish/cmds.c:1184 fish/cmds.c:1185
#: fish/cmds.c:1190 fish/cmds.c:1191 fish/cmds.c:1193 fish/cmds.c:1194
msgid "return lines matching a pattern"
msgstr ""

#: fish/cmds.c:666
msgid "test if two files have equal contents"
msgstr ""

#: fish/cmds.c:667
msgid "register a handler for an event or events"
msgstr ""

#: fish/cmds.c:668
msgid "test if file or directory exists"
msgstr ""

#: fish/cmds.c:669
msgid "install the SYSLINUX bootloader on an ext2/3/4 or btrfs filesystem"
msgstr ""

#: fish/cmds.c:670
msgid "expand a f2fs filesystem"
msgstr ""

#: fish/cmds.c:671 fish/cmds.c:672
msgid "preallocate a file in the guest filesystem"
msgstr ""

#: fish/cmds.c:676
msgid "determine file type"
msgstr ""

#: fish/cmds.c:677
msgid "detect the architecture of a binary file"
msgstr ""

#: fish/cmds.c:678
msgid "return the size of the file in bytes"
msgstr ""

#: fish/cmds.c:679
msgid "check if filesystem is available"
msgstr ""

#: fish/cmds.c:680
msgid "walk through the filesystem content"
msgstr ""

#: fish/cmds.c:681
msgid "fill a file with octets"
msgstr ""

#: fish/cmds.c:682
msgid "fill a directory with empty files"
msgstr ""

#: fish/cmds.c:683
msgid "fill a file with a repeating pattern of bytes"
msgstr ""

#: fish/cmds.c:684
msgid "find all files and directories"
msgstr ""

#: fish/cmds.c:685
msgid "find all files and directories, returning NUL-separated list"
msgstr ""

#: fish/cmds.c:686
msgid "search the entries associated to the given inode"
msgstr ""

#: fish/cmds.c:687
msgid "find a filesystem by label"
msgstr ""

#: fish/cmds.c:688
msgid "find a filesystem by UUID"
msgstr ""

#: fish/cmds.c:689
msgid "run the filesystem checker"
msgstr ""

#: fish/cmds.c:690
msgid "trim free space in a filesystem"
msgstr ""

#: fish/cmds.c:694
msgid "get the additional kernel options"
msgstr ""

#: fish/cmds.c:695 fish/cmds.c:697
msgid "get the backend"
msgstr ""

#: fish/cmds.c:696
msgid "get autosync mode"
msgstr ""

#: fish/cmds.c:698
msgid "get a single per-backend settings string"
msgstr ""

#: fish/cmds.c:699
msgid "get per-backend settings"
msgstr ""

#: fish/cmds.c:700
msgid "get the appliance cache directory"
msgstr ""

#: fish/cmds.c:701
msgid "get direct appliance mode flag"
msgstr ""

#: fish/cmds.c:702
msgid "get ext2 file attributes of a file"
msgstr ""

#: fish/cmds.c:703
msgid "get ext2 file generation of a file"
msgstr ""

#: fish/cmds.c:704
msgid "get the ext2/3/4 filesystem label"
msgstr ""

#: fish/cmds.c:705
msgid "get the ext2/3/4 filesystem UUID"
msgstr ""

#: fish/cmds.c:706
msgid "get the hypervisor binary"
msgstr ""

#: fish/cmds.c:707
msgid "get the handle identifier"
msgstr ""

#: fish/cmds.c:708
msgid "challenge of i'th requested credential"
msgstr ""

#: fish/cmds.c:709
msgid "default result of i'th requested credential"
msgstr ""

#: fish/cmds.c:710
msgid "prompt of i'th requested credential"
msgstr ""

#: fish/cmds.c:711
msgid "get list of credentials requested by libvirt"
msgstr ""

#: fish/cmds.c:712
msgid "get memory allocated to the hypervisor"
msgstr ""

#: fish/cmds.c:713
msgid "get enable network flag"
msgstr ""

#: fish/cmds.c:714
msgid "get the search path"
msgstr ""

#: fish/cmds.c:715
msgid "get process group flag"
msgstr ""

#: fish/cmds.c:716
msgid "get PID of hypervisor"
msgstr ""

#: fish/cmds.c:717
msgid "get the program name"
msgstr ""

#: fish/cmds.c:718
msgid "get the hypervisor binary (usually qemu)"
msgstr ""

#: fish/cmds.c:719
msgid "get recovery process enabled flag"
msgstr ""

#: fish/cmds.c:720
msgid "get SELinux enabled flag"
msgstr ""

#: fish/cmds.c:721
msgid "get number of virtual CPUs in appliance"
msgstr ""

#: fish/cmds.c:722
msgid "get the temporary directory for sockets"
msgstr ""

#: fish/cmds.c:723
msgid "get the temporary directory"
msgstr ""

#: fish/cmds.c:724
msgid "get command trace enabled flag"
msgstr ""

#: fish/cmds.c:725
msgid "get the current umask"
msgstr ""

#: fish/cmds.c:726
msgid "get verbose mode"
msgstr ""

#: fish/cmds.c:727
msgid "get SELinux security context"
msgstr ""

#: fish/cmds.c:728 fish/cmds.c:838
msgid "get a single extended attribute"
msgstr ""

#: fish/cmds.c:729 fish/cmds.c:839
msgid "list extended attributes of a file or directory"
msgstr ""

#: fish/cmds.c:730
msgid "expand wildcards in command"
msgstr ""

#: fish/cmds.c:731
msgid "expand a wildcard path"
msgstr ""

#: fish/cmds.c:734
msgid "install GRUB 1"
msgstr ""

#: fish/cmds.c:735
msgid "return first 10 lines of a file"
msgstr ""

#: fish/cmds.c:736
msgid "return first N lines of a file"
msgstr ""

#: fish/cmds.c:737
msgid "dump a file in hexadecimal"
msgstr ""

#: fish/cmds.c:738
msgid "edit with a hex editor"
msgstr ""

#: fish/cmds.c:739
msgid "close the current hivex handle"
msgstr ""

#: fish/cmds.c:740
msgid "commit (write) changes back to the hive"
msgstr ""

#: fish/cmds.c:741
msgid "add a child node"
msgstr ""

#: fish/cmds.c:742
msgid "return list of nodes which are subkeys of node"
msgstr ""

#: fish/cmds.c:743
msgid "delete a node (recursively)"
msgstr ""

#: fish/cmds.c:744
msgid "return the named child of node"
msgstr ""

#: fish/cmds.c:745
msgid "return the named value"
msgstr ""

#: fish/cmds.c:746
msgid "return the name of the node"
msgstr ""

#: fish/cmds.c:747
msgid "return the parent of node"
msgstr ""

#: fish/cmds.c:748
msgid "set or replace a single value in a node"
msgstr ""

#: fish/cmds.c:749
msgid "return list of values attached to node"
msgstr ""

#: fish/cmds.c:750
msgid "open a Windows Registry hive file"
msgstr ""

#: fish/cmds.c:751
msgid "return the root node of the hive"
msgstr ""

#: fish/cmds.c:752
msgid "return the key field from the (key, datatype, data) tuple"
msgstr ""

#: fish/cmds.c:753 fish/cmds.c:755
msgid "return the data field as a UTF-8 string"
msgstr ""

#: fish/cmds.c:754
msgid "return the data type from the (key, datatype, data) tuple"
msgstr ""

#: fish/cmds.c:756
msgid "return the data field from the (key, datatype, data) tuple"
msgstr ""

#: fish/cmds.c:763
msgid "list the contents of a single file in an initrd"
msgstr ""

#: fish/cmds.c:764
msgid "list files in an initrd"
msgstr ""

#: fish/cmds.c:765
msgid "add an inotify watch"
msgstr ""

#: fish/cmds.c:766
msgid "close the inotify handle"
msgstr ""

#: fish/cmds.c:767
msgid "return list of watched files that had events"
msgstr ""

#: fish/cmds.c:768
msgid "create an inotify handle"
msgstr ""

#: fish/cmds.c:769
msgid "return list of inotify events"
msgstr ""

#: fish/cmds.c:770
msgid "remove an inotify watch"
msgstr ""

#: fish/cmds.c:771
msgid "get architecture of inspected operating system"
msgstr ""

#: fish/cmds.c:772
msgid "get distro of inspected operating system"
msgstr ""

#: fish/cmds.c:773
msgid "get drive letter mappings"
msgstr ""

#: fish/cmds.c:774
msgid "get filesystems associated with inspected operating system"
msgstr ""

#: fish/cmds.c:775
msgid "get format of inspected operating system"
msgstr ""

#: fish/cmds.c:776
msgid "get hostname of the operating system"
msgstr ""

#: fish/cmds.c:777
msgid "get the icon corresponding to this operating system"
msgstr ""

#: fish/cmds.c:778
msgid "get major version of inspected operating system"
msgstr ""

#: fish/cmds.c:779
msgid "get minor version of inspected operating system"
msgstr ""

#: fish/cmds.c:780
msgid "get mountpoints of inspected operating system"
msgstr ""

#: fish/cmds.c:781
msgid "get a possible osinfo short ID corresponding to this operating system"
msgstr ""

#: fish/cmds.c:782
msgid "get package format used by the operating system"
msgstr ""

#: fish/cmds.c:783
msgid "get package management tool used by the operating system"
msgstr ""

#: fish/cmds.c:784
msgid "get product name of inspected operating system"
msgstr ""

#: fish/cmds.c:785
msgid "get product variant of inspected operating system"
msgstr ""

#: fish/cmds.c:786
msgid "return list of operating systems found by last inspection"
msgstr ""

#: fish/cmds.c:787
msgid "get type of inspected operating system"
msgstr ""

#: fish/cmds.c:788
msgid "get Windows CurrentControlSet of inspected operating system"
msgstr ""

#: fish/cmds.c:789
msgid "get the path of the Windows software hive"
msgstr ""

#: fish/cmds.c:790
msgid "get the path of the Windows system hive"
msgstr ""

#: fish/cmds.c:791
msgid "get Windows systemroot of inspected operating system"
msgstr ""

#: fish/cmds.c:792
msgid "get live flag for install disk"
msgstr ""

#: fish/cmds.c:793
msgid "get multipart flag for install disk"
msgstr ""

#: fish/cmds.c:794
msgid "get netinst (network installer) flag for install disk"
msgstr ""

#: fish/cmds.c:795 fish/cmds.c:796
msgid "get list of applications installed in the operating system"
msgstr ""

#: fish/cmds.c:797
msgid "inspect disk and return list of operating systems found"
msgstr ""

#: fish/cmds.c:798
msgid "cause the daemon to exit (internal use only)"
msgstr ""

#: fish/cmds.c:799
msgid "test if block device"
msgstr ""

#: fish/cmds.c:800
msgid "test if character device"
msgstr ""

#: fish/cmds.c:801
msgid "is in configuration state"
msgstr ""

#: fish/cmds.c:802
msgid "test if a directory"
msgstr ""

#: fish/cmds.c:803
msgid "test if FIFO (named pipe)"
msgstr ""

#: fish/cmds.c:804
msgid "test if a regular file"
msgstr ""

#: fish/cmds.c:805
msgid "test if mountable is a logical volume"
msgstr ""

#: fish/cmds.c:806
msgid "test if socket"
msgstr ""

#: fish/cmds.c:807
msgid "test if symbolic link"
msgstr ""

#: fish/cmds.c:808
msgid "test if a device is a whole device"
msgstr ""

#: fish/cmds.c:809
msgid "test if a file contains all zero bytes"
msgstr ""

#: fish/cmds.c:810
msgid "test if a device contains all zero bytes"
msgstr ""

#: fish/cmds.c:811
msgid "get ISO information from primary volume descriptor of ISO file"
msgstr ""

#: fish/cmds.c:812
msgid "get ISO information from primary volume descriptor of device"
msgstr ""

#: fish/cmds.c:813
msgid "close the systemd journal"
msgstr ""

#: fish/cmds.c:814
msgid "read the current journal entry"
msgstr ""

#: fish/cmds.c:815
msgid "get the data threshold for reading journal entries"
msgstr ""

#: fish/cmds.c:816
msgid "get the timestamp of the current journal entry"
msgstr ""

#: fish/cmds.c:817
msgid "move to the next journal entry"
msgstr ""

#: fish/cmds.c:818
msgid "open the systemd journal"
msgstr ""

#: fish/cmds.c:819
msgid "set the data threshold for reading journal entries"
msgstr ""

#: fish/cmds.c:820
msgid "skip forwards or backwards in the journal"
msgstr ""

#: fish/cmds.c:821
msgid "kill the hypervisor"
msgstr ""

#: fish/cmds.c:822
msgid "launch the backend"
msgstr ""

#: fish/cmds.c:823
msgid "change working directory"
msgstr ""

#: fish/cmds.c:825
msgid "scan and create Windows dynamic disk volumes"
msgstr ""

#: fish/cmds.c:826
msgid "return the disks in a Windows dynamic disk group"
msgstr ""

#: fish/cmds.c:827
msgid "return the name of a Windows dynamic disk group"
msgstr ""

#: fish/cmds.c:828
msgid "return the volumes in a Windows dynamic disk group"
msgstr ""

#: fish/cmds.c:829
msgid "remove all Windows dynamic disk volumes"
msgstr ""

#: fish/cmds.c:830 fish/cmds.c:831
msgid "scan for Windows dynamic disks"
msgstr ""

#: fish/cmds.c:832
msgid "return the hint field of a Windows dynamic disk volume"
msgstr ""

#: fish/cmds.c:833
msgid "return the partitions in a Windows dynamic disk volume"
msgstr ""

#: fish/cmds.c:834
msgid "return the type of a Windows dynamic disk volume"
msgstr ""

#: fish/cmds.c:840
msgid "list 9p filesystems"
msgstr ""

#: fish/cmds.c:841
msgid "list the block devices"
msgstr ""

#: fish/cmds.c:842
msgid "mapping of disk labels to devices"
msgstr ""

#: fish/cmds.c:843
msgid "list device mapper devices"
msgstr ""

#: fish/cmds.c:844
msgid "list event handlers"
msgstr ""

#: fish/cmds.c:845
msgid "list filesystems"
msgstr ""

#: fish/cmds.c:846
msgid "list all Windows dynamic disk partitions"
msgstr ""

#: fish/cmds.c:847
msgid "list all Windows dynamic disk volumes"
msgstr ""

#: fish/cmds.c:848
msgid "list Linux md (RAID) devices"
msgstr ""

#: fish/cmds.c:849
msgid "list the partitions"
msgstr ""

#: fish/cmds.c:850
msgid "list the files in a directory (long format)"
msgstr ""

#: fish/cmds.c:851
msgid "list the files in a directory (long format with SELinux contexts)"
msgstr ""

#: fish/cmds.c:852 fish/cmds.c:853
msgid "create a hard link"
msgstr ""

#: fish/cmds.c:854 fish/cmds.c:855
msgid "create a symbolic link"
msgstr ""

#: fish/cmds.c:856 fish/cmds.c:1018
msgid "remove extended attribute of a file or directory"
msgstr ""

#: fish/cmds.c:857
msgid "list the files in a directory"
msgstr ""

#: fish/cmds.c:858
msgid "get list of files in a directory"
msgstr ""

#: fish/cmds.c:859 fish/cmds.c:1078
msgid "set extended attribute of a file or directory"
msgstr ""

#: fish/cmds.c:860 fish/cmds.c:862
msgid "get file information for a symbolic link"
msgstr ""

#: fish/cmds.c:861 fish/cmds.c:863
msgid "lstat on multiple files"
msgstr ""

#: fish/cmds.c:864
msgid "add a key on a LUKS encrypted device"
msgstr ""

#: fish/cmds.c:865
msgid "close a LUKS device"
msgstr ""

#: fish/cmds.c:866 fish/cmds.c:867
msgid "format a block device as a LUKS encrypted device"
msgstr ""

#: fish/cmds.c:868
msgid "remove a key from a LUKS encrypted device"
msgstr ""

#: fish/cmds.c:869
msgid "open a LUKS-encrypted block device"
msgstr ""

#: fish/cmds.c:870
msgid "open a LUKS-encrypted block device read-only"
msgstr ""

#: fish/cmds.c:871
msgid "create an LVM logical volume"
msgstr ""

#: fish/cmds.c:872
msgid "create an LVM logical volume in % remaining free space"
msgstr ""

#: fish/cmds.c:873
msgid "get canonical name of an LV"
msgstr ""

#: fish/cmds.c:874
msgid "clear LVM device filter"
msgstr ""

#: fish/cmds.c:875
msgid "remove all LVM LVs, VGs and PVs"
msgstr ""

#: fish/cmds.c:876
msgid "scan for LVM physical volumes, volume groups and logical volumes"
msgstr ""

#: fish/cmds.c:877
msgid "set LVM device filter"
msgstr ""

#: fish/cmds.c:878
msgid "remove an LVM logical volume"
msgstr ""

#: fish/cmds.c:879
msgid "rename an LVM logical volume"
msgstr ""

#: fish/cmds.c:880
msgid "resize an LVM logical volume"
msgstr ""

#: fish/cmds.c:881
msgid "expand an LV to fill free space"
msgstr ""

#: fish/cmds.c:882 fish/cmds.c:883
msgid "list the LVM logical volumes (LVs)"
msgstr ""

#: fish/cmds.c:884
msgid "get the UUID of a logical volume"
msgstr ""

#: fish/cmds.c:885
msgid "lgetxattr on multiple files"
msgstr ""

#: fish/cmds.c:886
msgid "open the manual"
msgstr ""

#: fish/cmds.c:890
msgid "maximum number of disks that may be added"
msgstr ""

#: fish/cmds.c:891
msgid "create a Linux md (RAID) device"
msgstr ""

#: fish/cmds.c:892
msgid "obtain metadata for an MD device"
msgstr ""

#: fish/cmds.c:893
msgid "get underlying devices from an MD device"
msgstr ""

#: fish/cmds.c:894
msgid "stop a Linux md (RAID) device"
msgstr ""

#: fish/cmds.c:898
msgid "create a directory"
msgstr ""

#: fish/cmds.c:899
msgid "create a directory with a particular mode"
msgstr ""

#: fish/cmds.c:900
msgid "create a directory and parents"
msgstr ""

#: fish/cmds.c:901
msgid "create a temporary directory"
msgstr ""

#: fish/cmds.c:902
msgid "create an ext2/ext3/ext4 filesystem on device"
msgstr ""

#: fish/cmds.c:903 fish/cmds.c:904 fish/cmds.c:905
msgid "make ext2/3/4 filesystem with external journal"
msgstr ""

#: fish/cmds.c:906
msgid "make ext2/3/4 external journal"
msgstr ""

#: fish/cmds.c:907
msgid "make ext2/3/4 external journal with label"
msgstr ""

#: fish/cmds.c:908
msgid "make ext2/3/4 external journal with UUID"
msgstr ""

#: fish/cmds.c:909
msgid "make FIFO (named pipe)"
msgstr ""

#: fish/cmds.c:910
msgid "make a filesystem"
msgstr ""

#: fish/cmds.c:911
msgid "make a filesystem with block size"
msgstr ""

#: fish/cmds.c:912
msgid "create a btrfs filesystem"
msgstr ""

#: fish/cmds.c:913
msgid "make lost+found directory on an ext2/3/4 filesystem"
msgstr ""

#: fish/cmds.c:914
msgid "create a mountpoint"
msgstr ""

#: fish/cmds.c:915
msgid "make block, character or FIFO devices"
msgstr ""

#: fish/cmds.c:916
msgid "make block device node"
msgstr ""

#: fish/cmds.c:917
msgid "make char device node"
msgstr ""

#: fish/cmds.c:918
msgid "create a squashfs filesystem"
msgstr ""

#: fish/cmds.c:919
msgid "create a swap partition"
msgstr ""

#: fish/cmds.c:920
msgid "create a swap partition with a label"
msgstr ""

#: fish/cmds.c:921
msgid "create a swap partition with an explicit UUID"
msgstr ""

#: fish/cmds.c:922
msgid "create a swap file"
msgstr ""

#: fish/cmds.c:923
msgid "create a temporary file"
msgstr ""

#: fish/cmds.c:924
msgid "load a kernel module"
msgstr ""

#: fish/cmds.c:925
msgid "view a file"
msgstr ""

#: fish/cmds.c:926
msgid "mount a guest disk at a position in the filesystem"
msgstr ""

#: fish/cmds.c:927
msgid "mount 9p filesystem"
msgstr ""

#: fish/cmds.c:928
msgid "mount on the local filesystem"
msgstr ""

#: fish/cmds.c:929
msgid "run main loop of mount on the local filesystem"
msgstr ""

#: fish/cmds.c:930
msgid "mount a file using the loop device"
msgstr ""

#: fish/cmds.c:931
msgid "mount a guest disk with mount options"
msgstr ""

#: fish/cmds.c:932
msgid "mount a guest disk, read-only"
msgstr ""

#: fish/cmds.c:933
msgid "mount a guest disk with mount options and vfstype"
msgstr ""

#: fish/cmds.c:934
msgid "extract the device part of a mountable"
msgstr ""

#: fish/cmds.c:935
msgid "extract the subvolume part of a mountable"
msgstr ""

#: fish/cmds.c:936
msgid "show mountpoints"
msgstr ""

#: fish/cmds.c:937
msgid "show mounted filesystems"
msgstr ""

#: fish/cmds.c:938
msgid "move a file"
msgstr ""

#: fish/cmds.c:942
msgid "return number of whole block devices (disks) added"
msgstr ""

#: fish/cmds.c:943
msgid "probe NTFS volume"
msgstr ""

#: fish/cmds.c:945
msgid "restore NTFS from backup file"
msgstr ""

#: fish/cmds.c:946
msgid "save NTFS to backup file"
msgstr ""

#: fish/cmds.c:947
msgid "fix common errors and force Windows to check NTFS"
msgstr ""

#: fish/cmds.c:948
msgid "resize an NTFS filesystem"
msgstr ""

#: fish/cmds.c:949
msgid "resize an NTFS filesystem (with size)"
msgstr ""

#: fish/cmds.c:950 fish/cmds.c:951
msgid "parse the environment and set handle flags accordingly"
msgstr ""

#: fish/cmds.c:952
msgid "add a partition to the device"
msgstr ""

#: fish/cmds.c:953
msgid "delete a partition"
msgstr ""

#: fish/cmds.c:954
msgid "partition whole disk with a single primary partition"
msgstr ""

#: fish/cmds.c:955
msgid "move backup GPT header to the end of the disk"
msgstr ""

#: fish/cmds.c:956
msgid "return true if a partition is bootable"
msgstr ""

#: fish/cmds.c:957
msgid "get the GUID of a GPT-partitioned disk"
msgstr ""

#: fish/cmds.c:958
msgid "get the attribute flags of a GPT partition"
msgstr ""

#: fish/cmds.c:959
msgid "get the GUID of a GPT partition"
msgstr ""

#: fish/cmds.c:960
msgid "get the type GUID of a GPT partition"
msgstr ""

#: fish/cmds.c:961
msgid "get the MBR type byte (ID byte) from a partition"
msgstr ""

#: fish/cmds.c:962
msgid "get the MBR partition type"
msgstr ""

#: fish/cmds.c:963
msgid "get partition name"
msgstr ""

#: fish/cmds.c:964
msgid "get the partition table type"
msgstr ""

#: fish/cmds.c:965
msgid "create an empty partition table"
msgstr ""

#: fish/cmds.c:966
msgid "list partitions on a device"
msgstr ""

#: fish/cmds.c:967
msgid "resize a partition"
msgstr ""

#: fish/cmds.c:968
msgid "make a partition bootable"
msgstr ""

#: fish/cmds.c:969
msgid "set the GUID of a GPT-partitioned disk"
msgstr ""

#: fish/cmds.c:970
msgid "set the GUID of a GPT-partitioned disk to random value"
msgstr ""

#: fish/cmds.c:971
msgid "set the attribute flags of a GPT partition"
msgstr ""

#: fish/cmds.c:972
msgid "set the GUID of a GPT partition"
msgstr ""

#: fish/cmds.c:973
msgid "set the type GUID of a GPT partition"
msgstr ""

#: fish/cmds.c:974
msgid "set the MBR type byte (ID byte) of a partition"
msgstr ""

#: fish/cmds.c:975
msgid "set partition name"
msgstr ""

#: fish/cmds.c:976
msgid "convert partition name to device name"
msgstr ""

#: fish/cmds.c:977
msgid "convert partition name to partition number"
msgstr ""

#: fish/cmds.c:987
msgid "ping the guest daemon"
msgstr ""

#: fish/cmds.c:988
msgid "read part of a file"
msgstr ""

#: fish/cmds.c:989
msgid "read part of a device"
msgstr ""

#: fish/cmds.c:993
msgid "generate a new random UUID for a physical volume"
msgstr ""

#: fish/cmds.c:994
msgid "generate new random UUIDs for all physical volumes"
msgstr ""

#: fish/cmds.c:995
msgid "create an LVM physical volume"
msgstr ""

#: fish/cmds.c:996
msgid "remove an LVM physical volume"
msgstr ""

#: fish/cmds.c:997
msgid "resize an LVM physical volume"
msgstr ""

#: fish/cmds.c:998
msgid "resize an LVM physical volume (with size)"
msgstr ""

#: fish/cmds.c:999 fish/cmds.c:1000
msgid "list the LVM physical volumes (PVs)"
msgstr ""

#: fish/cmds.c:1001
msgid "get the UUID of a physical volume"
msgstr ""

#: fish/cmds.c:1002
msgid "write to part of a file"
msgstr ""

#: fish/cmds.c:1003
msgid "write to part of a device"
msgstr ""

#: fish/cmds.c:1007
msgid "read a file"
msgstr ""

#: fish/cmds.c:1008
msgid "read file as lines"
msgstr ""

#: fish/cmds.c:1009
msgid "read directories entries"
msgstr ""

#: fish/cmds.c:1010
msgid "read the target of a symbolic link"
msgstr ""

#: fish/cmds.c:1011
msgid "readlink on multiple files"
msgstr ""

#: fish/cmds.c:1012
msgid "canonicalized absolute pathname"
msgstr ""

#: fish/cmds.c:1016
msgid "remount a filesystem with different options"
msgstr ""

#: fish/cmds.c:1017
msgid "remove a disk image"
msgstr ""

#: fish/cmds.c:1019
msgid "rename a file on the same filesystem"
msgstr ""

#: fish/cmds.c:1020
msgid "close and reopen libguestfs handle"
msgstr ""

#: fish/cmds.c:1021
msgid "resize an ext2, ext3 or ext4 filesystem"
msgstr ""

#: fish/cmds.c:1022
msgid "resize an ext2, ext3 or ext4 filesystem to the minimum size"
msgstr ""

#: fish/cmds.c:1023
msgid "resize an ext2, ext3 or ext4 filesystem (with size)"
msgstr ""

#: fish/cmds.c:1024
msgid "remove a file"
msgstr ""

#: fish/cmds.c:1025
msgid "remove a file ignoring errors"
msgstr ""

#: fish/cmds.c:1026
msgid "remove a file or directory recursively"
msgstr ""

#: fish/cmds.c:1027
msgid "remove a directory"
msgstr ""

#: fish/cmds.c:1028
msgid "remove a mountpoint"
msgstr ""

#: fish/cmds.c:1029
msgid "synchronize the contents of two directories"
msgstr ""

#: fish/cmds.c:1030
msgid "synchronize host or remote filesystem with filesystem"
msgstr ""

#: fish/cmds.c:1031
msgid "synchronize filesystem with host or remote filesystem"
msgstr ""

#: fish/cmds.c:1038
msgid "scrub (securely wipe) a device"
msgstr ""

#: fish/cmds.c:1039
msgid "scrub (securely wipe) a file"
msgstr ""

#: fish/cmds.c:1040
msgid "scrub (securely wipe) free space"
msgstr ""

#: fish/cmds.c:1044
msgid "relabel parts of the filesystem"
msgstr ""

#: fish/cmds.c:1045
msgid "add options to kernel command line"
msgstr ""

#: fish/cmds.c:1046 fish/cmds.c:1048
msgid "set the backend"
msgstr ""

#: fish/cmds.c:1047
msgid "set autosync mode"
msgstr ""

#: fish/cmds.c:1049
msgid "set a single per-backend settings string"
msgstr ""

#: fish/cmds.c:1050
msgid "replace per-backend settings strings"
msgstr ""

#: fish/cmds.c:1051
msgid "set the appliance cache directory"
msgstr ""

#: fish/cmds.c:1052
msgid "enable or disable direct appliance mode"
msgstr ""

#: fish/cmds.c:1053
msgid "set ext2 file attributes of a file"
msgstr ""

#: fish/cmds.c:1054
msgid "set ext2 file generation of a file"
msgstr ""

#: fish/cmds.c:1055
msgid "set the ext2/3/4 filesystem label"
msgstr ""

#: fish/cmds.c:1056
msgid "set the ext2/3/4 filesystem UUID"
msgstr ""

#: fish/cmds.c:1057
msgid "set the hypervisor binary"
msgstr ""

#: fish/cmds.c:1058
msgid "set the handle identifier"
msgstr ""

#: fish/cmds.c:1059
msgid "set filesystem label"
msgstr ""

#: fish/cmds.c:1060
msgid "pass requested credential back to libvirt"
msgstr ""

#: fish/cmds.c:1061
msgid "set libvirt credentials supported by calling program"
msgstr ""

#: fish/cmds.c:1062
msgid "set memory allocated to the hypervisor"
msgstr ""

#: fish/cmds.c:1063
msgid "set enable network flag"
msgstr ""

#: fish/cmds.c:1064
msgid "set the search path"
msgstr ""

#: fish/cmds.c:1065
msgid "set process group flag"
msgstr ""

#: fish/cmds.c:1066
msgid "set the program name"
msgstr ""

#: fish/cmds.c:1067
msgid "set the hypervisor binary (usually qemu)"
msgstr ""

#: fish/cmds.c:1068
msgid "enable or disable the recovery process"
msgstr ""

#: fish/cmds.c:1069
msgid "set SELinux enabled or disabled at appliance boot"
msgstr ""

#: fish/cmds.c:1070
msgid "set number of virtual CPUs in appliance"
msgstr ""

#: fish/cmds.c:1071
msgid "set the temporary directory"
msgstr ""

#: fish/cmds.c:1072
msgid "enable or disable command traces"
msgstr ""

#: fish/cmds.c:1073
msgid "set the filesystem UUID"
msgstr ""

#: fish/cmds.c:1074
msgid "set a random UUID for the filesystem"
msgstr ""

#: fish/cmds.c:1075
msgid "set verbose mode"
msgstr ""

#: fish/cmds.c:1076
msgid "set SELinux security context"
msgstr ""

#: fish/cmds.c:1077
msgid "set an environment variable"
msgstr ""

#: fish/cmds.c:1079 fish/cmds.c:1080
msgid "create partitions on a block device"
msgstr ""

#: fish/cmds.c:1081
msgid "modify a single partition on a block device"
msgstr ""

#: fish/cmds.c:1082
msgid "display the disk geometry from the partition table"
msgstr ""

#: fish/cmds.c:1083
msgid "display the kernel geometry"
msgstr ""

#: fish/cmds.c:1084
msgid "display the partition table"
msgstr ""

#: fish/cmds.c:1085
msgid "run a command via the shell"
msgstr ""

#: fish/cmds.c:1086
msgid "run a command via the shell returning lines"
msgstr ""

#: fish/cmds.c:1087
msgid "shutdown the hypervisor"
msgstr ""

#: fish/cmds.c:1088
msgid "sleep for some seconds"
msgstr ""

#: fish/cmds.c:1092
msgid "create a sparse disk image and add"
msgstr ""

#: fish/cmds.c:1093 fish/cmds.c:1094
msgid "get file information"
msgstr ""

#: fish/cmds.c:1095
msgid "get file system statistics"
msgstr ""

#: fish/cmds.c:1096 fish/cmds.c:1097
msgid "print the printable strings in a file"
msgstr ""

#: fish/cmds.c:1098
msgid "list supported groups of commands"
msgstr ""

#: fish/cmds.c:1099
msgid "disable swap on device"
msgstr ""

#: fish/cmds.c:1100
msgid "disable swap on file"
msgstr ""

#: fish/cmds.c:1101
msgid "disable swap on labeled swap partition"
msgstr ""

#: fish/cmds.c:1102
msgid "disable swap on swap partition by UUID"
msgstr ""

#: fish/cmds.c:1103
msgid "enable swap on device"
msgstr ""

#: fish/cmds.c:1104
msgid "enable swap on file"
msgstr ""

#: fish/cmds.c:1105
msgid "enable swap on labeled swap partition"
msgstr ""

#: fish/cmds.c:1106
msgid "enable swap on swap partition by UUID"
msgstr ""

#: fish/cmds.c:1107
msgid "sync disks, writes are flushed through to the disk image"
msgstr ""

#: fish/cmds.c:1108
msgid "install the SYSLINUX bootloader"
msgstr ""

#: fish/cmds.c:1109
msgid "return last 10 lines of a file"
msgstr ""

#: fish/cmds.c:1110
msgid "return last N lines of a file"
msgstr ""

#: fish/cmds.c:1111
msgid "unpack tarfile to directory"
msgstr ""

#: fish/cmds.c:1112
msgid "pack directory into tarfile"
msgstr ""

#: fish/cmds.c:1113 fish/cmds.c:1127
msgid "unpack compressed tarball to directory"
msgstr ""

#: fish/cmds.c:1114 fish/cmds.c:1128
msgid "pack directory into compressed tarball"
msgstr ""

#: fish/cmds.c:1115
msgid "print elapsed time taken to run a command"
msgstr ""

#: fish/cmds.c:1119
msgid "update file timestamps or create a new file"
msgstr ""

#: fish/cmds.c:1123
msgid "truncate a file to zero size"
msgstr ""

#: fish/cmds.c:1124
msgid "truncate a file to a particular size"
msgstr ""

#: fish/cmds.c:1125
msgid "adjust ext2/ext3/ext4 filesystem parameters"
msgstr ""

#: fish/cmds.c:1126
msgid "get ext2/ext3/ext4 superblock details"
msgstr ""

#: fish/cmds.c:1129
msgid "set file mode creation mask (umask)"
msgstr ""

#: fish/cmds.c:1130
msgid "unmount a filesystem"
msgstr ""

#: fish/cmds.c:1131
msgid "unmount all filesystems"
msgstr ""

#: fish/cmds.c:1132
msgid "unmount a locally mounted filesystem"
msgstr ""

#: fish/cmds.c:1139
msgid "unset an environment variable"
msgstr ""

#: fish/cmds.c:1140
msgid "upload a file from the local machine"
msgstr ""

#: fish/cmds.c:1141
msgid "upload a file from the local machine with offset"
msgstr ""

#: fish/cmds.c:1142
msgid "cancel the current upload or download operation"
msgstr ""

#: fish/cmds.c:1143
msgid "set timestamp of a file with nanosecond precision"
msgstr ""

#: fish/cmds.c:1144
msgid "appliance kernel version"
msgstr ""

#: fish/cmds.c:1148
msgid "get the library version number"
msgstr ""

#: fish/cmds.c:1149
msgid "get the filesystem label"
msgstr ""

#: fish/cmds.c:1150
msgid "get minimum filesystem size"
msgstr ""

#: fish/cmds.c:1151
msgid "get the Linux VFS type corresponding to a mounted device"
msgstr ""

#: fish/cmds.c:1152
msgid "get the filesystem UUID"
msgstr ""

#: fish/cmds.c:1153
msgid "activate or deactivate some volume groups"
msgstr ""

#: fish/cmds.c:1154
msgid "activate or deactivate all volume groups"
msgstr ""

#: fish/cmds.c:1155
msgid "generate a new random UUID for a volume group"
msgstr ""

#: fish/cmds.c:1156
msgid "generate new random UUIDs for all volume groups"
msgstr ""

#: fish/cmds.c:1157
msgid "create an LVM volume group"
msgstr ""

#: fish/cmds.c:1158
msgid "get the LV UUIDs of all LVs in the volume group"
msgstr ""

#: fish/cmds.c:1159
msgid "get volume group metadata"
msgstr ""

#: fish/cmds.c:1160
msgid "get the PV UUIDs containing the volume group"
msgstr ""

#: fish/cmds.c:1161
msgid "remove an LVM volume group"
msgstr ""

#: fish/cmds.c:1162
msgid "rename an LVM volume group"
msgstr ""

#: fish/cmds.c:1163 fish/cmds.c:1164
msgid "list the LVM volume groups (VGs)"
msgstr ""

#: fish/cmds.c:1165
msgid "rescan for LVM physical volumes, volume groups and logical volumes"
msgstr ""

#: fish/cmds.c:1166
msgid "get the UUID of a volume group"
msgstr ""

#: fish/cmds.c:1170
msgid "count characters in a file"
msgstr ""

#: fish/cmds.c:1171
msgid "count lines in a file"
msgstr ""

#: fish/cmds.c:1172
msgid "count words in a file"
msgstr ""

#: fish/cmds.c:1173
msgid "wipe a filesystem signature from a device"
msgstr ""

#: fish/cmds.c:1174
msgid "create a new file"
msgstr ""

#: fish/cmds.c:1175
msgid "append content to end of file"
msgstr ""

#: fish/cmds.c:1176
msgid "create a file"
msgstr ""

#: fish/cmds.c:1177
msgid "change parameters of an XFS filesystem"
msgstr ""

#: fish/cmds.c:1178
msgid "expand an existing XFS filesystem"
msgstr ""

#: fish/cmds.c:1179
msgid "get geometry of XFS filesystem"
msgstr ""

#: fish/cmds.c:1180
msgid "repair an XFS filesystem"
msgstr ""

#: fish/cmds.c:1181
msgid "destroy previously loaded yara rules"
msgstr ""

#: fish/cmds.c:1182
msgid "load yara rules within libguestfs"
msgstr ""

#: fish/cmds.c:1183
msgid "scan a file with the loaded yara rules"
msgstr ""

#: fish/cmds.c:1186
msgid "write zeroes to the device"
msgstr ""

#: fish/cmds.c:1187
msgid "write zeroes to an entire device"
msgstr ""

#: fish/cmds.c:1188
msgid "zero free space in a filesystem"
msgstr ""

#: fish/cmds.c:1189
msgid "zero unused inodes and disk blocks on ext2/3 filesystem"
msgstr ""

#: fish/cmds.c:1192
msgid "determine file type inside a compressed file"
msgstr ""

#: fish/cmds.c:1195
msgid "Use -h <cmd> / help <cmd> to show detailed help for a command."
msgstr ""

#: fish/copy.c:42
#, c-format
msgid ""
"use 'copy-in <local> [<local>...] <remotedir>' to copy files into the image\n"
msgstr ""

#: fish/copy.c:71
#, c-format
msgid ""
"use 'copy-out <remote> [<remote>...] <localdir>' to copy files out of the "
"image\n"
msgstr ""

#: fish/display.c:48
#, c-format
msgid "display filename\n"
msgstr ""

#: fish/edit.c:43
#, c-format
msgid "use '%s filename' to edit a file\n"
msgstr ""

#: fish/event-names.c:69
#, c-format
msgid "unknown event name: %s\n"
msgstr ""

#: fish/events.c:179
#, c-format
msgid "use 'event <name> <eventset> <script>' to register an event handler\n"
msgstr ""

#: fish/events.c:238
#, c-format
msgid "use 'delete-event <name>' to delete an event handler\n"
msgstr ""

#: fish/events.c:247
#, c-format
msgid "delete-event: %s: no such event handler\n"
msgstr ""

#: fish/events.c:297
#, c-format
msgid "use ‘list-events’ to list event handlers\n"
msgstr ""

#: fish/fish.c:118
#, c-format
msgid ""
"%s: guest filesystem shell\n"
"%s lets you edit virtual machine filesystems\n"
"Copyright (C) 2009-2019 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] cmd [: cmd : cmd ...]\n"
"Options:\n"
"  -h|--cmd-help        List available commands\n"
"  -h|--cmd-help cmd    Display detailed help on ‘cmd’\n"
"  -a|--add image       Add image\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  --csh                Make --listen csh-compatible\n"
"  -d|--domain guest    Add disks from libvirt guest\n"
"  --echo-keys          Don’t turn off echo for passphrases\n"
"  -f|--file file       Read commands from file\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  --help               Display brief help\n"
"  -i|--inspector       Automatically mount filesystems\n"
"  --key selector       Specify a LUKS key\n"
"  --keys-from-stdin    Read passphrases from stdin\n"
"  --listen             Listen for remote commands\n"
"  --live               Connect to a live virtual machine\n"
"  -m|--mount dev[:mnt[:opts[:fstype]]]\n"
"                       Mount dev on mnt (if omitted, /)\n"
"  --network            Enable network\n"
"  -N|--new [filename=]type\n"
"                       Create prepared disk (test<N>.img or filename)\n"
"  -n|--no-sync         Don’t autosync\n"
"  --no-dest-paths      Don’t tab-complete paths from guest fs\n"
"  --pipe-error         Pipe commands can detect write errors\n"
"  --progress-bars      Enable progress bars even when not interactive\n"
"  --no-progress-bars   Disable progress bars\n"
"  --remote[=pid]       Send commands to remote %s\n"
"  -r|--ro              Mount read-only\n"
"  --selinux            For backwards compat only, does nothing\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  -w|--rw              Mount read-write\n"
"  -x                   Echo each command before executing it\n"
"\n"
"To examine a disk image, ISO, hard disk, filesystem etc:\n"
"  %s [--ro|--rw] -i -a /path/to/disk.img\n"
"or\n"
"  %s [--ro|--rw] -i -d name-of-libvirt-domain\n"
"\n"
"‘--ro’ is recommended to avoid any writes to the disk image.\n"
"\n"
"If ‘-i’ option fails run again without ‘-i’ and use ‘run’ +\n"
"‘list-filesystems’ + ‘mount’ cmds.\n"
"\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: fish/fish.c:268
#, c-format
msgid "--listen=PID: PID was not a number: %s"
msgstr ""

#: fish/fish.c:273
#, c-format
msgid "remote: $GUESTFISH_PID must be set to the PID of the remote process"
msgstr ""

#: fish/fish.c:320
#, c-format
msgid "%s: warning: -D option is deprecated, use --no-dest-paths instead\n"
msgstr ""

#: fish/fish.c:327
#, c-format
msgid "only one -f parameter can be given"
msgstr ""

#: fish/fish.c:509
#, c-format
msgid "cannot use --listen and --remote options at the same time"
msgstr ""

#: fish/fish.c:514
#, c-format
msgid "extra parameters on the command line with --listen flag"
msgstr ""

#: fish/fish.c:517
#, c-format
msgid "cannot use --listen and --file options at the same time"
msgstr ""

#: fish/fish.c:694
#, c-format
msgid ""
"\n"
"Welcome to guestfish, the guest filesystem shell for\n"
"editing virtual machine filesystems and disk images.\n"
"\n"
"Type: ‘help’ for help on commands\n"
"      ‘man’ to read the manual\n"
"      ‘quit’ to quit the shell\n"
"\n"
msgstr ""

#: fish/fish.c:868 fish/fish.c:884
#, c-format
msgid "%s: command arguments not separated by whitespace\n"
msgstr ""

#: fish/fish.c:878
#, c-format
msgid "%s: unterminated single quote\n"
msgstr ""

#: fish/fish.c:908
#, c-format
msgid "%s: internal error parsing string at ‘%s’\n"
msgstr ""

#: fish/fish.c:925
#, c-format
msgid "%s: too many arguments\n"
msgstr ""

#: fish/fish.c:1001
#, c-format
msgid "%s: invalid escape sequence in string (starting at offset %d)\n"
msgstr ""

#: fish/fish.c:1010
#, c-format
msgid "%s: unterminated double quote\n"
msgstr ""

#: fish/fish.c:1075
#, c-format
msgid "empty command on command line"
msgstr ""

#: fish/fish.c:1229
msgid "display a list of commands or help on a command"
msgstr ""

#: fish/fish.c:1231
msgid "quit guestfish"
msgstr ""

#: fish/fish.c:1242
#, c-format
msgid ""
"help - display a list of commands or help on a command\n"
"     help --list\n"
"     help cmd\n"
"     help\n"
msgstr ""

#: fish/fish.c:1251
#, c-format
msgid ""
"quit - quit guestfish\n"
"     quit\n"
msgstr ""

#: fish/fish.c:1256
#, c-format
msgid "%s: command not known: "
msgstr ""

#: fish/fish.c:1258
#, c-format
msgid "use 'help --list' to list all commands\n"
msgstr ""

#: fish/fish.c:1260
#, c-format
msgid "use -h to list all commands\n"
msgstr ""

#: fish/fish.c:1280
#, c-format
msgid ""
"Did you mean to open a disk image?  guestfish -a disk.img\n"
"For a list of commands:             guestfish -h\n"
"For complete documentation:         man guestfish\n"
msgstr ""

#: fish/fish.c:1291
#, c-format
msgid "%s:%d: libguestfs: error: %s\n"
msgstr ""

#: fish/fish.c:1418
#, c-format
msgid "Runaway quote in string \"%s\"\n"
msgstr ""

#: fish/fish.c:1750
#, c-format
msgid ""
"%s: to use Windows drive letters, you must inspect the guest (\"-i\" option "
"or run \"inspect-os\" command)\n"
msgstr ""

#: fish/fish.c:1756
#, c-format
msgid "%s: to use Windows drive letters, this must be a Windows guest\n"
msgstr ""

#: fish/fish.c:1770
#, c-format
msgid ""
"%s: drive '%c:' not found.  To list available drives do:\n"
"  inspect-get-drive-mappings %s\n"
msgstr ""

#: fish/fish.c:1789
#, c-format
msgid ""
"%s: to access '%c:', mount %s first.  One way to do this is:\n"
"  umount-all\n"
"  mount %s /\n"
msgstr ""

#: fish/glob.c:74
#, c-format
msgid "use 'glob command [args...]'\n"
msgstr ""

#: fish/glob.c:142
#, c-format
msgid "glob: guestfs_glob_expand call failed: %s\n"
msgstr ""

#: fish/help.c:47
#, c-format
msgid ""
"Add disk images to examine using the ‘-a’ or ‘-d’ options, or the ‘add’\n"
"command.\n"
"Or create a new disk image using ‘-N’, or the ‘alloc’ or ‘sparse’ commands.\n"
"Once you have done this, use the ‘run’ command.\n"
msgstr ""

#: fish/help.c:54
#, c-format
msgid ""
"Find out what filesystems are available using ‘list-filesystems’ and then\n"
"mount them to examine or modify the contents using ‘mount-ro’ or\n"
"‘mount’.\n"
msgstr ""

#: fish/help.c:62
#, c-format
msgid ""
"For more information about a command, use ‘help cmd’.\n"
"\n"
"To read the manual, type ‘man’.\n"
msgstr ""

#: fish/help.c:81
#, c-format
msgid "use 'help', 'help <cmd>' or 'help -l|--list' to list all commands\n"
msgstr ""

#: fish/hexedit.c:46
#, c-format
msgid "hexedit (device|filename) [max | start max]\n"
msgstr ""

#: fish/hexedit.c:57
#, c-format
msgid "hexedit: %s is a zero length file or device\n"
msgstr ""

#: fish/hexedit.c:68
#, c-format
msgid ""
"hexedit: %s is larger than %s. You must supply a limit using\n"
"  'hexedit %s <max>' (eg. 'hexedit %s 1M') or a range using\n"
"  'hexedit %s <start> <max>'.\n"
msgstr ""

#: fish/hexedit.c:97
#, c-format
msgid "hexedit: invalid range\n"
msgstr ""

#: fish/lcd.c:36
#, c-format
msgid "use 'lcd directory' to change local directory\n"
msgstr ""

#: fish/man.c:37
#, c-format
msgid "use ‘man’ without parameters to open the manual\n"
msgstr ""

#: fish/more.c:46
#, c-format
msgid "use '%s filename' to page a file\n"
msgstr ""

#: fish/prep-boot.c:37 fish/prep-boot.c:87 fish/prep-disk.c:35
#: fish/prep-fs.c:37 fish/prep-lv.c:68 fish/prep-lv.c:109 fish/prep-part.c:35
msgid "failed to allocate disk"
msgstr ""

#: fish/prep-boot.c:45 fish/prep-boot.c:95
msgid "could not parse boot size"
msgstr ""

#: fish/prep-boot.c:49 fish/prep-boot.c:99
#, c-format
msgid "failed to get sector size of disk: %s"
msgstr ""

#: fish/prep-boot.c:53 fish/prep-boot.c:103 fish/prep-fs.c:44 fish/prep-lv.c:75
#: fish/prep-lv.c:116 fish/prep-part.c:42
#, c-format
msgid "failed to partition disk: %s"
msgstr ""

#: fish/prep-boot.c:58 fish/prep-boot.c:108
#, c-format
msgid "failed to add boot partition: %s"
msgstr ""

#: fish/prep-boot.c:62 fish/prep-boot.c:112
#, c-format
msgid "failed to add root partition: %s"
msgstr ""

#: fish/prep-boot.c:69 fish/prep-boot.c:124
#, c-format
msgid "failed to create boot filesystem: %s"
msgstr ""

#: fish/prep-boot.c:76 fish/prep-boot.c:145
#, c-format
msgid "failed to create root filesystem: %s"
msgstr ""

#: fish/prep-boot.c:84 fish/prep-boot.c:118 fish/prep-lv.c:65 fish/prep-lv.c:81
#: fish/prep-lv.c:106 fish/prep-lv.c:122
msgid "incorrect format for LV name, use '/dev/VG/LV'"
msgstr ""

#: fish/prep-boot.c:131 fish/prep-lv.c:88 fish/prep-lv.c:129
#, c-format
msgid "failed to create PV: %s: %s"
msgstr ""

#: fish/prep-boot.c:136 fish/prep-lv.c:93 fish/prep-lv.c:134
#, c-format
msgid "failed to create VG: %s: %s"
msgstr ""

#: fish/prep-boot.c:141 fish/prep-lv.c:98 fish/prep-lv.c:139
#, c-format
msgid "failed to create LV: /dev/%s/%s: %s"
msgstr ""

#: fish/prep-fs.c:52 fish/prep-lv.c:144
#, c-format
msgid "failed to create filesystem (%s): %s"
msgstr ""

#: fish/prep.c:45
#, c-format
msgid ""
"List of available prepared disk images:\n"
"\n"
msgstr ""

#: fish/prep.c:48
#, c-format
msgid ""
"guestfish -N %-8s - %s\n"
"\n"
"%s\n"
msgstr ""

#: fish/prep.c:56
#, c-format
msgid "  Optional parameters:\n"
msgstr ""

#: fish/prep.c:63
#, c-format
msgid "<%s> %s (default: %s)\n"
msgstr ""

#: fish/prep.c:73
#, c-format
msgid ""
"Prepared disk images are written to file \"test1.img\" in the local\n"
"directory.  (\"test2.img\" etc if -N option is given multiple times).\n"
"You can override the name by providing a filename before the type, eg:\n"
"\n"
"  guestfish -N blank.img=fs\n"
"\n"
"For more information see the guestfish(1) manual.\n"
msgstr ""

#: fish/prep.c:109
#, c-format
msgid ""
"-N parameter ‘%s’: no such prepared disk image known.\n"
"Use 'guestfish -N help' to list possible values for the -N parameter."
msgstr ""

#: fish/prep.c:162
#, c-format
msgid "guestfish: error creating prepared disk image ‘%s’ on ‘%s’: "
msgstr ""

#: fish/rc.c:71
#, c-format
msgid "‘%s’ is not a directory or has insecure owner or permissions"
msgstr ""

#: fish/rc.c:283
#, c-format
msgid "guestfish: protocol error: could not read ‘hello’ message\n"
msgstr ""

#: fish/rc.c:288
#, c-format
msgid ""
"guestfish: protocol error: version mismatch, server version ‘%s’ does not "
"match client version ‘%s’.  The two versions must match exactly.\n"
msgstr ""

#: fish/rc.c:373 fish/rc.c:387
#, c-format
msgid "guestfish: remote: looks like the server is not running\n"
msgstr ""

#: fish/rc.c:399 fish/rc.c:413
#, c-format
msgid "guestfish: protocol error: could not send initial greeting to server\n"
msgstr ""

#: fish/rc.c:424
#, c-format
msgid "guestfish: protocol error: could not decode reply from server\n"
msgstr ""

#: fish/reopen.c:43
#, c-format
msgid "‘reopen’ command takes no parameters\n"
msgstr ""

#: fish/reopen.c:56
#, c-format
msgid "reopen: guestfs_create: failed to create handle\n"
msgstr ""

#: fish/run-0.c:142 fish/run-0.c:160 fish/run-0.c:173 fish/run-0.c:201
#: fish/run-0.c:349 fish/run-0.c:716 fish/run-0.c:729 fish/run-0.c:1987
#: fish/run-0.c:2358 fish/run-0.c:2449 fish/run-0.c:2558 fish/run-0.c:2627
#: fish/run-1.c:300 fish/run-1.c:527 fish/run-1.c:540 fish/run-1.c:553
#: fish/run-1.c:566 fish/run-1.c:678 fish/run-1.c:691 fish/run-1.c:1161
#: fish/run-1.c:1174 fish/run-1.c:1187 fish/run-1.c:1200 fish/run-1.c:1477
#: fish/run-1.c:1490 fish/run-1.c:2343 fish/run-1.c:2387 fish/run-1.c:2400
#: fish/run-1.c:2413 fish/run-1.c:2426 fish/run-1.c:2439 fish/run-1.c:2693
#: fish/run-1.c:2741 fish/run-1.c:2815 fish/run-1.c:2999 fish/run-1.c:3012
#: fish/run-1.c:3061 fish/run-1.c:3142 fish/run-1.c:3155 fish/run-1.c:3168
#: fish/run-1.c:3181 fish/run-1.c:3194 fish/run-2.c:137 fish/run-2.c:201
#: fish/run-2.c:514 fish/run-2.c:725 fish/run-2.c:738 fish/run-2.c:1018
#: fish/run-2.c:1270 fish/run-2.c:1351 fish/run-2.c:1566 fish/run-2.c:1877
#: fish/run-2.c:2200 fish/run-2.c:2213 fish/run-2.c:2375 fish/run-3.c:416
#: fish/run-3.c:986 fish/run-3.c:1352 fish/run-3.c:1365 fish/run-3.c:1378
#: fish/run-3.c:1391 fish/run-3.c:1634 fish/run-3.c:1693 fish/run-3.c:2440
#: fish/run-3.c:2453 fish/run-3.c:2466 fish/run-3.c:2479 fish/run-3.c:2492
#: fish/run-3.c:2505 fish/run-3.c:2518 fish/run-3.c:2531 fish/run-3.c:2544
#: fish/run-3.c:2557 fish/run-3.c:2570 fish/run-3.c:2583 fish/run-3.c:2596
#: fish/run-3.c:2609 fish/run-3.c:2622 fish/run-3.c:2635 fish/run-3.c:2648
#: fish/run-3.c:2924 fish/run-3.c:2965 fish/run-3.c:3233 fish/run-3.c:3246
#: fish/run-3.c:3363 fish/run-3.c:3549 fish/run-3.c:3562 fish/run-3.c:3575
#: fish/run-3.c:3658 fish/run-4.c:180 fish/run-4.c:490 fish/run-4.c:1638
#: fish/run-4.c:2087 fish/run-5.c:410 fish/run-5.c:548 fish/run-5.c:561
#: fish/run-5.c:673 fish/run-5.c:686 fish/run-5.c:1224 fish/run-5.c:1302
#: fish/run-5.c:2275 fish/run-5.c:2367 fish/run-5.c:2944 fish/run-5.c:2957
#: fish/run-5.c:2970 fish/run-5.c:3145 fish/run-5.c:3158 fish/run-5.c:3171
#: fish/run-5.c:3184 fish/run-6.c:258 fish/run-6.c:1657 fish/run-6.c:1803
#: fish/run-6.c:1816 fish/run-6.c:2099 fish/run-6.c:2118 fish/run-6.c:2131
#: fish/run-6.c:2144
#, c-format
msgid "%s: '%s': invalid boolean value, use 'true' or 'false'\n"
msgstr ""

#: fish/run-0.c:211 fish/run-0.c:359 fish/run-0.c:523 fish/run-0.c:596
#: fish/run-0.c:739 fish/run-0.c:1753 fish/run-0.c:1873 fish/run-0.c:1997
#: fish/run-0.c:2568 fish/run-1.c:310 fish/run-1.c:576 fish/run-1.c:701
#: fish/run-1.c:1210 fish/run-1.c:1500 fish/run-1.c:2084 fish/run-1.c:2449
#: fish/run-1.c:2703 fish/run-1.c:2880 fish/run-1.c:3022 fish/run-1.c:3214
#: fish/run-2.c:211 fish/run-2.c:278 fish/run-2.c:748 fish/run-2.c:1028
#: fish/run-2.c:1280 fish/run-2.c:1361 fish/run-2.c:1686 fish/run-2.c:2223
#: fish/run-3.c:431 fish/run-3.c:493 fish/run-3.c:588 fish/run-3.c:889
#: fish/run-3.c:996 fish/run-3.c:1401 fish/run-3.c:1644 fish/run-3.c:1703
#: fish/run-3.c:2658 fish/run-3.c:2975 fish/run-3.c:3256 fish/run-3.c:3585
#: fish/run-3.c:3821 fish/run-4.c:400 fish/run-4.c:505 fish/run-4.c:863
#: fish/run-4.c:1648 fish/run-4.c:2097 fish/run-5.c:571 fish/run-5.c:696
#: fish/run-5.c:750 fish/run-5.c:1234 fish/run-5.c:1312 fish/run-5.c:1843
#: fish/run-5.c:3071 fish/run-5.c:3272 fish/run-6.c:1252 fish/run-6.c:1323
#: fish/run-6.c:1667 fish/run-6.c:1826 fish/run-6.c:2154
#, c-format
msgid "%s: unknown optional argument \"%s\"\n"
msgstr ""

#: fish/run-0.c:217 fish/run-0.c:365 fish/run-0.c:529 fish/run-0.c:602
#: fish/run-0.c:745 fish/run-0.c:1759 fish/run-0.c:1879 fish/run-0.c:2003
#: fish/run-0.c:2574 fish/run-1.c:316 fish/run-1.c:582 fish/run-1.c:707
#: fish/run-1.c:1216 fish/run-1.c:1506 fish/run-1.c:2090 fish/run-1.c:2455
#: fish/run-1.c:2709 fish/run-1.c:2886 fish/run-1.c:3028 fish/run-1.c:3220
#: fish/run-2.c:217 fish/run-2.c:284 fish/run-2.c:754 fish/run-2.c:1034
#: fish/run-2.c:1286 fish/run-2.c:1367 fish/run-2.c:1692 fish/run-2.c:2229
#: fish/run-3.c:437 fish/run-3.c:499 fish/run-3.c:594 fish/run-3.c:895
#: fish/run-3.c:1002 fish/run-3.c:1407 fish/run-3.c:1650 fish/run-3.c:1709
#: fish/run-3.c:2664 fish/run-3.c:2981 fish/run-3.c:3262 fish/run-3.c:3591
#: fish/run-3.c:3827 fish/run-4.c:406 fish/run-4.c:511 fish/run-4.c:869
#: fish/run-4.c:1654 fish/run-4.c:2103 fish/run-5.c:577 fish/run-5.c:702
#: fish/run-5.c:756 fish/run-5.c:1240 fish/run-5.c:1318 fish/run-5.c:1849
#: fish/run-5.c:3077 fish/run-5.c:3278 fish/run-6.c:1258 fish/run-6.c:1329
#: fish/run-6.c:1673 fish/run-6.c:1832 fish/run-6.c:2160
#, c-format
msgid "%s: optional argument \"%s\" given more than once\n"
msgstr ""

#: fish/run-0.c:507 fish/run-0.c:580 fish/run-0.c:867 fish/run-0.c:1006
#: fish/run-0.c:1046 fish/run-0.c:1060 fish/run-0.c:1098 fish/run-0.c:1134
#: fish/run-0.c:1642 fish/run-0.c:1659 fish/run-0.c:1681 fish/run-0.c:1714
#: fish/run-0.c:1737 fish/run-0.c:1974 fish/run-0.c:2153 fish/run-0.c:2392
#: fish/run-0.c:2488 fish/run-1.c:287 fish/run-1.c:631 fish/run-1.c:648
#: fish/run-1.c:665 fish/run-1.c:815 fish/run-1.c:925 fish/run-1.c:1009
#: fish/run-1.c:1254 fish/run-1.c:1308 fish/run-1.c:1345 fish/run-1.c:1431
#: fish/run-1.c:1666 fish/run-1.c:1685 fish/run-1.c:1954 fish/run-1.c:2006
#: fish/run-1.c:2023 fish/run-1.c:2046 fish/run-1.c:2069 fish/run-1.c:2155
#: fish/run-1.c:2174 fish/run-1.c:2193 fish/run-1.c:2494 fish/run-1.c:2513
#: fish/run-1.c:2597 fish/run-1.c:2616 fish/run-2.c:256 fish/run-2.c:456
#: fish/run-2.c:576 fish/run-2.c:595 fish/run-2.c:678 fish/run-2.c:695
#: fish/run-2.c:712 fish/run-2.c:847 fish/run-2.c:1099 fish/run-2.c:1136
#: fish/run-2.c:1477 fish/run-2.c:1528 fish/run-2.c:1625 fish/run-2.c:1757
#: fish/run-2.c:1862 fish/run-2.c:1915 fish/run-2.c:1934 fish/run-2.c:1972
#: fish/run-2.c:2084 fish/run-2.c:2290 fish/run-2.c:2555 fish/run-3.c:483
#: fish/run-3.c:572 fish/run-3.c:784 fish/run-3.c:834 fish/run-3.c:873
#: fish/run-3.c:956 fish/run-3.c:969 fish/run-3.c:1443 fish/run-3.c:1482
#: fish/run-3.c:1525 fish/run-3.c:1809 fish/run-3.c:2084 fish/run-3.c:2159
#: fish/run-3.c:2176 fish/run-3.c:2193 fish/run-3.c:2210 fish/run-3.c:2227
#: fish/run-3.c:2244 fish/run-3.c:2261 fish/run-3.c:2278 fish/run-3.c:2295
#: fish/run-3.c:2312 fish/run-3.c:2329 fish/run-3.c:2346 fish/run-3.c:2363
#: fish/run-3.c:2386 fish/run-3.c:2702 fish/run-3.c:2748 fish/run-3.c:2791
#: fish/run-3.c:2835 fish/run-3.c:2854 fish/run-3.c:2873 fish/run-3.c:2946
#: fish/run-3.c:3017 fish/run-3.c:3053 fish/run-3.c:3095 fish/run-3.c:3675
#: fish/run-3.c:3698 fish/run-3.c:3726 fish/run-3.c:3743 fish/run-3.c:3766
#: fish/run-3.c:3794 fish/run-3.c:3811 fish/run-3.c:3896 fish/run-3.c:3909
#: fish/run-3.c:3922 fish/run-3.c:3935 fish/run-3.c:4064 fish/run-4.c:138
#: fish/run-4.c:302 fish/run-4.c:443 fish/run-4.c:604 fish/run-4.c:647
#: fish/run-4.c:696 fish/run-4.c:709 fish/run-4.c:750 fish/run-4.c:819
#: fish/run-4.c:836 fish/run-4.c:853 fish/run-4.c:947 fish/run-4.c:1081
#: fish/run-4.c:1278 fish/run-4.c:1368 fish/run-4.c:1435 fish/run-4.c:1479
#: fish/run-4.c:1524 fish/run-4.c:1543 fish/run-4.c:1562 fish/run-4.c:1693
#: fish/run-4.c:1706 fish/run-4.c:1743 fish/run-4.c:1787 fish/run-4.c:1830
#: fish/run-4.c:1874 fish/run-4.c:2256 fish/run-5.c:501 fish/run-5.c:518
#: fish/run-5.c:535 fish/run-5.c:626 fish/run-5.c:643 fish/run-5.c:660
#: fish/run-5.c:871 fish/run-5.c:1000 fish/run-5.c:1068 fish/run-5.c:1397
#: fish/run-5.c:1561 fish/run-5.c:1609 fish/run-5.c:1653 fish/run-5.c:1771
#: fish/run-5.c:1799 fish/run-5.c:1822 fish/run-5.c:1886 fish/run-5.c:2041
#: fish/run-5.c:2084 fish/run-5.c:2128 fish/run-5.c:2172 fish/run-5.c:2309
#: fish/run-5.c:2427 fish/run-5.c:2446 fish/run-5.c:2465 fish/run-5.c:2543
#: fish/run-5.c:2562 fish/run-5.c:2581 fish/run-5.c:2600 fish/run-5.c:2765
#: fish/run-5.c:2987 fish/run-5.c:3004 fish/run-5.c:3021 fish/run-5.c:3038
#: fish/run-5.c:3055 fish/run-5.c:3201 fish/run-5.c:3218 fish/run-5.c:3235
#: fish/run-5.c:3252 fish/run-6.c:191 fish/run-6.c:428 fish/run-6.c:473
#: fish/run-6.c:612 fish/run-6.c:631 fish/run-6.c:787 fish/run-6.c:823
#: fish/run-6.c:1073 fish/run-6.c:1198 fish/run-6.c:1426 fish/run-6.c:1445
#: fish/run-6.c:1490 fish/run-6.c:1509 fish/run-6.c:1591 fish/run-6.c:1737
#: fish/run-6.c:1871 fish/run-6.c:1953 fish/run-6.c:2040
#, c-format
msgid "%s: %s: invalid integer parameter (%s returned %u)\n"
msgstr ""

#: fish/setenv.c:40
#, c-format
msgid "use '%s VAR value' to set an environment variable\n"
msgstr ""

#: fish/setenv.c:62
#, c-format
msgid "use '%s VAR' to unset an environment variable\n"
msgstr ""

#: fish/supported.c:58
msgid "yes"
msgstr ""

#: fish/supported.c:58
msgid "no"
msgstr ""

#: fish/time.c:41
#, c-format
msgid "use 'time command [args...]'\n"
msgstr ""

#: format/format.c:68
msgid "IMPORTANT NOTE: This program ERASES ALL DATA on disks."
msgstr ""

#: format/format.c:71
#, c-format
msgid ""
"Try ‘%s --help’ for more information.\n"
"%s\n"
msgstr ""

#: format/format.c:74
#, c-format
msgid ""
"%s: erase and make a blank disk\n"
"Copyright (C) 2012 Red Hat Inc.\n"
"\n"
"%s\n"
"\n"
"Usage:\n"
"  %s [--options] -a disk.img [-a disk.img ...]\n"
"Options:\n"
"  -a|--add image       Add image\n"
"  --filesystem=..      Create empty filesystem\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  --help               Display brief help\n"
"  --label=..           Set filesystem label\n"
"  --lvm=..             Create Linux LVM2 logical volume\n"
"  --partition=..       Create / set partition type\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  --wipe               Write zeroes over whole disk\n"
"  -x                   Trace libguestfs API calls\n"
"For more information, see the manpage %s(1).\n"
"\n"
"%s\n"
"\n"
msgstr ""

#: format/format.c:155
#, c-format
msgid "no filesystem was specified"
msgstr ""

#: format/format.c:161
#, c-format
msgid "--lvm option cannot be given multiple times"
msgstr ""

#: format/format.c:228
#, c-format
msgid ""
"%s: error: extra argument ‘%s’ on command line.\n"
"Make sure to specify the argument for --format, --lvm or --partition like '--"
"format=%s'.\n"
msgstr ""

#: format/format.c:239
#, c-format
msgid "%s: error: you must specify at least one -a option.\n"
msgstr ""

#: format/format.c:281
#, c-format
msgid ""
"failed to rescan the disks after two attempts.  This\n"
"may mean there is some sort of partition table or disk\n"
"data which we are unable to remove.  If you think this\n"
"is a bug, please file a bug at http://libguestfs.org/\n"
msgstr ""

#: format/format.c:317
#, c-format
msgid "cannot parse --lvm option (%s)"
msgstr ""

#: fuse/guestmount.c:106
#, c-format
msgid ""
"%s: FUSE module for libguestfs\n"
"%s lets you mount a virtual machine filesystem\n"
"Copyright (C) 2009-2019 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] mountpoint\n"
"Options:\n"
"  -a|--add image       Add image\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  --dir-cache-timeout  Set readdir cache timeout (default 5 sec)\n"
"  -d|--domain guest    Add disks from libvirt guest\n"
"  --echo-keys          Don't turn off echo for passphrases\n"
"  --fd=FD              Write to pipe FD when mountpoint is ready\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  --fuse-help          Display extra FUSE options\n"
"  -i|--inspector       Automatically mount filesystems\n"
"  --help               Display help message and exit\n"
"  --key selector       Specify a LUKS key\n"
"  --keys-from-stdin    Read passphrases from stdin\n"
"  --live               Connect to a live virtual machine\n"
"  -m|--mount dev[:mnt[:opts[:fstype]] Mount dev on mnt (if omitted, /)\n"
"  --no-fork            Don't daemonize\n"
"  -n|--no-sync         Don't autosync\n"
"  -o|--option opt      Pass extra option to FUSE\n"
"  --pid-file filename  Write PID to filename\n"
"  -r|--ro              Mount read-only\n"
"  --selinux            For backwards compat only, does nothing\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  -w|--rw              Mount read-write\n"
"  -x|--trace           Trace guestfs API calls\n"
msgstr ""

#: fuse/guestmount.c:251
#, c-format
msgid "unable to parse --fd option value: %s"
msgstr ""

#: fuse/guestmount.c:328
#, c-format
msgid "%s: error: you must specify either -i at least one -m option.\n"
msgstr ""

#: fuse/guestmount.c:337
#, c-format
msgid "--live is not compatible with --ro option"
msgstr ""

#: fuse/guestmount.c:340
#, c-format
msgid "--live is not compatible with -i option"
msgstr ""

#: fuse/guestmount.c:352
#, c-format
msgid "with --live, you must use exactly one -d option"
msgstr ""

#: fuse/guestmount.c:355
#, c-format
msgid "--live is not compatible with -a option"
msgstr ""

#: fuse/guestmount.c:361
#, c-format
msgid "you must specify a mountpoint in the host filesystem"
msgstr ""

#: fuse/guestunmount.c:59
#, c-format
msgid ""
"%s: clean up a mounted filesystem\n"
"Copyright (C) 2013 Red Hat Inc.\n"
"Usage:\n"
"  %s [--fd=FD] mountpoint\n"
"Options:\n"
"  --fd=FD              Pipe file descriptor to monitor\n"
"  --help               Display help message and exit\n"
"  -q|--quiet           Don't print fusermount errors\n"
"  --no-retry           Don't retry fusermount\n"
"  --retry=N            Retry fusermount N times (default: 5)\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
msgstr ""

#: fuse/guestunmount.c:120
#, c-format
msgid "cannot parse fd option ‘%s’"
msgstr ""

#: fuse/guestunmount.c:126
#, c-format
msgid "cannot parse retries option or value is too large ‘%s’"
msgstr ""

#: fuse/guestunmount.c:157
#, c-format
msgid "you must specify a mountpoint in the host filesystem\n"
msgstr ""

#: fuse/guestunmount.c:207
#, c-format
msgid "%s: failed to unmount %s: %s\n"
msgstr ""

#: fuse/guestunmount.c:218
#, c-format
msgid "%s: %s is not mounted: %s\n"
msgstr ""

#: inspector/inspector.c:88
#, c-format
msgid ""
"%s: display information about a virtual machine\n"
"Copyright (C) 2010 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] -d domname\n"
"  %s [--options] -a disk.img [-a disk.img ...]\n"
"Options:\n"
"  -a|--add image       Add image\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  -d|--domain guest    Add disks from libvirt guest\n"
"  --echo-keys          Don't turn off echo for passphrases\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  --help               Display brief help\n"
"  --key selector       Specify a LUKS key\n"
"  --keys-from-stdin    Read passphrases from stdin\n"
"  --no-applications    Do not output the installed applications\n"
"  --no-icon            Do not output the guest icon\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  -x                   Trace libguestfs API calls\n"
"  --xpath query        Perform an XPath query\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: inspector/inspector.c:272
#, c-format
msgid "cannot use --xpath together with other options."
msgstr ""

#: inspector/inspector.c:309
#, c-format
msgid ""
"no operating system could be detected inside this disk image.\n"
"\n"
"This may be because the file is not a disk image, or is not a virtual "
"machine\n"
"image, or because the OS type is not understood by libguestfs.\n"
"\n"
"NOTE for Red Hat Enterprise Linux 6 users: for Windows guest support you "
"must\n"
"install the separate libguestfs-winsupport package.\n"
"\n"
"If you feel this is an error, please file a bug report including as much\n"
"information about the disk image as possible.\n"
msgstr ""

#: inspector/inspector.c:325
#, c-format
msgid "xmlOutputBufferCreateFd: failed to open stdout"
msgstr ""

#: inspector/inspector.c:331
#, c-format
msgid "xmlNewTextWriter: failed to create libxml2 writer"
msgstr ""

#: inspector/inspector.c:703
#, c-format
msgid "unable to parse XML from stdin"
msgstr ""

#: inspector/inspector.c:707 lib/launch-libvirt.c:751 lib/libvirt-domain.c:418
#: lib/libvirt-domain.c:502 lib/libvirt-domain.c:818
#, c-format
msgid "unable to create new XPath context"
msgstr ""

#: inspector/inspector.c:711 lib/libvirt-domain.c:436 lib/libvirt-domain.c:509
#: lib/libvirt-domain.c:833
#, c-format
msgid "unable to evaluate XPath expression"
msgstr ""

#: inspector/inspector.c:722
#, c-format
msgid "xmlSaveToFd failed"
msgstr ""

#: inspector/inspector.c:727
#, c-format
msgid "xmlNewDoc failed"
msgstr ""

#: inspector/inspector.c:730
#, c-format
msgid "xmlCopyNode failed"
msgstr ""

#: inspector/inspector.c:735
#, c-format
msgid "xmlSaveDoc failed"
msgstr ""

#: lib/appliance.c:219
#, c-format
msgid ""
"cannot find any suitable libguestfs supermin, fixed or old-style appliance "
"on LIBGUESTFS_PATH (search path: %s)"
msgstr ""

#: lib/available.c:72 lib/available.c:96
#, c-format
msgid "%s: unknown group"
msgstr ""

#: lib/available.c:75
#, c-format
msgid "%s: group not available"
msgstr ""

#: lib/conn-socket.c:70
msgid "accept_connection called twice"
msgstr ""

#: lib/conn-socket.c:149
msgid "read_data: socket not connected"
msgstr ""

#: lib/conn-socket.c:224
msgid "can_read_data: socket not connected"
msgstr ""

#: lib/conn-socket.c:253
msgid "write_data: socket not connected"
msgstr ""

#: lib/conn-socket.c:363
msgid "error reading console messages from the appliance"
msgstr ""

#: lib/conn-socket.c:406
msgid "console socket not connected"
msgstr ""

#: lib/copy-in-out.c:51
#, c-format
msgid "source ‘%s’ does not exist (or cannot be read)"
msgstr ""

#: lib/copy-in-out.c:60 lib/copy-in-out.c:142
#, c-format
msgid "target ‘%s’ is not a directory"
msgstr ""

#: lib/copy-in-out.c:179
#, c-format
msgid "‘%s’ is not a file or directory"
msgstr ""

#: lib/copy-in-out.c:245
msgid "error: argument is zero length or longer than maximum permitted"
msgstr ""

#: lib/create.c:65
msgid "if using a backing file, size must be passed as -1"
msgstr ""

#: lib/create.c:73
#, c-format
msgid "invalid size: %<PRIi64>"
msgstr ""

#: lib/create.c:81
msgid "backingfile cannot be used for raw format disks"
msgstr ""

#: lib/create.c:96
#, c-format
msgid "unsupported format ‘%s’"
msgstr ""

#: lib/create.c:110
#, c-format
msgid "cannot open block device: %s"
msgstr ""

#: lib/create.c:144
msgid "backingformat parameter cannot be used with raw format"
msgstr ""

#: lib/create.c:154 lib/create.c:283
#, c-format
msgid "invalid value for preallocation parameter ‘%s’"
msgstr ""

#: lib/create.c:160
msgid "compat parameter cannot be used with raw format"
msgstr ""

#: lib/create.c:164
msgid "clustersize parameter cannot be used with raw format"
msgstr ""

#: lib/create.c:171
#, c-format
msgid "refusing to overwrite char device ‘%s’"
msgstr ""

#: lib/create.c:181
#, c-format
msgid "cannot create raw file: %s"
msgstr ""

#: lib/create.c:187
#, c-format
msgid "%s: truncate"
msgstr ""

#: lib/create.c:200
#, c-format
msgid "%s: fallocate"
msgstr ""

#: lib/create.c:218
#, c-format
msgid "%s: write"
msgstr ""

#: lib/create.c:229
#, c-format
msgid "%s: close"
msgstr ""

#: lib/create.c:268
#, c-format
msgid "invalid value for backingformat parameter ‘%s’"
msgstr ""

#: lib/create.c:291
#, c-format
msgid "invalid value for compat parameter ‘%s’"
msgstr ""

#: lib/create.c:299
#, c-format
msgid "invalid value for clustersize parameter ‘%d’"
msgstr ""

#: lib/dbdump.c:83
#, c-format
msgid "%s: unexpected error or end of output"
msgstr ""

#: lib/dbdump.c:118 lib/dbdump.c:137
msgid "unexpected line from db_dump command, no space prefix"
msgstr ""

#: lib/dbdump.c:219
msgid "unexpected non-hex digits in output of db_dump command"
msgstr ""

#: lib/drives.c:82
msgid "this backend does not support adding read-only drives"
msgstr ""

#: lib/drives.c:173
msgid "curl: you must specify exactly one server"
msgstr ""

#: lib/drives.c:179
msgid "curl: only tcp transport is supported"
msgstr ""

#: lib/drives.c:184
msgid "curl: pathname should not be an empty string"
msgstr ""

#: lib/drives.c:189
msgid "curl: pathname must begin with a '/'"
msgstr ""

#: lib/drives.c:201
msgid "gluster: you cannot specify a username with this protocol"
msgstr ""

#: lib/drives.c:205
msgid "gluster: you cannot specify a secret with this protocol"
msgstr ""

#: lib/drives.c:210
msgid "gluster: you must specify exactly one server"
msgstr ""

#: lib/drives.c:215
msgid "gluster: volume name parameter should not be an empty string"
msgstr ""

#: lib/drives.c:220
msgid "gluster: volume/image must not begin with a '/'"
msgstr ""

#: lib/drives.c:244
msgid "nbd: you cannot specify a username with this protocol"
msgstr ""

#: lib/drives.c:248
msgid "nbd: you cannot specify a secret with this protocol"
msgstr ""

#: lib/drives.c:253
msgid "nbd: you must specify exactly one server"
msgstr ""

#: lib/drives.c:272
msgid "rbd: only tcp transport is supported"
msgstr ""

#: lib/drives.c:276
msgid "rbd: port number must be specified"
msgstr ""

#: lib/drives.c:282
msgid "rbd: image name parameter should not be an empty string"
msgstr ""

#: lib/drives.c:287
msgid "rbd: image name must not begin with a '/'"
msgstr ""

#: lib/drives.c:301
msgid "sheepdog: you cannot specify a username with this protocol"
msgstr ""

#: lib/drives.c:305
msgid "sheepdog: you cannot specify a secret with this protocol"
msgstr ""

#: lib/drives.c:312
msgid "sheepdog: only tcp transport is supported"
msgstr ""

#: lib/drives.c:316
msgid "sheepdog: port number must be specified"
msgstr ""

#: lib/drives.c:322
msgid "sheepdog: volume parameter should not be an empty string"
msgstr ""

#: lib/drives.c:327
msgid "sheepdog: volume parameter must not begin with a '/'"
msgstr ""

#: lib/drives.c:339
msgid "ssh: you must specify exactly one server"
msgstr ""

#: lib/drives.c:345
msgid "ssh: only tcp transport is supported"
msgstr ""

#: lib/drives.c:350
msgid "ssh: pathname should not be an empty string"
msgstr ""

#: lib/drives.c:355
msgid "ssh: pathname must begin with a '/'"
msgstr ""

#: lib/drives.c:360
msgid "ssh: username should not be an empty string"
msgstr ""

#: lib/drives.c:372
msgid "iscsi: you must specify exactly one server"
msgstr ""

#: lib/drives.c:378
msgid "iscsi: only tcp transport is supported"
msgstr ""

#: lib/drives.c:383
msgid "iscsi: target name should not be an empty string"
msgstr ""

#: lib/drives.c:388
msgid "iscsi: target string must not begin with a '/'"
msgstr ""

#: lib/drives.c:415
msgid "for device ‘/dev/null’, format must be ‘raw’"
msgstr ""

#: lib/drives.c:644
msgid "missing Unix domain socket path"
msgstr ""

#: lib/drives.c:656
#, c-format
msgid "invalid port number ‘%s’"
msgstr ""

#: lib/drives.c:663
#, c-format
msgid "invalid hostname ‘%s’"
msgstr ""

#: lib/drives.c:674
#, c-format
msgid "invalid hostname or server string ‘%s’"
msgstr ""

#: lib/drives.c:758
msgid "discard parameter must be ‘disable’, ‘enable’ or ‘besteffort’"
msgstr ""

#: lib/drives.c:771
msgid "discard support cannot be enabled on read-only drives"
msgstr ""

#: lib/drives.c:777 lib/drives.c:783
#, c-format
msgid "%s parameter is empty or contains disallowed characters"
msgstr ""

#: lib/drives.c:789
msgid "label parameter is empty, too long, or contains disallowed characters"
msgstr ""

#: lib/drives.c:795
msgid "cachemode parameter must be ‘writeback’ (default) or ‘unsafe’"
msgstr ""

#: lib/drives.c:802
msgid "you cannot specify a server with file-backed disks"
msgstr ""

#: lib/drives.c:807
msgid "you cannot specify a username with file-backed disks"
msgstr ""

#: lib/drives.c:811
msgid "you cannot specify a secret with file-backed disks"
msgstr ""

#: lib/drives.c:874
#, c-format
msgid "unknown protocol ‘%s’"
msgstr ""

#: lib/drives.c:892 lib/drives.c:1043
msgid "the current backend does not support hotplugging drives"
msgstr ""

#: lib/drives.c:898
msgid "‘label’ is required when hotplugging drives"
msgstr ""

#: lib/drives.c:1028
#, c-format
msgid "disk with label ‘%s’ not found"
msgstr ""

#: lib/errors.c:425
#, c-format
msgid "libguestfs: error: %s\n"
msgstr ""

#: lib/errors.c:453
#, c-format
msgid "<truncated, original size %zu bytes>"
msgstr ""

#: lib/errors.c:484
msgid "guestfs_launch failed, see earlier error messages"
msgstr ""

#: lib/errors.c:487
msgid ""
"guestfs_launch failed.\n"
"This usually means the libguestfs appliance failed to start or crashed.\n"
msgstr ""

#: lib/errors.c:500
msgid ""
"appliance closed the connection unexpectedly, see earlier error messages"
msgstr ""

#: lib/errors.c:504
msgid ""
"appliance closed the connection unexpectedly.\n"
"This usually means the libguestfs appliance crashed.\n"
msgstr ""

#: lib/errors.c:517
msgid "appliance launch timed out, see earlier error messages"
msgstr ""

#: lib/errors.c:520
msgid ""
"appliance launch timed out.\n"
"This usually means the kernel or appliance hung during launch.\n"
msgstr ""

#: lib/errors.c:543
#, c-format
msgid "%s, see debug messages above"
msgstr ""

#: lib/errors.c:545
#, c-format
msgid "%s: %s: %s, see debug messages above"
msgstr ""

#: lib/errors.c:550
#, c-format
msgid ""
"%s.\n"
"To see full error messages you may need to enable debugging.\n"
msgstr ""

#: lib/errors.c:555
#, c-format
msgid ""
"%s: %s: %s.\n"
"To see full error messages you may need to enable debugging.\n"
msgstr ""

#: lib/fuse.c:977
msgid "filesystem is already mounted in another thread"
msgstr ""

#: lib/fuse.c:1001
#, c-format
msgid "fuse_opt_add_arg: %s"
msgstr ""

#: lib/fuse.c:1018
#, c-format
msgid "fuse_mount failed: %s, see error messages above"
msgstr ""

#: lib/fuse.c:1037
#, c-format
msgid "fuse_new: %s"
msgstr ""

#: lib/fuse.c:1066
msgid "you must call guestfs_mount_local first"
msgstr ""

#: lib/fuse.c:1077
#, c-format
msgid ""
"you must call ‘guestfs_mount’ first to mount a filesystem on '/'.\n"
"Note: ‘%s’ is still mounted.  Use ‘guestunmount %s’ to clean up."
msgstr ""

#: lib/fuse.c:1087
#, c-format
msgid "fuse_loop: %s"
msgstr ""

#: lib/fuse.c:1138
msgid "no filesystem is mounted"
msgstr ""

#: lib/fuse.c:1257
msgid "could not initialize dir cache hashtables"
msgstr ""

#: lib/fuse.c:1512
msgid ""
"FUSE is not supported in this build of libguestfs because libfuse was not "
"found when libguestfs was compiled"
msgstr ""

#: lib/handle.c:140
msgid ""
"libguestfs was built with an invalid default backend, using ‘direct’ instead"
msgstr ""

#: lib/handle.c:142
msgid "‘direct’ backend does not work"
msgstr ""

#: lib/handle.c:200 lib/handle.c:210
#, c-format
msgid "%s=%s: non-boolean value"
msgstr ""

#: lib/handle.c:252
msgid "non-numeric value for LIBGUESTFS_MEMSIZE"
msgstr ""

#: lib/handle.c:334
#, c-format
msgid "guestfs_close: called twice on the same handle\n"
msgstr ""

#: lib/handle.c:560
msgid ""
"configured --without-qemu so calling guestfs_set_qemu with qemu == NULL is "
"an error"
msgstr ""

#: lib/handle.c:613
#, c-format
msgid "too small value for memsize (must be at least %d)"
msgstr ""

#: lib/handle.c:730
msgid ""
"identifier must contain only alphanumeric characters, underscore or minus "
"sign"
msgstr ""

#: lib/handle.c:836
msgid "setting not found"
msgstr ""

#: lib/info.c:83
msgid "qemu-img info: JSON output did not contain ‘format’ key"
msgstr ""

#: lib/info.c:106
msgid "qemu-img info: JSON output did not contain ‘virtual-size’ key"
msgstr ""

#: lib/info.c:134
msgid "qemu-img info: JSON output was not an object"
msgstr ""

#: lib/info.c:180
msgid ""
"qemu-img info command produced no output, but didn't return an error status "
"code"
msgstr ""

#: lib/info.c:210
#, c-format
msgid "qemu-img info: JSON parse error: %s"
msgstr ""

#: lib/info.c:212
msgid "qemu-img info: unknown JSON parse error"
msgstr ""

#: lib/inspect-icon.c:699
#, c-format
msgid "size of %s is unreasonably large (%<PRIi64> bytes)"
msgstr ""

#: lib/launch-direct.c:151
#, c-format
msgid ""
"current user is not a member of the KVM group (group ID %d). This user "
"cannot access /dev/kvm, so libguestfs may run very slowly. It is recommended "
"that you 'chmod 0666 /dev/kvm' or add the current user to the KVM group (you "
"might need to log out and log in again)."
msgstr ""

#: lib/launch-direct.c:374 lib/launch-uml.c:154
msgid "you must call guestfs_add_drive before guestfs_launch"
msgstr ""

#: lib/launch-direct.c:897 lib/launch-libvirt.c:681
msgid "qemu launched and contacted daemon, but state != READY"
msgstr ""

#: lib/launch-libvirt.c:61
#, c-format
msgid "%s:%d: error constructing libvirt XML near call to \"%s\""
msgstr ""

#: lib/launch-libvirt.c:206
msgid ""
"could not auto-detect the format.\n"
"If the format is known, pass the format to libguestfs, eg. using the\n"
"‘--format’ option, or via the optional ‘format’ argument to ‘add-drive’."
msgstr ""

#: lib/launch-libvirt.c:217
msgid ""
"could not auto-detect the format when using a non-file protocol.\n"
"If the format is known, pass the format to libguestfs, eg. using the\n"
"‘--format’ option, or via the optional ‘format’ argument to ‘add-drive’."
msgstr ""

#: lib/launch-libvirt.c:332
msgid "direct mode flag is not supported yet for libvirt backend"
msgstr ""

#: lib/launch-libvirt.c:346
#, c-format
msgid "you must have libvirt >= %d.%d.%d to use the ‘libvirt’ backend"
msgstr ""

#: lib/launch-libvirt.c:380
#, c-format
msgid "could not connect to libvirt (URI = %s)"
msgstr ""

#: lib/launch-libvirt.c:409
msgid "could not get libvirt capabilities"
msgstr ""

#: lib/launch-libvirt.c:610
msgid ""
"could not create appliance through libvirt.\n"
"\n"
"Try running qemu directly without libvirt using this environment variable:\n"
"export LIBGUESTFS_BACKEND=direct\n"
"\n"
"Original error from libvirt"
msgstr ""

#: lib/launch-libvirt.c:745
msgid "unable to parse capabilities XML returned by libvirt"
msgstr ""

#: lib/launch-libvirt.c:761
#, c-format
msgid "unable to evaluate XPath expression: %s"
msgstr ""

#: lib/launch-libvirt.c:796
#, c-format
msgid ""
"libvirt hypervisor doesn’t support qemu or KVM,\n"
"so we cannot create the libguestfs appliance.\n"
"The current backend is ‘%s’.\n"
"Check that the PATH environment variable is set and contains\n"
"the path to the qemu (‘qemu-system-*’) or KVM (‘qemu-kvm’, ‘kvm’ etc).\n"
"Or: try setting:\n"
"  export LIBGUESTFS_BACKEND=libvirt:qemu:///session\n"
"Or: if you want to have libguestfs run qemu directly, try:\n"
"  export LIBGUESTFS_BACKEND=direct\n"
"For further help, read the guestfs(3) man page and libguestfs FAQ."
msgstr ""

#: lib/launch-libvirt.c:1332
msgid "‘iface’ parameter is not supported by the libvirt backend"
msgstr ""

#: lib/launch-libvirt.c:1378 lib/launch-libvirt.c:1619 lib/qemu.c:815
#, c-format
msgid "realpath: could not convert ‘%s’ to absolute path"
msgstr ""

#: lib/launch-libvirt.c:1461
msgid ""
"libvirt does not support the qemu curl driver protocols (ftp, http, etc.); "
"try setting LIBGUESTFS_BACKEND=direct"
msgstr ""

#: lib/launch-libvirt.c:1830
msgid "could not define libvirt secret"
msgstr ""

#: lib/launch-libvirt.c:1841
msgid "rbd protocol secret must be base64 encoded"
msgstr ""

#: lib/launch-libvirt.c:1845
#, c-format
msgid "base64_decode_alloc: %m"
msgstr ""

#: lib/launch-libvirt.c:1866
msgid "could not set libvirt secret value"
msgstr ""

#: lib/launch-libvirt.c:1879
msgid "could not get UUID from libvirt secret"
msgstr ""

#: lib/launch-libvirt.c:2046
msgid "could not destroy libvirt domain"
msgstr ""

#: lib/launch-libvirt.c:2067 lib/launch-libvirt.c:2100
#, c-format
msgid "%s: internal error forming error message"
msgstr ""

#: lib/launch-libvirt.c:2166
msgid "could not attach disk to libvirt domain"
msgstr ""

#: lib/launch-libvirt.c:2197
msgid "could not detach disk from libvirt domain"
msgstr ""

#: lib/launch-uml.c:94
msgid "uml backend does not support networking"
msgstr ""

#: lib/launch-uml.c:98
msgid "uml backend does not support SMP"
msgstr ""

#: lib/launch-uml.c:104
msgid "uml backend does not support remote drives"
msgstr ""

#: lib/launch-uml.c:108
msgid "uml backend does not support non-raw-format drives"
msgstr ""

#: lib/launch-uml.c:113
msgid "uml backend does not support drives with ‘iface’ parameter"
msgstr ""

#: lib/launch-uml.c:118
msgid "uml backend does not support drives with ‘label’ parameter"
msgstr ""

#: lib/launch-uml.c:124
msgid ""
"uml backend does not support drives with ‘discard’ parameter set to ‘enable’"
msgstr ""

#: lib/launch-uml.c:461
msgid "vmlinux launched and contacted daemon, but state != READY"
msgstr ""

#: lib/launch-unix.c:46
msgid "cannot set hv parameters with the 'unix:' backend"
msgstr ""

#: lib/launch-unix.c:51
#, c-format
msgid "socket filename too long (more than %d characters): %s"
msgstr ""

#: lib/launch-unix.c:88
msgid "guestfs_launch failed, unexpected initial message from guestfsd"
msgstr ""

#: lib/launch-unix.c:95
msgid "contacted guestfsd, but state != READY"
msgstr ""

#: lib/launch.c:63
msgid "the libguestfs handle has already been launched"
msgstr ""

#: lib/launch.c:76
#, c-format
msgid ""
"too many drives have been added, the current backend only supports %d drives"
msgstr ""

#: lib/launch.c:201
msgid "get-pid can only be called after launch"
msgstr ""

#: lib/launch.c:207
msgid "the current backend does not support ‘get-pid’"
msgstr ""

#: lib/launch.c:221
msgid "the current backend does not allow max disks to be queried"
msgstr ""

#: lib/launch.c:235
msgid "qemu has not been launched yet"
msgstr ""

#: lib/launch.c:306
#, c-format
msgid "parameter ‘%s’ isn't allowed"
msgstr ""

#: lib/launch.c:332
#, c-format
msgid "socket path too long: %s/%s"
msgstr ""

#: lib/libvirt-auth.c:96
#, c-format
msgid "unknown credential type ‘%s’"
msgstr ""

#: lib/libvirt-auth.c:101
msgid "list of supported credentials is too long"
msgstr ""

#: lib/libvirt-auth.c:166
#, c-format
msgid ""
"libvirt needs authentication to connect to libvirt URI %s\n"
"(see also: http://libvirt.org/auth.html http://libvirt.org/uri.html)\n"
msgstr ""

#: lib/libvirt-auth.c:242
#, c-format
msgid ""
"%s should only be called from within the GUESTFS_EVENT_LIBVIRT_AUTH event "
"handler"
msgstr ""

#: lib/libvirt-auth.c:274 lib/libvirt-auth.c:294 lib/libvirt-auth.c:314
#: lib/libvirt-auth.c:335
msgid "credential index out of range"
msgstr ""

#: lib/libvirt-auth.c:355
msgid ""
"libvirt authentication APIs not available since this version of libguestfs "
"was compiled without libvirt"
msgstr ""

#: lib/libvirt-domain.c:96 lib/libvirt-domain.c:246
msgid "you cannot set both live and readonly flags"
msgstr ""

#: lib/libvirt-domain.c:129
#, c-format
msgid "no libvirt domain called ‘%s’: %s"
msgstr ""

#: lib/libvirt-domain.c:228
msgid "unknown readonlydisk parameter"
msgstr ""

#: lib/libvirt-domain.c:257
#, c-format
msgid "error getting domain info: %s"
msgstr ""

#: lib/libvirt-domain.c:271
msgid ""
"error: domain is a live virtual machine.\n"
"Writing to the disks of a running virtual machine can cause disk "
"corruption.\n"
"Either use read-only access, or if the guest is running the guestfsd daemon\n"
"specify live access.  In most libguestfs tools these options are --ro or\n"
"--live respectively.  Consult the documentation for further information."
msgstr ""

#: lib/libvirt-domain.c:364
#, c-format
msgid ""
"%s: disk is marked <readonly/> in libvirt XML, and readonlydisk was set to "
"\"error\""
msgstr ""

#: lib/libvirt-domain.c:455
msgid "expected <seclabel/> to be an XML element"
msgstr ""

#: lib/libvirt-domain.c:617
#, c-format
msgid "no secret with UUID ‘%s’: %s"
msgstr ""

#: lib/libvirt-domain.c:625
#, c-format
msgid "cannot get the value of the secret with UUID ‘%s’: %s"
msgstr ""

#: lib/libvirt-domain.c:653
#, c-format
msgid "no secret for usage ‘%s’: %s"
msgstr ""

#: lib/libvirt-domain.c:661
#, c-format
msgid "cannot get the value of the secret with usage ‘%s’: %s"
msgstr ""

#: lib/libvirt-domain.c:794
msgid "libvirt domain has no disks"
msgstr ""

#: lib/libvirt-domain.c:857
msgid ""
"this guest has no libvirt <channel> definition for guestfsd\n"
"See ATTACHING TO RUNNING DAEMONS in guestfs(3) for further information."
msgstr ""

#: lib/libvirt-domain.c:876
#, c-format
msgid "error reading libvirt XML information: %s"
msgstr ""

#: lib/libvirt-domain.c:886
msgid "unable to parse XML information returned by libvirt"
msgstr ""

#: lib/libvirt-domain.c:907
#, c-format
msgid "no libvirt pool called ‘%s’: %s"
msgstr ""

#: lib/libvirt-domain.c:915
#, c-format
msgid "no volume called ‘%s’ in the libvirt pool ‘%s’: %s"
msgstr ""

#: lib/libvirt-domain.c:923
#, c-format
msgid "cannot get information of the libvirt volume ‘%s’: %s"
msgstr ""

#: lib/libvirt-domain.c:937
#, c-format
msgid "cannot get the filename of the libvirt volume ‘%s’: %s"
msgstr ""

#: lib/libvirt-domain.c:981
msgid ""
"add-domain API not available since this version of libguestfs was compiled "
"without libvirt"
msgstr ""

#: lib/proto.c:238
#, c-format
msgid ""
"check_daemon_socket: read 0x%x from daemon, expected 0x%x.  Lost protocol "
"synchronization (bad!)\n"
msgstr ""

#: lib/proto.c:284
msgid "xdr_guestfs_message_header failed"
msgstr ""

#: lib/proto.c:293
msgid "dispatch failed to marshal args"
msgstr ""

#: lib/proto.c:387 lib/proto.c:891
msgid "operation cancelled by user"
msgstr ""

#: lib/proto.c:462
#, c-format
msgid "xdr_guestfs_chunk failed (buf = %p, buflen = %zu)"
msgstr ""

#: lib/proto.c:560
#, c-format
msgid "received magic signature from guestfsd, but in state %d"
msgstr ""

#: lib/proto.c:579
#, c-format
msgid "message length (%u) > maximum possible size (%d)"
msgstr ""

#: lib/proto.c:847
msgid "write to daemon socket"
msgstr ""

#: lib/proto.c:876
msgid "receive_file_data: unexpected flag received when reading file chunks"
msgstr ""

#: lib/proto.c:884
msgid "failed to parse file chunk"
msgstr ""

#: lib/proto.c:893
msgid "file receive cancelled by daemon"
msgstr ""

#: lib/qemu.c:998
msgid "discard cannot be enabled on this drive: qemu < 1.5"
msgstr ""

#: lib/qemu.c:1007
msgid ""
"discard cannot be enabled on this drive: the drive has a read-only overlay"
msgstr ""

#: lib/qemu.c:1014
msgid ""
"discard cannot be enabled on this drive: you have to specify the format of "
"the file"
msgstr ""

#: lib/qemu.c:1022
msgid ""
"discard cannot be enabled on this drive: qemu < 1.6 cannot do discard on "
"qcow2 files"
msgstr ""

#: lib/qemu.c:1030
#, c-format
msgid ""
"discard cannot be enabled on this drive: qemu does not support discard for "
"‘%s’ format files"
msgstr ""

#: lib/qemu.c:1053
#, c-format
msgid ""
"discard cannot be enabled on this drive: protocol ‘%s’ does not support "
"discard"
msgstr ""

#: lib/rescue.c:38
msgid "no console socket, the handle must be launched"
msgstr ""

#: lib/rescue.c:44
msgid "connection class does not support getting the console socket"
msgstr ""

#: lib/tmpdirs.c:66
#, c-format
msgid "converting path to absolute path: %s: %s: realpath"
msgstr ""

#: lib/tmpdirs.c:73 lib/tmpdirs.c:79
#, c-format
msgid "setting temporary directory"
msgstr ""

#: lib/tmpdirs.c:78
#, c-format
msgid "%s: %s: ‘%s’ is not a directory"
msgstr ""

#: lib/tmpdirs.c:195
#, c-format
msgid "%s: cannot create temporary directory"
msgstr ""

#: lib/tmpdirs.c:197
#, c-format
msgid ""
"%s: cannot create temporary directory.  It may be that $XDG_RUNTIME_DIR is "
"pointing to a directory which we cannot write to, for example if you used "
"‘su [user]’ to change to this user account (see https://bugzilla.redhat."
"com/967509).  You can correct this by adjusting XDG_RUNTIME_DIR and possibly "
"creating /run/user/%d with the right ownership."
msgstr ""

#: lib/tmpdirs.c:282
#, c-format
msgid "stat: %s"
msgstr ""

#: lib/tmpdirs.c:287
#, c-format
msgid "security: cached appliance %s is not owned by UID %ju"
msgstr ""

#: lib/tmpdirs.c:293
#, c-format
msgid "security: cached appliance %s is not a directory (mode %o)"
msgstr ""

#: lib/tmpdirs.c:299
#, c-format
msgid "security: cached appliance %s is writable by group or other (mode %o)"
msgstr ""

#: lib/version.c:166
#, c-format
msgid "could not parse integer in version number: %s"
msgstr ""

#: lib/whole-file.c:84
#, c-format
msgid "read: %s: unexpected end of file"
msgstr ""

#: make-fs/make-fs.c:83
#, c-format
msgid ""
"%s: make a filesystem from a tar archive or files\n"
"Copyright (C) 2010-2019 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] input.tar output.img\n"
"  %s [--options] input.tar.gz output.img\n"
"  %s [--options] directory output.img\n"
"Options:\n"
"  --floppy                 Make a virtual floppy disk\n"
"  -F|--format=raw|qcow2|.. Set output format\n"
"  --help                   Display brief help\n"
"  --label=label            Filesystem label\n"
"  --partition=mbr|gpt|..   Set partition type\n"
"  -s|--size=size|+size     Set size of output disk\n"
"  -t|--type=ext4|..        Set filesystem type\n"
"  -v|--verbose             Verbose messages\n"
"  -V|--version             Display version and exit\n"
"  -x                       Trace libguestfs API calls\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: make-fs/make-fs.c:189
#, c-format
msgid "%s: missing input and output arguments on the command line\n"
msgstr ""

#: make-fs/make-fs.c:208
#, c-format
msgid "%s: NTFS support was disabled when libguestfs was compiled\n"
msgstr ""

#: make-fs/make-fs.c:258 make-fs/make-fs.c:322
#, c-format
msgid "%s: %s command failed\n"
msgstr ""

#: make-fs/make-fs.c:447
#, c-format
msgid "%s: cannot parse the output of ‘du’ command: %s\n"
msgstr ""

#: make-fs/make-fs.c:482
#, c-format
msgid ""
"%s: %s: input is not a directory, tar archive or compressed tar archive\n"
msgstr ""

#: make-fs/make-fs.c:513
#, c-format
msgid "%s: %s: unknown compressed input format (%s)\n"
msgstr ""

#: make-fs/make-fs.c:636
#, c-format
msgid "%s: %s: invalid size parameter ‘%s’ (%s returned %u)\n"
msgstr ""

#: make-fs/make-fs.c:842
#, c-format
msgid "%s: subprocess failed\n"
msgstr ""

#: p2v/conversion.c:225
#, c-format
msgid "Starting local NBD server for %s ..."
msgstr ""

#: p2v/conversion.c:248
#, c-format
msgid "Opening data connection for %s ..."
msgstr ""

#: p2v/conversion.c:323
msgid "Setting up the control connection ..."
msgstr ""

#: p2v/conversion.c:349
msgid "Doing conversion ..."
msgstr ""

#: p2v/conversion.c:389
msgid "Conversion cancelled by user."
msgstr ""

#: p2v/conversion.c:394
msgid "Control connection closed by remote."
msgstr ""

#: p2v/gui.c:222
msgid "Connect to a virt-v2v conversion server over SSH:"
msgstr ""

#: p2v/gui.c:227
msgid "Conversion _server:"
msgstr ""

#: p2v/gui.c:248
msgid "_User name:"
msgstr ""

#: p2v/gui.c:261
msgid "_Password:"
msgstr ""

#: p2v/gui.c:277
msgid "SSH _Identity URL:"
msgstr ""

#: p2v/gui.c:289
msgid "Use su_do when running virt-v2v"
msgstr ""

#: p2v/gui.c:296
msgid "_Test connection"
msgstr ""

#: p2v/gui.c:324
msgid "_Configure network ..."
msgstr ""

#: p2v/gui.c:325
msgid "_XTerm ..."
msgstr ""

#: p2v/gui.c:326
msgid "_About virt-p2v "
msgstr ""

#: p2v/gui.c:327
msgid "_Next"
msgstr ""

#: p2v/gui.c:457
msgid "error: No conversion server given."
msgstr ""

#: p2v/gui.c:465
msgid "error: Invalid port number. If in doubt, use \"22\"."
msgstr ""

#: p2v/gui.c:473
msgid "error: No user name.  If in doubt, use \"root\"."
msgstr ""

#: p2v/gui.c:545
msgid "Testing the connection to the conversion server ..."
msgstr ""

#: p2v/gui.c:593
msgid ""
"Connected to the conversion server.\n"
"Press the \"Next\" button to configure the conversion process."
msgstr ""

#: p2v/gui.c:647
msgid "Virtualize a physical machine to run on KVM"
msgstr ""

#: p2v/gui.c:763
msgid "Target properties"
msgstr ""

#: p2v/gui.c:769
msgid "_Name:"
msgstr ""

#: p2v/gui.c:780
msgid "# _vCPUs:"
msgstr ""

#: p2v/gui.c:795
msgid "_Memory (MB):"
msgstr ""

#: p2v/gui.c:822
msgid "Virt-v2v output options"
msgstr ""

#: p2v/gui.c:828
msgid "Output _to (-o):"
msgstr ""

#: p2v/gui.c:834
msgid ""
"<b>libvirt</b> means send the converted guest to libvirt-managed KVM on the "
"conversion server.  <b>local</b> means put it in a directory on the "
"conversion server.  <b>rhv</b> means write it to RHV-M/oVirt.  <b>glance</b> "
"means write it to OpenStack Glance.  See the virt-v2v(1) manual page for "
"more information about output options."
msgstr ""

#: p2v/gui.c:839
msgid "_Output conn. (-oc):"
msgstr ""

#: p2v/gui.c:845
msgid ""
"For <b>libvirt</b> only, the libvirt connection URI, or leave blank to add "
"the guest to the default libvirt instance on the conversion server.  For "
"others, leave this field blank."
msgstr ""

#: p2v/gui.c:851
msgid "Output _storage (-os):"
msgstr ""

#: p2v/gui.c:857
msgid ""
"For <b>local</b>, put the directory name on the conversion server.  For "
"<b>rhv</b>, put the Export Storage Domain (server:/mountpoint).  For others, "
"leave this field blank."
msgstr ""

#: p2v/gui.c:863
msgid "Output _format (-of):"
msgstr ""

#: p2v/gui.c:869
msgid ""
"The output disk format, typically <b>raw</b> or <b>qcow2</b>.  If blank, "
"defaults to <b>raw</b>."
msgstr ""

#: p2v/gui.c:875
msgid "Output _allocation (-oa):"
msgstr ""

#: p2v/gui.c:899
msgid "Information"
msgstr ""

#: p2v/gui.c:907
msgid "Fixed hard disks"
msgstr ""

#: p2v/gui.c:918
msgid "Removable media"
msgstr ""

#: p2v/gui.c:929
msgid "Network interfaces"
msgstr ""

#: p2v/gui.c:939
msgid ""
"Left click on an interface name to flash the light on the physical interface."
msgstr ""

#: p2v/gui.c:961
msgid "_Back"
msgstr ""

#: p2v/gui.c:962
msgid "Start _conversion"
msgstr ""

#: p2v/gui.c:1012
#, c-format
msgid ""
"virt-p2v (client):\n"
"%s"
msgstr ""

#: p2v/gui.c:1015
#, c-format
msgid ""
"virt-p2v (client):\n"
"%s\n"
"virt-v2v (conversion server):\n"
"%s"
msgstr ""

#: p2v/gui.c:1133 p2v/gui.c:1184 p2v/gui.c:1254
msgid "Convert"
msgstr ""

#: p2v/gui.c:1141 p2v/gui.c:1192 p2v/gui.c:1262
msgid "Device"
msgstr ""

#: p2v/gui.c:1232 p2v/gui.c:1233
msgid "Unknown"
msgstr ""

#: p2v/gui.c:1270
msgid "Connect to virtual network"
msgstr ""

#: p2v/gui.c:1557
#, c-format
msgid ""
"Number of virtual CPUs is larger than what is supported for KVM (max: %d)."
msgstr ""

#: p2v/gui.c:1567
#, c-format
msgid "Memory size is larger than what is supported for KVM (max: %<PRIu64>)."
msgstr ""

#: p2v/gui.c:1575
msgid ""
"If you ignore this warning, conversion can still succeed, but the guest may "
"not work or may not be supported on the target."
msgstr ""

#: p2v/gui.c:1722 p2v/gui.c:1731
msgid "_Shutdown"
msgstr ""

#: p2v/gui.c:1723 p2v/gui.c:1734
msgid "_Reboot"
msgstr ""

#: p2v/gui.c:1741
msgid "_Cancel conversion ..."
msgstr ""

#: p2v/gui.c:1748 p2v/gui.c:1757
msgid "_Shutdown ..."
msgstr ""

#: p2v/gui.c:1815
#, c-format
msgid ""
"Debug information and log files are saved to this directory on the "
"conversion server:\n"
"%s"
msgstr ""

#: p2v/gui.c:2022
msgid "The guest \"Name\" field is empty."
msgstr ""

#: p2v/gui.c:2023 p2v/gui.c:2044
msgid "Error"
msgstr ""

#: p2v/gui.c:2042
msgid ""
"No disks were selected for conversion.\n"
"At least one fixed hard disk must be selected.\n"
msgstr ""

#: p2v/gui.c:2144
#, c-format
msgid "Conversion failed: %s"
msgstr ""

#: p2v/gui.c:2145
msgid "Conversion failed"
msgstr ""

#: p2v/gui.c:2172
msgid "The conversion was successful."
msgstr ""

#: p2v/gui.c:2173
msgid "Conversion was successful"
msgstr ""

#: p2v/gui.c:2256
msgid ""
"Really cancel the conversion? To convert this machine you will need to re-"
"run the conversion from the beginning."
msgstr ""

#: p2v/gui.c:2259
msgid "Cancel the conversion"
msgstr ""

#: p2v/main.c:95
#, c-format
msgid ""
"%s: Convert a physical machine to use KVM\n"
"Copyright (C) 2009-2019 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options]\n"
"Options:\n"
"  --help                 Display brief help\n"
" --cmdline=CMDLINE       Used to debug command line parsing\n"
" --colors|--colours      Use ANSI colour sequences even if not tty\n"
" --iso                   Running in the ISO environment\n"
" --nbd=qemu-nbd,nbdkit   Search order for NBD servers\n"
" --test-disk=DISK.IMG    For testing, use disk as /dev/sda\n"
"  -v|--verbose           Verbose messages\n"
"  -V|--version           Display version and exit\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: p2v/main.c:195
#, c-format
msgid "only a single --test-disk option can be used"
msgstr ""

#: p2v/main.c:198
#, c-format
msgid "--test-disk must be an absolute path"
msgstr ""

#: p2v/main.c:226
#, c-format
msgid "%s: unused arguments on the command line\n"
msgstr ""

#: p2v/main.c:257
#, c-format
msgid ""
"gtk_init_check returned false, indicating that\n"
"a GUI is not possible on this host.  Check X11, $DISPLAY etc."
msgstr ""

#: p2v/nbd.c:140
#, c-format
msgid "--nbd option appears multiple times"
msgstr ""

#: p2v/nbd.c:145 p2v/nbd.c:153
#, c-format
msgid "malloc"
msgstr ""

#: p2v/nbd.c:149
#, c-format
msgid "--nbd option cannot be empty"
msgstr ""

#: p2v/nbd.c:165
#, c-format
msgid "--nbd: unknown server: %s"
msgstr ""

#: p2v/nbd.c:269
#, c-format
msgid ""
"%s: no working NBD server was found, cannot continue.\n"
"Please check the --nbd option in the virt-p2v(1) man page.\n"
msgstr ""

#: rescue/escape.c:141
#, c-format
msgid "attempting to sync filesystems ..."
msgstr ""

#: rescue/escape.c:148
#, c-format
msgid "unmounting filesystems ..."
msgstr ""

#: rescue/escape.c:186
#, c-format
msgid "virt-rescue escape sequences:"
msgstr ""

#: rescue/escape.c:191
#, c-format
msgid " ? - print this message"
msgstr ""

#: rescue/escape.c:196
#, c-format
msgid " h - print this message"
msgstr ""

#: rescue/escape.c:202
#, c-format
msgid " i - print inspection data"
msgstr ""

#: rescue/escape.c:208
#, c-format
msgid " q - quit virt-rescue"
msgstr ""

#: rescue/escape.c:213
#, c-format
msgid " s - sync the filesystems"
msgstr ""

#: rescue/escape.c:218
#, c-format
msgid " u - unmount filesystems"
msgstr ""

#: rescue/escape.c:223
#, c-format
msgid " x - quit virt-rescue"
msgstr ""

#: rescue/escape.c:228
#, c-format
msgid " z - suspend virt-rescue"
msgstr ""

#: rescue/escape.c:231
#, c-format
msgid "to pass the escape key through to the rescue shell, type it twice"
msgstr ""

#: rescue/escape.c:250
#, c-format
msgid "root device: %s"
msgstr ""

#: rescue/escape.c:255
#, c-format
msgid "  product name: %s"
msgstr ""

#: rescue/escape.c:262
#, c-format
msgid "  type: %s"
msgstr ""

#: rescue/escape.c:269
#, c-format
msgid "  distro: %s"
msgstr ""

#: rescue/rescue.c:83
#, c-format
msgid ""
"%s: Run a rescue shell on a virtual machine\n"
"Copyright (C) 2009-2019 Red Hat Inc.\n"
"Usage:\n"
"  %s [--options] -d domname\n"
"  %s [--options] -a disk.img [-a disk.img ...]\n"
"Options:\n"
"  -a|--add image       Add image\n"
"  --append kernelopts  Append kernel options\n"
"  -c|--connect uri     Specify libvirt URI for -d option\n"
"  -d|--domain guest    Add disks from libvirt guest\n"
"  -e ^x|none           Set or disable escape key (default ^])\n"
"  --format[=raw|..]    Force disk format for -a option\n"
"  --help               Display brief help\n"
"  -i|--inspector       Automatically mount filesystems\n"
"  -m|--mount dev[:mnt[:opts[:fstype]] Mount dev on mnt (if omitted, /)\n"
"  --memsize MB         Set memory size in megabytes\n"
"  --network            Enable network\n"
"  -r|--ro              Access read-only\n"
"  --scratch[=N]        Add scratch disk(s)\n"
"  --selinux            For backwards compat only, does nothing\n"
"  --smp N              Enable SMP with N >= 2 virtual CPUs\n"
"  -v|--verbose         Verbose messages\n"
"  -V|--version         Display version and exit\n"
"  -w|--rw              Mount read-write\n"
"  -x                   Trace libguestfs API calls\n"
"For more information, see the manpage %s(1).\n"
msgstr ""

#: rescue/rescue.c:193
#, c-format
msgid "could not parse --smp parameter ‘%s’"
msgstr ""

#: rescue/rescue.c:196
#, c-format
msgid "--smp parameter ‘%s’ should be >= 1"
msgstr ""

#: rescue/rescue.c:206
#, c-format
msgid "could not parse --scratch parameter ‘%s’"
msgstr ""

#: rescue/rescue.c:209
#, c-format
msgid "--scratch parameter ‘%s’ should be >= 1"
msgstr ""

#: rescue/rescue.c:215
#, c-format
msgid "could not parse memory size ‘%s’"
msgstr ""

#: rescue/rescue.c:237
#, c-format
msgid "unrecognized escape key: %s"
msgstr ""

#: rescue/rescue.c:329
#, c-format
msgid ""
"%s: error: extra argument ‘%s’ on command line.\n"
"Make sure to specify the argument for --format or --scratch like '--format="
"%s'.\n"
msgstr ""

#: rescue/suggest.c:62
#, c-format
msgid ""
"Inspecting the virtual machine or disk image ...\n"
"\n"
msgstr ""

#: rescue/suggest.c:81
#, c-format
msgid ""
"This disk contains one or more operating systems.  You can use these mount\n"
"commands in virt-rescue (at the ><rescue> prompt) to mount the filesystems.\n"
"\n"
msgstr ""

#: rescue/suggest.c:96
#, c-format
msgid ""
"# %s is the root of a %s operating system\n"
"# type: %s, distro: %s, version: %d.%d\n"
"# %s\n"
"\n"
msgstr ""

#: rescue/suggest.c:155
#, c-format
msgid ""
"This disk contains no mountable filesystems that we recognize.\n"
"\n"
"However you can still use virt-rescue on the disk image, to try to mount\n"
"filesystems that are not recognized by libguestfs, or to create partitions,\n"
"logical volumes and filesystems on a blank disk.\n"
msgstr ""

#: rescue/suggest.c:162
#, c-format
msgid ""
"This disk contains one or more filesystems, but we don’t recognize any\n"
"operating system.  You can use these mount commands in virt-rescue (at the\n"
"><rescue> prompt) to mount these filesystems.\n"
"\n"
msgstr ""

#: rescue/suggest.c:167
#, c-format
msgid "# %s has type ‘%s’\n"
msgstr ""

#: test-tool/test-tool.c:57
#, c-format
msgid ""
"libguestfs-test-tool: interactive test tool\n"
"Copyright (C) 2009-2019 Red Hat Inc.\n"
"Usage:\n"
"  libguestfs-test-tool [--options]\n"
"Options:\n"
"  --help         Display usage\n"
"  --qemudir dir  Specify QEMU source directory\n"
"  --qemu qemu    Specify QEMU binary\n"
"  --timeout n\n"
"  -t n           Set launch timeout (default: %d seconds)\n"
"  --version\n"
"  -V             Display libguestfs version and exit\n"
msgstr ""

#: test-tool/test-tool.c:129
#, c-format
msgid "invalid timeout: %s"
msgstr ""

#: test-tool/test-tool.c:151
#, c-format
msgid "unexpected command line option %d"
msgstr ""

#: test-tool/test-tool.c:156
#, c-format
msgid "extra arguments on the command line"
msgstr ""

#: test-tool/test-tool.c:175
#, c-format
msgid ""
"failed parsing environment variables.\n"
"Check earlier messages, and the output of the ‘printenv’ command."
msgstr ""

#: test-tool/test-tool.c:317
#, c-format
msgid ""
"LIBGUESTFS_HV/LIBGUESTFS_QEMU environment variable is already set, so\n"
"--qemu/--qemudir options cannot be used."
msgstr ""

#: test-tool/test-tool.c:323
#, c-format
msgid "binary ‘%s’ does not exist or is not executable"
msgstr ""

#: test-tool/test-tool.c:335
#, c-format
msgid "path does not look like a qemu source directory: %s"
msgstr ""

#: v2v/libvirt_utils-c.c:140 v2v/libvirt_utils-c.c:211
#: v2v/libvirt_utils-c.c:395 v2v/libvirt_utils-c.c:452
#, c-format
msgid "cannot open libvirt connection ‘%s’"
msgstr ""

#: v2v/libvirt_utils-c.c:142 v2v/libvirt_utils-c.c:213
#: v2v/libvirt_utils-c.c:397 v2v/libvirt_utils-c.c:454
#, c-format
msgid "cannot open libvirt connection"
msgstr ""

#: v2v/libvirt_utils-c.c:163
#, c-format
msgid ""
"cannot find libvirt pool ‘%s’: %s\n"
"\n"
"Use ‘virsh pool-list --all’ to list all available pools, and ‘virsh pool-"
"dumpxml <pool>’ to display details about a particular pool.\n"
"\n"
"To set the pool which virt-v2v uses, add the ‘-os <pool>’ option."
msgstr ""

#: v2v/libvirt_utils-c.c:234 v2v/libvirt_utils-c.c:478
#, c-format
msgid "cannot find libvirt domain ‘%s’: %s"
msgstr ""

#: v2v/libvirt_utils-c.c:249
#, c-format
msgid ""
"libvirt domain ‘%s’ is running or paused.  It must be shut down in order to "
"perform virt-v2v conversion"
msgstr ""

#: v2v/libvirt_utils-c.c:262
#, c-format
msgid "cannot fetch XML description of guest ‘%s’: %s"
msgstr ""

#: v2v/libvirt_utils-c.c:299
#, c-format
msgid "cannot fetch XML description of pool ‘%s’: %s"
msgstr ""

#: v2v/libvirt_utils-c.c:342
#, c-format
msgid "cannot find libvirt volume ‘%s’: %s"
msgstr ""

#: v2v/libvirt_utils-c.c:352
#, c-format
msgid "cannot fetch XML description of volume ‘%s’: %s"
msgstr ""

#: v2v/libvirt_utils-c.c:411
#, c-format
msgid "cannot get libvirt hypervisor capabilities: %s"
msgstr ""

#: v2v/libvirt_utils-c.c:506
#, c-format
msgid "cannot get libvirt library version: %s"
msgstr ""

#: tools/virt-list-filesystems:147
msgid "virt-list-filesystems: no image or VM name given"
msgstr ""

#: tools/virt-list-partitions:159
msgid "virt-list-partitions: no image or VM name given"
msgstr ""

#: tools/virt-tar:190 tools/virt-tar:197
msgid ""
"virt-tar: extract/upload mode specified more than once on the command line\n"
msgstr ""

#: tools/virt-tar:219
msgid "virt-tar: no image, VM names, directory or filename given"
msgstr ""

#: tools/virt-tar:222
msgid "virt-tar: either -x or -u must be specified on the command line\n"
msgstr ""

#: tools/virt-tar:233
#, perl-brace-format
msgid "virt-tar: {tarball}: file not found\n"
msgstr ""

#: tools/virt-tar:236
#, perl-brace-format
msgid "virt-tar: {dir}: directory name must start with '/' character\n"
msgstr ""

#: tools/virt-tar:258 tools/virt-win-reg:316
#, perl-brace-format
msgid ""
"{prog}: No operating system could be detected inside this disk image.\n"
"\n"
"This may be because the file is not a disk image, or is not a virtual "
"machine\n"
"image, or because the OS type is not understood by libguestfs.\n"
"\n"
"If you feel this is an error, please file a bug report including as much\n"
"information about the disk image as possible.\n"
msgstr ""

#: tools/virt-tar:262 tools/virt-win-reg:320
#, perl-brace-format
msgid "{prog}: multiboot operating systems are not supported.\n"
msgstr ""

#: tools/virt-win-reg:260
msgid "no libvirt domain name or disk image given\n"
msgstr ""

#: tools/virt-win-reg:342
msgid ""
"expecting 1 or 2 more parameters, subkey path and optionally the value to "
"export\n"
msgstr ""

#: tools/virt-win-reg:502
#, perl-brace-format
msgid "virt-win-reg: {p}: cannot find user directory\n"
msgstr ""

#: tools/virt-win-reg:507
#, perl-brace-format
msgid "virt-win-reg: {p}: not a supported Windows Registry path\n"
msgstr ""

#: tools/virt-win-reg:580
#, perl-brace-format
msgid "virt-win-reg: {p}: could not download registry file: {err}\n"
msgstr ""

#: tools/virt-win-reg:597
#, perl-brace-format
msgid "virt-win-reg: {p}: could not upload registry file: {err}\n"
msgstr ""