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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
Þ•(\ãœ"(.4).D^.æ£.äŠ/Jo06º0=ñ0z/1‰ª1F42O{2;Ë2<3@D3A…3AÇ3Q	4Q[4L­4Iú4‡D5:Ì5L6vT6EË6L74^7P“7Lä7L18G~8=Æ8J9DO9@”9:Õ9L:“]:Kñ:G=;H…;;Î;8
<@C<>„<:Ã<7þ<86=;o=5«=Bá=:$>;_>L›>:è>P#?pt?Iå??/@Ho@H¸@LALNA›A‘+BŠ½BŠHC;ÓCODˆ_DKèDI4E;~EnºEN)G8xGG±GIùGDCHsˆHBüHJ?I2ŠI‹½IIJMÙJF'KLnKN»K4
LH?LGˆL|ÐL@MM€ŽM:N9JN4„N:¹NFôN,;O-hO9–ONÐONP?nP‘®P0@QOqQNÁQMRJ^RK©R@õR=6S=tSK²S@þS;?T,{T.¨T5×T2
UM@U‡ŽU7V4NVEƒV.ÉV,øV3%W*YW+„WD°W*õW8 X8YX’X,šX ÇX1èXY3Y"RY*uY' Y
ÈYÖYîY&Z!*Z*LZwZ>‡ZÆZ'àZ[,"[O[%m[,“[-À[ î[&\6\V\3v\ê\un]Ãä]u¨^±_cÐ_©4`[Þ`¹:akôa<`bb:²b:íb:(c:cc žc ¿c-àcd+,d0Xd0‰d)ºd/äd/e#De,he+•ebÁe$fT3fˆfåŠf@pg*±g!Üg.þg4-hwbh¢Úh+}i?©i!éij	jNj—ljdkNik'¸k?àl m9m7FmO~m*Îm1ùme+n_‘ncñnXUo]®oOp\p¿|pU<r'’tºtWÍtì%uv;&vBbvÇ¥vmwbzwåÝwÃx-Ðxþx#~y5¢ypØyyIzmÃzó1{#%}^I}l¨}F~,\~A‰~sË~•?;Õ<€<N€<‹€FȀT@d`¥8‚C?‚Eƒ‚>ɂbƒ8kƒL¤ƒVñƒmH„N¶„S…=Y…C—…Xۅb4†N—†Kæ†G2‡˜z‡Tˆ´hˆ‰2‰ N‰"o‰!’‰´‰ʉ®Þ‰iŠR÷Š9J‹?„‹]ċ"Œ|>Œ‚»ŒI>kˆ~ôsê‡r˜ ˜R0™ƒ™˜™©™¿™ŽÐ™!_š#š"¥š%Țîš››"›3A›*u›Ž ›Ž/œ[¾œ[veøU^žZ´žÀŸ™ÐŸ7j K¢ Fî >5¡Àt¡¼5¢^ò¢ÉQ£Ó¤&ï¤Y¥9p¥-ª¥MØ¥4&¦Z[¦<¶¦9ó¦-§G­§=õ§u3¨g©¨8©BJ©O©kÝ©&I«&p«—«A¦«5è­®3®,G®*t®Ÿ®½®Ú®ø®"¯";¯#^¯0‚¯³¯ȯ߯µï¯¥°¼°¾°>Ü°<±8X±6‘±<ȱ:²<@²L}²>ʲN	³>X³N—³æ³3´)7´$a´†´¥´5±´6ç´µ=µ(Pµ.yµ'¨µ4еD¶1J¶%|¶¢¶Zº¶*·;@·|·™·¶·зê·¸¸:6¸$q¸$–¸»¸Ô¸$ò¸¹*¹?¹^¹~¹•¹«¹˹+Û¹.º56º"lºº#¦ºBʺ<
»JJ»L•»Lâ»O/¼O¼*ϼú¼4½#L½
p½5~½,´½,á½¾K%¾Fq¾#¸¾Gܾ$¿?¿X¿o¿Š¿¡¿5»¿5ñ¿'À<ÀRÀccÀiÇÀo1Áo¡Á`»r¾.Ã,íÃjÄo…ÄpõĀfÅZçÅ«BÆîÆ
Ç&ÇAÇVÇ3jÇ/žÇÎÇâÇ÷ÇÈG&ÈBnÈT±ÈNÉ.UÉ.„É-³ÉáÉ*ýÉ4(Ê]Ê8|ʵÊÄÊ4ÔÊ;	Ë+EË,qË*žË'ÉË'ñË+ÌEÌXÌ2rÌ	¥Ì¯Ì+ÎÌ*úÌ8%Í4^Í+“Í>¿Í=þÍ<Î0RÎ7ƒÎ!»Î$ÝÎÏÏ+ÏIÏ1`Ϥ’Ï/7Ñ>gÑà¦Ñ݇ÒCeÓ:©Ó7äÓJÔgÔIçÔ;1ÕCmÕG±Õ:ùÕB4ÖCwÖR»ÖS×Eb×p¨×{ØA•ØJ×؃"Ù@¦Ù=çÙ/%ÚJUÚ? ÚKàÚI,ÛCvÛKºÛHÜBOÜ9’Ü@ÌÜM
ÝF[ÝD¢Ý=çÝC%Þ9iÞ>£Þ?âÞ4"ß@WßE˜ß5Þß5à9Jà=„à7ÂàHúà9CáN}áNÌáGâ?câI£âJíâG8ãM€ã~Îã‘Mäßäaå6ãåKæqfæJØæp#ç5”çbÊçJ-é5xéE®éEôéC:êp~ê;ïêH+ë1t냦ëŽ*ìM¹ìHíIPíJší9åíAîIaîJ«îCöîŠ:ï@Åï7ð/>ð/nð>žð3Ýð4ñ7FñL~ñMËñAòŽ[ò7êòG"óJjóIµóGÿóCGô;‹ô5Çô7ýô@5õ>võ3µõ)éõ+ö5?ö5uöG«öuóö1i÷3›÷?Ï÷4ø/Dø>tø+³ø#ßø9ù+=ù7iù-¡ùÏù×ùíù+ú!-ú+Oú/{ú*«ú&Öúýú
û)û"Gû5jû% ûÆûUÓû)ü:Eü€ü+œüÈü'èü+ý,<ý"iý!Œý'®ý'Öý;þý¸:þsóþ®gÿg¦~a%¨‡[0¬Œg99¡Û'ï''?'g§¿Ü)ü2&2Y Œ'­'Õ%ý)#%MhsÜVëBñDF6-}-«Ùõl	Ÿ|	1
6N
…

£

®
G¹
‚f„Të<@*}

¨
³
/À
0ð
B!Bdg§n~~hýofTÖ+ëDg0/˜ÈMÚ(
=AH2Šb½ F,Às4+A|mê:‰?wÉFAþˆ"‡eªz6‹3ÂIö‰@ ’Ê 9]!:—!8Ò!7";C"E"4Å"Vú"+Q#8}#:¶#:ñ#Y,$#†$6ª$?á$a!%Aƒ%=Å%3&%7&<]&Aš&>Ü&8'FT'†›':"(S](
±(¼(%Ñ('÷(&)F)[)Àp)a1*c“*W÷*RO+k¢+,|#,Ÿ ,8@-Ry-%Ì-ò/90=7“S7Nç768>8
K8V8•c8%ù8'9&G9"n9‘9
¦9±9¾92×9/
:}::…¸:N>;W;xå;`^<;¿<7û<ª3=…Þ=>d>?£>9ã>:?ÏX?Ë(@Wô@öLAÒCB CO7C<‡C#ÄCBèC++DMWD7¥D-ÝD}EC‰E3ÍEYFK[F+§F3ÓFDGgLG=´H*òHI,I;3KoK„K6K6ÔK"L%.L&TL'{L*£L'ÎL(öL.MNMZM	jMtMNN NF:NGN@ÉN@
ODKODO0ÕOAP0HPAyP2»PCîP!2Q,TQ9Q2»Q"îQR:$R;_R(›RÄR<áR9SXS7vSK®S"úST<TV[T4²TFçT".U$QUvUU)¤U'ÎU$öUQV+mV+™V'ÅV/íV3W'QW*yW"¤W"ÇWêWùW&X
:X!HX5jX; X.ÜX(Y$4Y:YY0”YGÅYG
ZDUZDšZDßZ#$[3H[+|[)¨[Ò[-ß[,
\$:\_\>x\8·\6ð\M']'u]]²]É]æ]û]5^5J^€^^´^`Í^b._l‘_jþ_Ui`­¿`¯ma*bhHbo±bp!cŠ’cSd¨qd e;eUeqeˆeGŸe;çe #f Df&efŒfL›f2èfWg<sg*°g,Ûg*h3h%RhDxh#½h+áh
iiHi+hi0”iÅi6ài1j&Ij0pj¡j(²j=Ûjk& k2Gk%zkE k,æk0l6Dl:{l¶l$Çl/ìl"m#?mcm‚m'‘m"¹m1Üm|!Åf#E¨Üd¢;ïó<‚ì‹ëwŽ=Ê[÷g+ ›m"À&LMî=¥ §lž óz†ŸleÉ:û³²	÷7âO}•V²àP—ör½Î*çÿ’Ê!ÚT,û{«ÏDY5(¶#`Œ\BF§œá±nt‡¦oƒ~)Q°õ;ZéUÐHî±Â%‡	„e/‘¼ë·ãŬr':ÍaÛåˆHcJ¢¬"”2‚k'Ôñ}ÌÿÞ‰“Þ<’X3¼Õ ­¤Bï	1jƅ7®%€$è6Ζ*³(xæRº^­v
[i–
&¥¯4Æé0Ëáµp8Ú“2SRoª†¯ß°ò˜ÛW?¸XOG¡™Zp3@ˆÏÕñ?ÈnL+bcMQè`1]—¡ÀEÃêKv&Âãü«àyðsUúiÄ»š%
‹q$ýØÒ0mIw GfõâWž£N>´ÝöÑ¿$¾Y8œþ¤å\çËÙyÁ#¦h¾¹Óø”b›Ý
Ü9µA>jò)ùV4
NF½´C6£·¸5¿AÔ'udº¶øíTÃ-®/9Š^ÉØqÓ‘aS…_úCÙјŠùt„íK€ôzê,~ÈÍÇÐ!J.šìÖ»©©.xskäÖÒ-̉ğþ•Œ¹g]Dü¨×({ÇŽ|ôª™æ
ýh"ä@ð_IußPÁ×                                (only language C++)
                                (only languages C, C++, ObjectiveC)
                                (only languages C, C++, ObjectiveC, Shell,
                                Python, Lisp, EmacsLisp, librep, Scheme, Java,
                                C#, awk, Tcl, Perl, PHP, GCC-source, Glade)
                                (only languages C, C++, ObjectiveC, Shell,
                                Python, Lisp, EmacsLisp, librep, Scheme, Java,
                                C#, awk, YCP, Tcl, Perl, PHP, GCC-source)
      --add-location          preserve '#: filename:line' lines (default)
      --backup=CONTROL        make a backup of def.po
      --boost                 recognize Boost format strings
      --check-accelerators[=CHAR]  check presence of keyboard accelerators for
                                menu items
      --check-domain          check for conflicts between domain directives
                                and the --output-file option
      --check-format          check language dependent format strings
      --check-header          verify presence and contents of the header entry
      --clear-fuzzy           set all messages non-'fuzzy'
      --clear-obsolete        set all messages non-obsolete
      --copyright-holder=STRING  set copyright holder in output
      --csharp                C# mode: generate a .NET .dll file
      --csharp                C# mode: input is a .NET .dll file
      --csharp-resources      C# resources mode: generate a .NET .resources file
      --csharp-resources      C# resources mode: input is a .NET .resources file
      --debug                 more detailed formatstring recognition result
      --escape                use C escapes in output, no extended chars
      --flag=WORD:ARG:FLAG    additional flag for strings inside the argument
                              number ARG of keyword WORD
      --force-po              write PO file even if empty
      --foreign-user          omit FSF copyright in output for foreign user
      --from-code=NAME        encoding of input files
                                (except for Python, Tcl, Glade)
      --fuzzy                 synonym for --only-fuzzy --clear-fuzzy
      --ignore-file=FILE.po   manipulate only entries not listed in FILE.po
      --indent                indented output style
      --java2                 like --java, and assume Java2 (JDK 1.2 or higher)
      --keep-header           keep header entry unmodified, don't filter it
      --msgid-bugs-address=EMAIL@ADDRESS  set report address for msgid bugs
      --no-escape             do not use C escapes in output (default)
      --no-fuzzy              remove 'fuzzy' marked messages
      --no-hash               binary file will not include the hash table
      --no-location           do not write '#: filename:line' lines
      --no-location           suppress '#: filename:line' lines
      --no-obsolete           remove obsolete #~ messages
      --no-translator         assume the PO file is automatically generated
      --no-wrap               do not break long message lines, longer than
                              the output page width, into several lines
      --obsolete              synonym for --only-obsolete --clear-obsolete
      --omit-header           don't write header with `msgid ""' entry
      --only-file=FILE.po     manipulate only entries listed in FILE.po
      --only-fuzzy            keep 'fuzzy' marked messages
      --only-obsolete         keep obsolete #~ messages
      --properties-output     write out a Java .properties file
      --qt                    Qt mode: generate a Qt .qm file
      --qt                    recognize Qt format strings
      --set-fuzzy             set all messages 'fuzzy'
      --set-obsolete          set all messages obsolete
      --sort-by-file          sort output by file location
      --sort-output           generate sorted output
      --statistics            print statistics about translations
      --strict                enable strict Uniforum mode
      --strict                strict Uniforum output style
      --strict                write out strict Uniforum conforming .po file
      --strict                write strict uniforum style
      --stringtable-input     input file is in NeXTstep/GNUstep .strings syntax
      --stringtable-input     input files are in NeXTstep/GNUstep .strings
                              syntax
      --stringtable-output    write out a NeXTstep/GNUstep .strings file
      --suffix=SUFFIX         override the usual backup suffix
      --tcl                   Tcl mode: generate a tcl/msgcat .msg file
      --tcl                   Tcl mode: input is a tcl/msgcat .msg file
      --translated            keep translated, remove untranslated messages
      --untranslated          keep untranslated, remove translated messages
      --use-first             use first available translation for each
                              message, don't merge several translations
  -<, --less-than=NUMBER      print messages with less than this many
                              definitions, defaults to infinite if not set
  ->, --more-than=NUMBER      print messages with more than this many
                              definitions, defaults to 0 if not set
  ->, --more-than=NUMBER      print messages with more than this many
                              definitions, defaults to 1 if not set
  -C, --c++                   shorthand for --language=C++
  -C, --check-compatibility   check that GNU msgfmt behaves like X/Open msgfmt
  -C, --compendium=FILE       additional library of message translations,
                              may be specified more than once
  -D, --directory=DIRECTORY   add DIRECTORY to list for input files search
  -E, --escape                use C escapes in output, no extended chars
  -F, --sort-by-file          sort output by file location
  -L, --language=NAME         recognise the specified language
                                (C, C++, ObjectiveC, PO, Shell, Python, Lisp,
                                EmacsLisp, librep, Scheme, Smalltalk, Java,
                                JavaProperties, C#, awk, YCP, Tcl, Perl, PHP,
                                GCC-source, NXStringTable, RST, Glade)
  -M, --msgstr-suffix[=STRING]  use STRING or "" as suffix for msgstr entries
  -N, --no-fuzzy-matching     do not use fuzzy matching
  -P, --properties-input      input file is in Java .properties syntax
  -P, --properties-input      input files are in Java .properties syntax
  -T, --trigraphs             understand ANSI C trigraphs for input
  -U, --update                update def.po,
                              do nothing if def.po already up to date
  -V, --version               output version information and exit
  -a, --alignment=NUMBER      align strings to NUMBER bytes (default: %d)
  -a, --extract-all           extract all strings
  -c, --add-comments[=TAG]    place comment block with TAG (or those
                              preceding keyword lines) in output file
  -c, --check                 perform all the checks implied by
                                --check-format, --check-header, --check-domain
  -d DIRECTORY                base directory for locale dependent .dll files
  -d DIRECTORY                base directory of .msg message catalogs
  -d DIRECTORY                base directory of classes directory hierarchy
  -d, --default-domain=NAME   use NAME.po for output (instead of messages.po)
  -d, --repeated              print only duplicates
  -e, --expression=SCRIPT     add SCRIPT to the commands to be executed
  -e, --no-escape             do not use C escapes in output (default)
  -f, --file=SCRIPTFILE       add the contents of SCRIPTFILE to the commands
                                to be executed
  -f, --files-from=FILE       get list of input files from FILE
  -f, --fqdn, --long          long host name, includes fully qualified domain
                                name, and aliases
  -f, --use-fuzzy             use fuzzy entries in output
  -h, --help                  display this help and exit
  -i, --indent                indented output style
  -i, --indent                write indented output style
  -i, --indent                write the .po file using indented style
  -i, --input=INPUTFILE       input PO file
  -i, --input=INPUTFILE       input POT file
  -i, --ip-address            addresses for the hostname
  -j, --java                  Java mode: generate a Java ResourceBundle class
  -j, --java                  Java mode: input is a Java ResourceBundle class
  -j, --join-existing         join messages with existing file
  -k, --keyword[=WORD]        additional keyword to be looked for (without
                              WORD means not to use default keywords)
  -l, --locale=LL_CC          set target locale
  -l, --locale=LOCALE         locale name, either language or language_COUNTRY
  -m, --msgstr-prefix[=STRING]  use STRING or "" as prefix for msgstr entries
  -m, --multi-domain          apply ref.pot to each of the domains in def.po
  -n, --add-location          generate '#: filename:line' lines (default)
  -n, --quiet, --silent       suppress automatic printing of pattern space
  -o, --output-file=FILE      write output to specified PO file
  -o, --output-file=FILE      write output to specified file
  -o, --output=FILE           write output to specified file
  -p, --output-dir=DIR        output files will be placed in directory DIR
  -p, --properties-output     write out a Java .properties file
  -q, --quiet, --silent       suppress progress indicators
  -r, --resource=RESOURCE     resource name
  -s, --short                 short host name
  -s, --sort-output           generate sorted output
  -t, --to-code=NAME          encoding for output
  -u, --unique                print only unique messages, discard duplicates
  -u, --unique                shorthand for --less-than=2, requests
                              that only unique messages be printed
  -v, --verbose               increase verbosity level
  -w, --width=NUMBER          set output page width
  -x, --exclude-file=FILE.po  entries from FILE.po are not extracted
  FILE ...                    input .mo files
  INPUTFILE                   input PO file
  INPUTFILE                   input PO or POT file
  INPUTFILE ...               input files
  def.po                      translations
  def.po                      translations referring to old sources
  filename.po ...             input files
  ref.pot                     references to new sources
  ref.pot                     references to the sources
 done.
%d translated message%d translated messages%s and %s are mutually exclusive%s and explicit file names are mutually exclusive%s is only valid with %s%s is only valid with %s or %s%s is only valid with %s, %s or %s%s requires a "-d directory" specification%s requires a "-l locale" specification%s subprocess%s subprocess I/O error%s subprocess failed%s subprocess failed with exit code %d%s subprocess got fatal signal %d%s subprocess terminated with exit code %d%s%s: warning: %s: error while converting from "%s" encoding to "%s" encoding%s: illegal option -- %c
%s: input is not valid in "%s" encoding%s: invalid option -- %c
%s: option `%c%s' doesn't allow an argument
%s: option `%s' is ambiguous
%s: option `%s' requires an argument
%s: option `--%s' doesn't allow an argument
%s: option `-W %s' doesn't allow an argument
%s: option `-W %s' is ambiguous
%s: option requires an argument -- %c
%s: unrecognized option `%c%s'
%s: unrecognized option `--%s'
%s: warning: source file contains fuzzy translation%s:%d: Incomplete multibyte sequence at end of file.
Please specify the correct source encoding through --from-code or through a
comment as specified in http://www.python.org/peps/pep-0263.html.
%s:%d: Incomplete multibyte sequence at end of file.
Please specify the correct source encoding through --from-code.
%s:%d: Incomplete multibyte sequence at end of line.
Please specify the correct source encoding through --from-code or through a
comment as specified in http://www.python.org/peps/pep-0263.html.
%s:%d: Incomplete multibyte sequence at end of line.
Please specify the correct source encoding through --from-code.
%s:%d: Invalid multibyte sequence.
Please specify the correct source encoding through --from-code or through a
comment as specified in http://www.python.org/peps/pep-0263.html.
%s:%d: Invalid multibyte sequence.
Please specify the correct source encoding through --from-code.
%s:%d: Invalid multibyte sequence.
Please specify the source encoding through --from-code or through a comment
as specified in http://www.python.org/peps/pep-0263.html.
%s:%d: Invalid multibyte sequence.
Please specify the source encoding through --from-code.
%s:%d: Long incomplete multibyte sequence.
Please specify the correct source encoding through --from-code or through a
comment as specified in http://www.python.org/peps/pep-0263.html.
%s:%d: Long incomplete multibyte sequence.
Please specify the correct source encoding through --from-code.
%s:%d: can't find string terminator "%s" anywhere before EOF%s:%d: iconv failure%s:%d: invalid interpolation ("\L") of 8bit character "%c"%s:%d: invalid interpolation ("\U") of 8bit character "%c"%s:%d: invalid interpolation ("\l") of 8bit character "%c"%s:%d: invalid interpolation ("\u") of 8bit character "%c"%s:%d: invalid string definition%s:%d: invalid string expression%s:%d: invalid variable interpolation at "%c"%s:%d: missing number after #%s:%d: missing right brace on \x{HEXNUMBER}%s:%d: warning: ')' found where '}' was expected%s:%d: warning: '}' found where ')' was expected%s:%d: warning: invalid Unicode character%s:%d: warning: unterminated character constant%s:%d: warning: unterminated regular expression%s:%d: warning: unterminated string%s:%d: warning: unterminated string constant%s:%d: warning: unterminated string literal%s:%lu: warning: the syntax $"..." is deprecated due to security reasons; use eval_gettext instead%s:%lu:%lu: %s%sRead %ld old + %ld reference, merged %ld, fuzzied %ld, missing %ld, obsolete %ld.
''%s' format string with unnamed arguments cannot be properly localized:
The translator cannot reorder the arguments.
Please consider using a format string with named arguments,
and a mapping instead of a tuple for the arguments.
'%s' is not a valid %s format string, unlike 'msgid'. Reason: %s'msgid' does not use %%m but '%s' uses %%m'msgid' uses %%m but '%s' doesn't, %d fuzzy translation, %d fuzzy translations, %d untranslated message, %d untranslated messages- Convert the translation catalog to %s using 'msgconv',
  then apply '%s',
  then convert back to %s using 'msgconv'.
- Set LC_ALL to a locale with encoding %s,
  convert the translation catalog to %s using 'msgconv',
  then apply '%s',
  then convert back to %s using 'msgconv'.
- Set LC_ALL to a locale with encoding %s.
--join-existing cannot be used when output is written to stdout...but this definition is similar<stdin><unnamed>A --flag argument doesn't have the <keyword>:<argnum>:[pass-]<flag> syntax: %sA special builtin command called '0' outputs the translation, followed by a
null byte.  The output of "msgexec 0" is suitable as input for "xargs -0".
Although being used in a format string position, the %s is not a valid %s format string. Reason: %s
Although declared as such, the %s is not a valid %s format string. Reason: %s
Applies a command to all translations of a translation catalog.
The COMMAND can be any program that reads a translation from standard
input.  It is invoked once for each translation.  Its output becomes
msgexec's output.  msgexec's return code is the maximum return code
across all invocations.
Applies a filter to all translations of a translation catalog.
Attribute manipulation:
Bruno HaibleBy default the input files are assumed to be in ASCII.
By default the language is guessed depending on the input file name extension.
C# compiler not found, try installing pnetC# virtual machine not found, try installing pnetCannot convert from "%s" to "%s". %s relies on iconv(), and iconv() does not support this conversion.Cannot convert from "%s" to "%s". %s relies on iconv(). This version was built without iconv().Charset "%s" is not a portable encoding name.
Message conversion to user's charset might not work.
Charset "%s" is not supported. %s relies on iconv(),
and iconv() does not support "%s".
Charset "%s" is not supported. %s relies on iconv().
This version was built without iconv().
Charset missing in header.
Message conversion to user's charset will not work.
Choice of input file language:
Compare two Uniforum style .po files to check that both contain the same
set of msgid strings.  The def.po file is an existing PO file with the
translations.  The ref.pot file is the last created PO file, or a PO Template
file (generally created by xgettext).  This is useful for checking that
you have translated each and every message in your program.  Where an exact
match cannot be found, fuzzy matching is used to produce better diagnostics.
Concatenates and merges the specified PO files.
Find messages which are common to two or more of the specified PO files.
By using the --more-than option, greater commonality may be requested
before messages are printed.  Conversely, the --less-than option may be
used to specify less commonality before messages are printed (i.e.
--less-than=2 will only print the unique messages).  Translations,
comments and extract comments will be cumulated, except that if --use-first
is specified, they will be taken from the first PO file to define them.
File positions from all PO files will be cumulated.
Continuing anyway, expect parse errors.Continuing anyway.Conversion from "%s" to "%s" introduces duplicates: some different msgids become equal.Conversion of file %s from %s encoding to %s encoding
changes some msgids or msgctxts.
Either change all msgids and msgctxts to be pure ASCII, or ensure they are
UTF-8 encoded from the beginning, i.e. already in your source code files.
Conversion target:
Convert binary message catalog to Uniforum style .po file.
Converts a translation catalog to a different character encoding.
Copyright (C) %s Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Created %s.
Creates a new PO file, initializing the meta information with values from the
user's environment.
Creates an English translation catalog.  The input file is the last
created English PO file, or a PO Template file (generally created by
xgettext).  Untranslated entries are assigned a translation that is
identical to the msgid.
Danilo SeganDuplicateHandle failed with error code 0x%08xEmpty msgid.  It is reserved by GNU gettext:
gettext("") returns the header entry with
meta information, not the empty string.
English translations for %s packageExtract translatable strings from given input files.
Extracts all messages of a translation catalog that match a given pattern
or belong to some given source files.
Fetches and outputs the contents of an URL.  If the URL cannot be accessed,
the locally accessible FILE is used instead.
Filters the messages of a translation catalog according to their attributes,
and manipulates the attributes.
Find messages which are common to two or more of the specified PO files.
By using the --more-than option, greater commonality may be requested
before messages are printed.  Conversely, the --less-than option may be
used to specify less commonality before messages are printed (i.e.
--less-than=2 will only print the unique messages).  Translations,
comments and extract comments will be preserved, but only from the first
PO file to define them.  File positions from all PO files will be
cumulated.
Found '~%c' without matching '~%c'.Found more than one .pot file.
Please specify the input .pot file through the --input option.
Found no .pot file in the current directory.
Please specify the input .pot file through the --input option.
Generate binary message catalog from textual translation description.
If input file is -, standard input is read.
If no input file is given or if it is -, standard input is read.
If no input file is given, the current directory is searched for the POT file.
If it is -, standard input is read.
If no output file is given, it depends on the --locale option or the user's
locale setting.  If it is -, the results are written to standard output.
If output file is -, output is written to standard output.
In the directive number %u, "%s" is not followed by a comma.In the directive number %u, '%c' is not followed by a digit.In the directive number %u, ',' is not followed by a number.In the directive number %u, '{' is not followed by an argument number.In the directive number %u, '~:[' is not followed by two clauses, separated by '~;'.In the directive number %u, '~;' is used in an invalid position.In the directive number %u, a choice contains a number that is not followed by '<', '#' or '%s'.In the directive number %u, a choice contains no number.In the directive number %u, a precision is not allowed before '%c'.In the directive number %u, both the @ and the : modifiers are given.In the directive number %u, flags are not allowed before '%c'.In the directive number %u, parameter %u is of type '%s' but a parameter of type '%s' is expected.In the directive number %u, the argument %d is negative.In the directive number %u, the argument number 0 is not a positive integer.In the directive number %u, the argument number for the precision must be equal to %u.In the directive number %u, the argument number is not followed by a comma and one of "%s", "%s", "%s", "%s".In the directive number %u, the character '%c' is not a digit between 1 and 9.In the directive number %u, the character '%c' is not a valid conversion specifier.In the directive number %u, the flags combination is invalid.In the directive number %u, the precision specification is invalid.In the directive number %u, the precision's argument number 0 is not a positive integer.In the directive number %u, the size specifier is incompatible with the conversion specifier '%c'.In the directive number %u, the substring "%s" is not a valid date/time style.In the directive number %u, the substring "%s" is not a valid number style.In the directive number %u, the token after '<' is not followed by '>'.In the directive number %u, the token after '<' is not the name of a format specifier macro. The valid macro names are listed in ISO C 99 section 7.8.1.In the directive number %u, the width's argument number 0 is not a positive integer.In the directive number %u, too many parameters are given; expected at most %u parameter.In the directive number %u, too many parameters are given; expected at most %u parameters.Informative output:
Input file interpretation:
Input file location in C# mode:
Input file location in Java mode:
Input file location in Tcl mode:
Input file location:
Input file syntax:
Input files contain messages in different encodings, %s and %s among others.
Converting the output to UTF-8.
To select a different output encoding, use the --to-code option.
Input files contain messages in different encodings, UTF-8 among others.
Converting the output to UTF-8.
Installing GNU libiconv and then reinstalling GNU gettext
would fix this problem.
Java compiler not found, try installing gcj or set $JAVACJava virtual machine not found, try installing gij or set $JAVALanguage "glade" is not supported. %s relies on expat.
This version was built without expat.
Language specific options:
Locale charset "%s" is different from
input file charset "%s".
Output of '%s' might be incorrect.
Possible workarounds are:
Locale charset "%s" is not a portable encoding name.
Output of '%s' might be incorrect.
A possible workaround is to set LC_ALL=C.
Mandatory arguments to long options are mandatory for short options too.
Mandatory arguments to long options are mandatory for short options too.
Similarly for optional arguments.
Merges two Uniforum style .po files together.  The def.po file is an
existing PO file with translations which will be taken over to the newly
created file as long as they still match; comments will be preserved,
but extracted comments and file positions will be discarded.  The ref.pot
file is the last created PO file with up-to-date source references but
old translations, or a PO Template file (generally created by xgettext);
any translations or comments in the file will be discarded, however dot
comments and file positions will be preserved.  Where an exact match
cannot be found, fuzzy matching is used to produce better results.
Message selection:
Message selection:
  [-N SOURCEFILE]... [-M DOMAINNAME]...
  [-J MSGCTXT-PATTERN] [-K MSGID-PATTERN] [-T MSGSTR-PATTERN]
  [-C COMMENT-PATTERN] [-X EXTRACTED-COMMENT-PATTERN]
A message is selected if it comes from one of the specified source files,
or if it comes from one of the specified domains,
or if -J is given and its context (msgctxt) matches MSGCTXT-PATTERN,
or if -K is given and its key (msgid or msgid_plural) matches MSGID-PATTERN,
or if -T is given and its translation (msgstr) matches MSGSTR-PATTERN,
or if -C is given and the translator's comment matches COMMENT-PATTERN,
or if -X is given and the extracted comment matches EXTRACTED-COMMENT-PATTERN.

When more than one selection criterion is specified, the set of selected
messages is the union of the selected messages of each criterion.

MSGCTXT-PATTERN or MSGID-PATTERN or MSGSTR-PATTERN or COMMENT-PATTERN or
EXTRACTED-COMMENT-PATTERN syntax:
  [-E | -F] [-e PATTERN | -f FILE]...
PATTERNs are basic regular expressions by default, or extended regular
expressions if -E is given, or fixed strings if -F is given.

  -N, --location=SOURCEFILE   select messages extracted from SOURCEFILE
  -M, --domain=DOMAINNAME     select messages belonging to domain DOMAINNAME
  -J, --msgctxt               start of patterns for the msgctxt
  -K, --msgid                 start of patterns for the msgid
  -T, --msgstr                start of patterns for the msgstr
  -C, --comment               start of patterns for the translator's comment
  -X, --extracted-comment     start of patterns for the extracted comment
  -E, --extended-regexp       PATTERN is an extended regular expression
  -F, --fixed-strings         PATTERN is a set of newline-separated strings
  -e, --regexp=PATTERN        use PATTERN as a regular expression
  -f, --file=FILE             obtain PATTERN from FILE
  -i, --ignore-case           ignore case distinctions
  -v, --invert-match          output only the messages that do not match any
                              selection criterion
Multiple references to %%%c.Non-ASCII string at %s%s.
Please specify the source encoding through --from-code or through a comment
as specified in http://www.python.org/peps/pep-0263.html.
Non-ASCII string at %s%s.
Please specify the source encoding through --from-code.
Not yet implemented.Operation mode:
Operation modifiers:
Output details:
Output file %s already exists.
Please specify the locale through the --locale option or
the output .po file through the --output-file option.
Output file location in C# mode:
Output file location in Java mode:
Output file location in Tcl mode:
Output file location in update mode:
Output file location:
Output format:
Peter MillerPrint the machine's hostname.
Recode Serbian text from Cyrillic to Latin script.
Report bugs to <bug-gnu-gettext@gnu.org>.
The -l and -d options are mandatory.  The .dll file is located in a
subdirectory of the specified directory whose name depends on the locale.
The -l and -d options are mandatory.  The .dll file is written in a
subdirectory of the specified directory whose name depends on the locale.
The -l and -d options are mandatory.  The .msg file is located in the
specified directory.
The -l and -d options are mandatory.  The .msg file is written in the
specified directory.
The FILTER can be any program that reads a translation from standard input
and writes a modified translation to standard output.
The backup suffix is `~', unless set with --suffix or the SIMPLE_BACKUP_SUFFIX
environment variable.
The character that terminates the directive number %u is not a digit between 1 and 9.The character that terminates the directive number %u is not a valid conversion specifier.The class name is determined by appending the locale name to the resource name,
separated with an underscore.  The -d option is mandatory.  The class is
written under the specified directory.
The class name is determined by appending the locale name to the resource name,
separated with an underscore.  The class is located using the CLASSPATH.
The default encoding is the current locale's encoding.
The directive number %u ends with an invalid character '%c' instead of '}'.The directive number %u ends with an invalid character instead of '}'.The directive number %u starts with | but does not end with |.The following msgctxt contains non-ASCII characters.
This will cause problems to translators who use a character encoding
different from yours. Consider using a pure ASCII msgctxt instead.
%s
The following msgid contains non-ASCII characters.
This will cause problems to translators who use a character encoding
different from yours. Consider using a pure ASCII msgid instead.
%s
The input text is read from standard input.  The converted text is output to
standard output.
The new message catalog should contain your email address, so that users can
give you feedback about the translations, and so that maintainers can contact
you in case of unexpected technical problems.
The option --msgid-bugs-address was not specified.
If you are using a `Makevars' file, please specify
the MSGID_BUGS_ADDRESS variable there; otherwise please
specify an --msgid-bugs-address command line option.
The result is written back to def.po.
The results are written to standard output if no output file is specified
or if it is -.
The string contains a lone '}' after directive number %u.The string ends in the middle of a directive.The string ends in the middle of a directive: found '{' without matching '}'.The string ends in the middle of a ~/.../ directive.The string refers to a shell variable whose value may be different inside shell functions.The string refers to a shell variable with a non-ASCII name.The string refers to a shell variable with an empty name.The string refers to a shell variable with complex shell brace syntax. This syntax is unsupported here due to security reasons.The string refers to argument number %u but ignores argument number %u.The string refers to argument number %u in incompatible ways.The string refers to arguments both through absolute argument numbers and through unnumbered argument specifications.The string refers to arguments both through argument names and through unnamed argument specifications.The string refers to some argument in incompatible ways.The string refers to the argument named '%s' in incompatible ways.The string starts in the middle of a directive: found '}' without matching '{'.The version control method may be selected via the --backup option or through
the VERSION_CONTROL environment variable.  Here are the values:
  none, off       never make backups (even if --backup is given)
  numbered, t     make numbered backups
  existing, nil   numbered if numbered backups exist, simple otherwise
  simple, never   always make simple backups
Try `%s --help' for more information.
Try using the following, valid for %s:Ulrich DrepperUnifies duplicate translations in a translation catalog.
Finds duplicate translations of the same message ID.  Such duplicates are
invalid input for other programs like msgfmt, msgmerge or msgcat.  By
default, duplicates are merged together.  When using the --repeated option,
only duplicates are output, and all other messages are discarded.  Comments
and extracted comments will be cumulated, except that if --use-first is
specified, they will be taken from the first translation.  File positions
will be cumulated.  When using the --unique option, duplicates are discarded.
Unknown encoding "%s". Proceeding with ASCII instead.Unknown system errorUsage: %s [OPTION]
Usage: %s [OPTION] COMMAND [COMMAND-OPTION]
Usage: %s [OPTION] FILTER [FILTER-OPTION]
Usage: %s [OPTION] INPUTFILE
Usage: %s [OPTION] URL FILE
Usage: %s [OPTION] [FILE]...
Usage: %s [OPTION] [INPUTFILE]
Usage: %s [OPTION] [INPUTFILE]...
Usage: %s [OPTION] def.po ref.pot
Usage: %s [OPTION] filename.po ...
Useful FILTER-OPTIONs when the FILTER is 'sed':
Valid arguments are:Written by %s and %s.
Written by %s.
You are in a language indifferent environment.  Please set
your LANG environment variable, as described in the ABOUT-NLS
file.  This is necessary so you can test your translations.
_open_osfhandle failed``domain %s' directive ignored`msgid' and `msgid_plural' entries do not both begin with '\n'`msgid' and `msgid_plural' entries do not both end with '\n'`msgid' and `msgstr' entries do not both begin with '\n'`msgid' and `msgstr' entries do not both end with '\n'`msgid' and `msgstr[%u]' entries do not both begin with '\n'`msgid' and `msgstr[%u]' entries do not both end with '\n'a format specification for argument %u doesn't exist in '%s'a format specification for argument %u, as in '%s', doesn't exist in 'msgid'a format specification for argument '%s' doesn't exist in '%s'a format specification for argument '%s', as in '%s', doesn't exist in 'msgid'a format specification for argument {%u} doesn't exist in '%s'a format specification for argument {%u}, as in '%s', doesn't exist in 'msgid'ambiguous argument %s for %sambiguous argument specification for keyword '%.*s'at least one sed script must be specifiedat least two files must be specifiedat most one input file allowedbackup typebut header entry lacks a "nplurals=INTEGER" attributebut header entry lacks a "plural=EXPRESSION" attributecannot create output file "%s"cannot create pipecannot open backup file "%s" for writingcannot set up nonblocking I/O to %s subprocesscommunication with %s subprocess failedcompilation of C# class failed, please try --verbosecompilation of Java class failed, please try --verbose or set $JAVACcontext mismatch between singular and plural formcontext separator <EOT> within stringcould not get host namedomain "%s" in input file `%s' doesn't contain a header entry with a charset specificationdomain name "%s" not suitable as file namedomain name "%s" not suitable as file name: will use prefixduplicate message definitionempty `msgstr' entry ignoredend-of-file within stringend-of-line within stringerror after reading "%s"error reading "%s"error reading current directoryerror while converting from "%s" encoding to "%s" encodingerror while opening "%s" for readingerror while opening "%s" for writingerror while reading "%s"error while writing "%s" fileerror while writing to %s subprocesserror writing "%s"error writing stdoutexactly 2 input files requiredexactly one input file requiredexpected two argumentsfailed to create "%s"failed to create directory "%s"fdopen() failedfield `%s' still has initial default value
file "%s" contains a not NUL terminated stringfile "%s" contains a not NUL terminated string, at %sfile "%s" is not in GNU .mo formatfile "%s" is truncatedfirst plural form has nonzero indexformat specifications in '%s' are not a subset of those in 'msgid'format specifications in 'msgid' and '%s' are not equivalentformat specifications in 'msgid' and '%s' for argument %u are not the sameformat specifications in 'msgid' and '%s' for argument '%s' are not the sameformat specifications in 'msgid' and '%s' for argument {%u} are not the sameformat specifications in 'msgid' expect a mapping, those in '%s' expect a tupleformat specifications in 'msgid' expect a tuple, those in '%s' expect a mappingfound %d fatal errorfound %d fatal errorsfuzzy `msgstr' entry ignoredheader field `%s' should start at beginning of line
headerfield `%s' missing in header
iconv failureimpossible selection criteria specified (%d < n < %d)incomplete multibyte sequence at end of fileincomplete multibyte sequence at end of lineinconsistent use of #~input file `%s' doesn't contain a header entry with a charset specificationinput file doesn't contain a header entry with a charset specificationinput is not valid in "%s" encodinginternationalized messages should not contain the `\%c' escape sequenceinvalid argument %s for %sinvalid control sequenceinvalid endianness: %sinvalid multibyte sequenceinvalid nplurals valueinvalid plural expressioninvalid source_version argument to compile_java_classinvalid target_version argument to compile_java_classkeyword "%s" unknownlanguage `%s' unknownmemory exhaustedmessage catalog has context dependent translations
but the C# .dll format doesn't support contexts
message catalog has context dependent translations
but the C# .resources format doesn't support contexts
message catalog has context dependent translations
but the Java ResourceBundle format doesn't support contexts
message catalog has context dependent translations
but the Tcl message catalog format doesn't support contexts
message catalog has context dependent translations, but the output format does not support them.message catalog has msgctxt strings containing characters outside ISO-8859-1
but the Qt message catalog format supports Unicode only in the translated
strings, not in the context strings
message catalog has msgid strings containing characters outside ISO-8859-1
but the Qt message catalog format supports Unicode only in the translated
strings, not in the untranslated strings
message catalog has plural form translationsmessage catalog has plural form translations
but the C# .resources format doesn't support plural handling
message catalog has plural form translations
but the Qt message catalog format doesn't support plural handling
message catalog has plural form translations
but the Tcl message catalog format doesn't support plural handling
message catalog has plural form translations, but lacks a header entry with "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;"message catalog has plural form translations, but the output format does not support them.message catalog has plural form translations, but the output format does not support them. Try generating a Java class using "msgfmt --java", instead of a properties file.missing `msgid_plural' sectionmissing `msgstr' sectionmissing `msgstr[]' sectionmissing command namemissing filter namemsgstr has too many keyboard accelerator marks '%c'msgstr lacks the keyboard accelerator mark '%c'no input file givenno input files givennot a valid Java class name: %snplurals = %lunplurals = %lu but plural expression can produce values as large as %lunumber of format specifications in 'msgid' and '%s' does not matchoption '%c' cannot be used before 'J' or 'K' or 'T' or 'C' or 'X' has been specifiedplural expression can produce arithmetic exceptions, possibly division by zeroplural expression can produce division by zeroplural expression can produce integer overflowplural expression can produce negative valuesplural form has wrong indexplural handling is a GNU gettext extensionpresent charset "%s" is not a portable encoding nameread from %s subprocess failedsome header fields still have the initial default value
standard inputstandard outputtarget charset "%s" is not a portable encoding name.the argument to %s should be a single punctuation characterthis file may not contain domain directivesthis is the location of the first definitionthis message is used but not defined in %sthis message is used but not defined...this message should define plural formsthis message should not define plural formstoo many argumentstoo many errors, abortingtwo different charsets "%s" and "%s" in input filewarning: warning: PO file header fuzzy
warning: PO file header missing or invalid
warning: charset conversion will not work
warning: file `%s' extension `%s' is unknown; will try Cwarning: invalid \uxxxx syntax for Unicode characterwarning: missing context for keyword '%.*s'warning: missing context for plural argument of keyword '%.*s'warning: older versions of msgfmt will give an error on this
warning: syntax errorwarning: syntax error, expected ';' after stringwarning: syntax error, expected '=' or ';' after stringwarning: this message is not usedwarning: unterminated key/value pairwarning: unterminated stringwrite errorwrite to %s subprocess failedwrite to stdout failedxgettext cannot work without keywords to look forProject-Id-Version: GNU gettext-tools 0.15-pre5
Report-Msgid-Bugs-To: bug-gnu-gettext@gnu.org
POT-Creation-Date: 2006-10-23 23:07+0200
PO-Revision-Date: 2006-07-01 18:52+0900
Last-Translator: Masahito Yamaga <ma@yama-ga.com>
Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=EUC-JP
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=1; plural=0;
                                (C++ ¸À¸ì¤Î¤ß)
                                (C, C++, ObjectiveC ¸À¸ì¤Î¤ß)
                                (C, C++, ObjectiveC, Shell,
                                Python, Lisp, EmacsLisp, librep, Scheme, Java,
                                C#, awk. Tcl, Perl, PHP, GCC-source, Glade ¸À¸ì¤Î¤ß)
                                (C, C++, ObjectiveC, Shell,
                                Python, Lisp, EmacsLisp, librep, Scheme, Java,
                                C#, awk, YCP, Tcl, Perl, PHP, GCC¥½¡¼¥¹ ¸À¸ì¤Î¤ß)
      --add-location          '#: filename:line' ¤Î¹Ô¤òÊÝ»ý (ɸ½à)
      --backup=CONTROL        def.po ¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºîÀ®
      --boost                 Boost ·Á¼°¤Îʸ»úÎó¤òǧ¼±
      --check-accelerators[=ʸ»ú]  ¥á¥Ë¥å¡¼¹àÌܤؤΥ­¡¼³ä¤êÅö¤Æ¤ò¥Á¥§¥Ã¥¯
      --check-domain          ¥É¥á¥¤¥óÌ¿Îá¤È --output-file ¥ª¥×¥·¥ç¥ó¤Î´Ö¤Ë
                              Ì·½â¤¬¤Ê¤¤¤«¥Á¥§¥Ã¥¯
      --check-format          ¸À¸ì¤Ë°Í¸¤·¤¿¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤ò¥Á¥§¥Ã¥¯
      --check-header          ¥Ø¥Ã¥À¹àÌܤθºß¤ÈÆâÍƤò³Îǧ
      --clear-fuzzy           Á´¤Æ¤Î¥á¥Ã¥»¡¼¥¸¤ò 'Èó fuzzy' ¤ËÀßÄê
      --clear-obsolete        Á´¤Æ¤Î¥á¥Ã¥»¡¼¥¸¤òÈó 'ÇѤ줿' ¾õÂÖ¤ËÀßÄê
      --copyright-holder=STRING  Ãøºî¸¢ÊÝÍ­¼Ô¤ò½ÐÎϤÇÀßÄê
      --csharp                C# ¥â¡¼¥É: .NET .dll ¥Õ¥¡¥¤¥ë¤ÎÀ¸À®
      --csharp                C# ¥â¡¼¥É: ÆþÎÏ¤Ï .NET .dll ¥Õ¥¡¥¤¥ë
      --csharp-resources      C# resources ¥â¡¼¥É: .NET .resources ¥Õ¥¡¥¤¥ë¤ÎÀ¸À®
      --csharp-resources      C# resources ¥â¡¼¥É: ÆþÎÏ¤Ï .NET .resources ¥Õ¥¡¥¤¥ë
      --debug                 ¤è¤ê¾ÜºÙ¤Ê¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Îǧ¼±·ë²Ì
      --escape                ½ÐÎÏ¤Ë C ¸À¸ì¤Î¥¨¥¹¥±¡¼¥×¤ò»È¤¤,
                              ³Èĥʸ»ú¤ò´Þ¤á¤Ê¤¤
      --flag=WORD:ARG:FLAG    ¥­¡¼¥ï¡¼¥É WORD ¤Î°ú¿ô¤Î¿ô ARG °ÊÆâ¤Îʸ»úÎó¤ËÂФ¹¤ë
                              Éղåե饰
      --force-po              ¶õ¤Ç¤¢¤Ã¤Æ¤â PO ¥Õ¥¡¥¤¥ë¤ò½ñ¤­½Ð¤¹
      --foreign-user          ¾¹ñ¤Î¥æ¡¼¥¶¸þ¤±¤Ë½ÐÎÏÃæ¤Î FSF Ãøºî¸¢¤ò¾Êά
      --from-code=NAME           ÆþÎÏ¥Õ¥¡¥¤¥ë¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°
                                         (Python, Tcl, Glade °Ê³°)
      --fuzzy                 --only-fuzzy --clear-fuzzy ¤ÈƱ¤¸
      --ignore-file=FILE.po   FILE.po ¤Ë¤Ê¤¤¥¨¥ó¥È¥ê¤Î¤ß½èÍý
      --indent                »ú²¼¤²·Á¼°¤Î½ÐÎÏ
      --java2                 --java ¤ÈƱ¤¸¤Ç Java2 (JDK 1.2 °Ê¹ß) ¤ò²¾Äê
      --keep-header           ¥Ø¥Ã¥À¤Î¥¨¥ó¥È¥ê¤ò½¤Àµ¤»¤º¤ËÊÝ»ý
      --msgid-bugs-address=EMAIL@ADDRESS  msgid ¤Î¥Ð¥°Êó¹ðÍÑ¥¢¥É¥ì¥¹¤òÀßÄê
      --no-escape             ½ÐÎÏ¤Ë C ¸À¸ì¤Î¥¨¥¹¥±¡¼¥×¤ò»È¤ï¤Ê¤¤ (ɸ½à)
      --no-fuzzy              'fuzzy' ¥Þ¡¼¥¯ÉÕ¤­¤Î¥á¥Ã¥»¡¼¥¸¤òºï½ü
      --no-hash               ¥Ð¥¤¥Ê¥ê¥Õ¥¡¥¤¥ë¤Ï¥Ï¥Ã¥·¥å¥Æ¡¼¥Ö¥ë¤ò´Þ¤Þ¤Ê¤¤
      --no-location           '#: ¥Õ¥¡¥¤¥ë̾:¹ÔÈÖ¹æ' ¤Î¹Ô¤ò½ñ¤­½Ð¤µ¤Ê¤¤
      --no-location           '#: filename:line' ¤Î¹Ô¤ò½ÐÎϤ·¤Ê¤¤
      --no-obsolete           ÇѤ줿 #~ ¥á¥Ã¥»¡¼¥¸¤òºï½ü
      --no-translator         PO ¥Õ¥¡¥¤¥ë¤¬¼«Æ°À¸À®¤µ¤ì¤ë¤È²¾Äê
      --no-wrap               ½ÐÎÏ¥Ú¡¼¥¸¤ÎÉý¤è¤êŤ¤¥á¥Ã¥»¡¼¥¸¹Ô¤ò²þ¹Ô¤·¤Ê¤¤
      --obsolete              --only-obsolete --clear-obsolete ¤ÈƱ¤¸
      --omit-header           `msgid ""' ¤ò´Þ¤ó¤À¥Ø¥Ã¥À¤ò½ÐÎϤ·¤Ê¤¤
      --only-file=FILE.po     FILE.po ¤Ë¤¢¤ë¥¨¥ó¥È¥ê¤Î¤ß½èÍý
      --only-fuzzy            'fuzzy' ¥Þ¡¼¥¯ÉÕ¤­¤Î¥á¥Ã¥»¡¼¥¸¤ò»Ä¤¹
      --only-obsolete         ÇѤ줿 #~ ¥á¥Ã¥»¡¼¥¸¤ò»Ä¤¹
      --properties-output     Java .properties ¥Õ¥¡¥¤¥ë¤ò½ÐÎÏ
      --qt                    Qt ¥â¡¼¥É: Qt .qm ¥Õ¥¡¥¤¥ë¤ÎÀ¸À®
      --qt                    Qt ·Á¼°¤Îʸ»úÎó¤òǧ¼±
      --set-fuzzy             Á´¤Æ¤Î¥á¥Ã¥»¡¼¥¸¤ò 'fuzzy' ¤ËÀßÄê
      --set-obsolete          Á´¤Æ¤Î¥á¥Ã¥»¡¼¥¸¤ò 'ÇѤ줿' ¾õÂÖ¤ËÀßÄê
      --sort-by-file          ¥Õ¥¡¥¤¥ë¤Ç½ÐÎϤò¥½¡¼¥È
      --sort-output           ¥½¡¼¥È¤µ¤ì¤¿½ÐÎϤòÀ¸À®
      --statistics            ËÝÌõ¤Ë´Ø¤¹¤ëÅý·×¾ðÊó¤òɽ¼¨
      --strict                ¸·Ì©¤Ê Uniforum ¥â¡¼¥É¤òÍ­¸ú¤Ë
      --strict                ¸·Ì©¤Ê Uniforum ½ÐÎÏ·Á¼°
      --strict                ¸·Ì©¤Ê Uniforum ·Á¼°¤Î .po ¥Õ¥¡¥¤¥ë¤ò½ÐÎÏ
      --strict                ¸·Ì©¤Ê Uniforum ·Á¼°¤Ç½ÐÎÏ
      --stringtable-input     ÆþÎÏ¥Õ¥¡¥¤¥ë¤Ï NeXTstep/GNUstep .strings ¤Îʸˡ
      --stringtable-input     ÆþÎÏ¥Õ¥¡¥¤¥ë¤Ï NeXTstep/GNUstep .strings ¤Îʸˡ
      --stringtable-output    NeXTstep/GNUstep .strings ¥Õ¥¡¥¤¥ë¤ò½ÐÎÏ
      --suffix=SUFFIX         Ä̾ï¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×ÀÜÈø¼­¤ò¾å½ñ¤­
      --tcl                   Tcl ¥â¡¼¥É: tcl/msgcat .msg ¥Õ¥¡¥¤¥ë¤ÎÀ¸À®
      --tcl                   Tcl ¥â¡¼¥É: ÆþÎÏ¤Ï tcl/msgcat .msg ¥Õ¥¡¥¤¥ë
      --translated            ËÝÌõ¤µ¤ì¤¿¥á¥Ã¥»¡¼¥¸¤ò»Ä¤·, ̤ËÝÌõ¤òºï½ü
      --untranslated          ̤ËÝÌõ¤Î¥á¥Ã¥»¡¼¥¸¤ò»Ä¤·, ËÝÌõ¤µ¤ì¤¿¤â¤Î¤òºï½ü
      --use-first             ³Æ¡¹¤Î¥á¥Ã¥»¡¼¥¸¤ÎºÇ½é¤ËÍ­¸ú¤ÊËÝÌõ¤ò»È¤¦
                              Ê£¿ô¤ÎËÝÌõ¤ò¥Þ¡¼¥¸¤·¤Ê¤¤
  -<, --less-than=NUMBER      NUMBER ¤è¤ê¾¯¤Ê¤¤²ó¿ô¤À¤±ÄêµÁ¤µ¤ì¤¿¥á¥Ã¥»¡¼¥¸
                              ¤ò½ÐÎÏ. ÀßÄꤵ¤ì¤Ê¤¤¾ì¹ç¤Ïɸ½à¤Ç̵¸Â¸Ä
  ->, --more-than=NUMBER      NUMBER ¤è¤ê¿¤¯ÄêµÁ¤µ¤ì¤¿¥á¥Ã¥»¡¼¥¸¤ò½ÐÎÏ
                              ÀßÄꤵ¤ì¤Ê¤¤¾ì¹ç¤Ïɸ½à¤Ç 0
  ->, --more-than=NUMBER      NUMBER ¤è¤ê¿¤¯ÄêµÁ¤µ¤ì¤¿¥á¥Ã¥»¡¼¥¸¤ò½ÐÎÏ
                              ÀßÄꤵ¤ì¤Ê¤¤¾ì¹ç¤Ïɸ½à¤Ç 1
  -C, --c++                   --language=C++ ¤Îû½Ì·Á
  -C, --check-compatibility   GNU msgfmt ¤Î X/Open msgfmt ¤È¤Î¸ß´¹À­¤ò³Îǧ
  -C, --compendium=FILE       ¥á¥Ã¥»¡¼¥¸ËÝÌõ¤ÎÄɲÃʸ¸¥
                              1²ó°Ê¾å»ØÄꤵ¤ì¤ë²ÄǽÀ­¤¢¤ê
  -D, --directory=DIRECTORY   ÆþÎÏ¥Õ¥¡¥¤¥ë¤Î¸¡º÷¥ê¥¹¥È¤Ë DIRECTORY ¤òÄɲÃ
  -E, --escape                ½ÐÎÏ¤Ë C ¸À¸ì¤Î¥¨¥¹¥±¡¼¥×¤ò»È¤¤,
                              ³Èĥʸ»ú¤ò´Þ¤á¤Ê¤¤
  -F, --sort-by-file          ¥Õ¥¡¥¤¥ë¤Ç½ÐÎϤò¥½¡¼¥È
  -L, --language=NAME         »ØÄꤵ¤ì¤¿¸À¸ì¤òǧ¼±
                                (C, C++, ObjectiveC, PO, Shell, Python, Lisp,
                                EmacsLisp, librep, Scheme, Smalltalk, Java,
                                JavaProperties, C#, awk, YCP, Tcl, Perl, PHP,
                                GCC-source, NXStringTable, RST, Glade)
  -M, --msgstr-suffix[=STRING]  msgstr ¹àÌܤÎÀÜÈø¼­¤Ë STRING ¤« "" ¤ò»ÈÍÑ
  -N, --no-fuzzy-matching     ¤¢¤¤¤Þ¤¤¸¡º÷¤ò¹Ô¤ï¤Ê¤¤
  -P, --properties-input      ÆþÎÏ¥Õ¥¡¥¤¥ë¤Ï Java .properties ¤Îʸˡ
  -P, --properties-input      ÆþÎÏ¥Õ¥¡¥¤¥ë¤Ï Java .properties ¤Îʸˡ
  -T, --trigraphs             ÆþÎϤµ¤ì¤¿ ANSI C ¥È¥é¥¤¥°¥é¥Õ¤òǧ¼±
  -U, --update                def.po ¤ò¹¹¿·
                              def.po ¤¬´û¤ËºÇ¿·ÈǤǤ¢¤ì¤Ð²¿¤â¤·¤Ê¤¤
  -V, --version               ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»
  -a, --alignment=NUMBER      ʸ»úÎó¤ò NUMBER ¥Ð¥¤¥È¤Ë·¤¨¤ë (ɸ½à: %d)
  -a, --extract-all           Á´¤Æ¤Îʸ»úÎó¤òÃê½Ð
  -c, --add-comments[=TAG]     TAG (¤Þ¤¿¤Ï¥­¡¼¥ï¡¼¥É¹Ô) ¤òÉÕ¤±¤Æ
                               ¥³¥á¥ó¥ÈÉôʬ¤ò½ÐÎÏ¥Õ¥¡¥¤¥ë¤ËÆþ¤ì¤ë
  -c, --check                 --check-format, --check-header, --check-domain
                              ¤Ç»ØÄꤵ¤ì¤ëÁ´¤Æ¤Î¥Á¥§¥Ã¥¯¤ò¹Ô¤Ê¤¦
  -d DIRECTORY                ¥í¥«¡¼¥ë°Í¸¤Î .dll ¥Õ¥¡¥¤¥ë¤Î´ðËܥǥ£¥ì¥¯¥È¥ê
  -d DIRECTORY                .msg ¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Î´ðËܥǥ£¥ì¥¯¥È¥ê
  -d DIRECTORY                ¥¯¥é¥¹¥Ç¥£¥ì¥¯¥È¥ê¤Î³¬ÁؤδðËܥǥ£¥ì¥¯¥È¥ê
  -d, --default-domain=NAME   ½ÐÎÏ¤Ë NAME.po ¤ò»ÈÍÑ (message.po ¤ÎÂå¤ï¤ê)
  -d, --repeated              ½ÅÊ£¤·¤Æ¤¤¤ë¤â¤Î¤Î¤ß¤òɽ¼¨
  -e, --expression=SCRIPT     ¼Â¹Ô¤µ¤ì¤ë¥³¥Þ¥ó¥É¤Ë SCRIPT ¤òÄɲÃ
  -e, --no-escape             ½ÐÎÏ¤Ë C ¸À¸ì¤Î¥¨¥¹¥±¡¼¥×¤ò»È¤ï¤Ê¤¤ (ɸ½à)
  -f, --file=SCRIPTFILE       SCRIPTFILE ¤ÎÆâÍƤò¼Â¹Ô¤µ¤ì¤ë¥³¥Þ¥ó¥É¤ËÄɲÃ
  -f, --files-from=FILE       ÆþÎÏ¥Õ¥¡¥¤¥ë¤Î¥ê¥¹¥È¤ò FILE ¤«¤é¼èÆÀ
  -f, --fqdn, --long          Ť¤¥Û¥¹¥È̾, FQDN (Fully Qualified Domain Name)
                                ¤ÈÊÌ̾ (¥¨¥¤¥ê¥¢¥¹) ¤ò´Þ¤à
  -f, --use-fuzzy             fuzzy (¤¢¤¤¤Þ¤¤) ¹àÌܤò½ÐÎϤ˻Ȥ¦
  -h, --help                  ¤³¤Î¥Ø¥ë¥×¤òɽ¼¨¤·¤Æ½ªÎ»
  -i, --indent                »ú²¼¤²·Á¼°¤Î½ÐÎÏ
  -i, --indent                »ú²¼¤²·Á¼°¤Î½ÐÎÏ
  -i, --indent                »ú²¼¤²·Á¼°¤Ç .po ¥Õ¥¡¥¤¥ë¤ò½ÐÎÏ
  -i, --input=INPUTFILE       ÆþÎϤ¹¤ë PO ¥Õ¥¡¥¤¥ë
  -i, --input=INPUTFILE       ÆþÎϤ¹¤ë POT ¥Õ¥¡¥¤¥ë
  -i, --ip-address            ¥Û¥¹¥È̾¤ËÂФ¹¤ë¥¢¥É¥ì¥¹
  -j, --java                  Java ¥â¡¼¥É: Java ResourceBundle ¥¯¥é¥¹¤ÎÀ¸À®
  -j, --java                  Java ¥â¡¼¥É: ÆþÎÏ¤Ï Java ResourceBundle ¥¯¥é¥¹
  -j, --join-existing         ¸ºß¤¹¤ë¥Õ¥¡¥¤¥ë¤È¥á¥Ã¥»¡¼¥¸¤ò·ë¹ç
  -k, --keyword[=WORD]         µá¤á¤ë¥­¡¼¥ï¡¼¥É¤Î»ØÄê (WORD ¤¬»ØÄꤵ¤ì
                               ¤Ê¤¤¾ì¹ç¤Ïɸ½à¤Î¥­¡¼¥ï¡¼¥É¤Ï»È¤ï¤ì¤Ê¤¤)
  -l, --locale=LL_CC          ÂоݤȤʤë¥í¥«¡¼¥ë¤òÀßÄê
  -l, --locae=LOCALE          ¥í¥«¡¼¥ë̾. ¸À¸ì̾¤â¤·¤¯¤Ï "¸À¸ì̾_¹ñ̾"
  -m, --msgstr-prefix[=STRING]  msgstr ¹àÌܤÎÀÜƬ¼­¤Ë STRING ¤« "" ¤ò»ÈÍÑ
  -m, --multi-domain          ref.pot ¤ò def.po Æâ¤Î¥É¥á¥¤¥ó¤Î³Æ¡¹¤ËŬÍÑ
  -n, --add-location          '#: ¥Õ¥¡¥¤¥ë̾:¹ÔÈÖ¹æ' ¤Î¹Ô¤òÀ¸À® (ɸ½à)
  -n, --quiet, --silent       ¥Ñ¥¿¡¼¥ó¥¹¥Ú¡¼¥¹¤Î¼«Æ°Åª¤Êɽ¼¨¤òÍÞÀ©
  -o, --output-file=FILE      »ØÄꤵ¤ì¤¿ PO ¥Õ¥¡¥¤¥ë¤Ë½ÐÎÏ
  -o, --output-file=FILE      »ØÄꤷ¤¿¥Õ¥¡¥¤¥ë¤Ë½ÐÎÏ
  -o, --output=FILE           »ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤Ë½ÐÎÏ
  -p, --output-dir=DIR        ¥Ç¥£¥ì¥¯¥È¥ê DIR ¤Ë¥Õ¥¡¥¤¥ë¤ò½ÐÎÏ
  -p, --properties-output     Java .properties ¥Õ¥¡¥¤¥ë¤ò½ÐÎÏ
  -q, --quiet, --silent       ¿Ê¹Ô¾õ¶·¤òɽ¼¨¤·¤Ê¤¤
  -r, --resource=RESOURCE     ¥ê¥½¡¼¥¹Ì¾
  -s, --short                 û¤¤¥Û¥¹¥È̾
  -s, --sort-output           ¥½¡¼¥È¤µ¤ì¤¿½ÐÎϤòÀ¸À®
  -t, --to-code=NAME          ½ÐÎϤΥ¨¥ó¥³¡¼¥Ç¥£¥ó¥°
  -u, --unique                Í£°ì¤Î¥á¥Ã¥»¡¼¥¸¤Î¤ß¤òɽ¼¨¤·, ½ÅÊ£¤ò̵»ë
  -u, --unique                --less-than=2 ¤Îû½Ì·Á. 1¤Ä¤·¤«¤Ê¤¤¥á¥Ã¥»¡¼¥¸
                              ¤Î¤ß¤òɽ¼¨
  -v, --verbose               ¿ÇÃÇ¥ì¥Ù¥ë¤ò¾å¤²¤ë
  -w, --width=NUMBER          ½ÐÎÏ¥Ú¡¼¥¸¤ÎÉý¤òÀßÄê
  -x, --exclude-file=FILE.po  FILE.po ¤«¤é¤Î¹àÌܤÏÃê½Ð¤µ¤ì¤Ê¤¤
  FILE ...                    ÆþÎϤ¹¤ë .mo ¥Õ¥¡¥¤¥ë
  INPUTFILE                   ÆþÎÏ PO ¥Õ¥¡¥¤¥ë
  INPUTFILE                   ÆþÎϤ¹¤ë PO ¤Þ¤¿¤Ï POT ¥Õ¥¡¥¤¥ë
  INPUTFILE ...               ÆþÎÏ¥Õ¥¡¥¤¥ë
  def.po                      ËÝÌõ
  def.po                      ¸Å¤¤¥½¡¼¥¹¤ËÂФ¹¤ë»²¾ÈËÝÌõ
  filename.po ...             ÆþÎÏ¥Õ¥¡¥¤¥ë
  ref.pot                     ¿·¤·¤¤¥½¡¼¥¹¤ËÂФ¹¤ë»²¾È
  ref.pot                     ¥½¡¼¥¹¤Ø¤Î»²¾È
 ´°Î».
%d ¸Ä¤ÎËÝÌõ¥á¥Ã¥»¡¼¥¸%s ¤È %s ¤ÏÇØÈ¿¤Ç¤¹%s ¤ÈÌÀ¼¨Åª¤Ë»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë̾¤ÏÇØÈ¿¤Ç¤¹%s ¤Ï %s ¤¬¤¢¤ë¾ì¹ç¤Ë¤Î¤ßÍ­¸ú¤Ç¤¹%s ¤Ï %s ¤Þ¤¿¤Ï %s ¤¬¤¢¤ë¾ì¹ç¤Ë¤Î¤ßÍ­¸ú¤Ç¤¹%s ¤Ï %s, %s ¤Þ¤¿¤Ï %s ¤¬¤¢¤ë¾ì¹ç¤Ë¤Î¤ßÍ­¸ú¤Ç¤¹%s ¤Ë¤Ï "-d ¥Ç¥£¥ì¥¯¥È¥ê" ¤Î»ØÄ꤬ɬÍפǤ¹%s ¤Ë¤Ï "-l ¥í¥«¡¼¥ë" ¤Î»ØÄ꤬ɬÍפǤ¹%s ¥µ¥Ö¥×¥í¥»¥¹%s ¥µ¥Ö¥×¥í¥»¥¹Æþ½ÐÎÏ¥¨¥é¡¼%s ¥µ¥Ö¥×¥í¥»¥¹¤¬¼ºÇÔ¤·¤Þ¤·¤¿%s ¥µ¥Ö¥×¥í¥»¥¹¼ºÇÔ, ½ªÎ»¥³¡¼¥É %d%s ¥µ¥Ö¥×¥í¥»¥¹¤¬Ã×̿Ū¤Ê¥·¥°¥Ê¥ë %d ¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿%s ¥µ¥Ö¥×¥í¥»¥¹¤¬½ªÎ»¥³¡¼¥É %d ¤Ç½ªÎ»%s%s: ·Ù¹ð: %s: "%s" ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤«¤é "%s" ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ËÊÑ´¹¤¹¤ëºÝ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿%s: ÉÔÀµ¤Ê¥ª¥×¥·¥ç¥ó -- %c
%s: ÆþÎÏ¤Ï "%s" ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Ë¤ª¤¤¤ÆÍ­¸ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó%s: ̵¸ú¤Ê¥ª¥×¥·¥ç¥ó -- %c
%s: ¥ª¥×¥·¥ç¥ó `%c%s' ¤Ë¤Ï°ú¿ô¤Ï¤¢¤ê¤Þ¤»¤ó
%s: ¥ª¥×¥·¥ç¥ó `%s' ¤ÏÛ£Ëæ¤Ç¤¹
%s: ¥ª¥×¥·¥ç¥ó `%s' ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹
%s: ¥ª¥×¥·¥ç¥ó `--%s' ¤Ë¤Ï°ú¿ô¤Ï¤¢¤ê¤Þ¤»¤ó
%s: ¥ª¥×¥·¥ç¥ó `-W %s' ¤Ë¤Ï°ú¿ô¤Ï¤¢¤ê¤Þ¤»¤ó
%s: ¥ª¥×¥·¥ç¥ó `-W %s' ¤ÏÛ£Ëæ¤Ç¤¹
%s: °ú¿ô¤¬É¬Íפʥª¥×¥·¥ç¥ó -- %c
%s: ¥ª¥×¥·¥ç¥ó `%c%s' ¤Ïǧ¼±¤µ¤ì¤Þ¤»¤ó
%s: ¥ª¥×¥·¥ç¥ó `--%s' ¤Ïǧ¼±¤µ¤ì¤Þ¤»¤ó
%s: ·Ù¹ð: ¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ë¤¢¤¤¤Þ¤¤ (fuzzy) ¤ÊËÝÌõ¤¬¤¢¤ê¤Þ¤¹%s:%d: ¥Õ¥¡¥¤¥ë¤ÎºÇ¸å¤ËÉÔ´°Á´¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹.
--from-code ¤Þ¤¿¤Ï http://www.python.org/peps/pep-0263.html ¤Ë¤¢¤ë¥³¥á¥ó¥È¤ò
»È¤Ã¤ÆÀµ¤·¤¤ÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
%s:%d: ¥Õ¥¡¥¤¥ë¤ÎºÇ¸å¤ËÉÔ´°Á´¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹.
--from-code ¤ÇÀµ¤·¤¤ÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
%s:%d: ¹ÔËö¤ËÉÔ´°Á´¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹.
--from-code ¤Þ¤¿¤Ï http://www.python.org/peps/pep-0263.html ¤Ë¤¢¤ë¥³¥á¥ó¥È¤ò
»È¤Ã¤ÆÀµ¤·¤¤ÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
%s:%d: ¹ÔËö¤ËÉÔÀµ¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹.
--from-code ¤ÇÀµ¤·¤¤ÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
%s:%d: ̵¸ú¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹.
--from-code ¤Þ¤¿¤Ï http://www.python.org/peps/pep-0263.html ¤Ë¤¢¤ë¥³¥á¥ó¥È¤ò
»È¤Ã¤ÆÀµ¤·¤¤ÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
%s:%d: ÉÔÀµ¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹.
--from-code ¤ÇÀµ¤·¤¤ÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
%s:%d: ̵¸ú¤Ê¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹.
--from-code ¤Þ¤¿¤Ï http://www.python.org/peps/pep-0263.html ¤Ë¤¢¤ë¥³¥á¥ó¥È¤ò
»È¤Ã¤ÆÀµ¤·¤¤ÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
%s:%d: ÉÔÀµ¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹.
--from-code ¤ÇÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
%s:%d: Ť¤ÉÔ´°Á´¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹.
--from-code ¤Þ¤¿¤Ï http://www.python.org/peps/pep-0263.html ¤Ë¤¢¤ë¥³¥á¥ó¥È¤ò
»È¤Ã¤ÆÀµ¤·¤¤ÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
%s:%d: Ť¤ÉÔ´°Á´¤Ê¥Þ¥ë¥Á¥Ð¥¤¥È¥·¡¼¥±¥ó¥¹.
--from-code ¤ÇÀµ¤·¤¤ÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
%s:%d: EOF ¤ÎÁ°¤Î¤É¤³¤Ë¤âʸ»úÎó½ªÃ¼ "%s" ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó%s:%d: iconv ¤Î¼ºÇÔ%s:%d: ÉÔÀµ¤ÊÊä´Ö ("\L") 8bit ʸ»ú "%c"%s:%d: ÉÔÀµ¤ÊÊä´Ö ("\U") 8bit ʸ»ú "%c"%s:%d: ÉÔÀµ¤ÊÊä´Ö ("\l") 8bit ʸ»ú "%c"%s:%d: ÉÔÀµ¤ÊÊä´Ö ("\u") 8bit ʸ»ú "%c"%s:%d: ÉÔÀµ¤Êʸ»úÎóÄêµÁ%s:%d: ÉÔÀµ¤Êʸ»úÎóɽ¸½%s:%d: "%c" ¤ËÉÔÀµ¤ÊÊÑ¿ôÊä´Ö%s:%d: # ¤Î¸å¤Ë¿ô»ú¤¬¤¢¤ê¤Þ¤»¤ó%s:%d: \x{HEXNUMBER} ¤Ë±¦³ç¸Ì¤¬¤¢¤ê¤Þ¤»¤ó%s:%d: ·Ù¹ð: '}' ¤¬¤¢¤ë¤Ù¤­¤È¤³¤í¤Ë ')' ¤¬¤¢¤ê¤Þ¤¹%s:%d: ·Ù¹ð: ')' ¤¬¤¢¤ë¤Ù¤­¤È¤³¤í¤Ë '}' ¤¬¤¢¤ê¤Þ¤¹%s:%d: ·Ù¹ð: ÉÔÀµ¤Ê Unicode ʸ»ú%s:%d: ·Ù¹ð: ʸ»úÄê¿ô¤Ë½ªÃ¼¤¬¤¢¤ê¤Þ¤»¤ó%s:%d: ·Ù¹ð: Àµµ¬É½¸½¤Ë½ªÃ¼¤¬¤¢¤ê¤Þ¤»¤ó%s:%d: ·Ù¹ð: ʸ»úÎó¤Ë½ªÃ¼¤¬¤¢¤ê¤Þ¤»¤ó%s:%d: ·Ù¹ð: ʸ»úÎóÄê¿ô¤Ë½ªÃ¼¤¬¤¢¤ê¤Þ¤»¤ó%s:%d: ·Ù¹ð: ʸ»úÎó¤Ë½ªÃ¼¤¬¤¢¤ê¤Þ¤»¤ó%s:%lu: ·Ù¹ð: ʸˡ $"..." ¤Ï¥»¥­¥å¥ê¥Æ¥£¾å¤ÎÍýͳ¤Ç¿ä¾©¤µ¤ì¤Þ¤»¤ó. Âå¤ï¤ê¤Ë eval_gettext ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤%s:%lu:%lu: %s%s %ld(Á°¤ÎÈÇ) + %ld(¿·ÈÇ) ¤òÆɤ߹þ¤ß (¥Þ¡¼¥¸ %ld, ¤¢¤¤¤Þ¤¤ %ld, ·çÍî %ld, ÇË´þ %ld).
'̵̾¤·°ú¿ô¤Î¤¢¤ë '%s' ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤òŬÀÚ¤ËÆÃÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó:
ËÝÌõ¼Ô¤Ï°ú¿ô¤òÀ°Íý¤·Ä¾¤¹¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó.
̾Á°ÉÕ¤­°ú¿ô¤Î¤¢¤ë¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤ò»È¤¦¤³¤È, ³î¤Ä°ú¿ô¤ËÂФ·¤ÆÁÈ (tuple)
¤ÎÂå¤ï¤ê¤Ë¥Þ¥Ã¥Ô¥ó¥°¤ò»È¤¦¤³¤È¤ò¸¡Æ¤¤·¤Æ¤¯¤À¤µ¤¤.
'%s' ¤Ï 'msgid' ¤È°ã¤Ã¤ÆÀµ¤·¤¤ %s ·Á¼°¤Îʸ»úÎó¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó. Íýͳ: %s'msgid' ¤Ï %%m ¤Ï»È¤¤¤Þ¤»¤ó¤¬ '%s' ¤Ï»È¤¤¤Þ¤¹'msgid' ¤Ï %%m ¤Ï»È¤¤¤Þ¤¹¤¬ '%s' ¤Ï»È¤¤¤Þ¤»¤ó, %d ¸Ä¤ÎËÝÌõ¤¬¤¢¤¤¤Þ¤¤¤Ç¤¹, %d ¸Ä¤Î̤Ìõ¤Î¥á¥Ã¥»¡¼¥¸- ËÝÌõ¥«¥¿¥í¥°¤ò 'msgconv' ¤ò»È¤Ã¤Æ %s ¤ËÊÑ´¹¤·,
  ¤½¤Î¸å '%s' ¤òŬÍÑ.
  ¹¹¤Ë 'msgconv' ¤ò»È¤Ã¤Æ %s ¤ËÌ᤹.
- LC_ALL ¤ò¥¨¥ó¥³¡¼¥Ç¥£¥ó¥° %s ¤Î¥í¥«¡¼¥ë¤ËÀßÄꤷ,
  ËÝÌõ¥«¥¿¥í¥°¤ò 'msgconv' ¤ò»È¤Ã¤Æ %s ¤ËÊÑ´¹¤·,
  ¤½¤Î¸å '%s' ¤òŬÍÑ.
  ¹¹¤Ë 'msgconv' ¤ò»È¤Ã¤Æ %s ¤ËÌ᤹.
- LC_ALL ¤ò¥¨¥ó¥³¡¼¥Ç¥£¥ó¥° %s ¤Î¥í¥«¡¼¥ë¤ËÀßÄê.
--join-existing ¤Ï½ÐÎÏÀ褬ɸ½à½ÐÎϤξì¹ç¤Ë¤Ï»È¤¨¤Þ¤»¤ó...¤·¤«¤·¤³¤ÎÄêµÁ¤¬»÷¤Æ¤¤¤Þ¤¹<ɸ½àÆþÎÏ><̾Á°¤Ê¤·>--flag °ú¿ô¤Ï <keyword>:<argnum>:[pass-]<flag> ʸˡ¤ò»ý¤Ã¤Æ¤¤¤Þ¤»¤ó: %s'0' ¤È¤¤¤¦ÆÃÊ̤ÊÁȤ߹þ¤ß¥³¥Þ¥ó¥É¤ÏºÇ¸å¤Ë¥Ì¥ëʸ»ú¤òÉÕ¤±¤ÆËÝÌõ¤ò½ÐÎϤ·¤Þ¤¹.
"msgexec 0" ¤Î½ÐÎÏ¤Ï "xargs -0" ¤Ø¤ÎÆþÎϤËŬ¤·¤Æ¤¤¤Þ¤¹.
¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Î°ÌÃ֤ǻȤï¤ì¤Æ¤¤¤Þ¤¹¤¬, %s ¤ÏÀµ¤·¤¤ %s ¥Õ¥©¡¼¥Þ¥Ã¥Èʸ»úÎó¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó. Íýͳ: %s
¤½¤Î¤è¤¦¤ËÀë¸À¤µ¤ì¤Æ¤¤¤Þ¤¹¤¬, '%s' ¤ÏÀµ¤·¤¤ %s ·Á¼°¤Îʸ»úÎó¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó. Íýͳ: %s
ËÝÌõ¥«¥¿¥í¥°¤ÎÁ´¤Æ¤ÎËÝÌõ¤Ë¥³¥Þ¥ó¥É¤òŬÍѤ·¤Þ¤¹.
¡Ö¥³¥Þ¥ó¥É¡×¤Ë¤Ïɸ½àÆþÎϤ«¤éËÝÌõ¤òÆɤ߹þ¤à¤è¤¦¤ÊǤ°Õ¤Î¥×¥í¥°¥é¥à¤ò»ØÄꤹ¤ë
¤³¤È¤¬¤Ç¤­¤Þ¤¹. ¤½¤Î¥×¥í¥°¥é¥à¤Ï³ÆËÝÌõ¤ËÂФ·¤Æ 1²ó¤º¤Ä¸Æ¤Ó½Ð¤µ¤ì, ¹¹¤Ë
¤½¤Î½ÐÎϤ¬ msgexec ¤Î½ÐÎϤˤʤê¤Þ¤¹. msgexec ¤Î½ªÎ»¥³¡¼¥É¤ÏÆâÉô¤«¤é¸Æ¤Ó
½Ð¤µ¤ì¤¿¥×¥í¥°¥é¥à¤Î½ªÎ»¥³¡¼¥É¤ÎºÇÂçÃͤˤʤê¤Þ¤¹.
ËÝÌõ¥«¥¿¥í¥°¤ÎÁ´¤Æ¤ÎËÝÌõ¤Ë¥Õ¥£¥ë¥¿¤òŬÍÑ.
°À­Áàºî:
Bruno Haibleɸ½à¤Ç¤Ï, ÆþÎÏ¥Õ¥¡¥¤¥ë¤Ï ASCII ¤È²¾Äꤵ¤ì¤Þ¤¹.
ɸ½à¤Ç¸À¸ì¤ÏÆþÎÏ¥Õ¥¡¥¤¥ë¤Î³ÈÄ¥»Ò¤Ç¼±Ê̤µ¤ì¤Þ¤¹.
C# ¥³¥ó¥Ñ¥¤¥é¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó. pnet ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤C# ²¾ÁÛ¥Þ¥·¥ó¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó. pnet ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤"%s" ¤«¤é "%s" ¤ËÊÑ´¹¤Ç¤­¤Þ¤»¤ó. %s ¤Ï iconv() ¤Ë°Í¸¤·¤Æ¤¤¤Þ¤¹¤¬,iconv() ¤Ï¤³¤ÎÊÑ´¹¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó."%s" ¤«¤é "%s" ¤ËÊÑ´¹¤Ç¤­¤Þ¤»¤ó. %s ¤Ï iconv() ¤Ë°Í¸¤·¤Æ¤¤¤Þ¤¹.¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ï iconv() ¤Ê¤·¤Çºî¤é¤ì¤Æ¤¤¤Þ¤¹.ʸ»ú¥»¥Ã¥È "%s" ¤ÏÈÆÍѤΥ¨¥ó¥³¡¼¥Ç¥£¥°Ì¾¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.
¥æ¡¼¥¶¤Îʸ»ú¥»¥Ã¥È¤Ø¤Î¥á¥Ã¥»¡¼¥¸¤ÎÊÑ´¹¤Ï¤¦¤Þ¤¯Æ¯¤«¤Ê¤¤¤«¤âÃΤì¤Þ¤»¤ó.
ʸ»ú¥»¥Ã¥È "%s" ¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó. %s ¤Ï iconv() ¤Ë°Í¸¤·¤Þ¤¹¤¬,
iconv() ¤Ï "%s" ¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó.
ʸ»ú¥»¥Ã¥È "%s" ¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó. %s ¤Ï iconv() ¤Ë°Í¸¤·¤Þ¤¹.
¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ï iconv() ̵¤·¤Çºî¤é¤ì¤Þ¤·¤¿.
ʸ»ú¥»¥Ã¥È¤¬¥Ø¥Ã¥À¤Ë¤¢¤ê¤Þ¤»¤ó.
¥æ¡¼¥¶¤Îʸ»ú¥»¥Ã¥È¤Ø¤Î¥á¥Ã¥»¡¼¥¸ÊÑ´¹¤¬µ¡Ç½¤·¤Þ¤»¤ó.
ÆþÎÏ¥Õ¥¡¥¤¥ë¸À¸ì¤ÎÁªÂò:
2¤Ä¤Î Uniforum ·Á¼°¤Î .po ¥Õ¥¡¥¤¥ë¤òÈæ³Ó¤·¤ÆξÊý¤¬Æ±¤¸ msgid ¤Îʸ»úÎó¤ÎÁȤò
´Þ¤ó¤Ç¤¤¤ë¤«¤É¤¦¤«¤ò³Îǧ¤·¤Þ¤¹. def.po ¥Õ¥¡¥¤¥ë¤Ï°ÊÁ°¤ÎËÝÌõ¤¬µ­½Ò¤µ¤ì¤¿
PO ¥Õ¥¡¥¤¥ë¤Ç¤¹. ref.pot ¥Õ¥¡¥¤¥ë¤ÏºÇ¿·¤Î PO ¥Õ¥¡¥¤¥ë, ¤â¤·¤¯¤Ï PO ¤Î¥Æ¥ó¥×
¥ì¡¼¥È¥Õ¥¡¥¤¥ë (°ìÈÌ¤Ë xgettext ¤Ë¤è¤êÀ¸À®¤µ¤ì¤ë) ¤Ç¤¹. ¤³¤ì¤Ï¥×¥í¥°¥é¥àÃæ¤Î
³Æ¡¹¤Î¥á¥Ã¥»¡¼¥¸¤Þ¤¿¤ÏÁ´¤Æ¤Î¥á¥Ã¥»¡¼¥¸¤òËÝÌõ¤·¤¿¤«¤É¤¦¤«¤ò³Îǧ¤¹¤ë¤Î¤ËÊØÍø¤Ç¤¹.
Àµ³Î¤Ë°ìÃפ·¤Æ¤¤¤ë¸Ä½ê¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¤Ï, ¤¢¤¤¤Þ¤¤ (fuzzy) ¸¡º÷¤ò»È¤¦¤È
¤è¤êÎɤ¤¿ÇÃÇ¥á¥Ã¥»¡¼¥¸¤¬ÆÀ¤é¤ì¤Þ¤¹.
»ØÄꤵ¤ì¤¿ PO ¥Õ¥¡¥¤¥ë¤òÏ¢·ë¤·¡¢¥Þ¡¼¥¸¤·¤Þ¤¹.
2¤Ä¤Þ¤¿¤Ï¤½¤ì°Ê¾å¤Î»ØÄꤵ¤ì¤¿ PO ¥Õ¥¡¥¤¥ë¤Ç¶¦Ä̤ʥá¥Ã¥»¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤¹.
--more-than ¥ª¥×¥·¥ç¥ó¤ò»È¤¦¤³¤È¤Ç, ɽ¼¨¤¹¤ë¥á¥Ã¥»¡¼¥¸¤Î¶¦ÄÌÀ­¤ò¹â¤¤¤â¤Î¤Ë
»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹. µÕ¤Ë, --less-than ¥ª¥×¥·¥ç¥ó¤Çɽ¼¨¤¹¤ë¥á¥Ã¥»¡¼¥¸¤Î
¶¦ÄÌÀ­¤òÄ㤯»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹ (¤Ä¤Þ¤ê, --less-than=2 ¤Ï 1¤Ä¤·¤«¤Ê¤¤
¥á¥Ã¥»¡¼¥¸¤Î¤ß¤ò½ÐÎϤ¹¤ë¤È¤¤¤¦¤³¤È¤Ë¤Ê¤ê¤Þ¤¹). ËÝÌõ¤ä¥³¥á¥ó¥È, Ãê½Ð¤µ¤ì¤¿
¥³¥á¥ó¥È¤Ï¤½¤Î¤Þ¤Þ»Ä¤µ¤ì¤Þ¤¹. ¤¿¤À¤· --use-first ¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¤Ë¤Ï, ¤½¤ì¤é
¤¬ÄêµÁ¤µ¤ì¤¿ºÇ½é¤Î PO ¥Õ¥¡¥¤¥ë¤Î¤â¤Î¤¬¤½¤Î¤Þ¤Þ»Ä¤µ¤ì¤Þ¤¹. ¤Þ¤¿¥Õ¥¡¥¤¥ë¤Î°ÌÃÖ
¤ÏÁ´¤Æ¤Î PO ¥Õ¥¡¥¤¥ë¤«¤é¤½¤Î¤Þ¤Þ»Ä¤µ¤ì¤Þ¤¹.
¤È¤Ë¤«¤¯Â³¤±¤Þ¤¹¤¬, ʸˡ¥¨¥é¡¼¤òµ¯¤³¤¹¤Ç¤·¤ç¤¦.¤È¤Ë¤«¤¯Â³¤±¤Þ¤¹."%s" ¤«¤é "%s" ¤Ø¤ÎÊÑ´¹¤¬½ÅÊ£, ¤¤¤¯¤Ä¤«¤Î°Û¤Ê¤Ã¤¿ msgid ¤¬Åù¤·¤¯¤Ê¤Ã¤Æ¤¤¤Þ¤¹.¥Õ¥¡¥¤¥ë %s ¤Î %s ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤«¤é %s ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Ø¤ÎÊÑ´¹¤Ï
¤¤¤¯¤Ä¤«¤Î msgid ¤ä msgctxt ¤òÊѹ¹¤·¤Þ¤¹.
Á´¤Æ¤Î msgid ¤È msgctxt ¤ò½ã¿è¤Ê ASCII ¤ËÊÑ´¹¤¹¤ë¤«, ¤½¤ì¤é¤¬ºÇ½é¤«¤é, ¤Ä¤Þ¤ê
¥½¡¼¥¹¥³¡¼¥É¥Õ¥¡¥¤¥ë¤ÎÃæ¤Ç, UTF-8 ¤Ç¥¨¥ó¥³¡¼¥É¤µ¤ì¤Æ¤¤¤ë¤³¤È¤òÊݾڤ¹¤ë¤«
¤É¤Á¤é¤«¤Ç¤¹.
ÊÑ´¹ÂоÝ:
¥Ð¥¤¥Ê¥ê¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤ò Uniforum ·Á¼°¤Î .po ¥Õ¥¡¥¤¥ë¤ËÊÑ´¹.
ËÝÌõ¥«¥¿¥í¥°¤ò°Û¤Ê¤Ã¤¿Ê¸»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ËÊÑ´¹.
Copyright (C) %s Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

[»²¹ÍÌõ]
¤³¤ì¤Ï¥Õ¥ê¡¼¡¦¥½¥Õ¥È¥¦¥§¥¢¤Ç¤¹. ¥³¥Ô¡¼¤Î¾ò·ï¤Ë¤Ä¤¤¤Æ¤Ï¥½¡¼¥¹¤ò¤ªÆɤߤ¯¤À¤µ¤¤.
»Ô¾ìÀ­µÚ¤ÓÆÃÄêÌÜŪŬ¹çÀ­¤ÎÇ¡²¿¤Ë¤è¤é¤º, ¤¤¤«¤Ê¤ëÊݾڤ⤢¤ê¤Þ¤»¤ó.

%s ¤òÀ¸À®.
¿·¤·¤¤ PO ¥Õ¥¡¥¤¥ë¤òºîÀ®. ¥æ¡¼¥¶´Ä¶­¤«¤é¤ÎÃͤǥ᥿¾ðÊó¤ò½é´ü²½¤·¤Þ¤¹.
±Ñ¸ì¤ÎËÝÌõ¥«¥¿¥í¥°¤òÀ¸À®. ÆþÎÏ¥Õ¥¡¥¤¥ë¤ÏºÇ¿·¤Î±Ñ¸ìÈÇ PO ¥Õ¥¡¥¤¥ë, ¤â¤·¤¯¤Ï
PO ¥Æ¥ó¥×¥ì¡¼¥È¥Õ¥¡¥¤¥ë (°ìÈÌ¤Ë xgettext ¤Ë¤è¤Ã¤ÆÀ¸À®) ¤Ç¤¹. ̤ËÝÌõ¤Î¥¨¥ó¥È¥ê
¤Ï msgid ¤ÈƱ¤¸ËÝÌõ¤Ë³ä¤êÅö¤Æ¤é¤ì¤Þ¤¹.
Danilo Segan¥¨¥é¡¼¥³¡¼¥É 0x%08x ¤Ç DuplicateHandle ¼ºÇÔ¶õ¤Î msgid. GNU gettext ¤ÇͽÌ󤵤ì¤Æ¤¤¤Þ¤¹:
gettxt("") ¤Ï¥á¥¿¾ðÊó¤ÎÉÕ¤¤¤¿¥Ø¥Ã¥À¥¨¥ó¥È¥ê¤òÊÖ¤·¤Þ¤¹¤¬
¶õ¤Îʸ»úÎó¤ÏÊÖ¤·¤Þ¤»¤ó.
%s ¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ¹¤ë±ÑÌõÍ¿¤¨¤é¤ì¤¿ÆþÎÏ¥Õ¥¡¥¤¥ë¤«¤éËÝÌõ²Äǽ¤Êʸ»úÎó¤ò¼è¤ê½Ð¤·¤Þ¤¹.
ËÝÌõ¥«¥¿¥í¥°¤ÎÃ椫¤é, »ØÄꤵ¤ì¤¿¥Ñ¥¿¡¼¥ó¤Ë°ìÃפ¹¤ë, ¤â¤·¤¯¤Ï»ØÄꤵ¤ì¤¿¤¤¤¯¤Ä
¤«¤Î¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ë´Þ¤Þ¤ì¤ëÁ´¤Æ¤Î¥á¥Ã¥»¡¼¥¸¤ò¼è¤ê½Ð¤·¤Þ¤¹.
URL ¤ÎÆâÍƤò¼èÆÀ¤·½ÐÎϤ·¤Þ¤¹. ¤â¤·¤½¤Î URL ¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Ê¤±¤ì¤Ð,
¥í¡¼¥«¥ë¤Ë¥¢¥¯¥»¥¹²Äǽ¤Ê FILE ¤¬Âå¤ï¤ê¤Ë»È¤ï¤ì¤Þ¤¹.
°À­¤Ë½¾¤Ã¤ÆËÝÌõ¥«¥¿¥í¥°¤Î¥á¥Ã¥»¡¼¥¸¤òÁªÊ̤·, °À­¤ò¤¦¤Þ¤¯Áàºî¤·¤Þ¤¹.
2¤Ä¤Þ¤¿¤Ï¤½¤ì°Ê¾å¤Î»ØÄꤵ¤ì¤¿ PO ¥Õ¥¡¥¤¥ë¤Ç¶¦Ä̤ʥá¥Ã¥»¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤¹.
--more-than ¥ª¥×¥·¥ç¥ó¤ò»È¤¦¤³¤È¤Ç, ɽ¼¨¤¹¤ë¥á¥Ã¥»¡¼¥¸¤Î¶¦ÄÌÀ­¤ò¹â¤¤¤â¤Î¤Ë
»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹. µÕ¤Ë, --less-than ¥ª¥×¥·¥ç¥ó¤Çɽ¼¨¤¹¤ë¥á¥Ã¥»¡¼¥¸¤Î
¶¦ÄÌÀ­¤òÄ㤯»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹ (¤Ä¤Þ¤ê, --less-than=2 ¤Ï 1¤Ä¤·¤«¤Ê¤¤
¥á¥Ã¥»¡¼¥¸¤Î¤ß¤ò½ÐÎϤ¹¤ë¤È¤¤¤¦¤³¤È¤Ë¤Ê¤ê¤Þ¤¹). ËÝÌõ¤ä¥³¥á¥ó¥È, Ãê½Ð¤µ¤ì¤¿
¥³¥á¥ó¥È¤Ï, ¤½¤ì¤é¤¬ÄêµÁ¤µ¤ì¤¿ºÇ½é¤Î PO ¥Õ¥¡¥¤¥ë¤Î¤â¤Î¤Î¤ß¤½¤Î¤Þ¤Þ»Ä¤µ¤ì¤Þ¤¹.
¤Þ¤¿¥Õ¥¡¥¤¥ë¤Î°ÌÃÖ¤ÏÁ´¤Æ¤Î PO ¥Õ¥¡¥¤¥ë¤«¤é¤½¤Î¤Þ¤Þ»Ä¤µ¤ì¤Þ¤¹.
'~%c' ¤¬ '~%c' ¤Ë°ìÃפ·¤Æ¤¤¤Þ¤»¤ó.1¤Ä°Ê¾å¤Î .pot ¥Õ¥¡¥¤¥ë¤ò¸«¤Ä¤±¤Þ¤·¤¿.
--input ¥ª¥×¥·¥ç¥ó¤ÇÆþÎϤ¹¤ë .pot ¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
¥«¥ì¥ó¥È¥Ç¥£¥ì¥¯¥È¥ê¤Ë .pot ¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿.
--input ¥ª¥×¥·¥ç¥ó¤ÇÆþÎϤ¹¤ë .pot ¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
¥Ð¥¤¥Ê¥ê¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤ò¸¶Ê¸¤ÎËÝÌõ¤Îµ­½Ò¤«¤éÀ¸À®.
ÆþÎÏ¥Õ¥¡¥¤¥ë¤¬ - ¤Î¾ì¹ç¤Ïɸ½àÆþÎϤ¬Æɤ߹þ¤Þ¤ì¤Þ¤¹.
ÆþÎÏ¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Ê¤¤, ¤â¤·¤¯¤Ï - ¤Î¾ì¹ç¤Ïɸ½àÆþÎϤ¬Æɤ߹þ¤Þ¤ì¤Þ¤¹.
ÆþÎÏ¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Ê¤¤¾ì¹ç¤Ï¥«¥ì¥ó¥È¥Ç¥£¥ì¥¯¥È¥ê¤Ç POT ¥Õ¥¡¥¤¥ë¤¬¸¡º÷
¤µ¤ì¤Þ¤¹. ¤â¤·ÆþÎÏ¥Õ¥¡¥¤¥ë¤¬ - ¤Ê¤é¤Ðɸ½àÆþÎϤ¬Æɤ߹þ¤Þ¤ì¤Þ¤¹.
½ÐÎÏ¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Ê¤¤¾ì¹ç, ½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ï --locale ¥ª¥×¥·¥ç¥ó¤«¥æ¡¼¥¶¤Î
¥í¥«¡¼¥ëÀßÄê¤Ë°Í¸¤·¤Þ¤¹. ¤â¤· - ¤Ê¤é¤Ð·ë²Ì¤Ïɸ½à½ÐÎϤ˽ÐÎϤµ¤ì¤Þ¤¹.
½ÐÎÏ¥Õ¥¡¥¤¥ë¤¬ - ¤Î¾ì¹ç¤Ïɸ½à½ÐÎϤ˷ë²Ì¤¬½ñ¤­½Ð¤µ¤ì¤Þ¤¹.
Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, "%s" ¤Î¸å¤Ë¥«¥ó¥Þ¤¬Íè¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, '%c' ¤Î¸å¤Ë¿ôÃͤ¬Íè¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, ',' ¤Î¸å¤Ë¿ô»ú¤¬Íè¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, '{' ¤Î¸å¤Ë°ú¿ô¤Î¿ô¤¬Íè¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, '~:[' ¤Î¸å¤Ë '~;' ¤Çʬ¤±¤é¤ì¤¿ 2¤Ä¤ÎÀ᤬¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, '~;' ¤ÏÉÔÀµ¤Ê¾ì½ê¤Ç»È¤ï¤ì¤Æ¤¤¤Þ¤¹.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, ÁªÂò»è¤Ë¿ôÃͤ¬¤¢¤ê, '<', '#' ¤ä '%s' ¤¬¤½¤Î¸å¤Ë¤¯¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, ÁªÂò»è¤Ë¿ôÃͤ¬¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, '%c' ¤ÎÁ°¤ËÀºÅÙ¤¬Íè¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, @ ¤È : ¤ÎξÊý¤Î½¤¾þ»Ò¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, '%c' ¤ÎÁ°¤Ë¥Õ¥é¥°¤¬Íè¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, ¥Ñ¥é¥á¡¼¥¿ %u ¤Ï '%s' ·¿¤Ç¤¹¤¬ '%s' ·¿¤Î¥Ñ¥é¥á¡¼¥¿¤ÏÁÛÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, °ú¿ô %d ¤ÏÉé¤Ç¤¹.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, °ú¿ôÈÖ¹æ 0 ¤ÏÀµ¤ÎÀ°¿ô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, ÀºÅ٤ΰú¿ôÃÍ¤Ï %u ¤ÈÅù¤·¤¯¤Ê¤¯¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, °ú¿ô¤Î¿ô¤Î¸å¤Ë¥«¥ó¥Þ¤ä "%s", "%s", "%s", "%s" ¤ÎÃæ¤Î 1¤Ä¤¬Íè¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, ʸ»ú '%c' ¤Ï 1 ¤«¤é 9 ¤Î´Ö¤Î¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, ʸ»ú '%c' ¤ÏÀµ¤·¤¤ÊÑ´¹µ­½Ò»Ò¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, ¤½¤Î¥Õ¥é¥°¤ÎÁȤ߹ç¤ï¤»¤Ï̵¸ú¤Ç¤¹.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, ÀºÅÙ»ØÄê¤Ï̵¸ú¤Ç¤¹.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, ÀºÅ٤ΰú¿ôÈÖ¹æ 0 ¤ÏÀµ¤ÎÀ°¿ô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, ¥µ¥¤¥º»ØÄê¤ÏÊÑ´¹»ØÄê '%c' ¤È¸ß´¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, "%s" ¤ÏÀµ¤·¤¤ÆüÉÕ¤ä»þ¹ï¤Î·Á¼°¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, "%s" ¤ÏÀµ¤·¤¤¿ôÃͤηÁ¼°¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, '<' ¤Î¸å¤Î¥È¡¼¥¯¥ó¤Î¸å¤Ë '>' ¤¬Íè¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, '<' ¤Î¸å¤Î¥È¡¼¥¯¥ó¤Ï¥Õ¥©¡¼¥Þ¥Ã¥Èµ­½Ò»Ò¥Þ¥¯¥í̾¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó. Àµ¤·¤¤¥Þ¥¯¥í̾¤Ï ISO C 99 ¤Î 7.8.1 Àá¤Ë°ìÍ÷¤¬¤¢¤ê¤Þ¤¹.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, Éý¤Î°ú¿ôÈÖ¹æ 0 ¤ÏÀµ¤ÎÀ°¿ô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Ç¤Ï, »ØÄꤵ¤ì¤¿¥Ñ¥é¥á¡¼¥¿¤¬Â¿¤¹¤®¤Þ¤¹: ¥Ñ¥é¥á¡¼¥¿¤ÏºÇÂç¤Ç¤â %u ¸Ä¤Ç¤¹.¾ðÊó½ÐÎÏ:
ÆþÎÏ¥Õ¥¡¥¤¥ë¤Î²ò¼á:
C# ¥â¡¼¥É¤Ë¤ª¤±¤ëÆþÎÏ¥Õ¥¡¥¤¥ë¤Î¾ì½ê:
Java ¥â¡¼¥É¤Ë¤ª¤±¤ëÆþÎÏ¥Õ¥¡¥¤¥ë¤Î¾ì½ê:
Tcl ¥â¡¼¥É¤Ë¤ª¤±¤ëÆþÎÏ¥Õ¥¡¥¤¥ë¤Î¾ì½ê:
ÆþÎÏ¥Õ¥¡¥¤¥ë¤Î»ØÄê:
ÆþÎÏ¥Õ¥¡¥¤¥ë¤Îʸˡ:
ÆþÎÏ¥Õ¥¡¥¤¥ë¤Ë¤Ï %s ¤ä %s ¤Ê¤É¤Î°Û¤Ê¤Ã¤¿¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Î¥á¥Ã¥»¡¼¥¸¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹.
½ÐÎϤò UTF-8 ¤ËÊÑ´¹¤·¤Þ¤¹.
Ê̤νÐÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤òÁªÂò¤¹¤ë¾ì¹ç¤Ï --to-code ¥ª¥×¥·¥ç¥ó¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤.
ÆþÎÏ¥Õ¥¡¥¤¥ë¤Ë¤Ï°Û¤Ê¤Ã¤¿¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Î¥á¥Ã¥»¡¼¥¸¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹.
½ÐÎϤò UTF-8 ¤ËÊÑ´¹¤·¤Þ¤¹.
GNU libiconv ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤«¤é GNU gettext ¤òºÆ¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ì¤Ð
¤³¤ÎÌäÂê¤Ï²ò·è¤¹¤ë¤Ç¤·¤ç¤¦.
Java ¥³¥ó¥Ñ¥¤¥é¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó. gcj ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤« $JAVAC ¤òÀßÄꤷ¤Æ¤ß¤Æ¤¯¤À¤µ¤¤Java ²¾ÁÛ¥Þ¥·¥ó¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó. gij ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤« $JAVA ¤òÀßÄꤷ¤Æ¤¯¤À¤µ¤¤"glade" ¸À¸ì¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó. %s ¤Ï expat ¤Ë°Í¸¤·¤Þ¤¹.
¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ï expat ¤ò´Þ¤Þ¤º¤Ëºî¤é¤ì¤Þ¤·¤¿.
¸À¸ì»ØÄꥪ¥×¥·¥ç¥ó:
¥í¥«¡¼¥ëʸ»ú¥»¥Ã¥È "%s" ¤Ï
ÆþÎϤÎʸ»ú¥»¥Ã¥È "%s" ¤È°Û¤Ê¤Ã¤Æ¤¤¤Þ¤¹.
'%s' ¤Î½ÐÎϤÏÉÔÀµ³Î¤Ç¤¢¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹.
²Äǽ¤Ê²óÈòºö:
¥í¥«¡¼¥ëʸ»ú¥»¥Ã¥È "%s" ¤Ï²ÄÈÂÀ­¤Î¤¢¤ë¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°Ì¾¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.
'%s' ¤Î½ÐÎϤÏÉÔÀµ³Î¤Ç¤¢¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹.
²Äǽ¤Ê²óÈòºö¤È¤·¤Æ¤Ï LC_ALL=C ¤ÈÀßÄꤷ¤Þ¤¹.
Ť¤¥ª¥×¥·¥ç¥ó¤Ëɬ¿Ü¤Î°ú¿ô¤Ïû¤¤¥ª¥×¥·¥ç¥ó¤Ë¤âɬ¿Ü¤Ç¤¹.
Ť¤¥ª¥×¥·¥ç¥ó¤Ëɬ¿Ü¤Î°ú¿ô¤Ïû¤¤¥ª¥×¥·¥ç¥ó¤Ë¤âɬ¿Ü¤Ç¤¹.
ɬ¿Ü¤Ç¤Ê¤¤°ú¿ô¤âƱ¤¸¤Ç¤¹.
2¤Ä¤Î Uniforum ·Á¼°¤Î .po ¥Õ¥¡¥¤¥ë¤ò 1¤Ä¤Ë¥Þ¡¼¥¸¤·¤Þ¤¹. def.po ¥Õ¥¡¥¤¥ë¤Ï
°ÊÁ°¤ÎËÝÌõ¤¬µ­½Ò¤µ¤ì¤¿ PO ¥Õ¥¡¥¤¥ë¤Ç, °ìÃפ¹¤ë¸Â¤ê¿·¤·¤¯ºî¤é¤ì¤¿¥Õ¥¡¥¤¥ë¤Ë
ÆâÍƤ¬°ú¤­·Ñ¤¬¤ì¤Þ¤¹. ¤Þ¤¿¥³¥á¥ó¥È¤Ï¤½¤Î¤Þ¤Þ»Ä¤µ¤ì¤Þ¤¹¤¬, ¥½¡¼¥¹¤«¤é
È´¤­½Ð¤µ¤ì¤¿¥³¥á¥ó¥È¤È¥Õ¥¡¥¤¥ë¤Î°ÌÃÖ¤ÏÇË´þ¤µ¤ì¤Þ¤¹. ref.po ¥Õ¥¡¥¤¥ë¤Ï
ºÇ¿·¤Î PO ¥Õ¥¡¥¤¥ë (xgettext ¤Ë¤è¤êÀ¸À®) ¤Ç, ¤½¤Î¥Õ¥¡¥¤¥ëÃæ¤Î¤¤¤«¤Ê¤ëËÝÌõ¤ä
¥³¥á¥ó¥È¤âÇË´þ¤µ¤ì¤Þ¤¹. ¤·¤«¤·¥É¥Ã¥È¥³¥á¥ó¥È¤È¥Õ¥¡¥¤¥ë¤Î°ÌÃ֤Ϥ½¤Î¤Þ¤Þ
»Ä¤µ¤ì¤Þ¤¹. Àµ³Î¤Ë°ìÃפ·¤Æ¤¤¤ë¸Ä½ê¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¤Ï, ¤¢¤¤¤Þ¤¤ (fuzzy)
¸¡º÷¤ò»È¤¦¤È¤è¤êÎɤ¤·ë²Ì¤òÀ¸¤à¤Ç¤·¤ç¤¦. 
¥á¥Ã¥»¡¼¥¸ÁªÂò:
¥á¥Ã¥»¡¼¥¸ÁªÂò:
  [-N SOURCEFILE]... [-M DOMAINNAME]...
  [-J MSGCTXT-PATTERN] [-K MSGID-PATTERN] [-T MSGSTR-PATTERN]
  [-C COMMENT-PATTERN] [-X EXTRACTED-COMMENT-PATTERN]
¥á¥Ã¥»¡¼¥¸¤Ï¼¡¤Î¤¦¤Á¤Î¤¤¤º¤ì¤«¤Î¾ì¹ç¤ËÁªÂò¤µ¤ì¤Þ¤¹.
  ¤½¤Î¥á¥Ã¥»¡¼¥¸¤¬»ØÄꤵ¤ì¤¿¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Î 1¤Ä¤Ë¸ºß
  ¤½¤Î¥á¥Ã¥»¡¼¥¸¤¬»ØÄꤵ¤ì¤¿¥É¥á¥¤¥ó¤Î 1¤Ä¤Ë¸ºß
  -J ¤¬»ØÄꤵ¤ì, ¤½¤Îʸ̮ (msgctxt) ¤¬ MSGCTXT-PATTERN ¤Ë°ìÃ×
  -K ¤¬»ØÄꤵ¤ì, ¤½¤Î¥­¡¼ (msgid ¤Þ¤¿¤Ï msgid_plural) ¤¬ MSGID-PATTERN ¤Ë°ìÃ×
  -T ¤¬»ØÄꤵ¤ì, ¤½¤ÎËÝÌõ (msgstr) ¤¬ MSGSTR-PATTERN ¤Ë°ìÃ×
  -C ¤¬»ØÄꤵ¤ì, ËÝÌõ¼Ô¤Î¥³¥á¥ó¥È¤¬ COMMENT-PATTERN ¤Ë°ìÃ×
  -X ¤¬»ØÄꤵ¤ì,Ãê½Ð¤µ¤ì¤¿¥³¥á¥ó¥È¤¬ EXTRACTED-COMMENT-PATTERN ¤Ë°ìÃ×

1¤Ä°Ê¾å¤ÎÁªÂò´ð½à¤¬»ØÄꤵ¤ì¤¿¾ì¹ç, °ìÏ¢¤ÎÁªÂò¤µ¤ì¤¿¥á¥Ã¥»¡¼¥¸¤Ï³Æ´ð½à¤ÇÁªÂò
¤µ¤ì¤¿¥á¥Ã¥»¡¼¥¸¤Î½¸¤Þ¤ê¤Ë¤Ê¤ê¤Þ¤¹.

MSGCTXT-PATTERN ¤Þ¤¿¤Ï MSGID-PATTERN ¤Þ¤¿¤Ï MSGSTR-PATTERN ¤Þ¤¿¤Ï
COMMENT-PATTERN ¤Þ¤¿¤Ï EXTRACTED-COMMENT-PATTERN ¤Îʸˡ:
  [-E | -F] [-e PATTERN | -f FILE]...
PATTERN ¤Ï, ɸ½à¤Ç¤Ï´ðËÜŪ¤ÊÀµµ¬É½¸½, -E ¤¬»ØÄꤵ¤ì¤ì¤Ð³ÈÄ¥Àµµ¬É½¸½,
-F ¤¬»ØÄꤵ¤ì¤ì¤Ð¸ÇÄêʸ»úÎó¤Ë¤Ê¤ê¤Þ¤¹.

  -N, --location=SOURCEFILE   SOURCEFILE ¤«¤é¼è¤ê½Ð¤·¤¿¥á¥Ã¥»¡¼¥¸¤òÁªÂò
  -M, --domain=DOMAINNAME     ¥É¥á¥¤¥ó DOMAINNAME ¤Ë°¤¹¤ë¥á¥Ã¥»¡¼¥¸¤òÁªÂò
  -J, --msgctxt               msgctxt ¤ËÂФ¹¤ë¥Ñ¥¿¡¼¥ó
  -K, --msgid                 msgid ¤ËÂФ¹¤ë¥Ñ¥¿¡¼¥ó
  -T, --msgstr                msgstr ¤ËÂФ¹¤ë¥Ñ¥¿¡¼¥ó
  -C, --comment               ËÝÌõ¼Ô¤Î¥³¥á¥ó¥È¤ËÂФ¹¤ë¥Ñ¥¿¡¼¥ó
  -X, --extracted-comment     Ãê½Ð¤µ¤ì¤¿¥³¥á¥ó¥È¤ËÂФ¹¤ë¥Ñ¥¿¡¼¥ó
  -E, --extended-regexp       PATTERN ¤Ï³ÈÄ¥Àµµ¬É½¸½
  -F, --fixed-strings         PATTERN ¤Ï²þ¹Ô¤Çʬ¤±¤é¤ì¤¿Ê¸»úÎó¤Î½¸¤Þ¤ê
  -e, --regexp=PATTERN        Àµµ¬É½¸½¤È¤·¤Æ PATTERN ¤ò»È¤¦
  -f, --file=FILE             PATTERN ¤ò FILE ¤«¤é»ØÄê
  -i, --ignore-case           Âçʸ»ú¾®Ê¸»ú¤ò¶èÊ̤·¤Ê¤¤
  -v, --invert-match          ¤É¤ÎÁªÂò´ð½à¤Ë¤â°ìÃפ·¤Ê¤¤¥á¥Ã¥»¡¼¥¸¤Î¤ß¤ò½ÐÎÏ
%%%c ¤Ø¤ÎÊ£¿ô²ó¤Î»²¾È%s%s ¤ËÈó ASCII ʸ»úÎó.
--from-code ¤Þ¤¿¤Ï http://www.python.org/peps/pep-0263.html ¤Ë¤¢¤ë¥³¥á¥ó¥È¤ò
»È¤Ã¤ÆÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
%s%s ¤ËÈó ASCII ʸ»úÎó.
--from-code ¤ÇÆþÎÏ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
̤¼ÂÁõ.Áàºî¥â¡¼¥É:
Áàºî»ØÄê:
½ÐÎϤξܺÙ:
½ÐÎÏ¥Õ¥¡¥¤¥ë %s ¤Ï´û¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹.
--locale ¥ª¥×¥·¥ç¥ó¤Ç¥í¥«¡¼¥ë¤ò»ØÄꤹ¤ë¤«, --output-file ¥ª¥×¥·¥ç¥ó¤Ç
½ÐÎϤ¹¤ë .po ¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
C# ¥â¡¼¥É¤Ë¤ª¤±¤ë½ÐÎÏ¥Õ¥¡¥¤¥ë¤Î¾ì½ê:
Java ¥â¡¼¥É¤Ë¤ª¤±¤ë½ÐÎÏ¥Õ¥¡¥¤¥ë¤Î¾ì½ê:
Tcl ¥â¡¼¥É¤Ë¤ª¤±¤ë½ÐÎÏ¥Õ¥¡¥¤¥ë¤Î¾ì½ê:
¹¹¿·¥â¡¼¥É¤Ç¤Î½ÐÎÏ¥Õ¥¡¥¤¥ë¤Î¾ì½ê:
½ÐÎÏ¥Õ¥¡¥¤¥ë¤Î»ØÄê:
½ÐÎÏ·Á¼°:
Peter Miller¥Þ¥·¥ó¤Î¥Û¥¹¥È̾¤òɽ¼¨.
Recode Serbian ¥Æ¥­¥¹¥È ¥­¥ê¥ëʸ»ú¤«¤é¥é¥Æ¥óʸ»ú.
¥Ð¥°¥ì¥Ý¡¼¥È¤Ï <bug-gnu-gettext@gnu.org> ¤Þ¤Ç.
-l ¤È -d ¥ª¥×¥·¥ç¥ó¤Ïɬ¿Ü. .dll ¥Õ¥¡¥¤¥ë¤Ï¥í¥«¡¼¥ë¤Ë°Í¸¤·¤¿Ì¾Á°¤ò»ý¤Ä
»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê¤Î¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤ËÃÖ¤«¤ì¤Þ¤¹.
-l ¤È -d ¥ª¥×¥·¥ç¥ó¤Ïɬ¿Ü¤Ç¤¹. .dll ¥Õ¥¡¥¤¥ë¤Ï¥í¥«¡¼¥ë¤Ë°Í¸¤·¤¿Ì¾Á°¤ò»ý¤Ä
»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê¤Î¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤Ë½ñ¤­½Ð¤µ¤ì¤Þ¤¹.
-l ¤È -d ¥ª¥×¥·¥ç¥ó¤Ïɬ¿Ü. .msg ¥Õ¥¡¥¤¥ë¤Ï»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê¤ËÃÖ¤«¤ì¤Þ¤¹.
-l ¤È -d ¥ª¥×¥·¥ç¥ó¤Ïɬ¿Ü¤Ç¤¹. .msg ¥Õ¥¡¥¤¥ë¤Ï»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê¤Ë½ñ¤­
½Ð¤µ¤ì¤Þ¤¹.
FILTER ¤È¤·¤Æ¤Ï, ɸ½àÆþÎϤ«¤éËÝÌõ¤òÆɤ߼è¤ê, ½¤Àµ¤·¤¿ËÝÌõ¤òɸ½à½ÐÎϤؽñ¤­½Ð¤¹
Ǥ°Õ¤Î¥×¥í¥°¥é¥à¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹.
--suffix ¤ä´Ä¶­ÊÑ¿ô SIMPLE_BACKUP_SUFFIX ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Ê¤±¤ì¤Ð,
¥Ð¥Ã¥¯¥¢¥Ã¥×ÀÜÈø¼­¤Ï `~' ¤Ç¤¹.
Ì¿ÎáÈÖ¹æ %u ¤Î½ªÃ¼Ê¸»ú¤Ï 1 ¤«¤é 9 ¤Î´Ö¤Î¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.Ì¿ÎáÈÖ¹æ %u ¤Î½ªÃ¼Ê¸»ú¤ÏÀµ¤·¤¤ÊÑ´¹µ­½Ò»Ò¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó.¥¯¥é¥¹Ì¾¤Ï, ¥ê¥½¡¼¥¹Ì¾¤ÎËöÈø¤Ë²¼ÉÕ¤­¥Ð¡¼ "_" ¤ò¶´¤ó¤Ç¥í¥«¡¼¥ë̾¤ò²Ã¤¨¤ë¤³¤È
¤Ç·è¤á¤é¤ì¤Þ¤¹. -d ¥ª¥×¥·¥ç¥ó¤Ïɬ¿Ü¤Ç¤¹. ¥¯¥é¥¹¤Ï»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê°Ê²¼¤Ë
½ñ¤­½Ð¤µ¤ì¤Þ¤¹.
¥¯¥é¥¹Ì¾¤Ï, ¥ê¥½¡¼¥¹Ì¾¤ÎËöÈø¤Ë²¼ÉÕ¤­¥Ð¡¼ "_" ¤ò¶´¤ó¤Ç¥í¥«¡¼¥ë̾¤ò²Ã¤¨¤ë¤³¤È
¤Ç·è¤á¤é¤ì¤Þ¤¹. ¥¯¥é¥¹¤Î¾ì½ê¤Ï CLASSPATH ¤Ç»ØÄꤵ¤ì¤Þ¤¹.
ɸ½à¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Ï¸½ºß¤Î¥í¡¼¥«¥ë¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Ç¤¹.
Ì¿ÎáÈÖ¹æ %u ¤¬, '}' ¤ÎÂå¤ï¤ê¤ËÉÔÀµ¤Êʸ»ú '%c' ¤Ç½ª¤ï¤Ã¤Æ¤¤¤Þ¤¹.Ì¿ÎáÈÖ¹æ %u ¤¬, '}' ¤ÎÂå¤ï¤ê¤ËÉÔÀµ¤Êʸ»ú¤Ç½ª¤ï¤Ã¤Æ¤¤¤Þ¤¹.Ì¿ÎáÈÖ¹æ %u ¤¬, | ¤Ç»Ï¤Þ¤Ã¤Æ¤¤¤Þ¤¹¤¬ | ¤Ç½ª¤ï¤Ã¤Æ¤¤¤Þ¤»¤ó.¼¡¤Î msgctxt ¤Ï ASCII °Ê³°¤Îʸ»ú¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹.
¤³¤ì¤Ï, ¤¢¤Ê¤¿¤È¤Ï°ã¤¦Ê¸»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»È¤Ã¤Æ¤¤¤ëËÝÌõ¼Ô¤Ë¤È¤Ã¤Æ
ÌäÂê¤Ë¤Ê¤ê¤Þ¤¹. Âå¤ï¤ê¤Ë ASCII ʸ»ú¤À¤±¤«¤é¤Ê¤ë msgctxt ¤ò»È¤¦¤³¤È¤ò
¸¡Æ¤¤·¤Æ¤¯¤À¤µ¤¤.
%s
¼¡¤Î msgid ¤Ï ASCII °Ê³°¤Îʸ»ú¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹.
¤³¤ì¤Ï, ¤¢¤Ê¤¿¤È¤Ï°ã¤¦Ê¸»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»È¤Ã¤Æ¤¤¤ëËÝÌõ¼Ô¤Ë¤È¤Ã¤Æ
ÌäÂê¤Ë¤Ê¤ê¤Þ¤¹. Âå¤ï¤ê¤Ë ASCII ʸ»ú¤À¤±¤«¤é¤Ê¤ë msgid ¤ò»È¤¦¤³¤È¤ò
¸¡Æ¤¤·¤Æ¤¯¤À¤µ¤¤.
%s
ÆþÎϥƥ­¥¹¥È¤Ïɸ½àÆþÎϤ«¤éÆɤ߹þ¤Þ¤ì¤Þ¤¹. ÊÑ´¹¤µ¤ì¤¿¥Æ¥­¥¹¥È¤Ïɸ½à½ÐÎϤؽÐÎÏ
¤µ¤ì¤Þ¤¹.
¥æ¡¼¥¶¤¬ËÝÌõ¤Ë´Ø¤¹¤ë¥Õ¥£¡¼¥É¥Ð¥Ã¥¯¤ò¤¢¤Ê¤¿¤ËÁ÷¤ë¤³¤È¤¬¤Ç¤­¤ë¤è¤¦¤Ë,
¿·¤·¤¤¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤Ï¤¢¤Ê¤¿¤Î email ¥¢¥É¥ì¥¹¤ò´Þ¤á¤Æ¤¯¤À¤µ¤¤.
¤Þ¤¿¤³¤ì¤Ï, ͽ´ü¤»¤Ìµ»½ÑŪ¤ÊÌäÂ꤬ȯÀ¸¤·¤¿¾ì¹ç¤Ë´ÉÍý¼Ô¤¬¤¢¤Ê¤¿¤ËÏ¢Íí¤¬¼è¤ì¤ë
¤è¤¦¤Ë¤¹¤ë¤È¤¤¤¦ÌÜŪ¤â¤¢¤ê¤Þ¤¹.
¥ª¥×¥·¥ç¥ó --msgid-bugs-address ¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó.
`Makevar' ¥Õ¥¡¥¤¥ë¤ò»È¤Ã¤Æ¤¤¤ë¾ì¹ç¤Ï MSGID_BUGS_ADDRESS ÊÑ¿ô¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
¤â¤·¤¯¤Ï, ¥³¥Þ¥ó¥É¥é¥¤¥ó¥ª¥×¥·¥ç¥ó --msgid-bugs-address ¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤.
·ë²Ì¤Ï def.po ¤Ë½ñ¤­Ìᤵ¤ì¤Þ¤¹.
½ÐÎÏ¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Ê¤¤, ¤â¤·¤¯¤Ï - ¤Î¾ì¹ç¤Ïɸ½à½ÐÎϤ˷ë²Ì¤¬½ñ¤­½Ð¤µ¤ì¤Þ¤¹.
ʸ»úÎó¤¬Ì¿ÎáÈÖ¹æ %u ¤Î¤¢¤È¤ËÊĤ¸¤Æ¤¤¤Ê¤¤ '}' ¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹.ʸ»úÎó¤¬Ì¿Îá¤ÎÅÓÃæ¤Ç½ª¤ï¤Ã¤Æ¤¤¤Þ¤¹.ʸ»úÎó¤ÏÌ¿Îá¤ÎÅÓÃæ¤Ç½ª¤ï¤Ã¤Æ¤¤¤Þ¤¹: '{' ¤È '}' ¤¬°ìÃפ·¤Æ¤¤¤Þ¤»¤ó.ʸ»úÎó¤Ï ~/.../ Ì¿Îá¤ÎÅÓÃæ¤Ç½ª¤ï¤Ã¤Æ¤¤¤Þ¤¹.ʸ»úÎó¤Ï¥·¥§¥ë´Ø¿ôÆâ¤Ç°Û¤Ê¤ë²ÄǽÀ­¤Î¤¢¤ëÃͤò»ý¤Ã¤¿¥·¥§¥ëÊÑ¿ô¤ò»²¾È¤·¤Æ¤¤¤Þ¤¹.ʸ»úÎó¤Ï̾Á°¤¬¥¢¥¹¥­¡¼¤Ç¤Ê¤¤¥·¥§¥ëÊÑ¿ô¤ò»²¾È¤·¤Æ¤¤¤Þ¤¹.ʸ»úÎó¤Ï̾Á°¤¬¶õ¤Î¥·¥§¥ëÊÑ¿ô¤ò»²¾È¤·¤Æ¤¤¤Þ¤¹.ʸ»úÎó¤ÏÊ£»¨¤Ê¥·¥§¥ë³ç¸Ì¤Îʸˡ¤ò»È¤Ã¤¿¥·¥§¥ëÊÑ¿ô¤ò»²¾È¤·¤Æ¤¤¤Þ¤¹. ¤³¤Îʸˡ¤Ï¤³¤³¤Ç¤Ï¥»¥­¥å¥ê¥Æ¥£¾å¤ÎÍýͳ¤Ç¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó.ʸ»úÎó¤Ï°ú¿ôÈÖ¹æ %u ¤ò»²¾È¤·¤Æ¤¤¤Þ¤¹¤¬°ú¿ôÈÖ¹æ %u ¤ò̵»ë¤·¤Æ¤¤¤Þ¤¹.ʸ»úÎó¤ÏÈó¸ß´¹¤ÊÊýË¡¤Ç°ú¿ôÈÖ¹æ %u ¤ò»²¾È¤·¤Æ¤¤¤Þ¤¹.ʸ»úÎó¤Ï, ÈÖ¹æÉÕ¤±¤µ¤ì¤¿°ú¿ô¤â, ÈÖ¹æÉÕ¤±¤µ¤ì¤Æ¤¤¤Ê¤¤°ú¿ô¤â, ¤É¤Á¤é¤Î°ú¿ô¤â»²¾È¤·¤Æ¤¤¤Þ¤¹.ʸ»úÎó¤Ï, ̾Á°¤Î¤¢¤ë°ú¿ô¤â, ̾Á°¤Ê¤·¤Î°ú¿ô¤â, ¤É¤Á¤é¤Î°ú¿ô¤â»²¾È¤·¤Æ¤¤¤Þ¤¹.ʸ»úÎó¤ÏÈó¸ß´¹¤ÊÊýË¡¤Ç°ú¿ô¤ò»²¾È¤·¤Æ¤¤¤Þ¤¹.ʸ»úÎó¤ÏÈó¸ß´¹¤ÊÊýË¡¤Ç°ú¿ô̾ '%s' ¤ò»²¾È¤·¤Æ¤¤¤Þ¤¹.ʸ»úÎó¤ÏÌ¿Îá¤ÎÅÓÃ椫¤é»Ï¤Þ¤Ã¤Æ¤¤¤Þ¤¹: '}' ¤È '{' ¤¬°ìÃפ·¤Æ¤¤¤Þ¤»¤ó.¥Ð¡¼¥¸¥ç¥ó´ÉÍý¤ÎÊýË¡¤Ï --backup ¥ª¥×¥·¥ç¥ó, ¤â¤·¤¯¤Ï´Ä¶­ÊÑ¿ô VERSION_CONTROL
¤ÇÁªÂò¤Ç¤­¤Þ¤¹. ¤½¤ÎÃͤϰʲ¼¤ÎÄ̤ê:
  none, off       ¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºîÀ®¤·¤Ê¤¤ (--backup ¤¬»ØÄꤵ¤ì¤Æ¤â)
  numbered, t     ÈÖ¹æÉÕ¤­¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºîÀ®
  existing, nil   ÈÖ¹æÉÕ¤­¥Ð¥Ã¥¯¥¢¥Ã¥×¤¬¤¢¤ì¤ÐÈÖ¹æÉÕ¤­, ¤½¤¦¤Ç¤Ê¤±¤ì¤Ðñ½ã·Á¼°
  simple, never   ¾ï¤Ëñ½ã·Á¼°¤Î¥Ð¥Ã¥¯¥¢¥Ã¥×¤òºîÀ®
¤è¤ê¿¤¯¤Î¾ðÊó¤òÆÀ¤ë¤¿¤á¤Ë¤Ï `%s --help' ¤ÈÆþÎϤ·¤Æ¤¯¤À¤µ¤¤.
%s ¤Ë¤È¤Ã¤ÆÍ­¸ú¤Ê, ¼¡¤ò»È¤Ã¤Æ¤ß¤Æ¤¯¤À¤µ¤¤:Ulrich DrepperËÝÌõ¥«¥¿¥í¥°Ãæ¤Î½ÅÊ£¤·¤¿ËÝÌõ¤òÅý¹ç¤·¤Þ¤¹.
Ʊ¤¸¥á¥Ã¥»¡¼¥¸ ID ¤Ç½ÅÊ£¤·¤¿ËÝÌõ¤ò¸«¤Ä¤±¤Þ¤¹. ¤½¤Î¤è¤¦¤Ê½ÅÊ£¤Ï, msgfmt,
msgmerge ¤ä msgcat ¤Î¤è¤¦¤Ê¾¤Î¥×¥í¥°¥é¥à¤ÎÆþÎϤȤ·¤Æ¤ÏÉÔÀµ¤Ç¤¹. ɸ½à¤Ç¤Ï,
½ÅÊ£¤·¤¿¤â¤Î¤Ï¤È¤â¤Ë¥Þ¡¼¥¸¤µ¤ì¤Þ¤¹. --repeated ¥ª¥×¥·¥ç¥ó¤ò»È¤¦¤È, ½ÅÊ£¤·¤¿
¤â¤Î¤À¤±¤¬½ÐÎϤµ¤ì, ¤½¤ì°Ê³°¤ÎÁ´¤Æ¤Î¥á¥Ã¥»¡¼¥¸¤Ï̵»ë¤µ¤ì¤Þ¤¹. ¥³¥á¥ó¥È¤ä
¼è¤ê½Ð¤µ¤ì¤¿¥³¥á¥ó¥È¤Ï¤½¤Î¤Þ¤Þ»Ä¤ê¤Þ¤¹¤¬, --use-first ¤¬»ØÄꤵ¤ì¤ë¤È
ºÇ½é¤ÎËÝÌõ¤«¤é¼è¤ê½Ð¤µ¤ì¤Þ¤¹. ¥Õ¥¡¥¤¥ë¤Î°ÌÃ֤Ϥ½¤Î¤Þ¤Þ»Ä¤ê¤Þ¤¹. --unique
¥ª¥×¥·¥ç¥ó¤ò»È¤¦¤È½ÅÊ£¤Ï̵»ë¤µ¤ì¤Þ¤¹.
̤ÃΤΥ¨¥ó¥³¡¼¥Ç¥£¥ó¥° "%s". Âå¤ï¤ê¤Ë ASCII ¤È¤·¤Æ¿Ê¤á¤Þ¤¹.̤ÃΤΥ·¥¹¥Æ¥à¥¨¥é¡¼»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó]
»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] ¥³¥Þ¥ó¥É [¥³¥Þ¥ó¥É¥ª¥×¥·¥ç¥ó]
»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] ¥Õ¥£¥ë¥¿ [¥Õ¥£¥ë¥¿¥ª¥×¥·¥ç¥ó]
»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] INPUTFILE
»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] URL ¥Õ¥¡¥¤¥ë
»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]...
»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [ÆþÎÏ¥Õ¥¡¥¤¥ë]
»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] [ÆþÎÏ¥Õ¥¡¥¤¥ë]...
»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] def.po ref.pot
»ÈÍÑË¡: %s [¥ª¥×¥·¥ç¥ó] filename.po ...
FILTER ¤¬ 'sed' ¤Î¾ì¹ç¤ËÊØÍø¤Ê FILTER-OPTION:
Àµ¤·¤¤°ú¿ô:ºî¼Ô %s ¤È %s.
ºî¼Ô %s.
¤¢¤Ê¤¿¤Ï¸À¸ì¤Ë´Ø¤ï¤ê¤Î¤Ê¤¤´Ä¶­¤Ë¤¤¤Þ¤¹. ABOUT-NLS ¤Ëµ­½Ò¤µ¤ì¤¿¤è¤¦¤Ë
´Ä¶­ÊÑ¿ô LANG ¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤. ¤³¤ì¤ÇËÝÌõ¤ò¥Æ¥¹¥È¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹.
_open_osfhandle ¼ºÇÔ``¥É¥á¥¤¥ó %s' Ì¿Îá¤Ï̵»ë¤µ¤ì¤Þ¤¹`msgid' ¤È `msgid_plural' ¤Î¥¨¥ó¥È¥ê¤¬¤É¤Á¤é¤â '\n' ¤Ç»Ï¤Þ¤Ã¤Æ¤¤¤Þ¤»¤ó`msgid' ¤È `msgstr_plural' ¤Î¥¨¥ó¥È¥ê¤¬¤É¤Á¤é¤â '\n' ¤Ç½ª¤ï¤Ã¤Æ¤¤¤Þ¤»¤ó`msgid' ¤È `msgstr' ¤Î¥¨¥ó¥È¥ê¤¬¤É¤Á¤é¤â '\n' ¤Ç»Ï¤Þ¤Ã¤Æ¤¤¤Þ¤»¤ó`msgid' ¤È `msgstr' ¤Î¥¨¥ó¥È¥ê¤¬¤É¤Á¤é¤â '\n' ¤Ç½ª¤ï¤Ã¤Æ¤¤¤Þ¤»¤ó`msgid' ¤È `msgstr[%u]' ¤Î¥¨¥ó¥È¥ê¤¬¤É¤Á¤é¤â '\n' ¤Ç»Ï¤Þ¤Ã¤Æ¤¤¤Þ¤»¤ó`msgid' ¤È `msgstr[%u]' ¤Î¥¨¥ó¥È¥ê¤¬¤É¤Á¤é¤â '\n' ¤Ç½ª¤ï¤Ã¤Æ¤¤¤Þ¤»¤ó°ú¿ô %u ¤ËÂФ¹¤ë·Á¼°¤Î»ØÄ꤬ '%s' ¤Ë¸ºß¤·¤Þ¤»¤ó°ú¿ô %u ¤ËÂФ¹¤ë·Á¼°¤Î»ØÄ꤬ '%s' ¤Î¤è¤¦¤Ë 'msgid' ¤Ë¸ºß¤·¤Þ¤»¤ó°ú¿ô '%s' ¤ËÂФ¹¤ë·Á¼°»ØÄ꤬ '%s' ¤Ë¸ºß¤·¤Þ¤»¤ó°ú¿ô '%s' ¤ËÂФ¹¤ë·Á¼°»ØÄ꤬ '%s' ¤Î¤è¤¦¤Ë 'msgid' ¤Ë¸ºß¤·¤Þ¤»¤ó°ú¿ô {%u} ¤ËÂФ¹¤ë·Á¼°¤Î»ØÄ꤬ '%s' ¤Ë¸ºß¤·¤Þ¤»¤ó°ú¿ô {%u} ¤ËÂФ¹¤ë·Á¼°¤Î»ØÄ꤬ '%s' ¤Î¤è¤¦¤Ë 'msgid' ¤Ë¸ºß¤·¤Þ¤»¤ó%2$s ¤ËÂФ¹¤ë°ú¿ô %1$s ¤¬Û£Ëæ¤Ç¤¹¥­¡¼¥ï¡¼¥É '%.*s' ¤ËÂФ¹¤ë°ú¿ô»ØÄ꤬ۣËæ¤Ç¤¹¾¯¤Ê¤¯¤È¤â 1¤Ä¤Î sed ¥¹¥¯¥ê¥×¥È¤ò»ØÄꤷ¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó¾¯¤Ê¤¯¤È¤â 2¤Ä¤Î¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤óºÇÂç 1¤Ä¤ÎÆþÎÏ¥Õ¥¡¥¤¥ë¤¬µö¤µ¤ì¤Þ¤¹¥Ð¥Ã¥¯¥¢¥Ã¥×¥¿¥¤¥×¤·¤«¤·¥Ø¥Ã¥À¥¨¥ó¥È¥ê¤Ë "nplurals=INTEGER" °À­¤¬¤¢¤ê¤Þ¤»¤ó¤·¤«¤·¥Ø¥Ã¥À¥¨¥ó¥È¥ê¤Ë "plural=EXPRESSION" °À­¤¬¤¢¤ê¤Þ¤»¤ó½ÐÎÏ¥Õ¥¡¥¤¥ë "%s" ¤òºî¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¥Ñ¥¤¥×¤òºî¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¥Ð¥Ã¥¯¥¢¥Ã¥×¥Õ¥¡¥¤¥ë "%s" ¤ò½ñ¤­¹þ¤ßÍѤ˳«¤¯¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó%s ¥µ¥Ö¥×¥í¥»¥¹¤Ë¥Ö¥í¥Ã¥­¥ó¥°¤·¤Ê¤¤Æþ½ÐÎϤòÀßÄê¤Ç¤­¤Þ¤»¤ó%s ¥µ¥Ö¥×¥í¥»¥¹¤È¤ÎÄÌ¿®¤Ë¼ºÇÔC# ¥¯¥é¥¹¤Î¥³¥ó¥Ñ¥¤¥ë¤Ë¼ºÇÔ. --verbose ¤ò»î¤·¤Æ¤¯¤À¤µ¤¤Java ¥¯¥é¥¹¤Î¥³¥ó¥Ñ¥¤¥ë¤Ë¼ºÇÔ. --verbose ¤ò»î¤¹¤« $JAVAC ¤òÀßÄꤷ¤Æ¤¯¤À¤µ¤¤Ê¸Ì®¤¬Ã±¿ô·Ï¤ÈÊ£¿ô·Á¤Ç°ìÃפ·¤Þ¤»¤óʸ»úÎóÃæ¤Îʸ̮¥»¥Ñ¥ì¡¼¥¿ <EOT>¥Û¥¹¥È̾¤ò¼èÆÀ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿ÆþÎÏ¥Õ¥¡¥¤¥ë `%2$s' Æâ¤Î¥É¥á¥¤¥ó "%1$s" ¤Ë¤Ïʸ»ú¥»¥Ã¥È¤ò»ØÄꤹ¤ë¥Ø¥Ã¥À¹àÌܤ¬¤¢¤ê¤Þ¤»¤ó¥É¥á¥¤¥ó̾ "%s" ¤Ï¥Õ¥¡¥¤¥ë̾¤È¤·¤ÆŬÀڤǤϤ¢¤ê¤Þ¤»¤ó¥É¥á¥¤¥ó̾ "%s" ¤Ï¥Õ¥¡¥¤¥ë̾¤È¤·¤ÆŬÀڤǤϤ¢¤ê¤Þ¤»¤ó. ÀÜƬ¼­¤ò»È¤¤¤Þ¤¹¥á¥Ã¥»¡¼¥¸¤¬Æó½Å¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹¶õ¤Î `msgstr' ¥¨¥ó¥È¥ê¤Ï̵»ë¤µ¤ì¤Þ¤¹Ê¸»úÎóÃæ¤Î end-of-fileʸ»úÎóÃæ¤Î end-of-line"%s" ¤òÆɤ߹þ¤ó¤À¸å¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"%s" ¤òÆɤ߹þ¤ßÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿¥«¥ì¥ó¥È¥Ç¥£¥ì¥¯¥È¥ê¤ÎÆɤ߹þ¤ß¥¨¥é¡¼"%s" ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤«¤é "%s" ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ËÊÑ´¹¤¹¤ëºÝ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"%s" ¤òÆɤ߹þ¤â¤¦¤È¤·¤Æ¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"%s" ¤Ë½ñ¤­¹þ¤â¤¦¤È¤·¤Æ¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"%s" ¤òÆɤ߹þ¤ßÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"%s" ¥Õ¥¡¥¤¥ë¤ò½ñ¤­¹þ¤ßÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿%s ¥µ¥Ö¥×¥í¥»¥¹¤Ø¤Î½ñ¤­¹þ¤ßÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿"%s" ¤ò½ñ¤­¹þ¤ßÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿É¸½à½ÐÎϤ˽ñ¤­¹þ¤ßÃæ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿Àµ³Î¤Ë 2¤Ä¤ÎÆþÎÏ¥Õ¥¡¥¤¥ë¤¬É¬ÍפǤ¹Àµ³Î¤Ë 1¤Ä¤ÎÆþÎÏ¥Õ¥¡¥¤¥ë¤¬É¬ÍפǤ¹°ú¿ô¤Ï 2¤Ä¤Ç¤¹"%s" ¤ÎÀ¸À®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¥Ç¥£¥ì¥¯¥È¥ê "%s" ¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿fdopen() ¼ºÇÔ¾ðÊó `%s' ¤¬½é´üɸ½àÃͤΤޤޤǤ¹
¥Õ¥¡¥¤¥ë "%s" ¤Ï½ªÃ¼¤¬ NUL ¤Ç¤Ê¤¤Ê¸»úÎó¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹¥Õ¥¡¥¤¥ë "%s" ¤Ï %s ¤Ë½ªÃ¼¤¬ NUL ¤Ç¤Ê¤¤Ê¸»úÎó¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹¥Õ¥¡¥¤¥ë "%s" ¤Ï GNU ¤Î .mo ·Á¼°¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¥Õ¥¡¥¤¥ë "%s" ¤¬Ã»¤¯ÀÚ¤ê¼Î¤Æ¤é¤ì¤Æ¤¤¤Þ¤¹ºÇ½é¤ÎÊ£¿ô·Á¤ËÈó¥¼¥í¤Îº÷°ú¤¬¤¢¤ê¤Þ¤¹'%s' ¤Ç¤Î·Á¼°¤Î»ØÄ꤬ 'msgid' ¤Ç¤Î¥µ¥Ö¥»¥Ã¥È¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó`msgid' ¤È `%s' ¤Ç¤Î·Á¼°¤Î»ØÄ꤬Åù¤·¤¯¤¢¤ê¤Þ¤»¤ó°ú¿ô %2$u ¤ËÂФ¹¤ë 'msgid' ¤È '%1$s' ¤Ç¤Î·Á¼°¤Î»ØÄ꤬Ʊ¤¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó°ú¿ô '%2$s' ¤ËÂФ¹¤ë 'msgid' ¤È '%1$s' ¤Ç¤Î·Á¼°»ØÄ꤬Ʊ¤¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó'msgid' ¤È '%s' ¤Ç¤Î°ú¿ô {%u} ¤ËÂФ¹¤ë·Á¼°¤Î»ØÄ꤬Ʊ¤¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó'msgid' ¤Ç¤Î·Á¼°»ØÄê¤Ï¥Þ¥Ã¥Ô¥ó¥°¤Ç¤¹¤¬, '%s' ¤Ç¤Ï¥¿¥×¥ë (tuple) ¤Ç¤¹'msgid' ¤Ç¤Î·Á¼°»ØÄê¤Ï¥¿¥×¥ë (tuple) ¤Ç¤¹¤¬, '%s' ¤Ç¤Ï¥Þ¥Ã¥Ô¥ó¥°¤Ç¤¹%d ¸Ä¤ÎÃ×̿Ū¥¨¥é¡¼¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿¤¢¤¤¤Þ¤¤ (fuzzy) ¤Ê `msgstr' ¥¨¥ó¥È¥ê¤Ï̵»ë¤µ¤ì¤Þ¤¹¥Ø¥Ã¥À¾ðÊó `%s' ¤Ï¹ÔƬ¤Ë¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó
¥Ø¥Ã¥À¾ðÊó `%s' ¤¬¥Ø¥Ã¥À¤ÎÃæ¤Ë¤¢¤ê¤Þ¤»¤ó
iconv ¤Î¼ºÇÔ»ØÄꤵ¤ì¤¿ÁªÂò´ð½à (%d < n < %d) ¤ÏÉÔ²Äǽ¤Ç¤¹¥Õ¥¡¥¤¥ë½ªÃ¼¤ËÉÔ´°Á´¤ÊÊ£¿ô¥Ð¥¤¥È¤Î¥·¡¼¥±¥ó¥¹¹ÔËö¤ËÉÔ´°Á´¤ÊÊ£¿ô¥Ð¥¤¥È¤Î¥·¡¼¥±¥ó¥¹°ì´Ó¤·¤Æ¤¤¤Ê¤¤ #~ ¤Î»ÈÍÑÆþÎÏ¥Õ¥¡¥¤¥ë `%s' ¤Ëʸ»ú¥»¥Ã¥È¤ò»ØÄꤹ¤ë¥Ø¥Ã¥À¹àÌܤ¬¤¢¤ê¤Þ¤»¤óÆþÎÏ¥Õ¥¡¥¤¥ë¤Ëʸ»ú¥»¥Ã¥È¤ò»ØÄꤹ¤ë¥Ø¥Ã¥À¹àÌܤ¬¤¢¤ê¤Þ¤»¤óÆþÎÏ¤Ï "%s" ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Ë¤ª¤¤¤ÆÍ­¸ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¹ñºÝ²½¤µ¤ì¤¿¥á¥Ã¥»¡¼¥¸¤Ï `\%c' ¤È¤¤¤¦¥¨¥¹¥±¡¼¥×¥·¡¼¥±¥ó¥¹¤ò´Þ¤ó¤Ç¤Ï¤¤¤±¤Þ¤»¤ó%2$s ¤ËÂФ¹¤ë°ú¿ô %1$s ¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹ÉÔÀµ¤ÊÀ©¸æ¥·¡¼¥±¥ó¥¹Ìµ¸ú¤Ê¥¨¥ó¥Ç¥£¥¢¥ó: %sÉÔÀµ¤ÊÊ£¿ô¥Ð¥¤¥È¤Î¥·¡¼¥±¥ó¥¹ÉÔÀµ¤Ê nplurals ¤ÎÃÍÉÔÀµ¤ÊÊ£¿ô (plural) ɽ¸½compile_java_class ¤ËÂФ¹¤ë̵¸ú¤Ê source_version °ú¿ôcompile_java_class ¤ËÂФ¹¤ë̵¸ú¤Ê target_version °ú¿ô¥­¡¼¥ï¡¼¥É "%s" ¤ÏÃΤê¤Þ¤»¤ó¸À¸ì `%s' ¤ÏÃΤê¤Þ¤»¤ó¥á¥â¥ê¤ò»È¤¤²Ì¤¿¤·¤Þ¤·¤¿¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤Ïʸ̮¤Ë°Í¸¤·¤¿ËÝÌõ¤¬¤¢¤ê¤Þ¤¹.
¤·¤«¤· C# .dll ·Á¼°¤Ïʸ̮¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó
¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤Ïʸ̮°Í¸¤ÎËÝÌõ¤¬¤¢¤ê¤Þ¤¹.
¤·¤«¤· C# .resources ·Á¼°¤Ïʸ̮¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó
¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤Ïʸ̮¤Ë°Í¸¤·¤¿ËÝÌõ¤¬¤¢¤ê¤Þ¤¹.
¤·¤«¤· Java ResourceBundle ·Á¼°¤Ïʸ̮¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó
¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤Ïʸ̮°Í¸¤ÎËÝÌõ¤¬¤¢¤ê¤Þ¤¹.
¤·¤«¤· Tcl ¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°·Á¼°¤Ïʸ̮¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó
¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤Ïʸ̮°Í¸¤ÎËÝÌõ¤¬¤¢¤ê¤Þ¤¹¤¬, ½ÐÎÏ·Á¼°¤Ï¤½¤ì¤é¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó.¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤Ï ISO-8859-1 °Ê³°¤Îʸ»ú¤ò´Þ¤à msgctxt ʸ»úÎ󤬤¢¤ê¤Þ¤¹¤¬
Qt ¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°·Á¼°¤ÏËÝÌõʸ»úÎó¤Ç¤Î¤ß Unicode ¤ò¼ÂÁõ¤·, ¸µ¤Îʸ»úÎó
¤Ç¤Ï¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó.
¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤Ï ISO-8859-1 °Ê³°¤Îʸ»ú¤ò´Þ¤à msgid ʸ»úÎ󤬤¢¤ê¤Þ¤¹¤¬
Qt ¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°·Á¼°¤ÏËÝÌõʸ»úÎó¤Ç¤Î¤ß Unicode ¤ò¼ÂÁõ¤·, ËÝÌõÁ°¤Îʸ»úÎó
¤Ç¤Ï¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó.
¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤ËÊ£¿ô·Á¤ÎËÝÌõ¤¬¤¢¤ê¤Þ¤¹¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤ÏÊ£¿ô·Á¤ÎËÝÌõ¤¬¤¢¤ê¤Þ¤¹.
¤·¤«¤· C# .resources ·Á¼°¤ÏÊ£¿ô·Á¤Î½èÍý¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó
¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤ÏÊ£¿ô·Á¤ÎËÝÌõ¤¬¤¢¤ê¤Þ¤¹.
¤·¤«¤· Qt ¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°·Á¼°¤ÏÊ£¿ô·Á¤Î½èÍý¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó
¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤ÏÊ£¿ô·Á¤ÎËÝÌõ¤¬¤¢¤ê¤Þ¤¹.
¤·¤«¤· Tcl ¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°·Á¼°¤ÏÊ£¿ô·Á¤Î½èÍý¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó
¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤ÏÊ£¿ô·Á¤ÎËÝÌõ¤¬¤¢¤ê¤Þ¤¹. ¤·¤«¤· "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;" ¤È¤¤¤¦¥Ø¥Ã¥À¥¨¥ó¥È¥ê¤¬¤¢¤ê¤Þ¤»¤ó¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤ÏÊ£¿ô·Á¤ÎËÝÌõ¤¬¤¢¤ê¤Þ¤¹¤¬, ½ÐÎÏ·Á¼°¤Ï¤½¤ì¤é¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó.¥á¥Ã¥»¡¼¥¸¥«¥¿¥í¥°¤Ë¤ÏÊ£¿ô·Á¤ÎËÝÌõ¤¬¤¢¤ê¤Þ¤¹. ¤·¤«¤·½ÐÎÏ·Á¼°¤Ï¤½¤ì¤ò¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó. °À­¥Õ¥¡¥¤¥ë¤ÎÂå¤ï¤ê¤Ë "msgfmt --java" ¤ò»È¤Ã¤Æ Java ¥¯¥é¥¹¤òÀ¸À®¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤.`msgstr_plural' ¤Î¹à¤¬¤¢¤ê¤Þ¤»¤ó`msgstr' ¤Î¹à¤¬¤¢¤ê¤Þ¤»¤ó`msgstr[]' ¤Î¹à¤¬¤¢¤ê¤Þ¤»¤ó¥³¥Þ¥ó¥É̾¤¬¤¢¤ê¤Þ¤»¤ó¥Õ¥£¥ë¥¿Ì¾¤¬¤¢¤ê¤Þ¤»¤ómsgstr ¤Ë¤Ï¤¢¤Þ¤ê¤Ë¿¤¯¤Î¥­¡¼¥Ü¡¼¥É¥¢¥¯¥»¥ì¥ì¡¼¥¿¤Îµ­¹æ '%c' ¤¬¤¢¤ê¤Þ¤¹msgstr ¤Ë¤Ï¥­¡¼¥Ü¡¼¥É¥¢¥¯¥»¥ì¥ì¡¼¥¿¤Îµ­¹æ '%c' ¤¬¤¢¤ê¤Þ¤»¤óÆþÎÏ¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤óÆþÎÏ¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤óÀµ¤·¤¤ Java ¥¯¥é¥¹Ì¾¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %snplurals = %lunplurals = %lu ¤Ç¤¹¤¬Ê£¿ôɽ¸½¤¬ %lu ¤ÈƱ¤¸ÄøÅÙ¤ÎÃͤòÀ¸À®¤¹¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹`msgid' ¤È `%s' ¤Ç»ØÄꤷ¤¿·Á¼°¤Î¿ô¤¬¹ç¤Ã¤Æ¤¤¤Þ¤»¤ó¥ª¥×¥·¥ç¥ó '%c' ¤Ï 'J' ¤ä 'K' ¤ä 'T' ¤ä 'C' ¤ä 'X' ¤¬»ØÄꤵ¤ì¤ëÁ°¤Ë»È¤¦¤³¤È¤Ï¤Ç¤­¤Þ¤»¤óÊ£¿ôɽ¸½¤¬±é»»Îã³°, ¤ª¤½¤é¤¯¥¼¥í³ä¤ê¤òµ¯¤³¤¹²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹Ê£¿ôɽ¸½¤¬¥¼¥í³ä¤ê¤òµ¯¤³¤¹²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹Ê£¿ôɽ¸½¤¬À°¿ô¤¢¤Õ¤ì¤òµ¯¤³¤¹²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹Ê£¿ôɽ¸½¤¬Éé¤ÎÃͤòÀ¸À®¤¹¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹Ê£¿ô·Á¤Ë´Ö°ã¤Ã¤¿º÷°ú¤¬¤¢¤ê¤Þ¤¹Ê£¿ô·Á¤ÎÀ©¸æ¤Ï GNU gettext ¤Î³ÈÄ¥¤Ç¤¹¸½ºß¤Îʸ»ú¥»¥Ã¥È "%s" ¤Ï²ÄÈÂÀ­¤Î¤¢¤ë¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°Ì¾¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó%s ¥µ¥Ö¥×¥í¥»¥¹¤«¤é¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤¤¤¯¤Ä¤«¤Î¥Ø¥Ã¥À¾ðÊ󤬽é´üɸ½àÃͤΤޤޤǤ¹
ɸ½àÆþÎÏɸ½à½ÐÎÏÂоݤȤʤëʸ»ú¥»¥Ã¥È "%s" ¤Ï²ÄÈÂÀ­¤Î¤¢¤ë¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°Ì¾¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó%s ¤Ø¤Î°ú¿ô¤Ïñ°ì¤Î¶èÀÚ¤êʸ»ú¤Ç¤¢¤ë¤Ù¤­¤Ç¤¹¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¥É¥á¥¤¥óÌ¿Îá¤ò´Þ¤ó¤Ç¤¤¤Ê¤¤¤è¤¦¤Ç¤¹¤³¤ì¤ÏºÇ½é¤ÎÄêµÁ¤Î¾ì½ê¤Ç¤¹¤³¤Î¥á¥Ã¥»¡¼¥¸¤Ï»È¤ï¤ì¤Þ¤¹¤¬ %s ¤Ç¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¤³¤Î¥á¥Ã¥»¡¼¥¸¤Ï»È¤ï¤ì¤Þ¤¹¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó...¤³¤Î¥á¥Ã¥»¡¼¥¸¤ÏÊ£¿ô·Á¤òÄêµÁ¤¹¤Ù¤­¤Ç¤¹¤³¤Î¥á¥Ã¥»¡¼¥¸¤ÏÊ£¿ô·Á¤òÄêµÁ¤¹¤Ù¤­¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹¥¨¥é¡¼¤¬Â¿²á¤®¤ë¤Î¤Ç, ½èÍý¤òÂǤÁÀÚ¤ê¤Þ¤¹2¤Ä¤Î°Û¤Ê¤Ã¤¿Ê¸»ú¥»¥Ã¥È "%s" ¤È "%s" ¤¬ÆþÎÏ¥Õ¥¡¥¤¥ë¤Ë¤¢¤ê¤Þ¤¹·Ù¹ð: ·Ù¹ð: PO ¥Õ¥¡¥¤¥ë¥Ø¥Ã¥À¤¬¤¢¤¤¤Þ¤¤¤Ç¤¹
·Ù¹ð: PO ¥Õ¥¡¥¤¥ë¤Î¥Ø¥Ã¥À¤¬¤Ê¤¤, ¤â¤·¤¯¤ÏÉÔÀµ¤Ç¤¹
·Ù¹ð: ʸ»ú¥»¥Ã¥È¤ÎÊÑ´¹¤¬µ¡Ç½¤·¤Þ¤»¤ó
·Ù¹ð: ¥Õ¥¡¥¤¥ë `%s' (³ÈÄ¥»Ò `%s') ¤Ï̤ÃΤηÁ¼°¤Ê¤Î¤Ç C ¸À¸ì¤ò»î¤·¤Þ¤¹·Ù¹ð: Unicode ʸ»ú¤ËÂФ¹¤ëÉÔÀµ¤Ê \uxxxx ʸˡ·Ù¹ð: ¥­¡¼¥ï¡¼¥É '%.*s' ¤ËÂФ¹¤ëʸ̮¤¬¤¢¤ê¤Þ¤»¤ó·Ù¹ð: ¥­¡¼¥ï¡¼¥É '%.*s' ¤ÎÊ£¿ô·Á°ú¿ô¤Ëʸ̮¤¬¤¢¤ê¤Þ¤»¤ó·Ù¹ð: msgfmt ¤Î°ÊÁ°¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤Ï¤³¤³¤Ç¥¨¥é¡¼¤Ë¤Ê¤ê¤Þ¤¹
·Ù¹ð: ʸˡ¥¨¥é¡¼·Ù¹ð: ʸˡ¥¨¥é¡¼, ʸ»úÎó¤Î¸å¤Ë¤Ï ';'·Ù¹ð: ʸˡ¥¨¥é¡¼, ʸ»úÎó¤Î¸å¤Ë¤Ï '=' ¤Þ¤¿¤Ï ';'·Ù¹ð: ¤³¤Î¥á¥Ã¥»¡¼¥¸¤Ï»È¤ï¤ì¤Þ¤»¤ó·Ù¹ð: ¥­¡¼/ÃͤÎÁȤ˽ªÃ¼¤¬¤¢¤ê¤Þ¤»¤ó·Ù¹ð: ʸ»úÎó¤Ë½ªÃ¼¤¬¤¢¤ê¤Þ¤»¤ó½ñ¤­¹þ¤ß¥¨¥é¡¼%s ¤Ø½ñ¤­½Ð¤¹¥µ¥Ö¥×¥í¥»¥¹¤¬¼ºÇÔ¤·¤Þ¤·¤¿É¸½à½ÐÎϤؤνñ¤­½Ð¤·¤¬¼ºÇÔ¤·¤Þ¤·¤¿xgettext ¤Ï¸¡º÷¤¹¤ë¥­¡¼¥ï¡¼¥É¤¬¤Ê¤±¤ì¤ÐÆ°¤­¤Þ¤»¤ó