~ubuntu-branches/ubuntu/natty/nova/natty

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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-02-21 10:03-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../nova/scheduler/chance.py:37 ../nova/scheduler/zone.py:55
#: ../nova/scheduler/simple.py:75 ../nova/scheduler/simple.py:110
#: ../nova/scheduler/simple.py:122
msgid "No hosts found"
msgstr ""

#: ../nova/exception.py:33
msgid "Unexpected error while running command."
msgstr ""

#: ../nova/exception.py:36
#, python-format
msgid ""
"%(description)s\n"
"Command: %(cmd)s\n"
"Exit code: %(exit_code)s\n"
"Stdout: %(stdout)r\n"
"Stderr: %(stderr)r"
msgstr ""

#: ../nova/exception.py:107
msgid "DB exception wrapped"
msgstr ""

#. exc_type, exc_value, exc_traceback = sys.exc_info()
#: ../nova/exception.py:120
msgid "Uncaught exception"
msgstr ""

#: ../nova/volume/api.py:45
#, python-format
msgid "Quota exceeeded for %(pid)s, tried to create %(size)sG volume"
msgstr ""

#: ../nova/volume/api.py:47
#, python-format
msgid "Volume quota exceeded. You cannot create a volume of size %sG"
msgstr ""

#: ../nova/volume/api.py:71 ../nova/volume/api.py:96
msgid "Volume status must be available"
msgstr ""

#: ../nova/volume/api.py:98
msgid "Volume is already attached"
msgstr ""

#: ../nova/volume/api.py:104
msgid "Volume is already detached"
msgstr ""

#: ../nova/api/openstack/servers.py:72
msgid "Failed to read private ip"
msgstr ""

#: ../nova/api/openstack/servers.py:79
msgid "Failed to read public ip(s)"
msgstr ""

#: ../nova/api/openstack/servers.py:152
#, python-format
msgid "%(param)s property not found for image %(_image_id)s"
msgstr ""

#: ../nova/api/openstack/servers.py:168
msgid "No keypairs defined"
msgstr ""

#: ../nova/api/openstack/servers.py:238
#, python-format
msgid "Compute.api::lock %s"
msgstr ""

#: ../nova/api/openstack/servers.py:253
#, python-format
msgid "Compute.api::unlock %s"
msgstr ""

#: ../nova/api/openstack/servers.py:267
#, python-format
msgid "Compute.api::get_lock %s"
msgstr ""

#: ../nova/api/openstack/servers.py:281
#, python-format
msgid "Compute.api::reset_network %s"
msgstr ""

#: ../nova/api/openstack/servers.py:292
#, python-format
msgid "Compute.api::pause %s"
msgstr ""

#: ../nova/api/openstack/servers.py:303
#, python-format
msgid "Compute.api::unpause %s"
msgstr ""

#: ../nova/api/openstack/servers.py:314
#, python-format
msgid "compute.api::suspend %s"
msgstr ""

#: ../nova/api/openstack/servers.py:325
#, python-format
msgid "compute.api::resume %s"
msgstr ""

#: ../nova/twistd.py:157
msgid "Wrong number of arguments."
msgstr ""

#: ../nova/twistd.py:209
#, python-format
msgid "pidfile %s does not exist. Daemon not running?\n"
msgstr ""

#: ../nova/twistd.py:221
msgid "No such process"
msgstr ""

#: ../nova/twistd.py:230 ../nova/service.py:224
#, python-format
msgid "Serving %s"
msgstr ""

#: ../nova/twistd.py:262 ../nova/service.py:225
msgid "Full set of FLAGS:"
msgstr ""

#: ../nova/twistd.py:266
#, python-format
msgid "Starting %s"
msgstr ""

#: ../nova/virt/xenapi/volumeops.py:48 ../nova/virt/xenapi/volumeops.py:101
#: ../nova/db/sqlalchemy/api.py:731 ../nova/virt/libvirt_conn.py:741
#: ../nova/api/ec2/__init__.py:317
#, python-format
msgid "Instance %s not found"
msgstr ""

#. NOTE: No Resource Pool concept so far
#: ../nova/virt/xenapi/volumeops.py:51
#, python-format
msgid "Attach_volume: %(instance_name)s, %(device_path)s, %(mountpoint)s"
msgstr ""

#: ../nova/virt/xenapi/volumeops.py:69
#, python-format
msgid "Unable to create VDI on SR %(sr_ref)s for instance %(instance_name)s"
msgstr ""

#: ../nova/virt/xenapi/volumeops.py:80
#, python-format
msgid "Unable to use SR %(sr_ref)s for instance %(instance_name)s"
msgstr ""

#: ../nova/virt/xenapi/volumeops.py:91
#, python-format
msgid "Unable to attach volume to instance %s"
msgstr ""

#: ../nova/virt/xenapi/volumeops.py:93
#, python-format
msgid "Mountpoint %(mountpoint)s attached to instance %(instance_name)s"
msgstr ""

#. Detach VBD from VM
#: ../nova/virt/xenapi/volumeops.py:104
#, python-format
msgid "Detach_volume: %(instance_name)s, %(mountpoint)s"
msgstr ""

#: ../nova/virt/xenapi/volumeops.py:112
#, python-format
msgid "Unable to locate volume %s"
msgstr ""

#: ../nova/virt/xenapi/volumeops.py:120
#, python-format
msgid "Unable to detach volume %s"
msgstr ""

#: ../nova/virt/xenapi/volumeops.py:127
#, python-format
msgid "Mountpoint %(mountpoint)s detached from instance %(instance_name)s"
msgstr ""

#: ../nova/compute/instance_types.py:41
#, python-format
msgid "Unknown instance type: %s"
msgstr ""

#: ../nova/crypto.py:46
msgid "Filename of root CA"
msgstr ""

#: ../nova/crypto.py:49
msgid "Filename of private key"
msgstr ""

#: ../nova/crypto.py:51
msgid "Filename of root Certificate Revokation List"
msgstr ""

#: ../nova/crypto.py:53
msgid "Where we keep our keys"
msgstr ""

#: ../nova/crypto.py:55
msgid "Where we keep our root CA"
msgstr ""

#: ../nova/crypto.py:57
msgid "Should we use a CA for each project?"
msgstr ""

#: ../nova/crypto.py:61
#, python-format
msgid "Subject for certificate for users, %s for project, user, timestamp"
msgstr ""

#: ../nova/crypto.py:66
#, python-format
msgid "Subject for certificate for projects, %s for project, timestamp"
msgstr ""

#: ../nova/crypto.py:71
#, python-format
msgid "Subject for certificate for vpns, %s for project, timestamp"
msgstr ""

#: ../nova/crypto.py:258
#, python-format
msgid "Flags path: %s"
msgstr ""

#: ../nova/scheduler/manager.py:69
#, python-format
msgid "Casting to %(topic)s %(host)s for %(method)s"
msgstr ""

#: ../nova/compute/manager.py:78
#, python-format
msgid "check_instance_lock: decorating: |%s|"
msgstr ""

#: ../nova/compute/manager.py:80
#, python-format
msgid ""
"check_instance_lock: arguments: |%(self)s| |%(context)s| |%(instance_id)s|"
msgstr ""

#: ../nova/compute/manager.py:84
#, python-format
msgid "check_instance_lock: locked: |%s|"
msgstr ""

#: ../nova/compute/manager.py:86
#, python-format
msgid "check_instance_lock: admin: |%s|"
msgstr ""

#: ../nova/compute/manager.py:91
#, python-format
msgid "check_instance_lock: executing: |%s|"
msgstr ""

#: ../nova/compute/manager.py:95
#, python-format
msgid "check_instance_lock: not executing |%s|"
msgstr ""

#: ../nova/compute/manager.py:179
msgid "Instance has already been created"
msgstr ""

#: ../nova/compute/manager.py:180
#, python-format
msgid "instance %s: starting..."
msgstr ""

#. pylint: disable-msg=W0702
#: ../nova/compute/manager.py:219
#, python-format
msgid "instance %s: Failed to spawn"
msgstr ""

#: ../nova/compute/manager.py:233 ../nova/tests/test_cloud.py:286
#, python-format
msgid "Terminating instance %s"
msgstr ""

#: ../nova/compute/manager.py:255
#, python-format
msgid "Deallocating address %s"
msgstr ""

#: ../nova/compute/manager.py:268
#, python-format
msgid "trying to destroy already destroyed instance: %s"
msgstr ""

#: ../nova/compute/manager.py:282
#, python-format
msgid "Rebooting instance %s"
msgstr ""

#: ../nova/compute/manager.py:287
#, python-format
msgid ""
"trying to reboot a non-running instance: %(instance_id)s (state: %(state)s "
"expected: %(running)s)"
msgstr ""

#: ../nova/compute/manager.py:311
#, python-format
msgid "instance %s: snapshotting"
msgstr ""

#: ../nova/compute/manager.py:316
#, python-format
msgid ""
"trying to snapshot a non-running instance: %(instance_id)s (state: %(state)s "
"expected: %(running)s)"
msgstr ""

#: ../nova/compute/manager.py:332
#, python-format
msgid ""
"trying to reset the password on a non-running instance: %(instance_id)s "
"(state: %(instance_state)s expected: %(expected_state)s)"
msgstr ""

#: ../nova/compute/manager.py:335
#, python-format
msgid "instance %s: setting admin password"
msgstr ""

#: ../nova/compute/manager.py:353
#, python-format
msgid ""
"trying to inject a file into a non-running instance: %(instance_id)s (state: "
"%(instance_state)s expected: %(expected_state)s)"
msgstr ""

#: ../nova/compute/manager.py:362
#, python-format
msgid "instance %(nm)s: injecting file to %(plain_path)s"
msgstr ""

#: ../nova/compute/manager.py:372
#, python-format
msgid "instance %s: rescuing"
msgstr ""

#: ../nova/compute/manager.py:387
#, python-format
msgid "instance %s: unrescuing"
msgstr ""

#: ../nova/compute/manager.py:406
#, python-format
msgid "instance %s: pausing"
msgstr ""

#: ../nova/compute/manager.py:423
#, python-format
msgid "instance %s: unpausing"
msgstr ""

#: ../nova/compute/manager.py:440
#, python-format
msgid "instance %s: retrieving diagnostics"
msgstr ""

#: ../nova/compute/manager.py:453
#, python-format
msgid "instance %s: suspending"
msgstr ""

#: ../nova/compute/manager.py:472
#, python-format
msgid "instance %s: resuming"
msgstr ""

#: ../nova/compute/manager.py:491
#, python-format
msgid "instance %s: locking"
msgstr ""

#: ../nova/compute/manager.py:503
#, python-format
msgid "instance %s: unlocking"
msgstr ""

#: ../nova/compute/manager.py:513
#, python-format
msgid "instance %s: getting locked state"
msgstr ""

#: ../nova/compute/manager.py:526
#, python-format
msgid "instance %s: reset network"
msgstr ""

#: ../nova/compute/manager.py:535 ../nova/api/ec2/cloud.py:515
#, python-format
msgid "Get console output for instance %s"
msgstr ""

#: ../nova/compute/manager.py:543
#, python-format
msgid "instance %s: getting ajax console"
msgstr ""

#: ../nova/compute/manager.py:553
#, python-format
msgid ""
"instance %(instance_id)s: attaching volume %(volume_id)s to %(mountpoint)s"
msgstr ""

#. pylint: disable-msg=W0702
#. NOTE(vish): The inline callback eats the exception info so we
#. log the traceback here and reraise the same
#. ecxception below.
#: ../nova/compute/manager.py:569
#, python-format
msgid "instance %(instance_id)s: attach failed %(mountpoint)s, removing"
msgstr ""

#: ../nova/compute/manager.py:585
#, python-format
msgid ""
"Detach volume %(volume_id)s from mountpoint %(mp)s on instance "
"%(instance_id)s"
msgstr ""

#: ../nova/compute/manager.py:588
#, python-format
msgid "Detaching volume from unknown instance %s"
msgstr ""

#: ../nova/scheduler/simple.py:53
#, python-format
msgid "Host %s is not alive"
msgstr ""

#: ../nova/scheduler/simple.py:65
msgid "All hosts have too many cores"
msgstr ""

#: ../nova/scheduler/simple.py:87
#, python-format
msgid "Host %s not available"
msgstr ""

#: ../nova/scheduler/simple.py:99
msgid "All hosts have too many gigabytes"
msgstr ""

#: ../nova/scheduler/simple.py:119
msgid "All hosts have too many networks"
msgstr ""

#: ../nova/volume/manager.py:85
#, python-format
msgid "Re-exporting %s volumes"
msgstr ""

#: ../nova/volume/manager.py:90
#, python-format
msgid "volume %s: skipping export"
msgstr ""

#: ../nova/volume/manager.py:96
#, python-format
msgid "volume %s: creating"
msgstr ""

#: ../nova/volume/manager.py:108
#, python-format
msgid "volume %(vol_name)s: creating lv of size %(vol_size)sG"
msgstr ""

#: ../nova/volume/manager.py:112
#, python-format
msgid "volume %s: creating export"
msgstr ""

#: ../nova/volume/manager.py:123
#, python-format
msgid "volume %s: created successfully"
msgstr ""

#: ../nova/volume/manager.py:131
msgid "Volume is still attached"
msgstr ""

#: ../nova/volume/manager.py:133
msgid "Volume is not local to this node"
msgstr ""

#: ../nova/volume/manager.py:136
#, python-format
msgid "volume %s: removing export"
msgstr ""

#: ../nova/volume/manager.py:138
#, python-format
msgid "volume %s: deleting"
msgstr ""

#: ../nova/volume/manager.py:147
#, python-format
msgid "volume %s: deleted successfully"
msgstr ""

#: ../nova/virt/xenapi/fake.py:74
#, python-format
msgid "%(text)s: _db_content => %(content)s"
msgstr ""

#: ../nova/virt/xenapi/fake.py:304 ../nova/virt/xenapi/fake.py:404
#: ../nova/virt/xenapi/fake.py:422 ../nova/virt/xenapi/fake.py:478
msgid "Raising NotImplemented"
msgstr ""

#: ../nova/virt/xenapi/fake.py:306
#, python-format
msgid "xenapi.fake does not have an implementation for %s"
msgstr ""

#: ../nova/virt/xenapi/fake.py:341
#, python-format
msgid "Calling %(localname)s %(impl)s"
msgstr ""

#: ../nova/virt/xenapi/fake.py:346
#, python-format
msgid "Calling getter %s"
msgstr ""

#: ../nova/virt/xenapi/fake.py:406
#, python-format
msgid ""
"xenapi.fake does not have an implementation for %s or it has been called "
"with the wrong number of arguments"
msgstr ""

#: ../nova/tests/test_cloud.py:256
msgid "Can't test instances without a real virtual env."
msgstr ""

#: ../nova/tests/test_cloud.py:268
#, python-format
msgid "Need to watch instance %s until it's running..."
msgstr ""

#: ../nova/virt/connection.py:73
msgid "Failed to open connection to the hypervisor"
msgstr ""

#: ../nova/network/linux_net.py:187
#, python-format
msgid "Starting VLAN inteface %s"
msgstr ""

#: ../nova/network/linux_net.py:208
#, python-format
msgid "Starting Bridge interface for %s"
msgstr ""

#. pylint: disable-msg=W0703
#: ../nova/network/linux_net.py:314
#, python-format
msgid "Hupping dnsmasq threw %s"
msgstr ""

#: ../nova/network/linux_net.py:316
#, python-format
msgid "Pid %d is stale, relaunching dnsmasq"
msgstr ""

#. pylint: disable-msg=W0703
#: ../nova/network/linux_net.py:358
#, python-format
msgid "killing radvd threw %s"
msgstr ""

#: ../nova/network/linux_net.py:360
#, python-format
msgid "Pid %d is stale, relaunching radvd"
msgstr ""

#. pylint: disable-msg=W0703
#: ../nova/network/linux_net.py:449
#, python-format
msgid "Killing dnsmasq threw %s"
msgstr ""

#: ../nova/utils.py:58
#, python-format
msgid "Inner Exception: %s"
msgstr ""

#: ../nova/utils.py:59
#, python-format
msgid "Class %s cannot be found"
msgstr ""

#: ../nova/utils.py:118
#, python-format
msgid "Fetching %s"
msgstr ""

#: ../nova/utils.py:130
#, python-format
msgid "Running cmd (subprocess): %s"
msgstr ""

#: ../nova/utils.py:143 ../nova/utils.py:183
#, python-format
msgid "Result was %s"
msgstr ""

#: ../nova/utils.py:159
#, python-format
msgid "Running cmd (SSH): %s"
msgstr ""

#: ../nova/utils.py:217
#, python-format
msgid "debug in callback: %s"
msgstr ""

#: ../nova/utils.py:222
#, python-format
msgid "Running %s"
msgstr ""

#: ../nova/utils.py:262
#, python-format
msgid "Link Local address is not found.:%s"
msgstr ""

#: ../nova/utils.py:265
#, python-format
msgid "Couldn't get Link Local IP of %(interface)s :%(ex)s"
msgstr ""

#: ../nova/utils.py:363
#, python-format
msgid "Invalid backend: %s"
msgstr ""

#: ../nova/utils.py:374
#, python-format
msgid "backend %s"
msgstr ""

#: ../nova/fakerabbit.py:49
#, python-format
msgid "(%(nm)s) publish (key: %(routing_key)s) %(message)s"
msgstr ""

#: ../nova/fakerabbit.py:54
#, python-format
msgid "Publishing to route %s"
msgstr ""

#: ../nova/fakerabbit.py:84
#, python-format
msgid "Declaring queue %s"
msgstr ""

#: ../nova/fakerabbit.py:90
#, python-format
msgid "Declaring exchange %s"
msgstr ""

#: ../nova/fakerabbit.py:96
#, python-format
msgid "Binding %(queue)s to %(exchange)s with key %(routing_key)s"
msgstr ""

#: ../nova/fakerabbit.py:121
#, python-format
msgid "Getting from %(queue)s: %(message)s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:135 ../nova/virt/hyperv.py:171
#, python-format
msgid "Created VM %s..."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:138
#, python-format
msgid "Created VM %(instance_name)s as %(vm_ref)s."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:168
#, python-format
msgid "Creating VBD for VM %(vm_ref)s, VDI %(vdi_ref)s ... "
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:171
#, python-format
msgid "Created VBD %(vbd_ref)s for VM %(vm_ref)s, VDI %(vdi_ref)s."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:187
#, python-format
msgid "VBD not found in instance %s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:197
#, python-format
msgid "Unable to unplug VBD %s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:209
#, python-format
msgid "Unable to destroy VBD %s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:224
#, python-format
msgid "Creating VIF for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:227
#, python-format
msgid "Created VIF %(vif_ref)s for VM %(vm_ref)s, network %(network_ref)s."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:246
#, python-format
msgid ""
"Created VDI %(vdi_ref)s (%(name_label)s, %(virtual_size)s, %(read_only)s) on "
"%(sr_ref)s."
msgstr ""

#. TODO(sirp): Add quiesce and VSS locking support when Windows support
#. is added
#: ../nova/virt/xenapi/vm_utils.py:258
#, python-format
msgid "Snapshotting VM %(vm_ref)s with label '%(label)s'..."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:272
#, python-format
msgid "Created snapshot %(template_vm_ref)s from VM %(vm_ref)s."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:286
#, python-format
msgid "Asking xapi to upload %(vdi_uuids)s as ID %(image_id)s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:327
#, python-format
msgid "Size for image %(image)s:%(virtual_size)d"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:332
#, python-format
msgid "Glance image %s"
msgstr ""

#. we need to invoke a plugin for copying VDI's
#. content into proper path
#: ../nova/virt/xenapi/vm_utils.py:342
#, python-format
msgid "Copying VDI %s to /boot/guest on dom0"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:352
#, python-format
msgid "Kernel/Ramdisk VDI %s destroyed"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:361
#, python-format
msgid "Asking xapi to fetch %(url)s as %(access)s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:386 ../nova/virt/xenapi/vm_utils.py:402
#, python-format
msgid "Looking up vdi %s for PV kernel"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:397
#, python-format
msgid "PV Kernel in VDI:%s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:405
#, python-format
msgid "Running pygrub against %s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:411
#, python-format
msgid "Found Xen kernel %s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:413
msgid "No Xen kernel found.  Booting HVM."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:425 ../nova/virt/hyperv.py:431
#, python-format
msgid "duplicate name found: %s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:442
#, python-format
msgid "VDI %s is still available"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:463
#, python-format
msgid "(VM_UTILS) xenserver vm state -> |%s|"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:465
#, python-format
msgid "(VM_UTILS) xenapi power_state -> |%s|"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:525
#, python-format
msgid "VHD %(vdi_uuid)s has parent %(parent_ref)s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:542
#, python-format
msgid "Re-scanning SR %s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:567
#, python-format
msgid ""
"VHD coalesce attempts exceeded (%(counter)d > %(max_attempts)d), giving up..."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:574
#, python-format
msgid ""
"Parent %(parent_uuid)s doesn't match original parent "
"%(original_parent_uuid)s, waiting for coalesce..."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:590
#, python-format
msgid "No VDIs found for VM %s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:594
#, python-format
msgid "Unexpected number of VDIs (%(num_vdis)s) found for VM %(vm_ref)s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:653
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:188
#, python-format
msgid "Creating VBD for VDI %s ... "
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:655
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:190
#, python-format
msgid "Creating VBD for VDI %s done."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:657
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:192
#, python-format
msgid "Plugging VBD %s ... "
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:659
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:194
#, python-format
msgid "Plugging VBD %s done."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:661
#, python-format
msgid "VBD %(vbd)s plugged as %(orig_dev)s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:664
#, python-format
msgid "VBD %(vbd)s plugged into wrong dev, remapping to %(dev)s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:668
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:197
#, python-format
msgid "Destroying VBD for VDI %s ... "
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:671
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:200
#, python-format
msgid "Destroying VBD for VDI %s done."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:683
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:211
msgid "VBD.unplug successful first time."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:688
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:216
msgid "VBD.unplug rejected: retrying..."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:692
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:220
msgid "VBD.unplug successful eventually."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:695
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:223
#, python-format
msgid "Ignoring XenAPI.Failure in VBD.unplug: %s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:704
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:66
#, python-format
msgid "Ignoring XenAPI.Failure %s"
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:735
#, python-format
msgid ""
"Writing partition table %(primary_first)d %(primary_last)d to %(dest)s..."
msgstr ""

#: ../nova/virt/xenapi/vm_utils.py:747
#, python-format
msgid "Writing partition table %s done."
msgstr ""

#: ../nova/tests/test_rpc.py:89
#, python-format
msgid "Nested received %(queue)s, %(value)s"
msgstr ""

#: ../nova/tests/test_rpc.py:95
#, python-format
msgid "Nested return %s"
msgstr ""

#: ../nova/tests/test_rpc.py:120 ../nova/tests/test_rpc.py:126
#, python-format
msgid "Received %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:44
msgid "Use of empty request context is deprecated"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:133
#, python-format
msgid "No service for id %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:251
#, python-format
msgid "No service for %(host)s, %(binary)s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:592
msgid "No fixed ips defined"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:608
#, python-format
msgid "No floating ip for address %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:629
#, python-format
msgid "No address for instance %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:961
#, python-format
msgid "no keypair for user %(user_id)s, name %(name)s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1076 ../nova/db/sqlalchemy/api.py:1156
#, python-format
msgid "No network for id %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1086
msgid "No networks defined"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1115
#, python-format
msgid "No network for bridge %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1129 ../nova/db/sqlalchemy/api.py:1142
#, python-format
msgid "No network for instance %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1277
#, python-format
msgid "Token %s does not exist"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1302
#, python-format
msgid "No quota for project_id %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1455 ../nova/db/sqlalchemy/api.py:1501
#: ../nova/api/ec2/__init__.py:323
#, python-format
msgid "Volume %s not found"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1514
#, python-format
msgid "No export device found for volume %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1527
#, python-format
msgid "No target id found for volume %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1572
#, python-format
msgid "No security group with id %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1589
#, python-format
msgid "No security group named %(group_name)s for project: %(project_id)s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1682
#, python-format
msgid "No secuity group rule with id %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1756
#, python-format
msgid "No user for id %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1772
#, python-format
msgid "No user for access key %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1834
#, python-format
msgid "No project with id %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1979
#, python-format
msgid "No console pool with id %(pool_id)s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:1996
#, python-format
msgid ""
"No console pool of type %(console_type)s for compute host %(compute_host)s "
"on proxy host %(host)s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:2035
#, python-format
msgid "No console for instance %(instance_id)s in pool %(pool_id)s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:2057
#, python-format
msgid "on instance %s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:2058
#, python-format
msgid "No console with id %(console_id)s %(idesc)s"
msgstr ""

#: ../nova/db/sqlalchemy/api.py:2078 ../nova/db/sqlalchemy/api.py:2097
#, python-format
msgid "No zone with id %(zone_id)s"
msgstr ""

#: ../nova/virt/libvirt_conn.py:160
#, python-format
msgid "Checking state of %s"
msgstr ""

#: ../nova/virt/libvirt_conn.py:165
#, python-format
msgid "Current state of %(name)s was %(state)s."
msgstr ""

#: ../nova/virt/libvirt_conn.py:183
#, python-format
msgid "Connecting to libvirt: %s"
msgstr ""

#: ../nova/virt/libvirt_conn.py:196
msgid "Connection to libvirt broke"
msgstr ""

#: ../nova/virt/libvirt_conn.py:258
#, python-format
msgid "instance %(instance_name)s: deleting instance files %(target)s"
msgstr ""

#: ../nova/virt/libvirt_conn.py:283
#, python-format
msgid "Invalid device path %s"
msgstr ""

#: ../nova/virt/libvirt_conn.py:313
#, python-format
msgid "No disk at %s"
msgstr ""

#: ../nova/virt/libvirt_conn.py:320
msgid "Instance snapshotting is not supported for libvirtat this time"
msgstr ""

#: ../nova/virt/libvirt_conn.py:336
#, python-format
msgid "instance %s: rebooted"
msgstr ""

#: ../nova/virt/libvirt_conn.py:339
#, python-format
msgid "_wait_for_reboot failed: %s"
msgstr ""

#: ../nova/virt/libvirt_conn.py:382
#, python-format
msgid "instance %s: rescued"
msgstr ""

#: ../nova/virt/libvirt_conn.py:385
#, python-format
msgid "_wait_for_rescue failed: %s"
msgstr ""

#: ../nova/virt/libvirt_conn.py:411
#, python-format
msgid "instance %s: is running"
msgstr ""

#: ../nova/virt/libvirt_conn.py:422
#, python-format
msgid "instance %s: booted"
msgstr ""

#: ../nova/virt/libvirt_conn.py:425 ../nova/virt/xenapi/vmops.py:186
#, python-format
msgid "instance %s: failed to boot"
msgstr ""

#: ../nova/virt/libvirt_conn.py:436
#, python-format
msgid "virsh said: %r"
msgstr ""

#: ../nova/virt/libvirt_conn.py:440
msgid "cool, it's a device"
msgstr ""

#: ../nova/virt/libvirt_conn.py:448
#, python-format
msgid "data: %(data)r, fpath: %(fpath)r"
msgstr ""

#: ../nova/virt/libvirt_conn.py:456
#, python-format
msgid "Contents of file %(fpath)s: %(contents)r"
msgstr ""

#: ../nova/virt/libvirt_conn.py:489
msgid "Unable to find an open port"
msgstr ""

#: ../nova/virt/libvirt_conn.py:563
#, python-format
msgid "instance %s: Creating image"
msgstr ""

#: ../nova/virt/libvirt_conn.py:646
#, python-format
msgid "instance %(inst_name)s: injecting key into image %(img_id)s"
msgstr ""

#: ../nova/virt/libvirt_conn.py:649
#, python-format
msgid "instance %(inst_name)s: injecting net into image %(img_id)s"
msgstr ""

#. This could be a windows image, or a vmdk format disk
#: ../nova/virt/libvirt_conn.py:657
#, python-format
msgid ""
"instance %(inst_name)s: ignoring error injecting data into image %(img_id)s "
"(%(e)s)"
msgstr ""

#. TODO(termie): cache?
#: ../nova/virt/libvirt_conn.py:665
#, python-format
msgid "instance %s: starting toXML method"
msgstr ""

#: ../nova/virt/libvirt_conn.py:732
#, python-format
msgid "instance %s: finished toXML method"
msgstr ""

#: ../nova/virt/libvirt_conn.py:751
msgid "diagnostics are not supported for libvirt"
msgstr ""

#: ../nova/virt/libvirt_conn.py:1225
#, python-format
msgid "Attempted to unfilter instance %s which is not filtered"
msgstr ""

#: ../nova/api/ec2/metadatarequesthandler.py:76
#, python-format
msgid "Failed to get metadata for ip: %s"
msgstr ""

#: ../nova/auth/fakeldap.py:33
msgid "Attempted to instantiate singleton"
msgstr ""

#: ../nova/network/api.py:39
#, python-format
msgid "Quota exceeeded for %s, tried to allocate address"
msgstr ""

#: ../nova/network/api.py:42
msgid "Address quota exceeded. You cannot allocate any more addresses"
msgstr ""

#: ../nova/tests/test_volume.py:162
#, python-format
msgid "Target %s allocated"
msgstr ""

#: ../nova/virt/images.py:70
#, python-format
msgid "Finished retreving %(url)s -- placed in %(path)s"
msgstr ""

#: ../nova/scheduler/driver.py:66
msgid "Must implement a fallback schedule"
msgstr ""

#: ../nova/console/manager.py:70
msgid "Adding console"
msgstr ""

#: ../nova/console/manager.py:90
#, python-format
msgid "Tried to remove non-existant console %(console_id)s."
msgstr ""

#: ../nova/api/direct.py:149
msgid "not available"
msgstr ""

#: ../nova/api/ec2/cloud.py:62
#, python-format
msgid "The key_pair %s already exists"
msgstr ""

#. TODO(vish): Do this with M2Crypto instead
#: ../nova/api/ec2/cloud.py:118
#, python-format
msgid "Generating root CA: %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:303
#, python-format
msgid "Create key pair %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:311
#, python-format
msgid "Delete key pair %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:386
#, python-format
msgid "%s is not a valid ipProtocol"
msgstr ""

#: ../nova/api/ec2/cloud.py:390
msgid "Invalid port range"
msgstr ""

#: ../nova/api/ec2/cloud.py:421
#, python-format
msgid "Revoke security group ingress %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:430 ../nova/api/ec2/cloud.py:459
msgid "Not enough parameters to build a valid rule."
msgstr ""

#: ../nova/api/ec2/cloud.py:443
msgid "No rule for the specified parameters."
msgstr ""

#: ../nova/api/ec2/cloud.py:450
#, python-format
msgid "Authorize security group ingress %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:464
#, python-format
msgid "This rule already exists in group %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:492
#, python-format
msgid "Create Security Group %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:495
#, python-format
msgid "group %s already exists"
msgstr ""

#: ../nova/api/ec2/cloud.py:507
#, python-format
msgid "Delete security group %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:584
#, python-format
msgid "Create volume of %s GB"
msgstr ""

#: ../nova/api/ec2/cloud.py:612
#, python-format
msgid "Attach volume %(volume_id)s to instance %(instance_id)s at %(device)s"
msgstr ""

#: ../nova/api/ec2/cloud.py:629
#, python-format
msgid "Detach volume %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:761
msgid "Allocate address"
msgstr ""

#: ../nova/api/ec2/cloud.py:766
#, python-format
msgid "Release address %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:771
#, python-format
msgid "Associate address %(public_ip)s to instance %(instance_id)s"
msgstr ""

#: ../nova/api/ec2/cloud.py:780
#, python-format
msgid "Disassociate address %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:807
msgid "Going to start terminating instances"
msgstr ""

#: ../nova/api/ec2/cloud.py:815
#, python-format
msgid "Reboot instance %r"
msgstr ""

#: ../nova/api/ec2/cloud.py:867
#, python-format
msgid "De-registering image %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:875
#, python-format
msgid "Registered image %(image_location)s with id %(image_id)s"
msgstr ""

#: ../nova/api/ec2/cloud.py:882 ../nova/api/ec2/cloud.py:900
#, python-format
msgid "attribute not supported: %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:890
#, python-format
msgid "invalid id: %s"
msgstr ""

#: ../nova/api/ec2/cloud.py:903
msgid "user or group not specified"
msgstr ""

#: ../nova/api/ec2/cloud.py:905
msgid "only group \"all\" is supported"
msgstr ""

#: ../nova/api/ec2/cloud.py:907
msgid "operation_type must be add or remove"
msgstr ""

#: ../nova/api/ec2/cloud.py:908
#, python-format
msgid "Updating image %s publicity"
msgstr ""

#: ../bin/nova-api.py:52
#, python-format
msgid "Using paste.deploy config at: %s"
msgstr ""

#: ../bin/nova-api.py:57
#, python-format
msgid "No paste configuration for app: %s"
msgstr ""

#: ../bin/nova-api.py:59
#, python-format
msgid ""
"App Config: %(api)s\n"
"%(config)r"
msgstr ""

#: ../bin/nova-api.py:64
#, python-format
msgid "Running %s API"
msgstr ""

#: ../bin/nova-api.py:69
#, python-format
msgid "No known API applications configured in %s."
msgstr ""

#: ../bin/nova-api.py:83
#, python-format
msgid "Starting nova-api node (version %s)"
msgstr ""

#: ../bin/nova-api.py:89
#, python-format
msgid "No paste configuration found for: %s"
msgstr ""

#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:84
#, python-format
msgid "Argument %(key)s value %(value)s is too short."
msgstr ""

#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:89
#, python-format
msgid "Argument %(key)s value %(value)s contains invalid characters."
msgstr ""

#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:94
#, python-format
msgid "Argument %(key)s value %(value)s starts with a hyphen."
msgstr ""

#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:102
#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:130
#, python-format
msgid "Argument %s is required."
msgstr ""

#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:117
#, python-format
msgid ""
"Argument %(key)s may not take value %(value)s. Valid values are ['true', "
"'false']."
msgstr ""

#: ../plugins/xenserver/xenapi/etc/xapi.d/plugins/pluginlib_nova.py:163
#, python-format
msgid ""
"Created VDI %(vdi_ref)s (%(label)s, %(size)s, %(read_only)s) on %(sr_ref)s."
msgstr ""

#: ../nova/virt/xenapi/vmops.py:67
#, python-format
msgid "Attempted to create non-unique name %s"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:73
#, python-format
msgid "instance %(name)s: not enough free memory"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:148
#, python-format
msgid "Starting VM %s..."
msgstr ""

#: ../nova/virt/xenapi/vmops.py:151
#, python-format
msgid "Spawning VM %(instance_name)s created %(vm_ref)s."
msgstr ""

#: ../nova/virt/xenapi/vmops.py:162
#, python-format
msgid "Invalid value for onset_files: '%s'"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:167
#, python-format
msgid "Injecting file path: '%s'"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:180
#, python-format
msgid "Instance %s: booted"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:232
#, python-format
msgid "Instance not present %s"
msgstr ""

#. TODO(sirp): Add quiesce and VSS locking support when Windows support
#. is added
#: ../nova/virt/xenapi/vmops.py:261
#, python-format
msgid "Starting snapshot for VM %s"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:269
#, python-format
msgid "Unable to Snapshot %(vm_ref)s: %(exc)s"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:280
#, python-format
msgid "Finished snapshot and upload for VM %s"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:356
#, python-format
msgid "VM %(vm)s already halted, skipping shutdown..."
msgstr ""

#: ../nova/virt/xenapi/vmops.py:389
msgid "Removing kernel/ramdisk files"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:399
msgid "kernel/ramdisk files removed"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:561
#, python-format
msgid ""
"TIMEOUT: The call to %(method)s timed out. VM id=%(instance_id)s; args="
"%(strargs)s"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:564
#, python-format
msgid ""
"NOT IMPLEMENTED: The call to %(method)s is not supported by the agent. VM id="
"%(instance_id)s; args=%(strargs)s"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:569
#, python-format
msgid ""
"The call to %(method)s returned an error: %(e)s. VM id=%(instance_id)s; args="
"%(strargs)s"
msgstr ""

#: ../nova/virt/xenapi/vmops.py:760
#, python-format
msgid "OpenSSL error: %s"
msgstr ""

#: ../nova/tests/test_compute.py:148
#, python-format
msgid "Running instances: %s"
msgstr ""

#: ../nova/tests/test_compute.py:154
#, python-format
msgid "After terminating instances: %s"
msgstr ""

#: ../nova/cloudpipe/pipelib.py:45
msgid "Template for script to run on cloudpipe instance boot"
msgstr ""

#: ../nova/cloudpipe/pipelib.py:48
msgid "Network to push into openvpn config"
msgstr ""

#: ../nova/cloudpipe/pipelib.py:51
msgid "Netmask to push into openvpn config"
msgstr ""

#: ../nova/cloudpipe/pipelib.py:97
#, python-format
msgid "Launching VPN for %s"
msgstr ""

#: ../nova/db/sqlalchemy/migration.py:35
msgid "python-migrate is not installed. Exiting."
msgstr ""

#: ../nova/image/s3.py:99
#, python-format
msgid "Image %s could not be found"
msgstr ""

#: ../nova/api/ec2/__init__.py:121
msgid "Too many failed authentications."
msgstr ""

#: ../nova/api/ec2/__init__.py:131
#, python-format
msgid ""
"Access key %(access_key)s has had %(failures)d failed authentications and "
"will be locked out for %(lock_mins)d minutes."
msgstr ""

#: ../nova/api/ec2/__init__.py:169 ../nova/objectstore/handler.py:140
#, python-format
msgid "Authentication Failure: %s"
msgstr ""

#: ../nova/api/ec2/__init__.py:182
#, python-format
msgid "Authenticated Request For %(uname)s:%(pname)s)"
msgstr ""

#: ../nova/api/ec2/__init__.py:207
#, python-format
msgid "action: %s"
msgstr ""

#: ../nova/api/ec2/__init__.py:209
#, python-format
msgid "arg: %(key)s\t\tval: %(value)s"
msgstr ""

#: ../nova/api/ec2/__init__.py:281
#, python-format
msgid ""
"Unauthorized request for controller=%(controller)s and action=%(action)s"
msgstr ""

#: ../nova/api/ec2/__init__.py:314
#, python-format
msgid "InstanceNotFound raised: %s"
msgstr ""

#: ../nova/api/ec2/__init__.py:320
#, python-format
msgid "VolumeNotFound raised: %s"
msgstr ""

#: ../nova/api/ec2/__init__.py:326
#, python-format
msgid "NotFound raised: %s"
msgstr ""

#: ../nova/api/ec2/__init__.py:329
#, python-format
msgid "ApiError raised: %s"
msgstr ""

#: ../nova/api/ec2/__init__.py:338
#, python-format
msgid "Unexpected error raised: %s"
msgstr ""

#: ../nova/api/ec2/__init__.py:343
msgid "An unknown error has occurred. Please try your request again."
msgstr ""

#: ../nova/auth/dbdriver.py:84
#, python-format
msgid "User %s already exists"
msgstr ""

#: ../nova/auth/dbdriver.py:106 ../nova/auth/ldapdriver.py:232
#, python-format
msgid "Project can't be created because manager %s doesn't exist"
msgstr ""

#: ../nova/auth/dbdriver.py:122 ../nova/auth/ldapdriver.py:243
#, python-format
msgid "Project can't be created because user %s doesn't exist"
msgstr ""

#: ../nova/auth/dbdriver.py:135 ../nova/auth/ldapdriver.py:229
#, python-format
msgid "Project can't be created because project %s already exists"
msgstr ""

#: ../nova/auth/dbdriver.py:157 ../nova/auth/ldapdriver.py:268
#, python-format
msgid "Project can't be modified because manager %s doesn't exist"
msgstr ""

#: ../nova/auth/dbdriver.py:245
#, python-format
msgid "User \"%s\" not found"
msgstr ""

#: ../nova/auth/dbdriver.py:248
#, python-format
msgid "Project \"%s\" not found"
msgstr ""

#: ../nova/virt/xenapi_conn.py:129
msgid ""
"Must specify xenapi_connection_url, xenapi_connection_username (optionally), "
"and xenapi_connection_password to use connection_type=xenapi"
msgstr ""

#: ../nova/virt/xenapi_conn.py:311
#, python-format
msgid "Task [%(name)s] %(task)s status: success    %(result)s"
msgstr ""

#: ../nova/virt/xenapi_conn.py:317
#, python-format
msgid "Task [%(name)s] %(task)s status: %(status)s    %(error_info)s"
msgstr ""

#: ../nova/virt/xenapi_conn.py:331 ../nova/virt/xenapi_conn.py:344
#, python-format
msgid "Got exception: %s"
msgstr ""

#: ../nova/compute/monitor.py:259
#, python-format
msgid "updating %s..."
msgstr ""

#: ../nova/compute/monitor.py:289
msgid "unexpected error during update"
msgstr ""

#: ../nova/compute/monitor.py:356
#, python-format
msgid "Cannot get blockstats for \"%(disk)s\" on \"%(iid)s\""
msgstr ""

#: ../nova/compute/monitor.py:379
#, python-format
msgid "Cannot get ifstats for \"%(interface)s\" on \"%(iid)s\""
msgstr ""

#: ../nova/compute/monitor.py:414
msgid "unexpected exception getting connection"
msgstr ""

#: ../nova/compute/monitor.py:429
#, python-format
msgid "Found instance: %s"
msgstr ""

#: ../nova/volume/san.py:67
#, python-format
msgid "Could not find iSCSI export  for volume %s"
msgstr ""

#: ../nova/api/ec2/apirequest.py:100
#, python-format
msgid ""
"Unsupported API request: controller = %(controller)s, action = %(action)s"
msgstr ""

#: ../nova/api/openstack/__init__.py:55
#, python-format
msgid "Caught error: %s"
msgstr ""

#: ../nova/api/openstack/__init__.py:76
msgid "Including admin operations in API."
msgstr ""

#: ../nova/console/xvp.py:99
msgid "Rebuilding xvp conf"
msgstr ""

#: ../nova/console/xvp.py:116
#, python-format
msgid "Re-wrote %s"
msgstr ""

#: ../nova/console/xvp.py:121
msgid "Stopping xvp"
msgstr ""

#: ../nova/console/xvp.py:134
msgid "Starting xvp"
msgstr ""

#: ../nova/console/xvp.py:141
#, python-format
msgid "Error starting xvp: %s"
msgstr ""

#: ../nova/console/xvp.py:144
msgid "Restarting xvp"
msgstr ""

#: ../nova/console/xvp.py:146
msgid "xvp not running..."
msgstr ""

#: ../bin/nova-manage.py:272
msgid ""
"The above error may show that the database has not been created.\n"
"Please create a database using nova-manage sync db before running this "
"command."
msgstr ""

#: ../bin/nova-manage.py:426
msgid ""
"No more networks available. If this is a new installation, you need\n"
"to call something like this:\n"
"\n"
"    nova-manage network create 10.0.0.0/8 10 64\n"
"\n"
msgstr ""

#: ../bin/nova-manage.py:431
msgid ""
"The above error may show that the certificate db has not been created.\n"
"Please create a database by running a nova-api server on this host."
msgstr ""

#: ../bin/nova-manage.py:447 ../bin/nova-manage.py:536
msgid "network"
msgstr ""

#: ../bin/nova-manage.py:448
msgid "IP address"
msgstr ""

#: ../bin/nova-manage.py:449
msgid "MAC address"
msgstr ""

#: ../bin/nova-manage.py:450
msgid "hostname"
msgstr ""

#: ../bin/nova-manage.py:451
msgid "host"
msgstr ""

#: ../bin/nova-manage.py:537
msgid "netmask"
msgstr ""

#: ../bin/nova-manage.py:538
msgid "start address"
msgstr ""

#: ../nova/virt/disk.py:69
#, python-format
msgid "Failed to load partition: %s"
msgstr ""

#: ../nova/virt/disk.py:91
#, python-format
msgid "Failed to mount filesystem: %s"
msgstr ""

#: ../nova/virt/disk.py:124
#, python-format
msgid "nbd device %s did not show up"
msgstr ""

#: ../nova/virt/disk.py:128
#, python-format
msgid "Could not attach image to loopback: %s"
msgstr ""

#: ../nova/virt/disk.py:151
msgid "No free nbd devices"
msgstr ""

#: ../doc/ext/nova_todo.py:46
#, python-format
msgid "%(filename)s, line %(line_info)d"
msgstr ""

#. FIXME(chiradeep): implement this
#: ../nova/virt/hyperv.py:118
msgid "In init host"
msgstr ""

#: ../nova/virt/hyperv.py:131
#, python-format
msgid "Attempt to create duplicate vm %s"
msgstr ""

#: ../nova/virt/hyperv.py:148
#, python-format
msgid "Starting VM %s "
msgstr ""

#: ../nova/virt/hyperv.py:150
#, python-format
msgid "Started VM %s "
msgstr ""

#: ../nova/virt/hyperv.py:152
#, python-format
msgid "spawn vm failed: %s"
msgstr ""

#: ../nova/virt/hyperv.py:169
#, python-format
msgid "Failed to create VM %s"
msgstr ""

#: ../nova/virt/hyperv.py:188
#, python-format
msgid "Set memory for vm %s..."
msgstr ""

#: ../nova/virt/hyperv.py:198
#, python-format
msgid "Set vcpus for vm %s..."
msgstr ""

#: ../nova/virt/hyperv.py:202
#, python-format
msgid "Creating disk for %(vm_name)s by attaching disk file %(vhdfile)s"
msgstr ""

#: ../nova/virt/hyperv.py:227
#, python-format
msgid "Failed to add diskdrive to VM %s"
msgstr ""

#: ../nova/virt/hyperv.py:230
#, python-format
msgid "New disk drive path is %s"
msgstr ""

#: ../nova/virt/hyperv.py:247
#, python-format
msgid "Failed to add vhd file to VM %s"
msgstr ""

#: ../nova/virt/hyperv.py:249
#, python-format
msgid "Created disk for %s"
msgstr ""

#: ../nova/virt/hyperv.py:253
#, python-format
msgid "Creating nic for %s "
msgstr ""

#: ../nova/virt/hyperv.py:272
msgid "Failed creating a port on the external vswitch"
msgstr ""

#: ../nova/virt/hyperv.py:273
#, python-format
msgid "Failed creating port for %s"
msgstr ""

#: ../nova/virt/hyperv.py:276
#, python-format
msgid "Created switch port %(vm_name)s on switch %(ext_path)s"
msgstr ""

#: ../nova/virt/hyperv.py:286
#, python-format
msgid "Failed to add nic to VM %s"
msgstr ""

#: ../nova/virt/hyperv.py:288
#, python-format
msgid "Created nic for %s "
msgstr ""

#: ../nova/virt/hyperv.py:321
#, python-format
msgid "WMI job failed: %s"
msgstr ""

#: ../nova/virt/hyperv.py:325
#, python-format
msgid "WMI job succeeded: %(desc)s, Elapsed=%(elap)s "
msgstr ""

#: ../nova/virt/hyperv.py:361
#, python-format
msgid "Got request to destroy vm %s"
msgstr ""

#: ../nova/virt/hyperv.py:386
#, python-format
msgid "Failed to destroy vm %s"
msgstr ""

#: ../nova/virt/hyperv.py:393
#, python-format
msgid "Del: disk %(vhdfile)s vm %(instance_name)s"
msgstr ""

#: ../nova/virt/hyperv.py:415
#, python-format
msgid ""
"Got Info for vm %(instance_id)s: state=%(state)s, mem=%(memusage)s, num_cpu="
"%(numprocs)s, cpu_time=%(uptime)s"
msgstr ""

#: ../nova/virt/hyperv.py:451
#, python-format
msgid "Successfully changed vm state of %(vm_name)s to %(req_state)s"
msgstr ""

#: ../nova/virt/hyperv.py:454
#, python-format
msgid "Failed to change vm state of %(vm_name)s to %(req_state)s"
msgstr ""

#: ../nova/compute/api.py:71
#, python-format
msgid "Instance %d was not found in get_network_topic"
msgstr ""

#: ../nova/compute/api.py:77
#, python-format
msgid "Instance %d has no host"
msgstr ""

#: ../nova/compute/api.py:97
#, python-format
msgid "Quota exceeeded for %(pid)s, tried to run %(min_count)s instances"
msgstr ""

#: ../nova/compute/api.py:99
#, python-format
msgid ""
"Instance quota exceeded. You can only run %s more instances of this type."
msgstr ""

#: ../nova/compute/api.py:112
msgid "Creating a raw instance"
msgstr ""

#: ../nova/compute/api.py:160
#, python-format
msgid "Going to run %s instances..."
msgstr ""

#: ../nova/compute/api.py:187
#, python-format
msgid "Casting to scheduler for %(pid)s/%(uid)s's instance %(instance_id)s"
msgstr ""

#: ../nova/compute/api.py:292
#, python-format
msgid "Going to try to terminate %s"
msgstr ""

#: ../nova/compute/api.py:296
#, python-format
msgid "Instance %d was not found during terminate"
msgstr ""

#: ../nova/compute/api.py:301
#, python-format
msgid "Instance %d is already being terminated"
msgstr ""

#: ../nova/compute/api.py:481
#, python-format
msgid "Invalid device specified: %s. Example device: /dev/vdb"
msgstr ""

#: ../nova/compute/api.py:496
msgid "Volume isn't attached to anything!"
msgstr ""

#: ../nova/rpc.py:98
#, python-format
msgid ""
"AMQP server on %(fl_host)s:%(fl_port)d is unreachable. Trying again in "
"%(fl_intv)d seconds."
msgstr ""

#: ../nova/rpc.py:103
#, python-format
msgid "Unable to connect to AMQP server after %d tries. Shutting down."
msgstr ""

#: ../nova/rpc.py:122
msgid "Reconnected to queue"
msgstr ""

#: ../nova/rpc.py:129
msgid "Failed to fetch message from queue"
msgstr ""

#: ../nova/rpc.py:159
#, python-format
msgid "Initing the Adapter Consumer for %s"
msgstr ""

#: ../nova/rpc.py:178
#, python-format
msgid "received %s"
msgstr ""

#. NOTE(vish): we may not want to ack here, but that means that bad
#. messages stay in the queue indefinitely, so for now
#. we just log the message and send an error string
#. back to the caller
#: ../nova/rpc.py:191
#, python-format
msgid "no method for message: %s"
msgstr ""

#: ../nova/rpc.py:192
#, python-format
msgid "No method for message: %s"
msgstr ""

#: ../nova/rpc.py:253
#, python-format
msgid "Returning exception %s to caller"
msgstr ""

#: ../nova/rpc.py:294
#, python-format
msgid "unpacked context: %s"
msgstr ""

#: ../nova/rpc.py:313
msgid "Making asynchronous call..."
msgstr ""

#: ../nova/rpc.py:316
#, python-format
msgid "MSG_ID is %s"
msgstr ""

#: ../nova/rpc.py:354
msgid "Making asynchronous cast..."
msgstr ""

#: ../nova/rpc.py:364
#, python-format
msgid "response %s"
msgstr ""

#: ../nova/rpc.py:373
#, python-format
msgid "topic is %s"
msgstr ""

#: ../nova/rpc.py:374
#, python-format
msgid "message %s"
msgstr ""

#: ../nova/volume/driver.py:78
#, python-format
msgid "Recovering from a failed execute.  Try number %s"
msgstr ""

#: ../nova/volume/driver.py:87
#, python-format
msgid "volume group %s doesn't exist"
msgstr ""

#: ../nova/volume/driver.py:220
#, python-format
msgid "FAKE AOE: %s"
msgstr ""

#: ../nova/volume/driver.py:233
msgid "Skipping ensure_export. No iscsi_target "
msgstr ""

#: ../nova/volume/driver.py:279 ../nova/volume/driver.py:288
msgid "Skipping remove_export. No iscsi_target "
msgstr ""

#: ../nova/volume/driver.py:347
#, python-format
msgid "FAKE ISCSI: %s"
msgstr ""

#: ../nova/volume/driver.py:359
#, python-format
msgid "rbd has no pool %s"
msgstr ""

#: ../nova/volume/driver.py:414
#, python-format
msgid "Sheepdog is not working: %s"
msgstr ""

#: ../nova/volume/driver.py:416
msgid "Sheepdog is not working"
msgstr ""

#: ../nova/wsgi.py:68
#, python-format
msgid "Starting %(arg0)s on %(host)s:%(port)s"
msgstr ""

#: ../nova/wsgi.py:147
msgid "You must implement __call__"
msgstr ""

#: ../bin/nova-instancemonitor.py:55
msgid "Starting instance monitor"
msgstr ""

#: ../bin/nova-dhcpbridge.py:58
msgid "leasing ip"
msgstr ""

#: ../bin/nova-dhcpbridge.py:73
msgid "Adopted old lease or got a change of mac/hostname"
msgstr ""

#: ../bin/nova-dhcpbridge.py:80
msgid "releasing ip"
msgstr ""

#: ../bin/nova-dhcpbridge.py:123
#, python-format
msgid ""
"Called %(action)s for mac %(mac)s with ip %(ip)s and hostname %(hostname)s "
"on interface %(interface)s"
msgstr ""

#: ../nova/virt/fake.py:239
#, python-format
msgid "Instance %s Not Found"
msgstr ""

#: ../nova/network/manager.py:153
#, python-format
msgid "Dissassociated %s stale fixed ip(s)"
msgstr ""

#: ../nova/network/manager.py:157
msgid "setting network host"
msgstr ""

#: ../nova/network/manager.py:212
#, python-format
msgid "Leasing IP %s"
msgstr ""

#: ../nova/network/manager.py:216
#, python-format
msgid "IP %s leased that isn't associated"
msgstr ""

#: ../nova/network/manager.py:220
#, python-format
msgid "IP %(address)s leased to bad mac %(inst_addr)s vs %(mac)s"
msgstr ""

#: ../nova/network/manager.py:228
#, python-format
msgid "IP %s leased that was already deallocated"
msgstr ""

#: ../nova/network/manager.py:233
#, python-format
msgid "Releasing IP %s"
msgstr ""

#: ../nova/network/manager.py:237
#, python-format
msgid "IP %s released that isn't associated"
msgstr ""

#: ../nova/network/manager.py:241
#, python-format
msgid "IP %(address)s released from bad mac %(inst_addr)s vs %(mac)s"
msgstr ""

#: ../nova/network/manager.py:244
#, python-format
msgid "IP %s released that was not leased"
msgstr ""

#: ../nova/network/manager.py:519
msgid ""
"The sum between the number of networks and the vlan start cannot be greater "
"than 4094"
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:57
#, python-format
msgid "Introducing %s..."
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:74
#, python-format
msgid "Introduced %(label)s as %(sr_ref)s."
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:78
msgid "Unable to create Storage Repository"
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:90
#, python-format
msgid "Unable to find SR from VBD %s"
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:96
#, python-format
msgid "Forgetting SR %s ... "
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:101
#, python-format
msgid "Ignoring exception %(exc)s when getting PBDs for %(sr_ref)s"
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:107
#, python-format
msgid "Ignoring exception %(exc)s when unplugging PBD %(pbd)s"
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:111
#, python-format
msgid "Forgetting SR %s done."
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:113
#, python-format
msgid "Ignoring exception %(exc)s when forgetting SR %(sr_ref)s"
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:123
#, python-format
msgid "Unable to introduce VDI on SR %s"
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:128
#, python-format
msgid "Unable to get record of VDI %s on"
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:146
#, python-format
msgid "Unable to introduce VDI for SR %s"
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:175
#, python-format
msgid "Unable to obtain target information %(device_path)s, %(mountpoint)s"
msgstr ""

#: ../nova/virt/xenapi/volume_utils.py:197
#, python-format
msgid "Mountpoint cannot be translated: %s"
msgstr ""

#: ../nova/objectstore/image.py:262
#, python-format
msgid "Failed to decrypt private key: %s"
msgstr ""

#: ../nova/objectstore/image.py:269
#, python-format
msgid "Failed to decrypt initialization vector: %s"
msgstr ""

#: ../nova/objectstore/image.py:277
#, python-format
msgid "Failed to decrypt image file %(image_file)s: %(err)s"
msgstr ""

#: ../nova/objectstore/handler.py:106
#, python-format
msgid "Unknown S3 value type %r"
msgstr ""

#: ../nova/objectstore/handler.py:137
msgid "Authenticated request"
msgstr ""

#: ../nova/objectstore/handler.py:182
msgid "List of buckets requested"
msgstr ""

#: ../nova/objectstore/handler.py:209
#, python-format
msgid "List keys for bucket %s"
msgstr ""

#: ../nova/objectstore/handler.py:217
#, python-format
msgid "Unauthorized attempt to access bucket %s"
msgstr ""

#: ../nova/objectstore/handler.py:235
#, python-format
msgid "Creating bucket %s"
msgstr ""

#: ../nova/objectstore/handler.py:245
#, python-format
msgid "Deleting bucket %s"
msgstr ""

#: ../nova/objectstore/handler.py:249
#, python-format
msgid "Unauthorized attempt to delete bucket %s"
msgstr ""

#: ../nova/objectstore/handler.py:273
#, python-format
msgid "Getting object: %(bname)s / %(nm)s"
msgstr ""

#: ../nova/objectstore/handler.py:276
#, python-format
msgid "Unauthorized attempt to get object %(nm)s from bucket %(bname)s"
msgstr ""

#: ../nova/objectstore/handler.py:296
#, python-format
msgid "Putting object: %(bname)s / %(nm)s"
msgstr ""

#: ../nova/objectstore/handler.py:299
#, python-format
msgid "Unauthorized attempt to upload object %(nm)s to bucket %(bname)s"
msgstr ""

#: ../nova/objectstore/handler.py:318
#, python-format
msgid "Deleting object: %(bname)s / %(nm)s"
msgstr ""

#: ../nova/objectstore/handler.py:322
#, python-format
msgid "Unauthorized attempt to delete object %(nm)s from bucket %(bname)s"
msgstr ""

#: ../nova/objectstore/handler.py:396
#, python-format
msgid "Not authorized to upload image: invalid directory %s"
msgstr ""

#: ../nova/objectstore/handler.py:404
#, python-format
msgid "Not authorized to upload image: unauthorized bucket %s"
msgstr ""

#: ../nova/objectstore/handler.py:409
#, python-format
msgid "Starting image upload: %s"
msgstr ""

#: ../nova/objectstore/handler.py:423
#, python-format
msgid "Not authorized to update attributes of image %s"
msgstr ""

#: ../nova/objectstore/handler.py:431
#, python-format
msgid "Toggling publicity flag of image %(image_id)s %(newstatus)r"
msgstr ""

#. other attributes imply update
#: ../nova/objectstore/handler.py:436
#, python-format
msgid "Updating user fields on image %s"
msgstr ""

#: ../nova/objectstore/handler.py:450
#, python-format
msgid "Unauthorized attempt to delete image %s"
msgstr ""

#: ../nova/objectstore/handler.py:455
#, python-format
msgid "Deleted image: %s"
msgstr ""

#: ../nova/auth/manager.py:259
#, python-format
msgid "Looking up user: %r"
msgstr ""

#: ../nova/auth/manager.py:263
#, python-format
msgid "Failed authorization for access key %s"
msgstr ""

#: ../nova/auth/manager.py:264
#, python-format
msgid "No user found for access key %s"
msgstr ""

#: ../nova/auth/manager.py:270
#, python-format
msgid "Using project name = user name (%s)"
msgstr ""

#: ../nova/auth/manager.py:277
#, python-format
msgid "failed authorization: no project named %(pjid)s (user=%(uname)s)"
msgstr ""

#: ../nova/auth/manager.py:279
#, python-format
msgid "No project called %s could be found"
msgstr ""

#: ../nova/auth/manager.py:287
#, python-format
msgid ""
"Failed authorization: user %(uname)s not admin and not member of project "
"%(pjname)s"
msgstr ""

#: ../nova/auth/manager.py:289
#, python-format
msgid "User %(uid)s is not a member of project %(pjid)s"
msgstr ""

#: ../nova/auth/manager.py:298 ../nova/auth/manager.py:309
#, python-format
msgid "Invalid signature for user %s"
msgstr ""

#: ../nova/auth/manager.py:299 ../nova/auth/manager.py:310
msgid "Signature does not match"
msgstr ""

#: ../nova/auth/manager.py:380
msgid "Must specify project"
msgstr ""

#: ../nova/auth/manager.py:414
#, python-format
msgid "The %s role can not be found"
msgstr ""

#: ../nova/auth/manager.py:416
#, python-format
msgid "The %s role is global only"
msgstr ""

#: ../nova/auth/manager.py:420
#, python-format
msgid "Adding role %(role)s to user %(uid)s in project %(pid)s"
msgstr ""

#: ../nova/auth/manager.py:423
#, python-format
msgid "Adding sitewide role %(role)s to user %(uid)s"
msgstr ""

#: ../nova/auth/manager.py:448
#, python-format
msgid "Removing role %(role)s from user %(uid)s on project %(pid)s"
msgstr ""

#: ../nova/auth/manager.py:451
#, python-format
msgid "Removing sitewide role %(role)s from user %(uid)s"
msgstr ""

#: ../nova/auth/manager.py:515
#, python-format
msgid "Created project %(name)s with manager %(manager_user)s"
msgstr ""

#: ../nova/auth/manager.py:533
#, python-format
msgid "modifying project %s"
msgstr ""

#: ../nova/auth/manager.py:545
#, python-format
msgid "Adding user %(uid)s to project %(pid)s"
msgstr ""

#: ../nova/auth/manager.py:566
#, python-format
msgid "Remove user %(uid)s from project %(pid)s"
msgstr ""

#: ../nova/auth/manager.py:592
#, python-format
msgid "Deleting project %s"
msgstr ""

#: ../nova/auth/manager.py:650
#, python-format
msgid "Created user %(rvname)s (admin: %(rvadmin)r)"
msgstr ""

#: ../nova/auth/manager.py:659
#, python-format
msgid "Deleting user %s"
msgstr ""

#: ../nova/auth/manager.py:669
#, python-format
msgid "Access Key change for user %s"
msgstr ""

#: ../nova/auth/manager.py:671
#, python-format
msgid "Secret Key change for user %s"
msgstr ""

#: ../nova/auth/manager.py:673
#, python-format
msgid "Admin status set to %(admin)r for user %(uid)s"
msgstr ""

#: ../nova/auth/manager.py:722
#, python-format
msgid "No vpn data for project %s"
msgstr ""

#: ../nova/service.py:161
#, python-format
msgid "Starting %(topic)s node (version %(vcs_string)s)"
msgstr ""

#: ../nova/service.py:174
msgid "Service killed that has no database entry"
msgstr ""

#: ../nova/service.py:195
msgid "The service database object disappeared, Recreating it."
msgstr ""

#: ../nova/service.py:207
msgid "Recovered model server connection!"
msgstr ""

#: ../nova/service.py:213
msgid "model server went away"
msgstr ""

#: ../nova/auth/ldapdriver.py:174
#, python-format
msgid "LDAP user %s already exists"
msgstr ""

#: ../nova/auth/ldapdriver.py:205
#, python-format
msgid "LDAP object for %s doesn't exist"
msgstr ""

#: ../nova/auth/ldapdriver.py:348
#, python-format
msgid "User %s doesn't exist"
msgstr ""

#: ../nova/auth/ldapdriver.py:472
#, python-format
msgid "Group can't be created because group %s already exists"
msgstr ""

#: ../nova/auth/ldapdriver.py:478
#, python-format
msgid "Group can't be created because user %s doesn't exist"
msgstr ""

#: ../nova/auth/ldapdriver.py:495
#, python-format
msgid "User %s can't be searched in group because the user doesn't exist"
msgstr ""

#: ../nova/auth/ldapdriver.py:507
#, python-format
msgid "User %s can't be added to the group because the user doesn't exist"
msgstr ""

#: ../nova/auth/ldapdriver.py:510 ../nova/auth/ldapdriver.py:521
#, python-format
msgid "The group at dn %s doesn't exist"
msgstr ""

#: ../nova/auth/ldapdriver.py:513
#, python-format
msgid "User %(uid)s is already a member of the group %(group_dn)s"
msgstr ""

#: ../nova/auth/ldapdriver.py:524
#, python-format
msgid "User %s can't be removed from the group because the user doesn't exist"
msgstr ""

#: ../nova/auth/ldapdriver.py:528
#, python-format
msgid "User %s is not a member of the group"
msgstr ""

#: ../nova/auth/ldapdriver.py:542
#, python-format
msgid ""
"Attempted to remove the last member of a group. Deleting the group at %s "
"instead."
msgstr ""

#: ../nova/auth/ldapdriver.py:549
#, python-format
msgid "User %s can't be removed from all because the user doesn't exist"
msgstr ""

#: ../nova/auth/ldapdriver.py:564
#, python-format
msgid "Group at dn %s doesn't exist"
msgstr ""

#: ../nova/virt/xenapi/network_utils.py:40
#, python-format
msgid "Found non-unique network for bridge %s"
msgstr ""

#: ../nova/virt/xenapi/network_utils.py:43
#, python-format
msgid "Found no network for bridge %s"
msgstr ""

#: ../nova/api/ec2/admin.py:97
#, python-format
msgid "Creating new user: %s"
msgstr ""

#: ../nova/api/ec2/admin.py:105
#, python-format
msgid "Deleting user: %s"
msgstr ""

#: ../nova/api/ec2/admin.py:127
#, python-format
msgid "Adding role %(role)s to user %(user)s for project %(project)s"
msgstr ""

#: ../nova/api/ec2/admin.py:131
#, python-format
msgid "Adding sitewide role %(role)s to user %(user)s"
msgstr ""

#: ../nova/api/ec2/admin.py:137
#, python-format
msgid "Removing role %(role)s from user %(user)s for project %(project)s"
msgstr ""

#: ../nova/api/ec2/admin.py:141
#, python-format
msgid "Removing sitewide role %(role)s from user %(user)s"
msgstr ""

#: ../nova/api/ec2/admin.py:146 ../nova/api/ec2/admin.py:223
msgid "operation must be add or remove"
msgstr ""

#: ../nova/api/ec2/admin.py:159
#, python-format
msgid "Getting x509 for user: %(name)s on project: %(project)s"
msgstr ""

#: ../nova/api/ec2/admin.py:177
#, python-format
msgid "Create project %(name)s managed by %(manager_user)s"
msgstr ""

#: ../nova/api/ec2/admin.py:190
#, python-format
msgid "Modify project: %(name)s managed by %(manager_user)s"
msgstr ""

#: ../nova/api/ec2/admin.py:200
#, python-format
msgid "Delete project: %s"
msgstr ""

#: ../nova/api/ec2/admin.py:214
#, python-format
msgid "Adding user %(user)s to project %(project)s"
msgstr ""

#: ../nova/api/ec2/admin.py:218
#, python-format
msgid "Removing user %(user)s from project %(project)s"
msgstr ""