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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Canonical Ltd.
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: upstart 1.11\n"
"Report-Msgid-Bugs-To: new@bugs.launchpad.net\n"
"POT-Creation-Date: 2013-11-14 14:18+0000\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"
#: init/conf.c:488 init/session.c:254
msgid "Unable to load configuration"
msgstr ""
#: init/conf.c:521
#, c-format
msgid "Loading configuration from %s"
msgstr ""
#: init/conf.c:558
#, c-format
msgid "Handling deletion of %s"
msgstr ""
#: init/conf.c:635
msgid "Unable to watch configuration file"
msgstr ""
#: init/conf.c:730
msgid "Unable to watch configuration directory"
msgstr ""
#: init/conf.c:854
msgid "Error while loading configuration file"
msgstr ""
#: init/conf.c:968
msgid "Configuration directory deleted"
msgstr ""
#: init/control.c:219
msgid "Connection from private client"
msgstr ""
#: init/control.c:382
msgid "Disconnected from notified D-Bus bus"
msgstr ""
#: init/control.c:384
#, c-format
msgid "Disconnected from D-Bus %s bus"
msgstr ""
#: init/control.c:458
msgid "You do not have permission to reload configuration"
msgstr ""
#: init/control.c:462 init/main.c:951
msgid "Reloading configuration"
msgstr ""
#: init/control.c:506 init/control.c:667
msgid "Name may not be empty string"
msgstr ""
#: init/control.c:537
#, c-format
msgid "Unknown job: %s"
msgstr ""
#: init/control.c:660
msgid "You do not have permission to emit an event"
msgstr ""
#: init/control.c:675 init/job_class.c:835 init/job_class.c:1045
#: init/job_class.c:1185 init/job_class.c:1320
msgid "Env must be KEY=VALUE pairs"
msgstr ""
#: init/control.c:827
msgid "You do not have permission to set log priority"
msgstr ""
#: init/control.c:851
msgid "The log priority given was not recognised"
msgstr ""
#: init/control.c:903
msgid "You do not have permission to notify disk is writeable"
msgstr ""
#: init/control.c:949
msgid "Not permissible to notify D-Bus address for PID 1"
msgstr ""
#: init/control.c:956
msgid "You do not have permission to notify D-Bus address"
msgstr ""
#: init/control.c:967 init/control.c:1161
msgid "Out of Memory"
msgstr ""
#: init/control.c:1135
msgid "You do not have permission to request state"
msgstr ""
#: init/control.c:1148
msgid "Ignoring state query from chroot session"
msgstr ""
#: init/control.c:1189
msgid "You do not have permission to request restart"
msgstr ""
#: init/control.c:1203
msgid "Ignoring restart request from chroot session"
msgstr ""
#: init/control.c:1207
msgid "Restarting"
msgstr ""
#: init/control.c:1301 init/control.c:1406 init/control.c:1660
msgid "Not permissible to modify PID 1 job environment"
msgstr ""
#: init/control.c:1308 init/control.c:1394 init/control.c:1667
msgid "You do not have permission to modify job environment"
msgstr ""
#: init/control.c:1315 init/control.c:1413 init/control.c:1503
#: init/control.c:1599 init/control.c:1674
msgid "Job may not be empty string"
msgstr ""
#: init/control.c:1326
msgid "Ignoring set env request from chroot session"
msgstr ""
#: init/control.c:1424
msgid "Ignoring unset env request from chroot session"
msgstr ""
#: init/control.c:1450 init/control.c:1547
msgid "No such variable"
msgstr ""
#: init/control.c:1489 init/control.c:1585
msgid "You do not have permission to query job environment"
msgstr ""
#: init/control.c:1514
msgid "Ignoring get env request from chroot session"
msgstr ""
#: init/control.c:1685
msgid "Ignoring reset env request from chroot session"
msgstr ""
#: init/control.c:1818
msgid "unable to create session file"
msgstr ""
#: init/control.c:1825
msgid "unable to write session file"
msgstr ""
#: init/control.c:1874
msgid "You do not have permission to end session"
msgstr ""
#: init/control.c:1882
msgid "Ignoring session end request from chroot session"
msgstr ""
#: init/errors.h:63
msgid "Illegal parameter"
msgstr ""
#: init/errors.h:64
msgid "Unknown parameter"
msgstr ""
#: init/errors.h:65 init/errors.h:78
msgid "Expected operator"
msgstr ""
#: init/errors.h:66
msgid "Mismatched braces"
msgstr ""
#: init/errors.h:67
msgid "Invalid setuid user name does not exist"
msgstr ""
#: init/errors.h:68
msgid "Invalid setgid group name does not exist"
msgstr ""
#: init/errors.h:69
msgid "Illegal interval, expected number of seconds"
msgstr ""
#: init/errors.h:70
msgid "Illegal exit status, expected integer"
msgstr ""
#: init/errors.h:71
msgid "Illegal signal status, expected integer"
msgstr ""
#: init/errors.h:72
msgid "Illegal file creation mask, expected octal integer"
msgstr ""
#: init/errors.h:73
msgid "Illegal nice value, expected -20 to 19"
msgstr ""
#: init/errors.h:74
msgid "Illegal oom adjustment, expected -16 to 15 or 'never'"
msgstr ""
#: init/errors.h:75
msgid "Illegal oom score adjustment, expected -999 to 1000 or 'never'"
msgstr ""
#: init/errors.h:76
msgid "Illegal limit, expected 'unlimited' or integer"
msgstr ""
#: init/errors.h:77
msgid "Expected event"
msgstr ""
#: init/errors.h:79
msgid "Expected variable name before value"
msgstr ""
#: init/errors.h:80
msgid "Mismatched parentheses"
msgstr ""
#: init/errors.h:81
msgid "Name already taken"
msgstr ""
#: init/event.c:287
#, c-format
msgid "Handling %s event"
msgstr ""
#: init/event.c:396
#, c-format
msgid "Failed to obtain %s instance: %s"
msgstr ""
#: init/event.c:499
msgid "Event failed"
msgstr ""
#: init/job.c:280
#, c-format
msgid "%s goal changed from %s to %s"
msgstr ""
#: init/job.c:351
#, c-format
msgid "%s state changed from %s to %s"
msgstr ""
#: init/job.c:797 init/job.c:835
msgid "Job failed to start"
msgstr ""
#: init/job.c:810 init/job.c:846
msgid "Job failed while stopping"
msgstr ""
#: init/job.c:822 init/job.c:857
msgid "Job failed to restart"
msgstr ""
#: init/job.c:1051
msgid "stop"
msgstr ""
#: init/job.c:1053
msgid "start"
msgstr ""
#: init/job.c:1055
msgid "respawn"
msgstr ""
#: init/job.c:1100
msgid "waiting"
msgstr ""
#: init/job.c:1102
msgid "starting"
msgstr ""
#: init/job.c:1104 init/process.c:90
msgid "security"
msgstr ""
#: init/job.c:1106 init/process.c:82
msgid "pre-start"
msgstr ""
#: init/job.c:1108
msgid "spawned"
msgstr ""
#: init/job.c:1110 init/process.c:84
msgid "post-start"
msgstr ""
#: init/job.c:1112
msgid "running"
msgstr ""
#: init/job.c:1114 init/process.c:86
msgid "pre-stop"
msgstr ""
#: init/job.c:1116
msgid "stopping"
msgstr ""
#: init/job.c:1118
msgid "killed"
msgstr ""
#: init/job.c:1120 init/process.c:88
msgid "post-stop"
msgstr ""
#: init/job.c:1205 init/job.c:1280 init/job.c:1356 init/job.c:1425
#: init/job_class.c:1037 init/job_class.c:1177 init/job_class.c:1312
#, c-format
msgid "You do not have permission to modify job: %s"
msgstr ""
#: init/job.c:1213 init/job_class.c:1101
#, c-format
msgid "Job is already running: %s"
msgstr ""
#: init/job.c:1288 init/job.c:1364 init/job_class.c:1231 init/job_class.c:1365
#, c-format
msgid "Job has already been stopped: %s"
msgstr ""
#: init/job.c:1433
#, c-format
msgid "Job is not running: %s"
msgstr ""
#: init/job.c:1911 init/job_class.c:2231 init/job_class.c:2266
msgid "BUG"
msgstr ""
#: init/job.c:1912
msgid "instance 'stop on' parse error"
msgstr ""
#: init/job_class.c:865 init/job_class.c:1075 util/initctl.c:1688
msgid "Usage"
msgstr ""
#: init/job_class.c:883 init/job_class.c:928 init/job_class.c:1223
#: init/job_class.c:1357
#, c-format
msgid "Unknown instance: %s"
msgstr ""
#: init/job_class.c:2232
msgid "'start on' parse error"
msgstr ""
#: init/job_class.c:2267
msgid "'stop on' parse error"
msgstr ""
#: init/job_class.c:2602
msgid "unable to clear CLOEXEC bit on log fd"
msgstr ""
#: init/job_process.c:325
#, c-format
msgid "Failed to spawn %s %s process: %s"
msgstr ""
#: init/job_process.c:331
msgid "Temporary process spawn error"
msgstr ""
#: init/job_process.c:338
#, c-format
msgid "%s %s process (%d)"
msgstr ""
#: init/job_process.c:487
msgid "Failed to create pty - disabling logging for job"
msgstr ""
#: init/job_process.c:534
#, c-format
msgid "Pausing %s (%d) [pre-exec] for debug"
msgstr ""
#: init/job_process.c:671
#, c-format
msgid "Failed to open system console: %s"
msgstr ""
#: init/job_process.c:1034
#, c-format
msgid "unable to move script fd: %s"
msgstr ""
#: init/job_process.c:1039
#, c-format
msgid "unable to open console: %s"
msgstr ""
#: init/job_process.c:1094
#, c-format
msgid "unable to set \"%s\" resource limit: %s"
msgstr ""
#: init/job_process.c:1099
#, c-format
msgid "unable to set priority: %s"
msgstr ""
#: init/job_process.c:1104
#, c-format
msgid "unable to set oom adjustment: %s"
msgstr ""
#: init/job_process.c:1109
#, c-format
msgid "unable to change root directory: %s"
msgstr ""
#: init/job_process.c:1114
#, c-format
msgid "unable to change working directory: %s"
msgstr ""
#: init/job_process.c:1119
#, c-format
msgid "unable to set trace: %s"
msgstr ""
#: init/job_process.c:1124
#, c-format
msgid "unable to execute: %s"
msgstr ""
#: init/job_process.c:1129
#, c-format
msgid "unable to getpwnam: %s"
msgstr ""
#: init/job_process.c:1134
#, c-format
msgid "unable to getgrnam: %s"
msgstr ""
#: init/job_process.c:1139
#, c-format
msgid "unable to getpwuid: %s"
msgstr ""
#: init/job_process.c:1144
#, c-format
msgid "unable to getgrgid: %s"
msgstr ""
#: init/job_process.c:1149
msgid "unable to find setuid user"
msgstr ""
#: init/job_process.c:1153
msgid "unable to find setgid group"
msgstr ""
#: init/job_process.c:1157
#, c-format
msgid "unable to setuid: %s"
msgstr ""
#: init/job_process.c:1162
#, c-format
msgid "unable to setgid: %s"
msgstr ""
#: init/job_process.c:1167
#, c-format
msgid "unable to chown: %s"
msgstr ""
#: init/job_process.c:1172
#, c-format
msgid "unable to unlockpt: %s"
msgstr ""
#: init/job_process.c:1177
#, c-format
msgid "unable to granpt: %s"
msgstr ""
#: init/job_process.c:1182
#, c-format
msgid "unable to get ptsname: %s"
msgstr ""
#: init/job_process.c:1187
#, c-format
msgid "unable to open pty slave: %s"
msgstr ""
#: init/job_process.c:1192
#, c-format
msgid "unable to modify signal handler: %s"
msgstr ""
#: init/job_process.c:1197
#, c-format
msgid "unable to allocate memory: %s"
msgstr ""
#: init/job_process.c:1202
#, c-format
msgid "unable to initgroups: %s"
msgstr ""
#: init/job_process.c:1207
#, c-format
msgid "unable to switch security profile: %s"
msgstr ""
#: init/job_process.c:1238 init/job_process.c:1380
#, c-format
msgid "Sending %s signal to %s %s process (%d)"
msgstr ""
#: init/job_process.c:1247 init/job_process.c:1389
#, c-format
msgid "Failed to send %s signal to %s %s process (%d): %s"
msgstr ""
#: init/job_process.c:1450
#, c-format
msgid "%s %s process (%d) terminated with status %d"
msgstr ""
#: init/job_process.c:1455
#, c-format
msgid "%s %s process (%d) exited normally"
msgstr ""
#: init/job_process.c:1470
#, c-format
msgid "%s %s process (%d) killed by %s signal"
msgstr ""
#: init/job_process.c:1474
#, c-format
msgid "%s %s process (%d) killed by signal %d"
msgstr ""
#: init/job_process.c:1488
#, c-format
msgid "%s %s process (%d) stopped by %s signal"
msgstr ""
#: init/job_process.c:1492
#, c-format
msgid "%s %s process (%d) stopped by signal %d"
msgstr ""
#: init/job_process.c:1506
#, c-format
msgid "%s %s process (%d) continued by %s signal"
msgstr ""
#: init/job_process.c:1510
#, c-format
msgid "%s %s process (%d) continued by signal %d"
msgstr ""
#: init/job_process.c:1645
#, c-format
msgid "%s respawning too fast, stopped"
msgstr ""
#: init/job_process.c:1651
#, c-format
msgid "%s %s process ended, respawning"
msgstr ""
#: init/job_process.c:1762
msgid "Failed to add log to unflushed queue"
msgstr ""
#: init/job_process.c:1928
#, c-format
msgid "Failed to set ptrace options for %s %s process (%d): %s"
msgstr ""
#: init/job_process.c:1941 init/job_process.c:2136
#, c-format
msgid "Failed to continue traced %s %s process (%d): %s"
msgstr ""
#: init/job_process.c:1981 init/job_process.c:2072 init/job_process.c:2127
#, c-format
msgid "Failed to detach traced %s %s process (%d): %s"
msgstr ""
#: init/job_process.c:2021
#, c-format
msgid "Failed to deliver signal to traced %s %s process (%d): %s"
msgstr ""
#: init/job_process.c:2056
#, c-format
msgid "Failed to obtain child process id for %s %s process (%d): %s"
msgstr ""
#: init/job_process.c:2063
#, c-format
msgid "%s %s process (%d) became new process (%d)"
msgstr ""
#: init/job_process.c:2122
#, c-format
msgid "%s %s process (%d) executable changed"
msgstr ""
#: init/log.c:354
msgid "Failed to write to log file"
msgstr ""
#: init/main.c:148
msgid "specify alternative directory to load configuration files from"
msgstr ""
#: init/main.c:151
msgid "default value for console stanza"
msgstr ""
#: init/main.c:154
msgid "do not connect to a D-Bus bus"
msgstr ""
#: init/main.c:157
msgid "jobs will not inherit environment of init"
msgstr ""
#: init/main.c:160
msgid "specify alternative directory to store job output logs in"
msgstr ""
#: init/main.c:163
msgid "disable job logging"
msgstr ""
#: init/main.c:166
msgid "disable chroot sessions"
msgstr ""
#: init/main.c:169
msgid "do not emit any startup event (for testing)"
msgstr ""
#: init/main.c:173
msgid "flag a re-exec has occurred"
msgstr ""
#: init/main.c:177
msgid "specify file descriptor to read serialisation data from"
msgstr ""
#: init/main.c:180
msgid "use D-Bus session bus rather than system bus (for testing)"
msgstr ""
#: init/main.c:183
msgid "specify an alternative initial event (for testing)"
msgstr ""
#: init/main.c:186
msgid "start in user mode (as used for user sessions)"
msgstr ""
#: init/main.c:189
msgid "attempt to write state file on every re-exec"
msgstr ""
#: init/main.c:212
msgid "Process management daemon."
msgstr ""
#: init/main.c:214
msgid ""
"This daemon is normally executed by the kernel and given process id 1 to "
"denote its special status. When executed by a user process, it will "
"actually run /sbin/telinit."
msgstr ""
#: init/main.c:241 util/reboot.c:172 util/shutdown.c:373 util/telinit.c:250
msgid "Need to be root"
msgstr ""
#: init/main.c:250
msgid "Not being executed as init"
msgstr ""
#: init/main.c:301
msgid "Unable to mount /dev filesystem"
msgstr ""
#: init/main.c:310
msgid "Cannot create directory"
msgstr ""
#: init/main.c:318
msgid "Unable to mount /dev/pts filesystem"
msgstr ""
#: init/main.c:344
msgid "Unable to initialize console, will try /dev/null"
msgstr ""
#: init/main.c:350
msgid "Unable to initialize console as /dev/null"
msgstr ""
#: init/main.c:366 init/main.c:833
msgid "Unable to set root directory"
msgstr ""
#: init/main.c:379
msgid "Unable to mount /proc filesystem"
msgstr ""
#: init/main.c:389
msgid "Unable to mount /sys filesystem"
msgstr ""
#: init/main.c:512 init/main.c:518
msgid "Unable to set default oom score"
msgstr ""
#: init/main.c:527
msgid "Stateful re-exec supported but stateless re-exec requested"
msgstr ""
#: init/main.c:541
msgid "Failed to read serialisation data"
msgstr ""
#: init/main.c:542 init/state.c:1989
msgid "reverting to stateless re-exec"
msgstr ""
#: init/main.c:554
msgid "Both stateful and stateless re-execs failed"
msgstr ""
#: init/main.c:609
msgid "Unable to listen for private connections"
msgstr ""
#: init/main.c:623
#, c-format
msgid "Not connecting to %s bus"
msgstr ""
#: init/main.c:648
msgid "Unable to setup standard file descriptors"
msgstr ""
#: init/main.c:704
msgid "Unable to register as subreaper"
msgstr ""
#: init/main.c:850
#, c-format
msgid "Caught %s, core dumped"
msgstr ""
#: init/main.c:854
#, c-format
msgid "Caught %s, unable to dump core"
msgstr ""
#: init/main.c:885
#, c-format
msgid "Re-executing %s"
msgstr ""
#: init/main.c:978
#, c-format
msgid "Reconnecting to D-Bus %s bus"
msgstr ""
#: init/main.c:985
#, c-format
msgid "Unable to connect to the D-Bus %s bus: %s"
msgstr ""
#: init/main.c:1064
msgid "invalid console type specified"
msgstr ""
#: init/process.c:80
msgid "main"
msgstr ""
#: init/quiesce.c:127
msgid "logout"
msgstr ""
#: init/quiesce.c:127
msgid "shutdown"
msgstr ""
#: init/quiesce.c:129
#, c-format
msgid "Quiescing due to %s request"
msgstr ""
#: init/quiesce.c:313
#, c-format
msgid "Quiesce %s sequence took %s%d second%s"
msgstr ""
#: init/state.c:355 init/state.c:363 init/state.c:373 init/state.c:382
#: init/state.c:391
msgid "Failed to serialise"
msgstr ""
#: init/state.c:443
msgid "Detected invalid serialisation data"
msgstr ""
#: init/state.c:452 init/state.c:457 init/state.c:466 init/state.c:478
#: init/state.c:486
msgid "Failed to deserialise"
msgstr ""
#: init/state.c:470
msgid "No ConfSources present in state data"
msgstr ""
#: init/state.c:482
msgid "No global job environment data present in state data"
msgstr ""
#: init/state.c:491
msgid "Failed to resolve deserialisation dependencies"
msgstr ""
#: init/state.c:1684
msgid "failed to demarshal D-Bus message"
msgstr ""
#: init/state.c:1949
#, c-format
msgid "Failed to re-execute %s: %s"
msgstr ""
#: init/state.c:1988
msgid "Failed to generate serialisation data"
msgstr ""
#: init/state.c:1996
msgid "Performing stateful re-exec"
msgstr ""
#: init/state.c:2036
#, c-format
msgid "Passing state from PID %d to parent"
msgstr ""
#: init/state.c:2045
#, c-format
msgid "Failed to release D-Bus name: %s"
msgstr ""
#: init/state.c:2054
msgid "Failed to write serialisation data"
msgstr ""
#: init/system.c:235
msgid "Unable to create device"
msgstr ""
#: util/initctl.c:364
msgid "Unable to connect to system bus"
msgstr ""
#: util/initctl.c:365
msgid "Unable to connect to session bus"
msgstr ""
#: util/initctl.c:374
#, c-format
msgid "%s: --dest given without --system\n"
msgstr ""
#: util/initctl.c:382
msgid "Unable to connect to Upstart"
msgstr ""
#: util/initctl.c:592 util/initctl.c:727 util/initctl.c:855 util/initctl.c:990
#: util/initctl.c:1084 util/initctl.c:1658 util/initctl.c:2848
#, c-format
msgid "%s: missing job name\n"
msgstr ""
#: util/initctl.c:1388 util/initctl.c:1492
#, c-format
msgid "%s: missing variable name\n"
msgstr ""
#: util/initctl.c:1438
#, c-format
msgid "%s: missing variable value\n"
msgstr ""
#: util/initctl.c:1723
#, c-format
msgid "%s: missing event name\n"
msgstr ""
#: util/initctl.c:1920
msgid "Invalid job class"
msgstr ""
#: util/initctl.c:2009
#, c-format
msgid "%s: missing D-Bus address\n"
msgstr ""
#: util/initctl.c:2057
msgid "Unable to query session directory"
msgstr ""
#: util/initctl.c:2110
msgid "Ignoring stale session file"
msgstr ""
#: util/initctl.c:2711
msgid "unknown event"
msgstr ""
#: util/initctl.c:2715
msgid "unknown job"
msgstr ""
#: util/initctl.c:2874
msgid "use existing D-Bus session bus to connect to init daemon (for testing)"
msgstr ""
#: util/initctl.c:2876
msgid "use D-Bus system bus to connect to init daemon"
msgstr ""
#: util/initctl.c:2878
msgid "destination well-known name on D-Bus bus"
msgstr ""
#: util/initctl.c:2880
msgid "run in user mode (as used for user sessions)"
msgstr ""
#: util/initctl.c:2893
msgid "do not wait for job to start before exiting"
msgstr ""
#: util/initctl.c:2905
msgid "do not wait for job to stop before exiting"
msgstr ""
#: util/initctl.c:2917
msgid "do not wait for job to restart before exiting"
msgstr ""
#: util/initctl.c:2956
msgid "do not wait for event to finish before exiting"
msgstr ""
#: util/initctl.c:2997
msgid ""
"enumerate list of events and jobs causing job created from job config to "
"start/stop"
msgstr ""
#: util/initctl.c:3010
msgid "ignore specified list of events (comma-separated)"
msgstr ""
#: util/initctl.c:3012
msgid "Generate warning for any unreachable events/jobs"
msgstr ""
#: util/initctl.c:3023 util/initctl.c:3036 util/initctl.c:3047
#: util/initctl.c:3058 util/initctl.c:3069
msgid "apply to global job environment table"
msgstr ""
#: util/initctl.c:3025
msgid "do not replace the value of the variable if already set"
msgstr ""
#: util/initctl.c:3088
msgid "Job"
msgstr ""
#: util/initctl.c:3095
msgid "Event"
msgstr ""
#: util/initctl.c:3102
msgid "Environment"
msgstr ""
#: util/initctl.c:3110 util/initctl.c:3122 util/initctl.c:3133
#: util/initctl.c:3144 util/initctl.c:3151
msgid "JOB [KEY=VALUE]..."
msgstr ""
#: util/initctl.c:3111
msgid "Start job."
msgstr ""
#: util/initctl.c:3112
msgid ""
"JOB is the name of the job that is to be started, this may be followed by "
"zero or more environment variables to be defined in the new job.\n"
"\n"
"The environment may also serve to distinguish between job instances, and "
"thus decide whether a new instance will be started or an error returned if "
"an existing instance is already running."
msgstr ""
#: util/initctl.c:3123
msgid "Stop job."
msgstr ""
#: util/initctl.c:3124
msgid ""
"JOB is the name of the job that is to be stopped, this may be followed by "
"zero or more environment variables to be passed to the job's pre-stop and "
"post-stop processes.\n"
"\n"
"The environment also serves to distinguish between job instances, and thus "
"decide which of multiple instances will be stopped."
msgstr ""
#: util/initctl.c:3134
msgid "Restart job."
msgstr ""
#: util/initctl.c:3135
msgid ""
"JOB is the name of the job that is to be restarted, this may be followed by "
"zero or more environment variables to be defined in the job after "
"restarting.\n"
"\n"
"The environment also serves to distinguish between job instances, and thus "
"decide which of multiple instances will be restarted."
msgstr ""
#: util/initctl.c:3145
msgid "Send HUP signal to job."
msgstr ""
#: util/initctl.c:3146
msgid ""
"JOB is the name of the job that is to be sent the signal, this may be "
"followed by zero or more environment variables to distinguish between job "
"instances.\n"
msgstr ""
#: util/initctl.c:3152
msgid "Query status of job."
msgstr ""
#: util/initctl.c:3153
msgid ""
"JOB is the name of the job that is to be queried, this may be followed by "
"zero or more environment variables to distguish between job instances.\n"
msgstr ""
#: util/initctl.c:3159
msgid "List known jobs."
msgstr ""
#: util/initctl.c:3160
msgid "The known jobs and their current status will be output."
msgstr ""
#: util/initctl.c:3163
msgid "EVENT [KEY=VALUE]..."
msgstr ""
#: util/initctl.c:3164
msgid "Emit an event."
msgstr ""
#: util/initctl.c:3165
msgid ""
"EVENT is the name of an event the init daemon should emit, this may be "
"followed by zero or more environment variables to be included in the event.\n"
msgstr ""
#: util/initctl.c:3171
msgid "Reload the configuration of the init daemon."
msgstr ""
#: util/initctl.c:3175
msgid "Request the version of the init daemon."
msgstr ""
#: util/initctl.c:3178
msgid "[PRIORITY]"
msgstr ""
#: util/initctl.c:3179
msgid "Change the minimum priority of log messages from the init daemon."
msgstr ""
#: util/initctl.c:3181
msgid ""
"PRIORITY may be one of:\n"
" `debug' (messages useful for debugging upstart are logged, equivalent to --"
"debug on kernel command-line);\n"
" `info' (messages about job goal and state changes, as well as event "
"emissions are logged, equivalent to --verbose on the kernel command-line);\n"
" `message' (informational and debugging messages are suppressed, the "
"default); `warn' (ordinary messages are suppressed whilst still logging "
"warnings and errors);\n"
" `error' (only errors are logged, equivalent to --quiet on the kernel "
"command-line) or\n"
" `fatal' (only fatal errors are logged).\n"
"\n"
"Without arguments, this outputs the current log priority."
msgstr ""
#: util/initctl.c:3198 util/initctl.c:3204
msgid "[CONF]"
msgstr ""
#: util/initctl.c:3199
msgid "Show emits, start on and stop on details for job configurations."
msgstr ""
#: util/initctl.c:3200
msgid ""
"If CONF specified, show configuration details for single job configuration, "
"else show details for all jobs configurations.\n"
msgstr ""
#: util/initctl.c:3205
msgid "Check for unreachable jobs/event conditions."
msgstr ""
#: util/initctl.c:3206
msgid ""
"List all jobs and events which cannot be satisfied by currently available "
"job configuration files."
msgstr ""
#: util/initctl.c:3210 util/initctl.c:3220 util/initctl.c:3230
msgid "VARIABLE"
msgstr ""
#: util/initctl.c:3211
msgid "Retrieve value of a job environment variable."
msgstr ""
#: util/initctl.c:3212
msgid "Display the value of a variable from the job environment table."
msgstr ""
#: util/initctl.c:3216
msgid "Show all job environment variables."
msgstr ""
#: util/initctl.c:3217
msgid ""
"Displays sorted list of variables and their values from the job environment "
"table."
msgstr ""
#: util/initctl.c:3221
msgid "Revert all job environment variable changes."
msgstr ""
#: util/initctl.c:3222
msgid ""
"Discards all changes make to the job environment table, setting it back to "
"its default value."
msgstr ""
#: util/initctl.c:3225
msgid "VARIABLE[=VALUE]"
msgstr ""
#: util/initctl.c:3226
msgid "Set a job environment variable."
msgstr ""
#: util/initctl.c:3227
msgid "Adds or updates a variable in the job environment table."
msgstr ""
#: util/initctl.c:3231
msgid "Remove a job environment variable."
msgstr ""
#: util/initctl.c:3232
msgid "Discards the specified variable from the job environment table."
msgstr ""
#: util/initctl.c:3235
msgid "JOB"
msgstr ""
#: util/initctl.c:3236
msgid "Show job usage message if available."
msgstr ""
#: util/initctl.c:3237
msgid "JOB is the name of the job which usage is to be shown.\n"
msgstr ""
#: util/initctl.c:3241
msgid "Inform Upstart of D-Bus address to connect to."
msgstr ""
#: util/initctl.c:3242
msgid "Run to allow Upstart to provide services over D-Bus."
msgstr ""
#: util/initctl.c:3246
msgid "Inform Upstart that disk is now writeable."
msgstr ""
#: util/initctl.c:3247
msgid ""
"Run to ensure output from jobs ending before disk is writeable are flushed "
"to disk."
msgstr ""
#: util/initctl.c:3252
msgid "List all sessions."
msgstr ""
#: util/initctl.c:3253
msgid "Displays list of running Session Init sessions"
msgstr ""
#: util/reboot.c:116
msgid "don't sync before reboot or halt"
msgstr ""
#: util/reboot.c:118
msgid "force reboot or halt, don't call shutdown(8)"
msgstr ""
#: util/reboot.c:120
msgid "switch off the power when called as halt"
msgstr ""
#: util/reboot.c:122
msgid "don't actually reboot or halt, just write wtmp record"
msgstr ""
#: util/reboot.c:148
msgid "Halt the system."
msgstr ""
#: util/reboot.c:151
msgid "Power off the system."
msgstr ""
#: util/reboot.c:154
msgid "Reboot the system."
msgstr ""
#: util/reboot.c:158
msgid ""
"This command is intended to instruct the kernel to reboot or halt the "
"system; when run without the -f option, or when in a system runlevel other "
"than 0 or 6, it will actually execute /sbin/shutdown.\n"
msgstr ""
#: util/reboot.c:169 util/shutdown.c:370 util/telinit.c:247
msgid "Couldn't set uid."
msgstr ""
#: util/reboot.c:222
msgid "Calling shutdown"
msgstr ""
#: util/reboot.c:225
#, c-format
msgid "Unable to execute shutdown: %s"
msgstr ""
#: util/reboot.c:246
msgid "Rebooting"
msgstr ""
#: util/reboot.c:250
msgid "Halting"
msgstr ""
#: util/reboot.c:254
msgid "Powering off"
msgstr ""
#: util/reboot.c:258
#, c-format
msgid "Rebooting with %s"
msgstr ""
#: util/runlevel.c:59
msgid "[UTMP]"
msgstr ""
#: util/runlevel.c:60
msgid "Output previous and current runlevel."
msgstr ""
#: util/runlevel.c:62
msgid ""
"The system /var/run/utmp file is used unless the alternate file UTMP is "
"given.\n"
msgstr ""
#: util/shutdown.c:201
msgid "reboot after shutdown"
msgstr ""
#: util/shutdown.c:203
msgid "halt or power off after shutdown"
msgstr ""
#: util/shutdown.c:205
msgid "halt after shutdown (implies -h)"
msgstr ""
#: util/shutdown.c:207
msgid "power off after shutdown (implies -h)"
msgstr ""
#: util/shutdown.c:209
msgid "cancel a running shutdown"
msgstr ""
#: util/shutdown.c:211
msgid "only send warnings, don't shutdown"
msgstr ""
#: util/shutdown.c:243
msgid "TIME [MESSAGE]"
msgstr ""
#: util/shutdown.c:244
msgid "Bring the system down."
msgstr ""
#: util/shutdown.c:246
msgid ""
"TIME may have different formats, the most common is simply the word 'now' "
"which will bring the system down immediately. Other valid formats are +m, "
"where m is the number of minutes to wait until shutting down and hh:mm which "
"specifies the time on the 24hr clock.\n"
"\n"
"Logged in users are warned by a message sent to their terminal, you may "
"include an optional MESSAGE included with this. Messages can be sent "
"without actually bringing the system down by using the -k option.\n"
"\n"
"If TIME is given, the command will remain in the foreground until the "
"shutdown occurs. It can be cancelled by Control-C, or by another user using "
"the -c option.\n"
"\n"
"The system is brought down into maintenance (single-user) mode by default, "
"you can change this with either the -r or -h option which specify a reboot "
"or system halt respectively. The -h option can be further modified with -H "
"or -P to specify whether to halt the system, or to power it off afterwards. "
"The default is left up to the shutdown scripts."
msgstr ""
#: util/shutdown.c:284
#, c-format
msgid "%s: time expected\n"
msgstr ""
#: util/shutdown.c:308
#, c-format
msgid "%s: illegal hour value\n"
msgstr ""
#: util/shutdown.c:317
#, c-format
msgid "%s: illegal minute value\n"
msgstr ""
#: util/shutdown.c:337
#, c-format
msgid "%s: illegal time value\n"
msgstr ""
#: util/shutdown.c:384
msgid "Shutdown is not running"
msgstr ""
#: util/shutdown.c:393
msgid "Another shutdown is already running"
msgstr ""
#: util/shutdown.c:397
msgid "Cannot find pid of running shutdown"
msgstr ""
#: util/shutdown.c:411
msgid "Unable to change directory"
msgstr ""
#: util/shutdown.c:425
msgid "Unable to write pid file"
msgstr ""
#: util/shutdown.c:524
msgid "Shutdown cancelled"
msgstr ""
#: util/shutdown.c:609
msgid "The system is going down for power off NOW!"
msgstr ""
#: util/shutdown.c:622
msgid "The system is going down for halt NOW!"
msgstr ""
#: util/shutdown.c:635
msgid "The system is going down for maintenance NOW!"
msgstr ""
#: util/shutdown.c:648
msgid "The system is going down for reboot NOW!"
msgstr ""
#: util/shutdown.c:695
#, c-format
msgid "Unable to fork child-process to warn users: %s"
msgstr ""
#: util/shutdown.c:740
#, c-format
msgid "Broadcast message from %s@%s"
msgstr ""
#: util/shutdown.c:742
#, c-format
msgid "(%s) at %d:%02d ..."
msgstr ""
#: util/telinit.c:194
msgid "set environment variable in the runlevel event"
msgstr ""
#: util/telinit.c:215
msgid "Change runlevel."
msgstr ""
#: util/telinit.c:217
msgid ""
"RUNLEVEL should be one of 0123456sS, where s and S are considered "
"identical.\n"
"\n"
"RUNLEVEL may also be Q or q to instruct the init daemon to reload its "
"configuration, this is rarely necessary since the daemon watches its "
"configuration for changes.\n"
"\n"
"RUNLEVEL may be U or u to instruct the init daemon to re-execute itself, "
"this is not recommended since Upstart does not currently preserve its "
"state.\n"
msgstr ""
#: util/telinit.c:234
#, c-format
msgid "%s: missing runlevel\n"
msgstr ""
#: util/telinit.c:239
#, c-format
msgid "%s: illegal runlevel: %s\n"
msgstr ""
#: extra/upstart-udev-bridge.c:85 extra/upstart-socket-bridge.c:130
msgid "Detach and run in the background"
msgstr ""
#: extra/upstart-udev-bridge.c:87
msgid "Do not strip non-printable bytes from udev message data"
msgstr ""
#: extra/upstart-udev-bridge.c:106
msgid "Bridge udev events into upstart"
msgstr ""
#: extra/upstart-udev-bridge.c:108
msgid ""
"By default, upstart-udev-bridge does not detach from the console and remains "
"in the foreground. Use the --daemon option to have it detach."
msgstr ""
#: extra/upstart-udev-bridge.c:122 extra/upstart-socket-bridge.c:180
msgid "Could not connect to Upstart"
msgstr ""
#: extra/upstart-udev-bridge.c:136 extra/upstart-socket-bridge.c:194
msgid "Could not create Upstart proxy"
msgstr ""
#: extra/upstart-udev-bridge.c:160 extra/upstart-socket-bridge.c:250
msgid "Unable to become daemon"
msgstr ""
#: extra/upstart-udev-bridge.c:336 extra/upstart-socket-bridge.c:623
msgid "Disconnected from Upstart"
msgstr ""
#: extra/upstart-socket-bridge.c:148
msgid "Bridge socket events into upstart"
msgstr ""
#: extra/upstart-socket-bridge.c:150
msgid ""
"By default, upstart-socket-bridge does not detach from the console and "
"remains in the foreground. Use the --daemon option to have it detach."
msgstr ""
#: extra/upstart-socket-bridge.c:163
msgid "Could not create epoll descriptor"
msgstr ""
#: extra/upstart-socket-bridge.c:207
msgid "Could not create JobAdded signal connection"
msgstr ""
#: extra/upstart-socket-bridge.c:219
msgid "Could not create JobRemoved signal connection"
msgstr ""
#: extra/upstart-socket-bridge.c:231
msgid "Could not obtain job list"
msgstr ""
#: extra/upstart-socket-bridge.c:287
msgid "Error from epoll"
msgstr ""
#: extra/upstart-socket-bridge.c:350
msgid "Could not send socket event"
msgstr ""
#: extra/upstart-socket-bridge.c:642
msgid "Error emitting socket event"
msgstr ""
#: scripts/upstart-monitor.py:64
msgid "WARNING"
msgstr ""
#: scripts/upstart-monitor.py:64
msgid "GUI modules not available - falling back to CLI"
msgstr ""
#: scripts/upstart-monitor.py:286
msgid "Version"
msgstr ""
#: scripts/upstart-monitor.py:333
msgid "Error saving file"
msgstr ""
#: scripts/upstart-monitor.py:350
msgid "No events to save"
msgstr ""
#: scripts/upstart-monitor.py:358
msgid "Save File"
msgstr ""
#: scripts/upstart-monitor.py:486
msgid "Clear events"
msgstr ""
#: scripts/upstart-monitor.py:488
msgid "Save events to default file"
msgstr ""
#: scripts/upstart-monitor.py:490
msgid "Save events to specified file"
msgstr ""
#: scripts/upstart-monitor.py:492
msgid "Exit application"
msgstr ""
#: scripts/upstart-monitor.py:496
msgid "Application details"
msgstr ""
#: scripts/upstart-monitor.py:501
msgid "Copy"
msgstr ""
#: scripts/upstart-monitor.py:558
msgid "Index"
msgstr ""
#: scripts/upstart-monitor.py:562
msgid "Time"
msgstr ""
#: scripts/upstart-monitor.py:566
msgid "Event and environment"
msgstr ""
#: scripts/upstart-monitor.py:591 scripts/upstart-monitor.py:673
msgid "Connected to"
msgstr ""
#: scripts/upstart-monitor.py:622
msgid "Upstart Event Monitor"
msgstr ""
#: scripts/upstart-monitor.py:626
msgid "run in command-line mode"
msgstr ""
#: scripts/upstart-monitor.py:629
msgid "field separator to use for command-line output"
msgstr ""
#: scripts/upstart-monitor.py:633
msgid "connect to Upstart via specified D-Bus route"
msgstr ""
#: scripts/upstart-monitor.py:671
msgid "console mode"
msgstr ""
#: scripts/upstart-monitor.py:675
msgid "Columns: time, event and environment"
msgstr ""
|