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
|
# Translations template for pypowervm.
# Copyright (C) 2018 ORGANIZATION
# This file is distributed under the same license as the pypowervm project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: pypowervm 1.1.11.dev47\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2018-10-02 09:44-0400\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.5.3\n"
#: pypowervm/adapter.py:122
#, python-format
msgid "Invalid protocol \"%s\""
msgstr ""
#: pypowervm/adapter.py:128
msgid "Unencrypted communication with PowerVM! Revert configuration to https."
msgstr ""
#: pypowervm/adapter.py:142
msgid "Calculating default audit memento failed, using 'default'."
msgstr ""
#: pypowervm/adapter.py:183
msgid "Local authentication not supported on HMC."
msgstr ""
#: pypowervm/adapter.py:202
#, python-format
msgid "Setting up event listener for %s"
msgstr ""
#: pypowervm/adapter.py:272
#, python-format
msgid "Unexpected filehandle on %s request"
msgstr ""
#: pypowervm/adapter.py:316
#, python-format
msgid "Unexpected error for %(meth)s %(url)s"
msgstr ""
#: pypowervm/adapter.py:318
#, python-format
msgid "Unexpected error: %(class)s for %(method)s %(url)s: %(excp)s"
msgstr ""
#: pypowervm/adapter.py:355
msgid ""
"Re-login has been deemed unsafe. This Session instance should no longer "
"be used."
msgstr ""
#: pypowervm/adapter.py:363
#, python-format
msgid "Attempting re-login %s"
msgstr ""
#: pypowervm/adapter.py:374
#, python-format
msgid ""
"Re-login 401, response body:\n"
"%s"
msgstr ""
#: pypowervm/adapter.py:379
#, python-format
msgid ""
"Re-login failed, resp body:\n"
"%s"
msgstr ""
#: pypowervm/adapter.py:383
#, python-format
msgid ""
"Re-login failed:\n"
"%s"
msgstr ""
#: pypowervm/adapter.py:401
#, python-format
msgid ""
"Re-attempt failed with another 401, response body:\n"
"%s"
msgstr ""
#: pypowervm/adapter.py:404
#, python-format
msgid "suspicious HTTP 401 response for %(method)s %(path)s: token is brand new"
msgstr ""
#: pypowervm/adapter.py:456
#, python-format
msgid ""
"Failed to connect to REST server - is the pvm-rest service started? "
"Retrying %(try_num)d of %(max_tries)d after %(delay)d seconds."
msgstr ""
#: pypowervm/adapter.py:463
#, python-format
msgid "Session logging on %s"
msgstr ""
#: pypowervm/adapter.py:526
msgid "Failed to parse a session token from the PowerVM response."
msgstr ""
#: pypowervm/adapter.py:528 pypowervm/adapter.py:544
#, python-format
msgid " Body= %s"
msgstr ""
#: pypowervm/adapter.py:542
msgid "Failed to parse a session file path from the PowerVM response."
msgstr ""
#: pypowervm/adapter.py:556
#, python-format
msgid "Token file %s didn't contain a readable session token."
msgstr ""
#: pypowervm/adapter.py:566
#, python-format
msgid "Session logging off %s"
msgstr ""
#: pypowervm/adapter.py:571
msgid "Problem logging off. Ignoring."
msgstr ""
#: pypowervm/adapter.py:673
msgid "job must be a JobRequest element"
msgstr ""
#: pypowervm/adapter.py:677
msgid "JobRequest is missing OperationName"
msgstr ""
#: pypowervm/adapter.py:691 pypowervm/adapter.py:847 pypowervm/adapter.py:900
#, python-format
msgid "path=%s is not a PowerVM API reference"
msgstr ""
#: pypowervm/adapter.py:809
#, python-format
msgid "path=%s not a PowerVM API reference"
msgstr ""
#: pypowervm/adapter.py:915 pypowervm/adapter.py:932
msgid "Invalid file descriptor"
msgstr ""
#: pypowervm/adapter.py:1018 pypowervm/adapter.py:1046
#: pypowervm/adapter.py:1061
msgid "Expected root_id"
msgstr ""
#: pypowervm/adapter.py:1020
msgid "Expected child_type"
msgstr ""
#: pypowervm/adapter.py:1024 pypowervm/adapter.py:1050
#: pypowervm/adapter.py:1055
#, python-format
msgid "Unexpected suffix_type=%s"
msgstr ""
#: pypowervm/adapter.py:1027 pypowervm/adapter.py:1058
msgid "Expected suffix_parm"
msgstr ""
#: pypowervm/adapter.py:1029 pypowervm/adapter.py:1048
#: pypowervm/adapter.py:1063
msgid "Expected child_id"
msgstr ""
#: pypowervm/adapter.py:1032 pypowervm/adapter.py:1041
msgid "Unexpected child_id"
msgstr ""
#: pypowervm/adapter.py:1034 pypowervm/adapter.py:1043
msgid "Unexpected root_id"
msgstr ""
#: pypowervm/adapter.py:1065
#, python-format
msgid "Unexpected req_method=%s"
msgstr ""
#: pypowervm/adapter.py:1133
#, python-format
msgid "Error parsing XML response from PowerVM: %s"
msgstr ""
#: pypowervm/adapter.py:1146
msgid "Response is not an Atom feed/entry"
msgstr ""
#: pypowervm/adapter.py:1157
msgid "Unexpected HTTP 204 for request"
msgstr ""
#: pypowervm/adapter.py:1165
msgid "Unexpectedly empty response body"
msgstr ""
#: pypowervm/adapter.py:1168
#, python-format
msgid ""
"%(err_reason)s:\n"
"request headers: %(reqheaders)s\n"
"\n"
"request body: %(reqbody)s\n"
"\n"
"response headers: %(respheaders)s\n"
"\n"
"response body: %(respbody)s"
msgstr ""
#: pypowervm/adapter.py:1176
#, python-format
msgid "Atom error for %(method)s %(path)s: %(reason)s"
msgstr ""
#: pypowervm/adapter.py:1217
msgid "Session must not be None"
msgstr ""
#: pypowervm/adapter.py:1219
msgid "An event listener is already active on the session."
msgstr ""
#: pypowervm/adapter.py:1238
#, python-format
msgid "Failed to initialize event feed listener: %s"
msgstr ""
#: pypowervm/adapter.py:1242
#, python-format
msgid "Application id \"%s\" not unique"
msgstr ""
#: pypowervm/adapter.py:1250
msgid "Shutting down"
msgstr ""
#: pypowervm/adapter.py:1253
msgid "This handler is already subscribed"
msgstr ""
#: pypowervm/adapter.py:1261
msgid "Handler must be an EventHandler"
msgstr ""
#: pypowervm/adapter.py:1264
msgid "Handler not found in subscriber list"
msgstr ""
#: pypowervm/adapter.py:1271
#, python-format
msgid "Shutting down EventListener for %s"
msgstr ""
#: pypowervm/adapter.py:1275
#, python-format
msgid "EventListener shutdown complete for %s"
msgstr ""
#: pypowervm/adapter.py:1295
#, python-format
msgid "Error while getting PowerVM events: %s. (Is the pvm-rest service down?)"
msgstr ""
#: pypowervm/adapter.py:1338
#, python-format
msgid "Unexpected EventType=%s"
msgstr ""
#: pypowervm/adapter.py:1365
msgid "Error while processing PowerVM events"
msgstr ""
#: pypowervm/exceptions.py:127
#, python-format
msgid ""
"Unable to derive the appropriate physical FC port for WWPN %(wwpn)s. The"
" VIOS Extended Attribute Groups may have been insufficient. The VIOS URI"
" for the query was %(vio_uri)s."
msgstr ""
#: pypowervm/exceptions.py:133
#, python-format
msgid "Element not found: %(element_type)s %(element)s"
msgstr ""
#: pypowervm/exceptions.py:137
#, python-format
msgid "LPAR not found: %(lpar_name)s"
msgstr ""
#: pypowervm/exceptions.py:141
msgid "Adapter not found"
msgstr ""
#: pypowervm/exceptions.py:145
#, python-format
msgid "The '%(operation_name)s' operation failed. %(error)s"
msgstr ""
#: pypowervm/exceptions.py:149
#, python-format
msgid ""
"The '%(operation_name)s' operation failed. Failed to complete the task in"
" %(seconds)d seconds."
msgstr ""
#: pypowervm/exceptions.py:154
#, python-format
msgid ""
"Can not perform OS shutdown on Virtual Machine %(lpar_nm)s because its "
"RMC connection is not active."
msgstr ""
#: pypowervm/exceptions.py:159
#, python-format
msgid "Failed to power off Virtual Machine %(lpar_nm)s: %(reason)s"
msgstr ""
#: pypowervm/exceptions.py:163
#, python-format
msgid ""
"Power off of Virtual Machine %(lpar_nm)s timed out after %(timeout)d "
"seconds."
msgstr ""
#: pypowervm/exceptions.py:168
#, python-format
msgid "Failed to power on Virtual Machine %(lpar_nm)s: %(reason)s"
msgstr ""
#: pypowervm/exceptions.py:172
#, python-format
msgid ""
"Power on of Virtual Machine %(lpar_nm)s timed out after %(timeout)d "
"seconds."
msgstr ""
#: pypowervm/exceptions.py:177
#, python-format
msgid ""
"Unable to remove VLAN %(vlan_id)d as it is the Primary VLAN Identifier on"
" a different Network Bridge."
msgstr ""
#: pypowervm/exceptions.py:182
#, python-format
msgid ""
"Unable to provision VLAN %(vlan_id)d. It appears to be contained on "
"device '%(dev_name)s' on Virtual I/O Server %(vios)s. That device is not"
" connected to any Network Bridge (Shared Ethernet Adapter). Please "
"manually remove the device or add it to the Network Bridge before "
"continuing."
msgstr ""
#: pypowervm/exceptions.py:191
#, python-format
msgid ""
"A Logical Unit with name %(lu_name)s already exists on Shared Storage "
"Pool %(ssp_name)s."
msgstr ""
#: pypowervm/exceptions.py:196
msgid ""
"Unable to find a physical port to map a virtual Fibre Channel port to. "
"This is due to either a Virtual I/O Server being unavailable, or improper"
" port specification for the physical Fibre Channel ports."
msgstr ""
#: pypowervm/exceptions.py:203
msgid ""
"Unable to start the console to the Virtual Machine. The pypowervm API is"
" running in a non-local mode. The console can only be deployed when "
"pypowervm is co-located with the PowerVM API."
msgstr ""
#: pypowervm/exceptions.py:210
#, python-format
msgid "WrapperTask %(name)s has no subtasks!"
msgstr ""
#: pypowervm/exceptions.py:214
msgid "FeedTask can't have an empty feed."
msgstr ""
#: pypowervm/exceptions.py:218
#, python-format
msgid "OS denied access to file %(access_file)s."
msgstr ""
#: pypowervm/exceptions.py:222
#, python-format
msgid ""
"OS encountered an I/O error attempting to read file %(access_file)s: "
"%(error)s"
msgstr ""
#: pypowervm/exceptions.py:227
#, python-format
msgid "The migration task failed. %(error)s"
msgstr ""
#: pypowervm/exceptions.py:231
#, python-format
msgid "No load source found for VM %(vm_name)s"
msgstr ""
#: pypowervm/exceptions.py:235
#, python-format
msgid ""
"Unable to derive the pg83 encoding for hdisk %(dev_name)s. The "
"parent_entry attribute is not set. This may be due to using a PV "
"obtained through an unsupported property chain. The PV must be accessed "
"via VIOS.phys_vols, VG.phys_vols, or "
"VIOS.scsi_mappings[n].backing_storage."
msgstr ""
#: pypowervm/exceptions.py:243
#, python-format
msgid ""
"Unable to remap storage element of vSCSI mapping. Expected to find "
"exactly one matching mapping, found %(num_mappings)d."
msgstr ""
#: pypowervm/exceptions.py:249
#, python-format
msgid ""
"Unable to remap storage element of vSCSI mapping. A mapping for storage "
"element %(stg_name)s already exists to client LPAR %(lpar_uuid)s."
msgstr ""
#: pypowervm/exceptions.py:255
#, python-format
msgid ""
"Found device %(devname)s %(count)d times; expected to find it at most "
"once."
msgstr ""
#: pypowervm/exceptions.py:270
#, python-format
msgid ""
"FeedTask %(ft_name)s experienced multiple exceptions:\n"
"\t%(concat_msgs)s"
msgstr ""
#: pypowervm/exceptions.py:280
#, python-format
msgid "Expected to find exactly one management partition; found %(count)d."
msgstr ""
#: pypowervm/exceptions.py:286
#, python-format
msgid ""
"Expected to find exactly one partition with ID %(lpar_id)d; found "
"%(count)d."
msgstr ""
#: pypowervm/exceptions.py:292
#, python-format
msgid "Couldn't find the default Tier on Shared Storage Pool %(ssp_name)s."
msgstr ""
#: pypowervm/exceptions.py:301
#, python-format
msgid ""
"The device with UDID %(udid)s was not found on any of the Virtual I/O "
"Servers."
msgstr ""
#: pypowervm/exceptions.py:306
#, python-format
msgid ""
"There are not enough Virtual I/O Servers to support the virtual machine's"
" device with UDID %(udid)s."
msgstr ""
#: pypowervm/exceptions.py:311
#, python-format
msgid ""
"The expected fabrics (%(fabrics)s) were not found on any of the Virtual "
"I/O Servers."
msgstr ""
#: pypowervm/exceptions.py:316
#, python-format
msgid ""
"Can not rebuild the virtual machine. It is using an I/O type of "
"%(io_type)s which is not supported for VM rebuild."
msgstr ""
#: pypowervm/exceptions.py:321
#, python-format
msgid ""
"The number of VFC slots on the target system (%(rebuild_slots)d) does not"
" match the number of slots on the client system (%(original_slots)d). "
"Unable to rebuild this virtual machine on this system."
msgstr ""
#: pypowervm/exceptions.py:328
#, python-format
msgid ""
"To register the slot information of the network device a CNA or VNIC "
"adapter is needed. Instead the following was given: %(wrapper)s."
msgstr ""
#: pypowervm/exceptions.py:334
#, python-format
msgid ""
"There are not enough active Virtual I/O Servers available. Expected "
"%(exp)d; found %(act)d."
msgstr ""
#: pypowervm/exceptions.py:339
#, python-format
msgid ""
"No Virtual I/O Servers are available. Attempted to wait for a VIOS to "
"become active for %(wait_time)d seconds. Please check the RMC "
"connectivity between the PowerVM NovaLink and the Virtual I/O Servers."
msgstr ""
#: pypowervm/exceptions.py:349
#, python-format
msgid ""
"Could not find any SR-IOV adapters in Sriov mode and Running state.\n"
"Location | Mode | State\n"
"%(sriov_loc_mode_state)s"
msgstr ""
#: pypowervm/exceptions.py:354
#, python-format
msgid ""
"Unable to fulfill redundancy requirement of %(red)d. Found %(found_vfs)d"
" viable backing device(s)."
msgstr ""
#: pypowervm/exceptions.py:359
msgid "The Managed System is not vNIC capable."
msgstr ""
#: pypowervm/exceptions.py:363
msgid "There are no active vNIC-capable VIOSes."
msgstr ""
#: pypowervm/exceptions.py:367
#, python-format
msgid ""
"A redundancy of %(red)d was specified, but the Managed System is not vNIC"
" failover capable."
msgstr ""
#: pypowervm/exceptions.py:372
#, python-format
msgid ""
"A redundancy of %(red)d was specified, but there are no active vNIC "
"failover-capable VIOSes."
msgstr ""
#: pypowervm/exceptions.py:377
#, python-format
msgid ""
"Unable to locate the volume group %(vol_grp)s to store the virtual "
"optical media within. Unable to create the media repository."
msgstr ""
#: pypowervm/exceptions.py:383
#, python-format
msgid ""
"The ManagedSystem update was not attempted because changes were requested"
" to one or more SR-IOV physical ports which are in use by vNICs.\n"
"%(warnings)s"
msgstr ""
#: pypowervm/exceptions.py:389
#, python-format
msgid "Unable to create VNC based virtual terminal: %(err)s"
msgstr ""
#: pypowervm/exceptions.py:393
msgid "The Adapter cache is not supported."
msgstr ""
#: pypowervm/exceptions.py:397
#, python-format
msgid ""
"Invalid value '%(value)s' for '%(enum)s'. Valid values are: "
"%(valid_values)s"
msgstr ""
#: pypowervm/exceptions.py:402
#, python-format
msgid "No VIOS found with name %(vios_name)s."
msgstr ""
#: pypowervm/exceptions.py:406
#, python-format
msgid "No volume group found with name %(vg_name)s."
msgstr ""
#: pypowervm/exceptions.py:410
#, python-format
msgid "Partition with name %(part_name)s is not an IBMi partition."
msgstr ""
#: pypowervm/exceptions.py:414
msgid "PanelJob function partition argument is empty."
msgstr ""
#: pypowervm/exceptions.py:418
#, python-format
msgid ""
"Panel function operation %(op_name)s is invalid. One of %(valid_ops)s "
"expected."
msgstr ""
#: pypowervm/exceptions.py:423
#, python-format
msgid "ISCSI discovery failed for VIOS %(vios_uuid)s. Return code: %(status)s"
msgstr ""
#: pypowervm/exceptions.py:429
#, python-format
msgid "ISCSI Logout failed for VIOS %(vios_uuid)s. Return code: %(status)s"
msgstr ""
#: pypowervm/exceptions.py:434
#, python-format
msgid "ISCSI Remove failed for VIOS %(vios_uuid)s. Return code: %(status)s"
msgstr ""
#: pypowervm/exceptions.py:439
#, python-format
msgid "Vstor %(stor_udid)s not found for VIOS %(vios_uuid)s."
msgstr ""
#: pypowervm/util.py:125
#, python-format
msgid ""
"Proposed extended attribute group '%(arg_xag)s' doesn't match existing "
"extended attribute group '%(path_xag)s'"
msgstr ""
#: pypowervm/util.py:221
msgid "Certificate has expired."
msgstr ""
#: pypowervm/util.py:371
#, python-format
msgid "Prefix and suffix together may not be more than %d characters."
msgstr ""
#: pypowervm/util.py:376
msgid "Total length must be at least 1 character."
msgstr ""
#: pypowervm/util.py:399
msgid "The name parameter must be at least one character long."
msgstr ""
#: pypowervm/util.py:402
#, python-format
msgid "The name parameter must not exceed %d characters when trunk_ok is False."
msgstr ""
#: pypowervm/util.py:500
msgid "Developer error: partial parent specification."
msgstr ""
#: pypowervm/util.py:505
msgid ""
"Developer error: parent_type must be either a string schema type or a "
"Wrapper subclass."
msgstr ""
#: pypowervm/util.py:602
#, python-format
msgid "Invalid value '%(bad_val)s'. Expected one of %(good_vals)s, or a list."
msgstr ""
#: pypowervm/helpers/log_helper.py:83
#, python-format
msgid "REQUEST: %s"
msgstr ""
#: pypowervm/helpers/log_helper.py:103
#, python-format
msgid "RESPONSE: %s"
msgstr ""
#: pypowervm/tasks/cluster_ssp.py:108
#, python-format
msgid "Waiting for in-progress upload(s) to complete. Marker LU(s): %s"
msgstr ""
#: pypowervm/tasks/cluster_ssp.py:137
msgid "Abdicating in favor of in-progress upload."
msgstr ""
#: pypowervm/tasks/cluster_ssp.py:147
#, python-format
msgid "Abdicating upload in favor of marker %s."
msgstr ""
#: pypowervm/tasks/cluster_ssp.py:202
#, python-format
msgid "Using already-uploaded image LU %s."
msgstr ""
#: pypowervm/tasks/cluster_ssp.py:212
#, python-format
msgid "Creating marker LU %s"
msgstr ""
#: pypowervm/tasks/cluster_ssp.py:228
#, python-format
msgid "Uploading to image LU %(lu)s (marker %(mkr)s)."
msgstr ""
#: pypowervm/tasks/cluster_ssp.py:240
#, python-format
msgid "Removing failed LU %s."
msgstr ""
#: pypowervm/tasks/cna.py:119
#, python-format
msgid "Unable to find the Virtual Switch %s on the system."
msgstr ""
#: pypowervm/tasks/cna.py:143
#, python-format
msgid "Unable to find a valid VLAN for Virtual Switch %s."
msgstr ""
#: pypowervm/tasks/memory.py:102
#, python-format
msgid ""
"Error obtaining host memory overhead for host with UUID '%(host)s': "
"%(error)s."
msgstr ""
#: pypowervm/tasks/partition.py:333
#, python-format
msgid ""
"Timed out waiting for the RMC state of all the powered on Virtual I/O "
"Servers to be active. Wait time was: %(time)d seconds. VIOSes that did "
"not go active were: %(vioses)s."
msgstr ""
#: pypowervm/tasks/partition.py:376
#, python-format
msgid "Assuming description-less slot is physical I/O: %s"
msgstr ""
#: pypowervm/tasks/power.py:88
#, python-format
msgid "Partition %s already powered on."
msgstr ""
#: pypowervm/tasks/power.py:136
#, python-format
msgid "Partition %s already powered off."
msgstr ""
#: pypowervm/tasks/power.py:199
#, python-format
msgid ""
"Specifying add_parms as a dict is deprecated. Please specify a %s "
"instance instead."
msgstr ""
#: pypowervm/tasks/power.py:265
#, python-format
msgid ""
"IBMi OS normal shutdown failed. Trying OS immediate shutdown. "
"Partition: %s"
msgstr ""
#: pypowervm/tasks/power.py:275
#, python-format
msgid ""
"IBMi OS immediate shutdown failed. Trying VSP normal shutdown. "
"Partition: %s"
msgstr ""
#: pypowervm/tasks/power.py:323
#, python-format
msgid ""
"Non-IBMi OS immediate shutdown timed out. Trying VSP hard shutdown. "
"Partition: %s"
msgstr ""
#: pypowervm/tasks/power.py:327
#, python-format
msgid ""
"Non-IBMi OS immediate shutdown failed. Trying VSP normal shutdown. "
"Partition: %s"
msgstr ""
#: pypowervm/tasks/power.py:363
#, python-format
msgid "VSP hard shutdown with default timeout. Partition: %s"
msgstr ""
#: pypowervm/tasks/scsi_mapper.py:39
msgid "Retrying modification of SCSI Mapping."
msgstr ""
#: pypowervm/tasks/scsi_mapper.py:99
#, python-format
msgid ""
"Found existing mapping of %(stg_type)s storage element %(stg_name)s from "
"Virtual I/O Server %(vios_name)s to client LPAR %(lpar_uuid)s."
msgstr ""
#: pypowervm/tasks/scsi_mapper.py:118
#, python-format
msgid ""
"Creating mapping of %(stg_type)s storage element %(stg_name)s from "
"Virtual I/O Server %(vios_name)s to client LPAR %(lpar_uuid)s."
msgstr ""
#: pypowervm/tasks/scsi_mapper.py:489
msgid "Must not specify both match_func and stg_elem."
msgstr ""
#: pypowervm/tasks/slot_map.py:194
msgid ""
"The register_cna method is deprecated! Please use the register_vnet "
"method."
msgstr ""
#: pypowervm/tasks/slot_map.py:204
msgid "The drop_cna method is deprecated! Please use the drop_vnet method."
msgstr ""
#: pypowervm/tasks/sriov.py:398
#, python-format
msgid ""
"SR-IOV Physical Port at location %(loc_code)s is backing a vNIC belonging"
" to LPAR %(lpar_name)s (LPAR UUID: %(lpar_uuid)s; vNIC UUID: "
"%(vnic_uuid)s)."
msgstr ""
#: pypowervm/tasks/sriov.py:515
msgid ""
"Making changes to the following SR-IOV physical port labels even though "
"they are in use by vNICs:"
msgstr ""
#: pypowervm/tasks/storage.py:100
#, python-format
msgid "Failed to delete vio_file with UUID %s. It must be manually deleted."
msgstr ""
#: pypowervm/tasks/storage.py:356
msgid "Encountered an issue while uploading. Will retry."
msgstr ""
#: pypowervm/tasks/storage.py:530
msgid ""
"The crt_lu_linked_clone method is deprecated! Please use the crt_lu "
"method (clone=src_lu, size=lu_size_gb)."
msgstr ""
#: pypowervm/tasks/storage.py:581
#, python-format
msgid "Disk Logical Unit %(luname)s has no backing image LU. (UDID: %(udid)s) "
msgstr ""
#: pypowervm/tasks/storage.py:665
msgid "Unable to locate new vDisk on file upload."
msgstr ""
#: pypowervm/tasks/storage.py:752
#, python-format
msgid ""
"Ignoring device because it lacks a UDID:\n"
"%s"
msgstr ""
#: pypowervm/tasks/storage.py:758
#, python-format
msgid "Device %s not found in list."
msgstr ""
#: pypowervm/tasks/storage.py:787
#, python-format
msgid "Deleting virtual disk %(vdisk)s from volume group %(vg)s"
msgstr ""
#: pypowervm/tasks/storage.py:810
#, python-format
msgid "Deleting virtual optical device %(vopt)s from volume group %(vg)s"
msgstr ""
#: pypowervm/tasks/storage.py:866
#, python-format
msgid "Removing LU %(lu_name)s (UDID %(lu_udid)s)"
msgstr ""
#: pypowervm/tasks/storage.py:870
#, python-format
msgid ""
"LU %(lu_name)s was not found - it may have been deleted out of band. "
"(UDID: %(lu_udid)s)"
msgstr ""
#: pypowervm/tasks/storage.py:888
#, python-format
msgid ""
"Removing Image LU %(lu_name)s because it is no longer in use. (UDID: "
"%(lu_udid)s)"
msgstr ""
#: pypowervm/tasks/storage.py:893
#, python-format
msgid "Backing LU %(lu_name)s was not found. (UDID: %(lu_udid)s)"
msgstr ""
#: pypowervm/tasks/storage.py:919
msgid "Developer error: Either tier or lufeed is required."
msgstr ""
#: pypowervm/tasks/storage.py:924
msgid "Developer error: The lufeed parameter must comprise LUEnt EntryWrappers."
msgstr ""
#: pypowervm/tasks/storage.py:931
#, python-format
msgid "Deleting LU %(lu_name)s (UDID: %(lu_udid)s)"
msgstr ""
#: pypowervm/tasks/storage.py:936
#, python-format
msgid ""
"Ignoring HttpError for LU %(lu_name)s may have been deleted out of band."
" (UDID: %(lu_udid)s)"
msgstr ""
#: pypowervm/tasks/storage.py:992
#, python-format
msgid ""
"Removing %(num_maps)d orphan %(stg_type)s mappings from VIOS "
"%(vios_name)s."
msgstr ""
#: pypowervm/tasks/storage.py:1018
#, python-format
msgid "Removing %(num_maps)d port-less VFC mappings from VIOS %(vios_name)s."
msgstr ""
#: pypowervm/tasks/storage.py:1045
#, python-format
msgid ""
"Removing %(num_maps)d %(stg_type)s mappings associated with LPAR ID "
"%(lpar_id)d from VIOS %(vios_name)s."
msgstr ""
#: pypowervm/tasks/storage.py:1112
#, python-format
msgid ""
"Not removing storage %(stg_name)s of type %(stg_type)s because it cannot "
"be determined whether it is still in use. Manual verification and "
"cleanup may be necessary."
msgstr ""
#: pypowervm/tasks/storage.py:1123
#, python-format
msgid ""
"Storage scrub ignoring storage element %(stg_name)s because it is of "
"unexpected type %(stg_type)s."
msgstr ""
#: pypowervm/tasks/storage.py:1141
#, python-format
msgid ""
"Scrubbing the following %(vdcount)d Virtual Disks from VIOS %(vios)s: "
"%(vdlist)s"
msgstr ""
#: pypowervm/tasks/storage.py:1149
#, python-format
msgid ""
"Scrubbing the following %(vocount)d Virtual Opticals from VIOS %(vios)s: "
"%(volist)s"
msgstr ""
#: pypowervm/tasks/storage.py:1220
#, python-format
msgid ""
"Skipping scrub of %(stg_type)s mappings from VIOS %(vios_name)s for the "
"following LPAR IDs because those LPARs exist: %(lpar_ids)s"
msgstr ""
#: pypowervm/tasks/vfc_mapper.py:543
#, python-format
msgid ""
"Unable to find appropriate VIOS. The payload provided was likely "
"insufficient. The payload data is:\n"
" %s)"
msgstr ""
#: pypowervm/tasks/vfc_mapper.py:572
#, python-format
msgid ""
"The matched VFC port map has no backing port set. Adding %(port)s to "
"mapping for client wwpns: %(wwpns)s"
msgstr ""
#: pypowervm/tasks/vopt.py:75
msgid ""
"An error occurred querying the virtual optical media repository. "
"Attempting to re-establish connection with a virtual optical media "
"repository."
msgstr ""
#: pypowervm/tasks/vterm.py:86
msgid "Unable to close vterm."
msgstr ""
#: pypowervm/tasks/vterm.py:138
#, python-format
msgid "Invalid output on vterm open. Trying to reset the vterm. Error was %s"
msgstr ""
#: pypowervm/tasks/vterm.py:351
#, python-format
msgid "VNCSocket Listener Listening on ip=%(ip)s port=%(port)s"
msgstr ""
#: pypowervm/tasks/vterm.py:480
#, python-format
msgid "Error negotiating SSL for VNC Repeater: %s"
msgstr ""
#: pypowervm/tasks/hdisk/_fc.py:197
#, python-format
msgid ""
"hdisk discovery failed; will scrub stale storage for LPAR IDs %s and "
"retry."
msgstr ""
#: pypowervm/tasks/hdisk/_fc.py:339
#, python-format
msgid "LUA Recovery Successful. Device Found: %s"
msgstr ""
#: pypowervm/tasks/hdisk/_fc.py:343
#, python-format
msgid "ITL Error encountered: %s"
msgstr ""
#: pypowervm/tasks/hdisk/_fc.py:345
#, python-format
msgid "%s Device is currently in use."
msgstr ""
#: pypowervm/tasks/hdisk/_fc.py:347
#, python-format
msgid "%s Device discovered with unknown UDID."
msgstr ""
#: pypowervm/tasks/hdisk/_fc.py:349
#, python-format
msgid "Failed to Discover the Device : %s"
msgstr ""
#: pypowervm/tasks/hdisk/_fc.py:419
#, python-format
msgid "CLIRunner Error: %s"
msgstr ""
#: pypowervm/tasks/hdisk/_fc.py:451
msgid ""
"QUERY_INVENTORY LUARecovery Job succeeded, but result contained neither "
"OutputXML nor StdOut."
msgstr ""
#: pypowervm/tasks/hdisk/_fc.py:475
#, python-format
msgid "QUERY_INVENTORY produced invalid chunk of XML (%(chunk)s). Error: %(err)s"
msgstr ""
#: pypowervm/tasks/hdisk/_fc.py:483
#, python-format
msgid ""
"Failed to find pg83 descriptor in XML output:\n"
"%s"
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:64
msgid "ISCSI command completed successfully"
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:66
msgid "ISCSI session already exists and logged in"
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:68
msgid "ISCSI command performed on unsupported VIOS, host."
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:71
msgid "ISCSI discovery found stale entries in the ODM database."
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:74
msgid "ISCSI session could not be found "
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:76
msgid "No records/targets/sessions/portals found to execute operation on"
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:79
#, python-format
msgid "ISCSI command failed with internal error status = %s"
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:82
msgid "ISCSI generic error code"
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:84
msgid "ISCSI session login failure"
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:86
msgid "ISCSI command invalid arguments"
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:88
msgid "ISCSI connection timer exired while trying to connect."
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:90
msgid "ISCSI command could not lookup host"
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:92
#, python-format
msgid "ISCSI command returned unexpected status = %s"
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:151
msgid "ISCSI command performed on unsupported VIOS "
msgstr ""
#: pypowervm/tasks/hdisk/_iscsi.py:287
#, python-format
msgid "Scrub stale storage for LPAR IDs %s and retry iSCSI discovery."
msgstr ""
#: pypowervm/tasks/monitor/util.py:452
msgid ""
"Metric data is not available. This may be due to the metrics being "
"recently initialized."
msgstr ""
#: pypowervm/tests/test_i18n.py:34
msgid "This is a test"
msgstr ""
#: pypowervm/tests/test_i18n.py:37
msgid "This is a message for which a translation doesn't exist"
msgstr ""
#: pypowervm/utils/lpar_builder.py:216
#, python-format
msgid "Processor units factor must be between 0.05 and 1.0. Value: %s"
msgstr ""
#: pypowervm/utils/lpar_builder.py:244
#, python-format
msgid "Logical partition name has invalid length. Name: %s"
msgstr ""
#: pypowervm/utils/lpar_builder.py:448
#, python-format
msgid "Field '%(field)s' has invalid value: '%(value)s'"
msgstr ""
#: pypowervm/utils/lpar_builder.py:503
msgid "None value is not valid."
msgstr ""
#: pypowervm/utils/lpar_builder.py:510
#, python-format
msgid ""
"Value '%(value)s' is not valid for field '%(field)s' with acceptable "
"choices: %(choices)s"
msgstr ""
#: pypowervm/utils/lpar_builder.py:535
#, python-format
msgid ""
"Field '%(field)s' has a value below the minimum. Value: %(value)s; "
"Minimum: %(minimum)s"
msgstr ""
#: pypowervm/utils/lpar_builder.py:544
#, python-format
msgid ""
"Field '%(field)s' has a value above the maximum. Value: %(value)s; "
"Maximum: %(maximum)s"
msgstr ""
#: pypowervm/utils/lpar_builder.py:598
#, python-format
msgid ""
"The '%(desired_field)s' has a value above the '%(max_field)s' value. "
"Desired: %(desired)s Maximum: %(maximum)s"
msgstr ""
#: pypowervm/utils/lpar_builder.py:611
#, python-format
msgid ""
"The '%(desired_field)s' has a value below the '%(min_field)s' value. "
"Desired: %(desired)s Minimum: %(minimum)s"
msgstr ""
#: pypowervm/utils/lpar_builder.py:655
#, python-format
msgid ""
"Memory value is not a multiple of the logical memory block size "
"(%(lmb_size)s) of the host. Value: %(value)s"
msgstr ""
#: pypowervm/utils/lpar_builder.py:666
#, python-format
msgid ""
"The managed system does not support active memory expansion. The "
"expansion factor value '%(value)s' is not valid."
msgstr ""
#: pypowervm/utils/lpar_builder.py:672
#, python-format
msgid ""
"Active memory expansion value must be greater than or equal to 1.0 and "
"less than or equal to 10.0. A value of 0 is also valid and indicates that"
" AME is off. '%(value)s' is not valid."
msgstr ""
#: pypowervm/utils/retry.py:203
#, python-format
msgid ""
"Attempt %(retry)d of total %(total)d for URI %(uri)s. Error was a known "
"retry response code: %(resp_code)s"
msgstr ""
#: pypowervm/utils/retry.py:210
#, python-format
msgid ""
"Attempt %(retry)d of %(total)d failed. Will retry. The exception was:\n"
" %(except)s."
msgstr ""
#: pypowervm/utils/transaction.py:348
msgid "Must supply either EntryWrapper or EntryWrapperGetter."
msgstr ""
#: pypowervm/utils/transaction.py:374
msgid "Must supply a valid Subtask."
msgstr ""
#: pypowervm/utils/transaction.py:378
#, python-format
msgid "Duplicate 'provides' name %s."
msgstr ""
#: pypowervm/utils/transaction.py:453
#, python-format
msgid "WrapperTask %s has no Subtasks; no-op execution."
msgstr ""
#: pypowervm/utils/transaction.py:585
msgid "Must supply either a list of EntryWrappers or a FeedGetter."
msgstr ""
#: pypowervm/utils/transaction.py:764
#, python-format
msgid "FeedTask %s has no Subtasks; no-op execution."
msgstr ""
#: pypowervm/utils/transaction.py:789
#, python-format
msgid ""
"FeedTask %s experienced multiple exceptions. They are logged individually"
" below."
msgstr ""
#: pypowervm/utils/validation.py:174
#, python-format
msgid ""
"Insufficient available %(res_name)s on host for virtual machine "
"'%(instance_name)s' (%(requested)s requested, %(avail)s available)"
msgstr ""
#: pypowervm/utils/validation.py:209
msgid "memory"
msgstr ""
#: pypowervm/utils/validation.py:230
#, python-format
msgid ""
"The virtual machine must be powered off before changing the minimum or "
"maximum memory. Power off virtual machine %s and try again."
msgstr ""
#: pypowervm/utils/validation.py:235
#, python-format
msgid ""
"The virtual machine must be powered off before changing the expansion "
"factor. Power off virtual machine %s and try again."
msgstr ""
#: pypowervm/utils/validation.py:328
msgid "CPUs"
msgstr ""
#: pypowervm/utils/validation.py:344
msgid "processing units"
msgstr ""
#: pypowervm/utils/validation.py:385
#, python-format
msgid ""
"The virtual machine must be powered off before changing the minimum or "
"maximum processors. Power off virtual machine %s and try again."
msgstr ""
#: pypowervm/utils/validation.py:395
#, python-format
msgid ""
"The virtual machine must be powered off before changing the minimum or "
"maximum processor units. Power off virtual machine %s and try again."
msgstr ""
#: pypowervm/utils/validation.py:411
#, python-format
msgid ""
"The virtual machine must be powered off before changing the processor "
"compatibility mode. Power off virtual machine %s and try again."
msgstr ""
#: pypowervm/utils/validation.py:419
#, python-format
msgid ""
"The virtual machine must be powered off before changing the processing "
"mode. Power off virtual machine %s and try again."
msgstr ""
#: pypowervm/utils/validation.py:448
#, python-format
msgid ""
"The desired processors (%(vcpus)d) cannot be above the maximum allowed "
"processors per partition (%(max_allowed)d) for virtual machine "
"'%(instance_name)s'."
msgstr ""
#: pypowervm/utils/validation.py:460
#, python-format
msgid ""
"The maximum processors (%(vcpus)d) cannot be above the maximum system "
"capacity processor limit (%(max_allowed)d) for virtual machine "
"'%(instance_name)s'."
msgstr ""
#: pypowervm/utils/validation.py:533
#, python-format
msgid ""
"The virtual machine must be powered off before changing the simplified "
"remote restart capability. Power off virtual machine %s and try again."
msgstr ""
#: pypowervm/wrappers/base_partition.py:434
msgid "Partition does not have an active RMC connection."
msgstr ""
#: pypowervm/wrappers/base_partition.py:437
#, python-format
msgid "Partition does not have an active DLPAR capability for %s."
msgstr ""
#: pypowervm/wrappers/base_partition.py:449
msgid "I/O"
msgstr ""
#: pypowervm/wrappers/base_partition.py:459
msgid "Memory"
msgstr ""
#: pypowervm/wrappers/base_partition.py:469
msgid "Processors"
msgstr ""
#: pypowervm/wrappers/base_partition.py:649
#, python-format
msgid "Invalid KeylockPos '%s'."
msgstr ""
#: pypowervm/wrappers/base_partition.py:660
#, python-format
msgid "Invalid BootMode '%s'."
msgstr ""
#: pypowervm/wrappers/base_partition.py:1501
msgid "IOSlot.adapter is deprecated! Use IOSlot.io_adapter instead."
msgstr ""
#: pypowervm/wrappers/enterprise_pool.py:143
#, python-format
msgid ""
"Unable to determine master management console MTMS (machine type, model, "
"serial number) from %(identifier)s because no %(param)s was marked as the"
" master console for the pool."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:251
msgid "Cannot set uuid."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:443
#, python-format
msgid "Cannot convert %(property_name)s='%(value)s' in object %(pvmobject)s"
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:586
msgid ""
"Refusing set href over multiple links.\n"
"Path: %{path}s\n"
"Number of links found: %{nlinks}d"
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:635
msgid "Refusing to construct and wrap an Element without a tag."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:760
msgid "Response is missing 'entry' property."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:774
#, python-format
msgid "Must supply a Response or Entry to wrap. Got %s"
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:861
msgid ""
"Developer error: specify 'parent' or ('parent_type' and 'parent_uuid') to"
" retrieve a CHILD object."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:866
msgid "Specify either 'uuid' or 'root_id' when requesting a ROOT object."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:879
msgid ""
"Both parent_type and parent_uuid are required when retrieving a CHILD "
"feed or entry."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:882
msgid "Specify the parent's UUID via the parent_uuid parameter."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:886
msgid "Specify either 'uuid' or 'child_id' when requesting a CHILD object."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:1001
msgid "Parent UUID specified without parent type."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:1004
msgid "The search() method requires exactly one key=value argument."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:1035
#, python-format
msgid "Wrapper class %(class)s does not support search key '%(key)s'."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:1136
msgid ""
"The 'xag' parameter to EntryWrapper.update is deprecated! At best, using"
" it will result in a no-op. At worst, it will give you incurable etag "
"mismatch errors."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:1406
msgid "No such child element."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:1467
msgid "Cannot set UUID on Wrapper with no Metadata."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:1472
#, python-format
msgid "uuid value not valid: %s"
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:1527
msgid "Must specify a Wrapper subclass."
msgstr ""
#: pypowervm/wrappers/entry_wrapper.py:1536
msgid "Must specify both parent class and parent UUID, or neither."
msgstr ""
#: pypowervm/wrappers/job.py:276
#, python-format
msgid "Job %(job_id)s monitoring for %(time)i seconds."
msgstr ""
#: pypowervm/wrappers/job.py:327
#, python-format
msgid ""
"Issuing cancel request for job %(job_id)s. Will poll the job indefinitely"
" for termination."
msgstr ""
#: pypowervm/wrappers/job.py:343
#, python-format
msgid "Job %s not deleted. Job is in running state."
msgstr ""
#: pypowervm/wrappers/logical_partition.py:169
msgid "LPAR is not in an active state."
msgstr ""
#: pypowervm/wrappers/logical_partition.py:179
msgid "Target system does not have the IBM i LPAR Mobility Capability."
msgstr ""
#: pypowervm/wrappers/logical_partition.py:183
msgid "IBM i LPAR does not have restricted I/O."
msgstr ""
#: pypowervm/wrappers/logical_partition.py:186
msgid "Source system does not have the IBM i LPAR Mobility Capability."
msgstr ""
#: pypowervm/wrappers/logical_partition.py:190
msgid "LPAR does not have an active RMC connection."
msgstr ""
#: pypowervm/wrappers/logical_partition.py:193
msgid "LPAR is the management partition"
msgstr ""
#: pypowervm/wrappers/logical_partition.py:197
msgid "LPAR is not available for LPM due to missing DLPAR capabilities."
msgstr ""
#: pypowervm/wrappers/logical_partition.py:214
#: pypowervm/wrappers/logical_partition.py:223
#: pypowervm/wrappers/logical_partition.py:231
msgid ""
"This is not the property you are looking for. Use srr_enabled in a "
"NovaLink environment."
msgstr ""
#: pypowervm/wrappers/logical_partition.py:267
#, python-format
msgid "Invalid IPLSrc '%s'."
msgstr ""
#: pypowervm/wrappers/managed_system.py:506
msgid "This property is deprecated! Use pci_subsys_dev_id instead."
msgstr ""
#: pypowervm/wrappers/managed_system.py:518
msgid "This property is deprecated! Use pci_rev_id instead."
msgstr ""
#: pypowervm/wrappers/managed_system.py:534
msgid "This property is deprecated! Use pci_subsys_vendor_id instead."
msgstr ""
#: pypowervm/wrappers/managed_system.py:546
msgid "This property is deprecated! Use drc_index instead."
msgstr ""
#: pypowervm/wrappers/managed_system.py:558
msgid "This property is deprecated! Use drc_name instead."
msgstr ""
#: pypowervm/wrappers/network.py:1160
msgid "Invalid parent spec for CNA.create."
msgstr ""
#: pypowervm/wrappers/storage.py:886
#, python-format
msgid ""
"PV had encoded pg83 descriptor \"%(pg83_raw)s\", but it failed to decode "
"(%(type_error)s)."
msgstr ""
#: pypowervm/wrappers/virtual_io_server.py:163
msgid ""
"The 'xags' property of the VIOS EntryWrapper class is deprecated! Please"
" use values from pypowervm.const.XAG instead."
msgstr ""
#: pypowervm/wrappers/virtual_io_server.py:400
msgid "Partition of VIOS type is not LPM capable"
msgstr ""
#: pypowervm/wrappers/virtual_io_server.py:670
msgid "Can't specify target device LUA without a backing storage device!"
msgstr ""
|