Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

   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
#
# tpm-tools.pot
#
#       The Initial Developer of the Original Code is International
#       Business Machines Corporation. Portions created by IBM
#       Corporation are Copyright (C) 2005 International Business
#       Machines Corporation. All Rights Reserved.
#
#       This program is free software; you can redistribute it and/or modify
#       it under the terms of the Common Public License as published by
#       IBM Corporation; either version 1 of the License, or (at your option)
#       any later version.
#
#       This program is distributed in the hope that it will be useful,
#       but WITHOUT ANY WARRANTY; without even the implied warranty of
#       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#       Common Public License for more details.
#
#       You should have received a copy of the Common Public License
#       along with this program; if not, a copy can be viewed at
#       http://www.opensource.org/licenses/cpl1.0.php.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-05-31 09:40-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#: include/tpm_utils.h:59
msgid "none"
msgstr ""

#: include/tpm_utils.h:61
msgid "error"
msgstr ""

#: include/tpm_utils.h:63
msgid "info"
msgstr ""

#: include/tpm_utils.h:65
msgid "debug"
msgstr ""

#: lib/tpm_tspi.c:186
msgid "  Version:   "
msgstr ""

#: lib/tpm_tspi.c:195
#, c-format
msgid "  Usage:     0x%04x (%s)\n"
msgstr ""

#: lib/tpm_tspi.c:202
#, c-format
msgid "  Flags:     0x%08x (%s)\n"
msgstr ""

#: lib/tpm_tspi.c:209
#, c-format
msgid "  AuthUsage: 0x%02x (%s)\n"
msgstr ""

#: lib/tpm_tspi.c:216
#, c-format
msgid "  Algorithm:         0x%08x (%s)\n"
msgstr ""

#: lib/tpm_tspi.c:223
#, c-format
msgid "  Encryption Scheme: 0x%08x (%s)\n"
msgstr ""

#: lib/tpm_tspi.c:230
#, c-format
msgid "  Signature Scheme:  0x%08x (%s)\n"
msgstr ""

#: lib/tpm_tspi.c:239
#, c-format
msgid "  Key Size:          %d bits\n"
msgstr ""

#: lib/tpm_tspi.c:248
msgid "  Public Key:"
msgstr ""

#: lib/tpm_tspi.c:277 lib/tpm_pkcs11.c:39
#, c-format
msgid "%s success\n"
msgstr ""

#: lib/tpm_tspi.c:283
#, c-format
msgid "%s failed: 0x%08x - layer=%s, code=%04x (%d), %s\n"
msgstr ""

#: lib/tpm_log.c:124 src/data_mgmt/data_common.h:51
#, c-format
msgid "%s succeeded\n"
msgstr ""

#: lib/tpm_log.c:141
msgid "Display command usage info."
msgstr ""

#: lib/tpm_log.c:142
msgid "Display command version info."
msgstr ""

#: lib/tpm_log.c:143
msgid "Set logging level."
msgstr ""

#: lib/tpm_log.c:149
#, c-format
msgid "Usage: %s [options]\n"
msgstr ""

#: lib/tpm_log.c:157
#, c-format
msgid "Usage: %s [options]"
msgstr ""

#: lib/tpm_log.c:168 lib/tpm_pkcs11.c:648 lib/tpm_pkcs11.c:650
#: lib/tpm_pkcs11.c:652 lib/tpm_pkcs11.c:656 lib/tpm_pkcs11.c:781
#: lib/tpm_pkcs11.c:783 lib/tpm_pkcs11.c:785 lib/tpm_pkcs11.c:870
#: lib/tpm_pkcs11.c:872 lib/tpm_pkcs11.c:874
msgid "true"
msgstr ""

#: lib/tpm_log.c:168 lib/tpm_pkcs11.c:648 lib/tpm_pkcs11.c:650
#: lib/tpm_pkcs11.c:652 lib/tpm_pkcs11.c:656 lib/tpm_pkcs11.c:781
#: lib/tpm_pkcs11.c:783 lib/tpm_pkcs11.c:785 lib/tpm_pkcs11.c:870
#: lib/tpm_pkcs11.c:872 lib/tpm_pkcs11.c:874
msgid "false"
msgstr ""

#: lib/tpm_pkcs11.c:46
#, c-format
msgid "%s failed: 0x%08x (%ld)\n"
msgstr ""

#: lib/tpm_pkcs11.c:88
#, c-format
msgid "Slot description: %s\n"
msgstr ""

#: lib/tpm_pkcs11.c:89
#, c-format
msgid "Slot manufacturer: %s\n"
msgstr ""

#: lib/tpm_pkcs11.c:91
msgid "Token is present\n"
msgstr ""

#: lib/tpm_pkcs11.c:93
msgid "Token is not present\n"
msgstr ""

#: lib/tpm_pkcs11.c:118
#, c-format
msgid "Token Label: %s\n"
msgstr ""

#: lib/tpm_pkcs11.c:119
#, c-format
msgid "Token manufacturer: %s\n"
msgstr ""

#: lib/tpm_pkcs11.c:120
#, c-format
msgid "Token model: %s\n"
msgstr ""

#: lib/tpm_pkcs11.c:123
msgid "Token is initialized\n"
msgstr ""

#: lib/tpm_pkcs11.c:125
msgid "Token is not initialized\n"
msgstr ""

#: lib/tpm_pkcs11.c:164
msgid "No PKCS#11 slots present\n"
msgstr ""

#: lib/tpm_pkcs11.c:170
#, c-format
msgid "Slots present: %ld\n"
msgstr ""

#: lib/tpm_pkcs11.c:173
msgid "Unable to obtain memory for PKCS#11 slot IDs\n"
msgstr ""

#: lib/tpm_pkcs11.c:187
#, c-format
msgid "Retrieving slot information for SlotID %ld\n"
msgstr ""

#: lib/tpm_pkcs11.c:196
#, c-format
msgid "Retrieving token information for SlotID %ld\n"
msgstr ""

#: lib/tpm_pkcs11.c:214
msgid "PKCS#11 TPM Token is not present\n"
msgstr ""

#: lib/tpm_pkcs11.c:474
msgid "Unable to obtain memory for object handle list\n"
msgstr ""

#: lib/tpm_pkcs11.c:634
msgid "Certificate Object\n"
msgstr ""

#: lib/tpm_pkcs11.c:637
msgid "\tX509 Certificate\n"
msgstr ""

#: lib/tpm_pkcs11.c:641
msgid "\tX509 Attribute Certificate\n"
msgstr ""

#: lib/tpm_pkcs11.c:645
#, c-format
msgid "\tUnknown Certificate Type (%08x)\n"
msgstr ""

#: lib/tpm_pkcs11.c:648 lib/tpm_pkcs11.c:781 lib/tpm_pkcs11.c:870
#, c-format
msgid "\tToken Object: %s\n"
msgstr ""

#: lib/tpm_pkcs11.c:650 lib/tpm_pkcs11.c:783 lib/tpm_pkcs11.c:872
#, c-format
msgid "\tPrivate Object: %s\n"
msgstr ""

#: lib/tpm_pkcs11.c:652 lib/tpm_pkcs11.c:785 lib/tpm_pkcs11.c:874
#, c-format
msgid "\tModifiable Object: %s\n"
msgstr ""

#: lib/tpm_pkcs11.c:654 lib/tpm_pkcs11.c:787 lib/tpm_pkcs11.c:876
#, c-format
msgid "\tLabel: '%s'\n"
msgstr ""

#: lib/tpm_pkcs11.c:656
#, c-format
msgid "\tTrusted: %s\n"
msgstr ""

#: lib/tpm_pkcs11.c:662 lib/tpm_pkcs11.c:791
msgid "Subject: "
msgstr ""

#: lib/tpm_pkcs11.c:664 lib/tpm_pkcs11.c:793
#, c-format
msgid "\tId: '%s' ("
msgstr ""

#: lib/tpm_pkcs11.c:669 lib/tpm_pkcs11.c:680
msgid "Issuer: "
msgstr ""

#: lib/tpm_pkcs11.c:671 lib/tpm_pkcs11.c:682
msgid "Serial Number: "
msgstr ""

#: lib/tpm_pkcs11.c:673 lib/tpm_pkcs11.c:686
msgid "Value: "
msgstr ""

#: lib/tpm_pkcs11.c:678
msgid "Owner: "
msgstr ""

#: lib/tpm_pkcs11.c:684
msgid "Attribute Types: "
msgstr ""

#: lib/tpm_pkcs11.c:692
msgid "Certificate: "
msgstr ""

#: lib/tpm_pkcs11.c:695
msgid "Type: X509 Public Key"
msgstr ""

#: lib/tpm_pkcs11.c:699
msgid "Type: X509 Attribute"
msgstr ""

#: lib/tpm_pkcs11.c:703
#, c-format
msgid "Unknown Type (%08x)"
msgstr ""

#: lib/tpm_pkcs11.c:707 lib/tpm_pkcs11.c:812 lib/tpm_pkcs11.c:890
#, c-format
msgid ", Label: '%s'"
msgstr ""

#: lib/tpm_pkcs11.c:770 lib/tpm_pkcs11.c:863
msgid "Key Object\n"
msgstr ""

#: lib/tpm_pkcs11.c:773
msgid "\tPublic Key\n"
msgstr ""

#: lib/tpm_pkcs11.c:777
msgid "\tPrivate Key\n"
msgstr ""

#: lib/tpm_pkcs11.c:789 lib/tpm_pkcs11.c:878
#, c-format
msgid "\tType: %ld\n"
msgstr ""

#: lib/tpm_pkcs11.c:801
msgid "Public Key: "
msgstr ""

#: lib/tpm_pkcs11.c:805
msgid "Private Key: "
msgstr ""

#: lib/tpm_pkcs11.c:810 lib/tpm_pkcs11.c:888
#, c-format
msgid "Type: %ld"
msgstr ""

#: lib/tpm_pkcs11.c:866
msgid "\tSecret Key\n"
msgstr ""

#: lib/tpm_pkcs11.c:883
msgid "Secret Key: "
msgstr ""

#: lib/tpm_pkcs11.c:922
msgid "Data object\n"
msgstr ""

#: lib/tpm_pkcs11.c:941
#, c-format
msgid "Object class=%ld\n"
msgstr ""

#: lib/tpm_pkcs11.c:1036 lib/tpm_pkcs11.c:1125
msgid "Unable to obtain memory for the encrypted data buffer\n"
msgstr ""

#: lib/tpm_utils.c:82
#, c-format
msgid "%s version: %s\n"
msgstr ""

#: lib/tpm_utils.c:100
#, c-format
msgid "Valid log levels are: %s, %s, %s, %s\n"
msgstr ""

#: lib/tpm_utils.c:167
msgid "Passwords didn't match\n"
msgstr ""

#: lib/tpm_utils.c:180
msgid "Confirm password: "
msgstr ""

#: src/data_mgmt/data_common.h:29
msgid "Enter the TPM security officer password: "
msgstr ""

#: src/data_mgmt/data_common.h:30
#, c-format
msgid ""
"A new TPM security officer password is needed. The password must be between %"
"d and %d characters in length.\n"
"Enter new password: "
msgstr ""

#: src/data_mgmt/data_common.h:36
msgid "Enter your TPM user password: "
msgstr ""

#: src/data_mgmt/data_common.h:37
#, c-format
msgid ""
"A new TPM user password is needed. The password must be between %d and %d "
"characters in length.\n"
"Enter new password: "
msgstr ""

#: src/data_mgmt/data_common.h:42
msgid "The password entered is not valid, please try again.\n"
msgstr ""

#: src/data_mgmt/data_common.h:46
msgid "Error, the TPM token has not been initialized\n"
msgstr ""

#: src/data_mgmt/data_common.h:47
msgid "Error, unable to allocate needed memory\n"
msgstr ""

#: src/data_mgmt/data_common.h:48
#, c-format
msgid "Error, OpenSSL error: %s\n"
msgstr ""

#: src/data_mgmt/data_common.h:49
#, c-format
msgid "Error, unable to open file %s: %s\n"
msgstr ""

#: src/data_mgmt/data_common.h:52
#, c-format
msgid "%s failed\n"
msgstr ""

#: src/data_mgmt/data_import.c:123
msgid ""
"Import the PEM formatted RSA key and/or X.509 certificate object contained "
"in FILE"
msgstr ""

#: src/data_mgmt/data_import.c:129
msgid ""
"Use FILE as the PEM formatted X.509 certificate input used to obtain the "
"subject and id attributes"
msgstr ""

#: src/data_mgmt/data_import.c:131
msgid "Use STRING as the label for the imported object(s)"
msgstr ""

#: src/data_mgmt/data_import.c:133
msgid "Import the object(s) as a public object"
msgstr ""

#: src/data_mgmt/data_import.c:135
msgid "Import only the specified object type"
msgstr ""

#: src/data_mgmt/data_import.c:137
msgid "Assume yes as the answer to any confirmation prompt"
msgstr ""

#: src/data_mgmt/data_import.h:25
msgid "X509 Public Key Certificate"
msgstr ""

#: src/data_mgmt/data_import.h:26
msgid "RSA Public Key"
msgstr ""

#: src/data_mgmt/data_import.h:27
msgid "RSA Public/Private Key"
msgstr ""

#: src/data_mgmt/data_import.h:29
msgid ""
"The subject name and key identifier can not be obtained.\n"
"Certificate to key association may not be possible after the import is "
"complete.  If the key does not correspond to a certficate or the key can be "
"associated with the certificate in another way this may not be an issue.\n"
"Import the object? [y/N]: "
msgstr ""

#: src/data_mgmt/data_import.h:35
#, c-format
msgid ""
"One or more %s objects matching the subject name and key identifier already "
"exist.  Importing this object will replace all of these matching objects.\n"
"Import the object? [y/N]: "
msgstr ""

#. TRANSLATORS: this should be the affirmative letter that was  prompted for in the message corresponding to: "Are you sure you want to continue?[y/N]"
#: src/data_mgmt/data_import.h:39 src/data_mgmt/data_init.h:29
#: src/tpm_mgmt/tpm_present.c:210
msgid "y"
msgstr ""

#: src/data_mgmt/data_import.h:40 src/data_mgmt/data_init.h:30
msgid "n"
msgstr ""

#: src/data_mgmt/data_import.h:42
msgid "Error, an import file must be specified\n"
msgstr ""

#: src/data_mgmt/data_import.h:43
msgid "Error, the X509 certificate does not contain an RSA key\n"
msgstr ""

#: src/data_mgmt/data_import.h:44
msgid "Error, no objects were found that could be imported\n"
msgstr ""

#: src/data_mgmt/data_import.h:45
msgid "Error, unable to obtain the required subject and id attributes\n"
msgstr ""

#: src/data_mgmt/data_init.c:62
msgid "Reply 'yes' to the clear TPM token prompt"
msgstr ""

#: src/data_mgmt/data_init.h:25
msgid ""
"Warning: The TPM token has already been initialized. Reinitializing the TPM "
"token will cause all TPM token data to be lost.\n"
"Clear the TPM token data? [y/N]: "
msgstr ""

#: src/data_mgmt/data_object.c:70
msgid "Display only public objects"
msgstr ""

#: src/data_mgmt/data_object.c:72
msgid "Display additional information about the objects"
msgstr ""

#: src/data_mgmt/data_passwd.c:68
msgid "Change the security officer password"
msgstr ""

#: src/data_mgmt/data_protect.c:94
msgid "Decrypt the input data"
msgstr ""

#: src/data_mgmt/data_protect.c:96
msgid "Encrypt the input data"
msgstr ""

#: src/data_mgmt/data_protect.c:98
msgid "Use FILE as the input to the specified operation"
msgstr ""

#: src/data_mgmt/data_protect.c:100
msgid "Use FILE as the output of the specified operation"
msgstr ""

#: src/data_mgmt/data_protect.h:28
msgid "Error, an input file must be specified\n"
msgstr ""

#: src/data_mgmt/data_protect.h:29
msgid "Error, an output file must be specified\n"
msgstr ""

#: src/data_mgmt/data_protect.h:30
msgid "Error, protection key is not available\n"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:37
msgid "Report current state"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:38
msgid "Activate TPM, requires reboot"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:39
msgid "Deactivate TPM, requires reboot"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:41
msgid ""
"Change state immediately but only for this boot.\n"
"\t\tOnly valid in conjunction with the inactive parameter."
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:49 src/tpm_mgmt/tpm_enable.c:54
#: src/tpm_mgmt/tpm_ownable.c:41 src/tpm_mgmt/tpm_present.c:91
#: src/tpm_mgmt/tpm_restrictpubek.c:34
msgid "Changing mode to check status.\n"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:53
msgid "Changing mode to activate the TPM.\n"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:57
msgid "Changing mode to deactivate the TPM.\n"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:61
msgid "Changing mode to temporarily deactivate the TPM\n"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:109
msgid "Checking status:\n"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:110 src/tpm_mgmt/tpm_changeauth.c:121
#: src/tpm_mgmt/tpm_clear.c:88 src/tpm_mgmt/tpm_clearable.c:118
#: src/tpm_mgmt/tpm_clearable.c:149 src/tpm_mgmt/tpm_enable.c:109
#: src/tpm_mgmt/tpm_enable.c:129 src/tpm_mgmt/tpm_getpubek.c:68
#: src/tpm_mgmt/tpm_ownable.c:99 src/tpm_mgmt/tpm_present.c:170
#: src/tpm_mgmt/tpm_present.c:278 src/tpm_mgmt/tpm_restrictpubek.c:86
#: src/tpm_mgmt/tpm_takeownership.c:53
msgid "Enter owner password: "
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:112 src/tpm_mgmt/tpm_clearable.c:120
#: src/tpm_mgmt/tpm_clearable.c:152 src/tpm_mgmt/tpm_ownable.c:101
msgid "Failed to get password\n"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:126
#, c-format
msgid "Persistent Deactivated Status: %s\n"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:132
#, c-format
msgid "Volatile Deactivated Status: %s\n"
msgstr ""

#: src/tpm_mgmt/tpm_activate.c:138 src/tpm_mgmt/tpm_activate.c:143
msgid "Action requires a reboot to take affect\n"
msgstr ""

#: src/tpm_mgmt/tpm_changeauth.c:38
msgid "SRK"
msgstr ""

#: src/tpm_mgmt/tpm_changeauth.c:38
msgid "Enter new SRK password: "
msgstr ""

#: src/tpm_mgmt/tpm_changeauth.c:39 src/tpm_mgmt/tpm_restrictpubek.c:104
msgid "owner"
msgstr ""

#: src/tpm_mgmt/tpm_changeauth.c:39
msgid "Enter new owner password: "
msgstr ""

#: src/tpm_mgmt/tpm_changeauth.c:47
msgid "Change the owner password."
msgstr ""

#: src/tpm_mgmt/tpm_changeauth.c:48
msgid "Change the SRK password."
msgstr ""

#: src/tpm_mgmt/tpm_changeauth.c:123 src/tpm_mgmt/tpm_clear.c:90
#: src/tpm_mgmt/tpm_enable.c:111 src/tpm_mgmt/tpm_enable.c:131
#: src/tpm_mgmt/tpm_present.c:280 src/tpm_mgmt/tpm_restrictpubek.c:88
msgid "Failed to get owner password\n"
msgstr ""

#: src/tpm_mgmt/tpm_changeauth.c:137
#, c-format
msgid "Changing password for: %s.\n"
msgstr ""

#: src/tpm_mgmt/tpm_changeauth.c:140
msgid "Failed to get new password.\n"
msgstr ""

#: src/tpm_mgmt/tpm_changeauth.c:169
#, c-format
msgid "Change of %s password successful.\n"
msgstr ""

#: src/tpm_mgmt/tpm_clear.c:41 src/tpm_mgmt/tpm_enable.c:45
msgid "Use physical presence authorization."
msgstr ""

#: src/tpm_mgmt/tpm_clear.c:49 src/tpm_mgmt/tpm_enable.c:66
msgid "Changing mode to use force authorization\n"
msgstr ""

#: src/tpm_mgmt/tpm_clear.c:109
msgid ""
"TPM Successfuly Cleared.  You need to reboot to complete this operation.  "
"After reboot the TPM will be in the default state: unowned, disabled and "
"inactive.\n"
msgstr ""

#: src/tpm_mgmt/tpm_clearable.c:29
msgid "Report current status."
msgstr ""

#: src/tpm_mgmt/tpm_clearable.c:31
msgid "Remove ability of the owner to clear TPM."
msgstr ""

#: src/tpm_mgmt/tpm_clearable.c:33
msgid ""
"Remove ability to clear TPM with physical presence.\n"
"\t\tThis action is not persistent"
msgstr ""

#: src/tpm_mgmt/tpm_clearable.c:48
msgid "Owner Clear"
msgstr ""

#: src/tpm_mgmt/tpm_clearable.c:50
msgid "Force Clear"
msgstr ""

#: src/tpm_mgmt/tpm_clearable.c:117 src/tpm_mgmt/tpm_present.c:277
msgid "Checking current status: \n"
msgstr ""

#: src/tpm_mgmt/tpm_clearable.c:145
#, c-format
msgid "Requested to disable: %s ability.\n"
msgstr ""

#: src/tpm_mgmt/tpm_clearable.c:169
#, c-format
msgid "Disabling %s successful.\n"
msgstr ""

#: src/tpm_mgmt/tpm_enable.c:41
msgid "Display current state"
msgstr ""

#: src/tpm_mgmt/tpm_enable.c:42
msgid "Enable TPM"
msgstr ""

#: src/tpm_mgmt/tpm_enable.c:43
msgid "Disable TPM"
msgstr ""

#: src/tpm_mgmt/tpm_enable.c:58
msgid "Changing mode to enable the TPM\n"
msgstr ""

#: src/tpm_mgmt/tpm_enable.c:62
msgid "Changing mode to disable the TPM\n"
msgstr ""

#: src/tpm_mgmt/tpm_enable.c:108
msgid "Checking current status:\n"
msgstr ""

#: src/tpm_mgmt/tpm_enable.c:125
#, c-format
msgid "Disabled status: %s\n"
msgstr ""

#: src/tpm_mgmt/tpm_getpubek.c:66
msgid "Public PubEk access blocked, owner password required\n"
msgstr ""

#: src/tpm_mgmt/tpm_getpubek.c:85
msgid "Public Endorsement Key:\n"
msgstr ""

#: src/tpm_mgmt/tpm_ownable.c:45
msgid "Changing to prevent ownership mode\n"
msgstr ""

#: src/tpm_mgmt/tpm_ownable.c:50
msgid "Changing to allow ownership mode\n"
msgstr ""

#: src/tpm_mgmt/tpm_ownable.c:64 src/tpm_mgmt/tpm_restrictpubek.c:51
msgid "Display current status"
msgstr ""

#: src/tpm_mgmt/tpm_ownable.c:65
msgid "Allow TPM takeownership command"
msgstr ""

#: src/tpm_mgmt/tpm_ownable.c:66
msgid "Prevent TPM takeownership command"
msgstr ""

#: src/tpm_mgmt/tpm_ownable.c:116
#, c-format
msgid "Ownable status: %s\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:51
msgid "Command Enable"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:52
msgid "Hardware Enable"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:53
msgid "Lifetime Lock"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:54
msgid "Physical Presence"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:55
msgid "Lock"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:68
msgid "Report current physical presence states."
msgstr ""

#: src/tpm_mgmt/tpm_present.c:69
msgid "Assert that admin is present."
msgstr ""

#: src/tpm_mgmt/tpm_present.c:70
msgid "Clear assertion of admin presence."
msgstr ""

#: src/tpm_mgmt/tpm_present.c:72
msgid "Lock TPM presence assertion into specified state."
msgstr ""

#: src/tpm_mgmt/tpm_present.c:74
msgid "Allow TPM to accept Physical Presence Command."
msgstr ""

#: src/tpm_mgmt/tpm_present.c:76
msgid "Disallow TPM to accept Physical Presence Command."
msgstr ""

#: src/tpm_mgmt/tpm_present.c:78
msgid "Allow TPM to accept Hardware Physical Presence."
msgstr ""

#: src/tpm_mgmt/tpm_present.c:80
msgid "Disallow TPM to accept Hardware Physical Presence."
msgstr ""

#: src/tpm_mgmt/tpm_present.c:82
msgid ""
"Prevent further modification of TPM Physical Presence\n"
"\t\tCommand and Hardware Enablement states.\n"
"\t\tTHIS ACTION IS PERMANENT AND CAN NEVER BE UNDONE."
msgstr ""

#: src/tpm_mgmt/tpm_present.c:84
msgid ""
"Automatically respond yes to all prompts.  Only use\n"
"\t\tthis if you are sure of the current state and don't want\n"
"\t\tany textra checking done before setting the lifetime lock"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:95
msgid "Changing mode to assert presence.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:101
msgid "Changing mode to clear presence.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:107
msgid "Changing mode to lock presence.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:113
msgid "Changing mode to enable command presence.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:119
msgid "Changing mode to disable command presence.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:125
msgid "Changing mode to enable hardware presence.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:131
msgid "Changing mode to disable hardware presence.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:137
msgid "Changing mode to set lifetime presence lock.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:143
msgid "Changing mode to automatically answer yes.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:167
msgid "Unable to determine current state without authorization\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:169
msgid "TPM is owned\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:188
msgid "Unable to determine current state with the entered password.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:195
msgid ""
"Unable to programatically determine the current setting of TPM Physcial "
"Presence Command Enable and Hardware Enable states.  Make sure you are aware "
"of and comfortable with the current states.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:199
msgid "Current State:\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:203
msgid "These will be the permanent values if you choose to proceed.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:206
msgid ""
"This command cannot be undone.  Are you sure you want to continue?[y/N]\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:212
msgid ""
"Setting the lifetime lock was confirmed.\n"
"Continuing.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:217
msgid ""
"Continuing to set the lifetime lock was declined.\n"
"Action canceled.\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:291
msgid "Physical Presence Status:\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:306
#, c-format
msgid "Requested to Change %s to %s\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:315
#, c-format
msgid "Change to %s Failed\n"
msgstr ""

#: src/tpm_mgmt/tpm_present.c:319
#, c-format
msgid "Change to %s Successful\n"
msgstr ""

#: src/tpm_mgmt/tpm_restrictpubek.c:38
msgid "Changing mode to restrist PubEK access\n"
msgstr ""

#: src/tpm_mgmt/tpm_restrictpubek.c:53
msgid "Restrict PubEK read to owner only"
msgstr ""

#: src/tpm_mgmt/tpm_restrictpubek.c:103
#, c-format
msgid "Public Endorsement Key readable by: %s\n"
msgstr ""

#: src/tpm_mgmt/tpm_restrictpubek.c:104
msgid "everyone"
msgstr ""

#: src/tpm_mgmt/tpm_selftest.c:70
msgid "  TPM Test Results:   "
msgstr ""

#: src/tpm_mgmt/tpm_selftest.c:87
msgid "Report results of last test without retesting."
msgstr ""

#: src/tpm_mgmt/tpm_selftest.c:95
msgid "Results only\n"
msgstr ""

#: src/tpm_mgmt/tpm_takeownership.c:58
msgid "Enter SRK password: "
msgstr ""

#: src/tpm_mgmt/tpm_version.c:48
msgid "  TPM Version:         "
msgstr ""

#: src/tpm_mgmt/tpm_version.c:57
msgid "  Manufacturer Info:   "
msgstr ""