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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Collabora Ltd.
# This file is distributed under the same license as the p11-kit package.
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: p11-kit\n"
"Report-Msgid-Bugs-To: https://github.com/p11-glue/p11-kit/issues\n"
"POT-Creation-Date: 2022-10-19 03:26+0000\n"
"PO-Revision-Date: 2012-02-29 09:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Persian (http://www.transifex.com/freedesktop/p11-kit/"
"language/fa/)\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: common/tool.c:184
#, c-format
msgid "usage: %s command <args>...\n"
msgstr ""
#: common/tool.c:185
#, c-format
msgid ""
"\n"
"Common %s commands are:\n"
msgstr ""
#: common/tool.c:198
#, c-format
msgid ""
"\n"
"See '%s <command> --help' for more information\n"
msgstr ""
#: common/tool.c:261 common/tool.c:333
msgid "no command specified"
msgstr ""
#: common/tool.c:277
#, c-format
msgid "unknown global option: %s"
msgstr ""
#: common/tool.c:306
#, c-format
msgid "unknown global option: -%c"
msgstr ""
#. At this point we have no command
#: common/tool.c:358
#, c-format
msgid "'%s' is not a valid command. See '%s --help'"
msgstr ""
#: p11-kit/conf.c:161
#, c-format
msgid "%s: unexpected pem block"
msgstr ""
#: p11-kit/conf.c:165
#, c-format
msgid "%s: unexpected section header"
msgstr ""
#: p11-kit/conf.c:208
#, c-format
msgid "invalid mode for 'user-config': %s"
msgstr ""
#: p11-kit/conf.c:367
#, c-format
msgid "invalid config filename, will be ignored in the future: %s"
msgstr ""
#: p11-kit/conf.c:428 trust/save.c:573 trust/token.c:269
#, c-format
msgid "couldn't list directory: %s"
msgstr ""
#: p11-kit/conf.c:439
#, c-format
msgid "couldn't stat path: %s"
msgstr ""
#: p11-kit/conf.c:528
#, c-format
msgid "invalid setting '%s' defaulting to '%s'"
msgstr ""
#: p11-kit/filter.c:183
msgid "filter cannot be initialized"
msgstr ""
#: p11-kit/lists.c:117 p11-kit/lists.c:184 p11-kit/lists.c:205
#, c-format
msgid "couldn't load module info: %s"
msgstr ""
#: p11-kit/lists.c:296
msgid "extra arguments specified"
msgstr ""
#: p11-kit/messages.c:78
msgid "The operation was cancelled"
msgstr ""
#: p11-kit/messages.c:81
msgid "Insufficient memory available"
msgstr ""
#: p11-kit/messages.c:83
msgid "The specified slot ID is not valid"
msgstr ""
#: p11-kit/messages.c:85
msgid "Internal error"
msgstr ""
#: p11-kit/messages.c:87
msgid "The operation failed"
msgstr ""
#: p11-kit/messages.c:89
msgid "Invalid arguments"
msgstr ""
#: p11-kit/messages.c:91
msgid "The module cannot create needed threads"
msgstr ""
#: p11-kit/messages.c:93
msgid "The module cannot lock data properly"
msgstr ""
#: p11-kit/messages.c:95
msgid "The field is read-only"
msgstr ""
#: p11-kit/messages.c:97
msgid "The field is sensitive and cannot be revealed"
msgstr ""
#: p11-kit/messages.c:99
msgid "The field is invalid or does not exist"
msgstr ""
#: p11-kit/messages.c:101
msgid "Invalid value for field"
msgstr ""
#: p11-kit/messages.c:103
msgid "The data is not valid or unrecognized"
msgstr ""
#: p11-kit/messages.c:105
msgid "The data is too long"
msgstr ""
#: p11-kit/messages.c:107
msgid "An error occurred on the device"
msgstr ""
#: p11-kit/messages.c:109
msgid "Insufficient memory available on the device"
msgstr ""
#: p11-kit/messages.c:111
msgid "The device was removed or unplugged"
msgstr ""
#: p11-kit/messages.c:113
msgid "The encrypted data is not valid or unrecognized"
msgstr ""
#: p11-kit/messages.c:115
msgid "The encrypted data is too long"
msgstr ""
#: p11-kit/messages.c:117
msgid "This operation is not supported"
msgstr ""
#: p11-kit/messages.c:119
msgid "The key is missing or invalid"
msgstr ""
#: p11-kit/messages.c:121
msgid "The key is the wrong size"
msgstr ""
#: p11-kit/messages.c:123
msgid "The key is of the wrong type"
msgstr ""
#: p11-kit/messages.c:125
msgid "No key is needed"
msgstr ""
#: p11-kit/messages.c:127
msgid "The key is different than before"
msgstr ""
#: p11-kit/messages.c:129
msgid "A key is needed"
msgstr ""
#: p11-kit/messages.c:131
msgid "Cannot include the key in the digest"
msgstr ""
#: p11-kit/messages.c:133
msgid "This operation cannot be done with this key"
msgstr ""
#: p11-kit/messages.c:135
msgid "The key cannot be wrapped"
msgstr ""
#: p11-kit/messages.c:137
msgid "Cannot export this key"
msgstr ""
#: p11-kit/messages.c:139
msgid "The crypto mechanism is invalid or unrecognized"
msgstr ""
#: p11-kit/messages.c:141
msgid "The crypto mechanism has an invalid argument"
msgstr ""
#: p11-kit/messages.c:143
msgid "The object is missing or invalid"
msgstr ""
#: p11-kit/messages.c:145
msgid "Another operation is already taking place"
msgstr ""
#: p11-kit/messages.c:147
msgid "No operation is taking place"
msgstr ""
#: p11-kit/messages.c:149
msgid "The password or PIN is incorrect"
msgstr ""
#: p11-kit/messages.c:151
msgid "The password or PIN is invalid"
msgstr ""
#: p11-kit/messages.c:153
msgid "The password or PIN is of an invalid length"
msgstr ""
#: p11-kit/messages.c:155
msgid "The password or PIN has expired"
msgstr ""
#: p11-kit/messages.c:157
msgid "The password or PIN is locked"
msgstr ""
#: p11-kit/messages.c:159
msgid "The session is closed"
msgstr ""
#: p11-kit/messages.c:161
msgid "Too many sessions are active"
msgstr ""
#: p11-kit/messages.c:163
msgid "The session is invalid"
msgstr ""
#: p11-kit/messages.c:165
msgid "The session is read-only"
msgstr ""
#: p11-kit/messages.c:167
msgid "An open session exists"
msgstr ""
#: p11-kit/messages.c:169
msgid "A read-only session exists"
msgstr ""
#: p11-kit/messages.c:171
msgid "An administrator session exists"
msgstr ""
#: p11-kit/messages.c:173
msgid "The signature is bad or corrupted"
msgstr ""
#: p11-kit/messages.c:175
msgid "The signature is unrecognized or corrupted"
msgstr ""
#: p11-kit/messages.c:177
msgid "Certain required fields are missing"
msgstr ""
#: p11-kit/messages.c:179
msgid "Certain fields have invalid values"
msgstr ""
#: p11-kit/messages.c:181
msgid "The device is not present or unplugged"
msgstr ""
#: p11-kit/messages.c:183
msgid "The device is invalid or unrecognizable"
msgstr ""
#: p11-kit/messages.c:185
msgid "The device is write protected"
msgstr ""
#: p11-kit/messages.c:187
msgid "Cannot import because the key is invalid"
msgstr ""
#: p11-kit/messages.c:189
msgid "Cannot import because the key is of the wrong size"
msgstr ""
#: p11-kit/messages.c:191
msgid "Cannot import because the key is of the wrong type"
msgstr ""
#: p11-kit/messages.c:193
msgid "You are already logged in"
msgstr ""
#: p11-kit/messages.c:195
msgid "No user has logged in"
msgstr ""
#: p11-kit/messages.c:197
msgid "The user's password or PIN is not set"
msgstr ""
#: p11-kit/messages.c:199
msgid "The user is of an invalid type"
msgstr ""
#: p11-kit/messages.c:201
msgid "Another user is already logged in"
msgstr ""
#: p11-kit/messages.c:203
msgid "Too many users of different types are logged in"
msgstr ""
#: p11-kit/messages.c:205
msgid "Cannot import an invalid key"
msgstr ""
#: p11-kit/messages.c:207
msgid "Cannot import a key of the wrong size"
msgstr ""
#: p11-kit/messages.c:209
msgid "Cannot export because the key is invalid"
msgstr ""
#: p11-kit/messages.c:211
msgid "Cannot export because the key is of the wrong size"
msgstr ""
#: p11-kit/messages.c:213
msgid "Cannot export because the key is of the wrong type"
msgstr ""
#: p11-kit/messages.c:215
msgid "Unable to initialize the random number generator"
msgstr ""
#: p11-kit/messages.c:217
msgid "No random number generator available"
msgstr ""
#: p11-kit/messages.c:219
msgid "The crypto mechanism has an invalid parameter"
msgstr ""
#: p11-kit/messages.c:221
msgid "Not enough space to store the result"
msgstr ""
#: p11-kit/messages.c:223
msgid "The saved state is invalid"
msgstr ""
#: p11-kit/messages.c:225
msgid "The information is sensitive and cannot be revealed"
msgstr ""
#: p11-kit/messages.c:227
msgid "The state cannot be saved"
msgstr ""
#: p11-kit/messages.c:229
msgid "The module has not been initialized"
msgstr ""
#: p11-kit/messages.c:231
msgid "The module has already been initialized"
msgstr ""
#: p11-kit/messages.c:233
msgid "Cannot lock data"
msgstr ""
#: p11-kit/messages.c:235
msgid "The data cannot be locked"
msgstr ""
#: p11-kit/messages.c:237
msgid "The request was rejected by the user"
msgstr ""
#: p11-kit/messages.c:240
msgid "Unknown error"
msgstr ""
#: p11-kit/modules.c:373
#, c-format
msgid "couldn't load module: %s: %s"
msgstr ""
#: p11-kit/modules.c:385
#, c-format
msgid "couldn't find C_GetFunctionList entry point in module: %s: %s"
msgstr ""
#: p11-kit/modules.c:393
#, c-format
msgid "call to C_GetFunctiontList failed in module: %s: %s"
msgstr ""
#: p11-kit/modules.c:399
msgid "refusing to load the p11-kit-proxy.so module as a registered module"
msgstr ""
#: p11-kit/modules.c:548
#, c-format
msgid "module '%s' has both enable-in and disable-in options"
msgstr ""
#: p11-kit/modules.c:698
#, c-format
msgid "aborting initialization because module '%s' was marked as critical"
msgstr ""
#: p11-kit/modules.c:723
msgid "p11-kit initialization called recursively"
msgstr ""
#: p11-kit/modules.c:909
#, c-format
msgid "initialization of critical module '%s' failed: %s"
msgstr ""
#: p11-kit/modules.c:912
#, c-format
msgid "skipping module '%s' whose initialization failed: %s"
msgstr ""
#: p11-kit/modules.c:1687
#, c-format
msgid "couldn't close session: %s"
msgstr ""
#.
#. * This is because the module is running in unmanaged mode, so turn off the
#.
#: p11-kit/modules.c:1864
#, c-format
msgid "the '%s' option for module '%s' is only supported for managed modules"
msgstr ""
#: p11-kit/modules.c:2173 p11-kit/modules.c:2649
#, c-format
msgid "%s: module failed to initialize: %s"
msgstr ""
#: p11-kit/modules.c:2176
#, c-format
msgid "%s: module failed to initialize, skipping: %s"
msgstr ""
#: p11-kit/modules.c:2182
#, c-format
msgid "%s: module was already initialized"
msgstr ""
#: p11-kit/modules.c:2278 p11-kit/modules.c:2690
#, c-format
msgid "%s: module failed to finalize: %s"
msgstr ""
#: p11-kit/modules.c:2417
#, c-format
msgid "module initialization failed: %s"
msgstr ""
#: p11-kit/p11-kit.c:72
msgid "List modules and tokens"
msgstr ""
#: p11-kit/p11-kit.c:73
msgid "Run a specific PKCS#11 module remotely"
msgstr ""
#: p11-kit/p11-kit.c:74
msgid "Run a server process that exposes PKCS#11 module remotely"
msgstr ""
#. At this point we have no command
#: p11-kit/p11-kit.c:95
msgid "couldn't run trust tool"
msgstr ""
#. At this point we have no command
#: p11-kit/p11-kit.c:137
#, c-format
msgid "'%s' is not a valid command. See 'p11-kit --help'"
msgstr ""
#: p11-kit/remote.c:108
msgid "specify a module or tokens to remote"
msgstr ""
#: p11-kit/remote.c:113
msgid "the 'remote' tool is not meant to be run from a terminal"
msgstr ""
#: p11-kit/remote.c:139
msgid "only one module can be specified"
msgstr ""
#: p11-kit/rpc-client.c:146
msgid "invalid rpc error response: too short"
msgstr ""
#: p11-kit/rpc-client.c:151
msgid "invalid rpc error response: bad error code"
msgstr ""
#: p11-kit/rpc-client.c:161
msgid "invalid rpc response: call mismatch"
msgstr ""
#: p11-kit/rpc-client.c:182
msgid "invalid rpc response: bad argument data"
msgstr ""
#: p11-kit/rpc-client.c:229
msgid "received an attribute array with wrong number of attributes"
msgstr ""
#: p11-kit/rpc-client.c:256
msgid "returned attributes in invalid order"
msgstr ""
#: p11-kit/rpc-client.c:727 trust/module.c:382
msgid "invalid set of mutex calls supplied"
msgstr ""
#: p11-kit/rpc-client.c:736 trust/module.c:391
msgid "can't do without os locking"
msgstr ""
#: p11-kit/rpc-client.c:749
msgid "C_Initialize called twice for same process"
msgstr ""
#: p11-kit/rpc-client.c:856
#, c-format
msgid "finalizing rpc module returned an error: %lu"
msgstr ""
#: p11-kit/rpc-message.c:190
msgid "invalid message: couldn't read call identifier"
msgstr ""
#: p11-kit/rpc-message.c:199
#, c-format
msgid "invalid message: bad call id: %d"
msgstr ""
#: p11-kit/rpc-message.c:217
msgid "invalid message: couldn't read signature"
msgstr ""
#: p11-kit/rpc-message.c:222
msgid "invalid message: signature doesn't match"
msgstr ""
#: p11-kit/rpc-message.c:483
#, c-format
msgid "invalid length space padded string received: %d != %d"
msgstr ""
#: p11-kit/rpc-server.c:575
msgid "invalid request from module, probably too short"
msgstr ""
#: p11-kit/rpc-server.c:585
msgid "couldn't initialize rpc response"
msgstr ""
#: p11-kit/rpc-server.c:717
msgid "invalid handshake received from connecting module"
msgstr ""
#: p11-kit/rpc-server.c:1834
msgid "couldn't parse pkcs11 rpc message"
msgstr ""
#: p11-kit/rpc-server.c:1921
msgid "out of memory error putting together message"
msgstr ""
#: p11-kit/rpc-server.c:1945
msgid "out of memory responding with error"
msgstr ""
#: p11-kit/rpc-server.c:1991
#, c-format
msgid "unsupported version received: %d"
msgstr ""
#: p11-kit/rpc-server.c:1997
msgid "couldn't read credential byte"
msgstr ""
#: p11-kit/rpc-server.c:2009
msgid "couldn't write credential byte"
msgstr ""
#: p11-kit/rpc-server.c:2032
msgid "failed to read rpc message"
msgstr ""
#: p11-kit/rpc-server.c:2037
msgid "unexpected error handling rpc message"
msgstr ""
#: p11-kit/rpc-server.c:2055
msgid "failed to write rpc message"
msgstr ""
#: p11-kit/rpc-transport.c:208
msgid "couldn't send data: closed connection"
msgstr ""
#: p11-kit/rpc-transport.c:211
msgid "couldn't send data"
msgstr ""
#: p11-kit/rpc-transport.c:234
msgid "couldn't receive data: closed connection"
msgstr ""
#: p11-kit/rpc-transport.c:238
msgid "couldn't receive data"
msgstr ""
#: p11-kit/rpc-transport.c:416
msgid "received invalid rpc header values: perhaps wrong protocol"
msgstr ""
#: p11-kit/rpc-transport.c:459
msgid "couldn't use select to wait on rpc pipe"
msgstr ""
#: p11-kit/rpc-transport.c:648
msgid "couldn't send socket credentials"
msgstr ""
#: p11-kit/rpc-transport.c:653
msgid "couldn't receive socket credentials"
msgstr ""
#: p11-kit/rpc-transport.c:659
msgid "peer protocol version is too old"
msgstr ""
#: p11-kit/rpc-transport.c:710 p11-kit/rpc-transport.c:716
msgid "closing socket due to protocol failure"
msgstr ""
#: p11-kit/rpc-transport.c:755
#, c-format
msgid "process %d did not exit, terminating"
msgstr ""
#: p11-kit/rpc-transport.c:762
#, c-format
msgid "failed to wait for executed child: %d"
msgstr ""
#: p11-kit/rpc-transport.c:769
#, c-format
msgid "process %d exited with status %d"
msgstr ""
#: p11-kit/rpc-transport.c:773
#, c-format
msgid "process %d was terminated with signal %d"
msgstr ""
#: p11-kit/rpc-transport.c:817 p11-kit/rpc-transport.c:953
#: p11-kit/rpc-transport.c:960
msgid "failed to create pipe for remote"
msgstr ""
#: p11-kit/rpc-transport.c:828
msgid "failed to fork for remote"
msgstr ""
#: p11-kit/rpc-transport.c:888
#, c-format
msgid "process %p did not exit, terminating"
msgstr ""
#: p11-kit/rpc-transport.c:890
#, c-format
msgid "couldn't terminate process %p"
msgstr ""
#: p11-kit/rpc-transport.c:895
#, c-format
msgid "failed to wait for executed child: %p"
msgstr ""
#: p11-kit/rpc-transport.c:898
#, c-format
msgid "failed to get the exit status of %p"
msgstr ""
#: p11-kit/rpc-transport.c:902
#, c-format
msgid "process %p exited with status %lu"
msgstr ""
#: p11-kit/rpc-transport.c:968
msgid "failed to duplicate stdin"
msgstr ""
#: p11-kit/rpc-transport.c:975
msgid "failed to duplicate stdout"
msgstr ""
#: p11-kit/rpc-transport.c:983
msgid "failed to duplicate child end of pipe"
msgstr ""
#: p11-kit/rpc-transport.c:993
msgid "failed to spawn remote"
msgstr ""
#: p11-kit/rpc-transport.c:1006
msgid "failed to restore file descriptors"
msgstr ""
#: p11-kit/rpc-transport.c:1075
#, c-format
msgid "invalid remote command line: %s"
msgstr ""
#: p11-kit/rpc-transport.c:1115 p11-kit/rpc-transport.c:1196
msgid "failed to create socket for remote"
msgstr ""
#: p11-kit/rpc-transport.c:1293 p11-kit/server.c:165
#, c-format
msgid "failed to parse vsock address: '%s'"
msgstr ""
#: p11-kit/rpc-transport.c:1301
#, c-format
msgid "remote not supported: %s"
msgstr ""
#: p11-kit/server.c:243
#, c-format
msgid "child %u died with sigsegv"
msgstr ""
#: p11-kit/server.c:245
#, c-format
msgid "child %u died with signal %d"
msgstr ""
#: p11-kit/server.c:318
#, c-format
msgid "could not create socket %s"
msgstr ""
#: p11-kit/server.c:326
#, c-format
msgid "could not bind socket %s"
msgstr ""
#: p11-kit/server.c:333
#, c-format
msgid "could not listen to socket %s"
msgstr ""
#: p11-kit/server.c:341
#, c-format
msgid "could not chown socket %s"
msgstr ""
#: p11-kit/server.c:364
#, c-format
msgid "could not create socket %u:%u"
msgstr ""
#: p11-kit/server.c:371
#, c-format
msgid "could not bind socket %u:%u"
msgstr ""
#: p11-kit/server.c:378
#, c-format
msgid "could not listen to socket %u:%u"
msgstr ""
#: p11-kit/server.c:397
msgid "could not check uid from socket"
msgstr ""
#: p11-kit/server.c:403
#, c-format
msgid "connecting uid (%u) doesn't match expected (%u)"
msgstr ""
#: p11-kit/server.c:410
#, c-format
msgid "connecting gid (%u) doesn't match expected (%u)"
msgstr ""
#: p11-kit/server.c:491
msgid "could not fork() to daemonize"
msgstr ""
#: p11-kit/server.c:504
msgid "could not create a new session"
msgstr ""
#: p11-kit/server.c:512
msgid "too many file descriptors received"
msgstr ""
#: p11-kit/server.c:556
#, c-format
msgid "no connections to %s for %lu secs, exiting"
msgstr ""
#: p11-kit/server.c:565
#, c-format
msgid "could not accept from socket %s"
msgstr ""
#: p11-kit/server.c:576
msgid "failed to fork for accept"
msgstr ""
#: p11-kit/server.c:721 p11-kit/server.c:737
#, c-format
msgid "unknown group: %s"
msgstr ""
#: p11-kit/server.c:729 p11-kit/server.c:745
#, c-format
msgid "unknown user: %s"
msgstr ""
#: p11-kit/server.c:828
#, c-format
msgid "cannot set gid to %u"
msgstr ""
#: p11-kit/server.c:834
#, c-format
msgid "cannot setgroups to %u"
msgstr ""
#: p11-kit/server.c:842
#, c-format
msgid "cannot set uid to %u"
msgstr ""
#: p11-kit/server.c:858
msgid "cannot determine runtime directory"
msgstr ""
#: p11-kit/server.c:870
#, c-format
msgid "cannot create %s"
msgstr ""
#: p11-kit/server.c:1141
msgid "couldn't initialize Windows security functions"
msgstr ""
#: p11-kit/server.c:1302 p11-kit/server.c:1314 p11-kit/server.c:1326
#, c-format
msgid "unable to construct SID for %s: %lu"
msgstr ""
#: p11-kit/server.c:1369
#, c-format
msgid "unable to construct ACL: %d"
msgstr ""
#: p11-kit/server.c:1375
#, c-format
msgid "unable to allocate security descriptor: %lu"
msgstr ""
#: p11-kit/server.c:1381
#, c-format
msgid "unable to initialise security descriptor: %lu"
msgstr ""
#: p11-kit/server.c:1387
#, c-format
msgid "unable to set owner in security descriptor: %lu"
msgstr ""
#: p11-kit/server.c:1393
#, c-format
msgid "unable to set DACL in security descriptor: %lu"
msgstr ""
#: trust/anchor.c:126
#, c-format
msgid "invalid PKCS#11 uri: %s"
msgstr ""
#: trust/anchor.c:148 trust/anchor.c:204
#, c-format
msgid "unrecognized file format: %s"
msgstr ""
#: trust/anchor.c:151 trust/anchor.c:207
#, c-format
msgid "failed to parse file: %s"
msgstr ""
#: trust/anchor.c:246
#, c-format
msgid "%s: couldn't initialize: %s"
msgstr ""
#: trust/anchor.c:257
#, c-format
msgid "%s: couldn't enumerate slots: %s"
msgstr ""
#: trust/anchor.c:265
#, c-format
msgid "%s: couldn't get token info: %s"
msgstr ""
#: trust/anchor.c:277
#, c-format
msgid "%s: couldn't open session: %s"
msgstr ""
#: trust/anchor.c:325
msgid "no configured writable location to store anchors"
msgstr ""
#: trust/anchor.c:327
msgid "no configured location to store anchors"
msgstr ""
#: trust/anchor.c:388 trust/anchor.c:435
#, c-format
msgid "couldn't create object: %s"
msgstr ""
#: trust/anchor.c:487
msgid "specify at least one anchor input file"
msgstr ""
#: trust/anchor.c:570
#, c-format
msgid "couldn't remove read-only %s"
msgstr ""
#: trust/anchor.c:573
#, c-format
msgid "couldn't remove %s: %s"
msgstr ""
#: trust/anchor.c:599
msgid "at least one file or uri must be specified"
msgstr ""
#: trust/anchor.c:665
msgid "an action was already specified"
msgstr ""
#: trust/anchor.c:702
#, c-format
msgid "%u error while processing"
msgid_plural "%u errors while processing"
msgstr[0] ""
msgstr[1] ""
#: trust/builder.c:155
#, c-format
msgid "%.*s: invalid certificate extension"
msgstr ""
#: trust/builder.c:674
#, c-format
msgid "%.*s: invalid basic constraints certificate extension"
msgstr ""
#: trust/builder.c:676
msgid "unknown"
msgstr ""
#: trust/builder.c:865
msgid "missing the CKA_HASH_OF_SUBJECT_PUBLIC_KEY attribute"
msgstr ""
#: trust/builder.c:870
msgid "missing the CKA_HASH_OF_ISSUER_PUBLIC_KEY attribute"
msgstr ""
#: trust/builder.c:1084
msgid "the object is not modifiable"
msgstr ""
#: trust/builder.c:1091
msgid "objects of this type cannot be created"
msgstr ""
#: trust/builder.c:1111
#, c-format
msgid "the %s attribute cannot be set"
msgstr ""
#: trust/builder.c:1116
#, c-format
msgid "the %s attribute cannot be changed"
msgstr ""
#: trust/builder.c:1122
#, c-format
msgid "the %s attribute has an invalid value"
msgstr ""
#: trust/builder.c:1131
#, c-format
msgid "the %s attribute is not valid for the object"
msgstr ""
#: trust/builder.c:1154
#, c-format
msgid "missing the %s attribute"
msgstr ""
#: trust/builder.c:1194
msgid "no CKA_CLASS attribute found"
msgstr ""
#: trust/builder.c:1200
#, c-format
msgid "cannot create a %s object"
msgstr ""
#: trust/builder.c:1200
msgid "token"
msgstr ""
#: trust/builder.c:1200
msgid "non-token"
msgstr ""
#: trust/builder.c:1208
#, c-format
msgid "missing %s on object"
msgstr ""
#: trust/builder.c:1213
#, c-format
msgid "%s unsupported %s"
msgstr ""
#: trust/builder.c:1234
#, c-format
msgid "%s unsupported object class"
msgstr ""
#: trust/builder.c:1300
msgid "invalid key usage certificate extension"
msgstr ""
#: trust/builder.c:1768
msgid "invalid extended key usage certificate extension"
msgstr ""
#: trust/builder.c:1776
msgid "invalid reject key usage certificate extension"
msgstr ""
#: trust/dump.c:113
msgid "could not dump object"
msgstr ""
#: trust/dump.c:187 trust/list.c:256
msgid "extra arguments passed to command"
msgstr ""
#: trust/enumerate.c:78
#, c-format
msgid "couldn't parse attached certificate extension: %s"
msgstr ""
#: trust/enumerate.c:151
#, c-format
msgid "couldn't load attached extensions for certificate: %s"
msgstr ""
#: trust/enumerate.c:275
#, c-format
msgid "couldn't parse certificate: %s"
msgstr ""
#: trust/enumerate.c:312
#, c-format
msgid "couldn't load attributes: %s"
msgstr ""
#: trust/enumerate.c:323
msgid "skipping non-certificate object"
msgstr ""
#: trust/enumerate.c:480 trust/enumerate.c:508
#, c-format
msgid "couldn't load blocklist: %s"
msgstr ""
#: trust/enumerate.c:582
msgid "a PKCS#11 URI has already been specified"
msgstr ""
#: trust/enumerate.c:589
#, c-format
msgid "couldn't parse pkcs11 uri filter: %s"
msgstr ""
#: trust/enumerate.c:594
msgid "uri contained unrecognized components, nothing will be extracted"
msgstr ""
#: trust/enumerate.c:621
#, c-format
msgid "unsupported or unrecognized filter: %s"
msgstr ""
#: trust/enumerate.c:670
#, c-format
msgid "unsupported or unrecognized purpose: %s"
msgstr ""
#: trust/enumerate.c:712
msgid "no modules containing trust policy are registered"
msgstr ""
#: trust/extract.c:98
msgid "a format was already specified"
msgstr ""
#: trust/extract.c:110
#, c-format
msgid "unsupported or unrecognized format: %s"
msgstr ""
#.
#. * If we're extracting *both* anchors and blocklist, then we must have
#. * a format that can represent the different types of information.
#.
#: trust/extract.c:148
msgid "format does not support trust policy"
msgstr ""
#: trust/extract.c:159
msgid ""
"format requires a purpose, specify it with --purpose; defaulting to 'server-"
"auth'"
msgstr ""
#: trust/extract.c:162
msgid "format does not support multiple purposes, defaulting to 'server-auth'"
msgstr ""
#: trust/extract.c:283
msgid "specify one destination file or directory"
msgstr ""
#: trust/extract.c:288
msgid "no output format specified"
msgstr ""
#. At this point we have no command
#: trust/extract.c:333
#, c-format
msgid "could not run %s command"
msgstr ""
#: trust/extract-cer.c:62
msgid "multiple certificates found but could only write one to file"
msgstr ""
#: trust/extract-cer.c:75 trust/extract-cer.c:115 trust/extract-jks.c:331
#: trust/extract-openssl.c:369 trust/extract-openssl.c:696
#: trust/extract-pem.c:94 trust/extract-pem.c:161
#, c-format
msgid "failed to find certificates: %s"
msgstr ""
#: trust/extract-cer.c:80
msgid "no certificate found"
msgstr ""
#: trust/extract-edk2.c:192
#, c-format
msgid "failed to find certificate: %s"
msgstr ""
#: trust/extract-jks.c:142
msgid "truncating long string"
msgstr ""
#: trust/extract-jks.c:272
msgid "Environment variable $SOURCE_DATE_EPOCH: strtoull"
msgstr ""
#: trust/extract-jks.c:276
#, c-format
msgid "Environment variable $SOURCE_DATE_EPOCH: No digits were found: %s\n"
msgstr ""
#: trust/extract-jks.c:280
#, c-format
msgid "Environment variable $SOURCE_DATE_EPOCH: Trailing garbage: %s\n"
msgstr ""
#: trust/extract-jks.c:284
#, c-format
msgid ""
"Environment variable $SOURCE_DATE_EPOCH: value must be smaller than or equal "
"to %lu but was found to be: %llu \n"
msgstr ""
#: trust/extract-jks.c:312
msgid "could not generate a certificate alias name"
msgstr ""
#: trust/list.c:122
msgid "skipping object, couldn't build uri"
msgstr ""
#: trust/module.c:303
#, c-format
msgid "unrecognized module argument: %s"
msgstr ""
#: trust/parser.c:109
#, c-format
msgid "certificate with distrust in location for anchors: %s"
msgstr ""
#: trust/parser.c:123
#, c-format
msgid "overriding trust for anchor in blocklist: %s"
msgstr ""
#: trust/parser.c:596
#, c-format
msgid "Couldn't parse PEM block of type %s"
msgstr ""
#: trust/parser.c:766
#, c-format
msgid "couldn't open and map file: %s"
msgstr ""
#: trust/persist.c:493
#, c-format
msgid "invalid oid value: %s"
msgstr ""
#: trust/save.c:124
#, c-format
msgid "couldn't create file: %s%s"
msgstr ""
#: trust/save.c:172
#, c-format
msgid "couldn't write to file: %s"
msgstr ""
#. Continue trying other names
#: trust/save.c:209 trust/save.c:227 trust/save.c:290
#, c-format
msgid "couldn't complete writing of file: %s"
msgstr ""
#: trust/save.c:260
#, c-format
msgid "couldn't write file: %s"
msgstr ""
#: trust/save.c:266
#, c-format
msgid "couldn't set file permissions: %s"
msgstr ""
#: trust/save.c:272 trust/save.c:315
#, c-format
msgid "couldn't complete writing file: %s"
msgstr ""
#: trust/save.c:309
#, c-format
msgid "couldn't remove original file: %s"
msgstr ""
#: trust/save.c:355 trust/token.c:635
#, c-format
msgid "couldn't create directory: %s"
msgstr ""
#: trust/save.c:359
#, c-format
msgid "directory already exists: %s"
msgstr ""
#: trust/save.c:370
#, c-format
msgid "couldn't open directory: %s"
msgstr ""
#: trust/save.c:374
#, c-format
msgid "couldn't check directory permissions: %s"
msgstr ""
#: trust/save.c:380
#, c-format
msgid "couldn't make directory writable: %s"
msgstr ""
#: trust/save.c:541
#, c-format
msgid "couldn't create symlink: %s"
msgstr ""
#: trust/save.c:603 trust/token.c:503
#, c-format
msgid "couldn't remove file: %s"
msgstr ""
#: trust/save.c:631
#, c-format
msgid "couldn't set directory permissions: %s"
msgstr ""
#: trust/token.c:227
#, c-format
msgid "couldn't load file into objects: %s"
msgstr ""
#: trust/token.c:243
#, c-format
msgid "couldn't stat path: %d: %s"
msgstr ""
#: trust/token.c:312
#, c-format
msgid "cannot access trust certificate path: %s"
msgstr ""
#: trust/token.c:426
#, c-format
msgid "cannot access trust file: %s"
msgstr ""
#: trust/token.c:475
#, c-format
msgid "couldn't access: %s"
msgstr ""
#: trust/trust.c:60
msgid "List trust or certificates"
msgstr ""
#: trust/trust.c:61
msgid "Extract certificates and trust"
msgstr ""
#: trust/trust.c:62
msgid "Extract trust compatibility bundles"
msgstr ""
#: trust/trust.c:63
msgid "Add, remove, change trust anchors"
msgstr ""
#: trust/trust.c:64
msgid "Dump trust objects in internal format"
msgstr ""
|