Commit 1adab3281c1b6a89728d4a43fa4452c2844f852b

Thomas de Grivel 2023-01-21T15:08:54

help2man-1.43.2

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
diff --git a/README b/README
index c60a974..7eda000 100644
--- a/README
+++ b/README
@@ -1,10 +1,10 @@
-		README for GNU help2man version 1.43.1
+		README for GNU help2man version 1.43.2
 
 help2man is a script to create simple man pages from the --help and
 --version output of programs.
 
   http://www.gnu.org/software/help2man/
-  ftp://ftp.gnu.org/gnu/help2man/help2man-1.43.1.tar.gz
+  ftp://ftp.gnu.org/gnu/help2man/help2man-1.43.2.tar.gz
 
   git://anonscm.debian.org/users/bod/help2man.git
   http://anonscm.debian.org/git/users/bod/help2man.git
diff --git a/configure b/configure
index 2e5b478..94b01ad 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for GNU help2man 1.43.1.
+# Generated by GNU Autoconf 2.69 for GNU help2man 1.43.2.
 #
 # Report bugs to <bug-help2man@gnu.org>.
 #
@@ -579,8 +579,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='GNU help2man'
 PACKAGE_TARNAME='help2man'
-PACKAGE_VERSION='1.43.1'
-PACKAGE_STRING='GNU help2man 1.43.1'
+PACKAGE_VERSION='1.43.2'
+PACKAGE_STRING='GNU help2man 1.43.2'
 PACKAGE_BUGREPORT='bug-help2man@gnu.org'
 PACKAGE_URL='http://www.gnu.org/software/help2man/'
 
@@ -1195,7 +1195,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures GNU help2man 1.43.1 to adapt to many kinds of systems.
+\`configure' configures GNU help2man 1.43.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1256,7 +1256,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of GNU help2man 1.43.1:";;
+     short | recursive ) echo "Configuration of GNU help2man 1.43.2:";;
    esac
   cat <<\_ACEOF
 
@@ -1343,7 +1343,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-GNU help2man configure 1.43.1
+GNU help2man configure 1.43.2
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1444,7 +1444,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by GNU help2man $as_me 1.43.1, which was
+It was created by GNU help2man $as_me 1.43.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3576,7 +3576,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by GNU help2man $as_me 1.43.1, which was
+This file was extended by GNU help2man $as_me 1.43.2, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -3631,7 +3631,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-GNU help2man config.status 1.43.1
+GNU help2man config.status 1.43.2
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff --git a/debian/changelog b/debian/changelog
index d1ca2af..6406233 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+help2man (1.43.2) unstable; urgency=low
+
+  * Use the generic term "section" in the documentation rather than "name",
+    which could be confused to mean only the literal "NAME" section.
+
+ -- Brendan O'Dea <bod@debian.org>  Thu, 06 Jun 2013 07:13:29 +1000
+
 help2man (1.43.1) unstable; urgency=low
 
   * Add explicit include syntax for prepending, replacing or appending to
diff --git a/help2man.1 b/help2man.1
index e9eaca1..cb40632 100644
--- a/help2man.1
+++ b/help2man.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "June 2013" "help2man 1.43.1" "User Commands"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "June 2013" "help2man 1.43.2" "User Commands"
 .SH NAME
 help2man \- generate a simple manual page
 .SH SYNOPSIS
@@ -123,12 +123,12 @@ the standard sections given above, or included at
 .I other
 (above) in the order they were encountered in the include file.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH AVAILABILITY
diff --git a/help2man.PL b/help2man.PL
index c3d4472..196e923 100755
--- a/help2man.PL
+++ b/help2man.PL
@@ -16,7 +16,7 @@ use 5.008;
 use Config;
 use Getopt::Long;
 
-my ($program, $version) = ('help2man', '1.43.1');
+my ($program, $version) = ('help2man', '1.43.2');
 
 my %opts;
 die "Usage: $0 [--quiet] [--stdout] [--with-gettext] [--name] [--version]\n"
diff --git a/help2man.de.1 b/help2man.de.1
index 7d67d2d..5f15cd8 100644
--- a/help2man.de.1
+++ b/help2man.de.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "Juni 2013" "help2man 1.43.1" "Benutzerkommandos"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "Juni 2013" "help2man 1.43.2" "Benutzerkommandos"
 .SH NAME
 help2man \- generiert eine einfache Handbuchseite
 .SH ÜBERSICHT
@@ -127,12 +127,12 @@ oben angegebenen Standardabschnitte vorangestellt oder unter
 (oben) in der Reihenfolge, in der sie in der eingefügten Datei
 vorgefunden werden, eingefügt.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH VERFÜGBARKEIT
diff --git a/help2man.el.1 b/help2man.el.1
index 0a12a3f..1b23ea5 100644
--- a/help2man.el.1
+++ b/help2man.el.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "Ιούνιος 2013" "help2man 1.43.1" "Εντολές χρήστη"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "Ιούνιος 2013" "help2man 1.43.2" "Εντολές χρήστη"
 .SH NAME
 help2man \- δημιουργία απλής σελίδας εγχειριδίου
 .SH SYNOPSIS
@@ -122,12 +122,12 @@ or
 .I other
 (ανωτέρω) με τη σειρά που είχαν στο αρχείο για να συμπεριληφθούν.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH AVAILABILITY
diff --git a/help2man.eo.1 b/help2man.eo.1
index aca75d2..54b97a5 100644
--- a/help2man.eo.1
+++ b/help2man.eo.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "2013-06" "help2man 1.43.1" "Uzant-komandoj"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "2013-06" "help2man 1.43.2" "Uzant-komandoj"
 .SH NOMO
 help2man \- generas simplan man-paĝon
 .SH RESUMO
@@ -123,12 +123,12 @@ la normaj sekcioj montrataj supre, aŭ inkluzivataj ĉe
 .I alia
 (supre) laŭ la ordo kiel ili estis trovataj en la inkluziv-dosiero.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH DISPONEBLECO
diff --git a/help2man.fi.1 b/help2man.fi.1
index f5fee4c..d82c732 100644
--- a/help2man.fi.1
+++ b/help2man.fi.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "kesäkuu 2013" "help2man 1.43.1" "Käyttäjän sovellukset"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "kesäkuu 2013" "help2man 1.43.2" "Käyttäjän sovellukset"
 .SH NIMI
 help2man \- luo yksinkertainen man-sivu
 .SH YLEISKATSAUS
@@ -125,12 +125,12 @@ mainituille vakiokappaleille, tai ne sisällytetään kohtaan
 .I muut
 samassa järjestyksessä kuin ne esiintyvät sisällytystiedostossa.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH SAATAVUUS
diff --git a/help2man.fr.1 b/help2man.fr.1
index ddda69d..555804f 100644
--- a/help2man.fr.1
+++ b/help2man.fr.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "juin 2013" "help2man 1.43.1" "Commandes"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "juin 2013" "help2man 1.43.2" "Commandes"
 .SH NOM
 help2man \- crée une page de manuel sommaire
 .SH SYNOPSIS
@@ -135,12 +135,12 @@ Les sections non usuelles sont insérées à la place marquée
 dans la liste ci-dessus, dans l'ordre dans lequel ces sections
 apparaissent dans le fichier inclus.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH DISPONIBILITÉ
diff --git a/help2man.h2m.PL b/help2man.h2m.PL
index dc2b718..77a75ad 100755
--- a/help2man.h2m.PL
+++ b/help2man.h2m.PL
@@ -171,12 +171,12 @@ EOT
 print OUT "\n";
 
 print OUT _(<<'EOT');
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 EOT
diff --git a/help2man.hr.1 b/help2man.hr.1
index 3c26221..1e50402 100644
--- a/help2man.hr.1
+++ b/help2man.hr.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "Lipanj 2013" "help2man 1.43.1" "Korisničke naredbe"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "Lipanj 2013" "help2man 1.43.2" "Korisničke naredbe"
 .SH IME
 help2man \- napravi jednostavnu stranicu priručnika
 .SH PREGLED
@@ -122,12 +122,12 @@ standardne gore prikazane skupine ili se dodaju u
 .I ostalo
 (iznad) redoslijedom kojim su pronađene u uključenoj datoteci.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH DOSTUPNOST
diff --git a/help2man.info b/help2man.info
index 69f60c6..8160e85 100644
--- a/help2man.info
+++ b/help2man.info
@@ -289,9 +289,9 @@ can still override the former with '--name' if required).
 the standard sections given above, or included at _other_ (above) in the
 order they were encountered in the include file.
 
-   Placement of the text within the section may be explicity requested
-by using the syntax '[<name]', '[=name]' or '[>name]' to place the
-additional text before, in place of, or after the default output
+   Placement of the text within the section may be explicitly requested
+by using the syntax '[<section]', '[=section]' or '[>section]' to place
+the additional text before, in place of, or after the default output
 respectively.
 
 
@@ -506,10 +506,10 @@ Node: Overview1906
 Node: Invoking help2man2603
 Node: --help recommendations5158
 Node: Including text8524
-Node: Makefile usage10450
-Node: Localised man pages11381
-Node: Example13217
-Node: Reports15822
-Node: Availability16276
+Node: Makefile usage10460
+Node: Localised man pages11391
+Node: Example13227
+Node: Reports15832
+Node: Availability16286
 
 End Tag Table
diff --git a/help2man.it.1 b/help2man.it.1
index 37d1451..c6a701b 100644
--- a/help2man.it.1
+++ b/help2man.it.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "giugno 2013" "help2man 1.43.1" "Comandi utente"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "giugno 2013" "help2man 1.43.2" "Comandi utente"
 .SH NOME
 help2man \- genera una semplice pagina di manuale
 .SH SINTASSI
@@ -124,12 +124,12 @@ per le sezioni standard fornite precedentemente, oppure sono incluse in
 .I altre
 (come sopra) nell'ordine riscontrato nel file di inclusione.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH DISPONIBILITÀ
diff --git a/help2man.ja.1 b/help2man.ja.1
index 1b9b4ab..1ea6e1f 100644
--- a/help2man.ja.1
+++ b/help2man.ja.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "2013年6月" "help2man 1.43.1" "ユーザーコマンド"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "2013年6月" "help2man 1.43.2" "ユーザーコマンド"
 .SH 名前
 help2man \- 簡易マニュアルページの生成
 .SH 書式
@@ -124,12 +124,12 @@ RCS のキーワードなどに使用することができる。
 .I その他
 の位置に、インクルードファイル中で見つかった順番で取り込まれる。
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH 入手先
diff --git a/help2man.pl.1 b/help2man.pl.1
index 11be8fd..2ff1716 100644
--- a/help2man.pl.1
+++ b/help2man.pl.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "czerwiec 2013" "help2man 1.43.1" "Polecenia użytkownika"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "czerwiec 2013" "help2man 1.43.2" "Polecenia użytkownika"
 .SH NAZWA
 help2man \- generowanie prostej strony podręcznika
 .SH SKŁADNIA
@@ -125,12 +125,12 @@ w miejscu
 .I inne
 (jak wyżej) w kolejności, w jakiej wystąpiły w dołączanym pliku.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH DOSTĘPNOŚĆ
diff --git a/help2man.pt_BR.1 b/help2man.pt_BR.1
index ef51091..c15ca07 100644
--- a/help2man.pt_BR.1
+++ b/help2man.pt_BR.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "junho de 2013" "help2man 1.43.1" "Comandos de usuário"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "junho de 2013" "help2man 1.43.2" "Comandos de usuário"
 .SH NOME
 help2man \- gera uma página de manual simples
 .SH SINOPSE
@@ -126,12 +126,12 @@ para as seções padrões citadas acima ou inclusas na posição
 .I outra
 (acima) na ordem em que elas forem encontradas no arquivo de inclusão.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH DISPONIBILIDADE
diff --git a/help2man.ru.1 b/help2man.ru.1
index c4326a4..cdf857d 100644
--- a/help2man.ru.1
+++ b/help2man.ru.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "06.06.2013" "help2man 1.43.1" "Пользовательские команды"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "06.06.2013" "help2man 1.43.2" "Пользовательские команды"
 .SH ИМЯ
 help2man \- генерирует простую справочную страницу
 .SH ОБЗОР
@@ -125,12 +125,12 @@ help2man генерирует справочную страницу исходя
 .I другого
 (выше) в порядке, в котором они расположены во включаемом файле.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH ДОСТУПНОСТЬ
diff --git a/help2man.sr.1 b/help2man.sr.1
index d5e10ed..d7d84e8 100644
--- a/help2man.sr.1
+++ b/help2man.sr.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "јун 2013." "help2man 1.43.1" "Корисничке наредбе"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "јун 2013." "help2man 1.43.2" "Корисничке наредбе"
 .SH НАЗИВ
 help2man \— ствара страницу упутства
 .SH УВОД
@@ -125,12 +125,12 @@ help2man \— ствара страницу упутства
 .I осталим
 (изнад) по редоследу како су проналажени у датотеци укључивања.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH ДОСТУПНОСТ
diff --git a/help2man.sv.1 b/help2man.sv.1
index 75fb12e..034b7cb 100644
--- a/help2man.sv.1
+++ b/help2man.sv.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "juni 2013" "help2man 1.43.1" "Användarkommandon"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "juni 2013" "help2man 1.43.2" "Användarkommandon"
 .SH NAMN
 help2man \- generera en enkel manualsida
 .SH BESKRIVNING
@@ -121,12 +121,12 @@ för standardsektionerna angivna ovan, eller inkluderas vid
 .I övrigt
 (ovan) i den ordning de påträffades i inkluderingsfilen.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH TILLGÄNGLIGHET
diff --git a/help2man.texi b/help2man.texi
index 4e4de7d..363c102 100644
--- a/help2man.texi
+++ b/help2man.texi
@@ -346,10 +346,10 @@ Other sections are prepended to the automatically produced output for
 the standard sections given above, or included at @emph{other} (above)
 in the order they were encountered in the include file.
 
-Placement of the text within the section may be explicity requested by
-using the syntax @samp{[<name]}, @samp{[=name]} or @samp{[>name]} to
-place the additional text before, in place of, or after the default
-output respectively.
+Placement of the text within the section may be explicitly requested
+by using the syntax @samp{[<section]}, @samp{[=section]} or
+@samp{[>section]} to place the additional text before, in place of, or
+after the default output respectively.
 
 @node Makefile usage
 @chapter Using @command{help2man} With @command{make}
diff --git a/help2man.uk.1 b/help2man.uk.1
index 2215742..ae53d1f 100644
--- a/help2man.uk.1
+++ b/help2man.uk.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "06.06.13" "help2man 1.43.1" "Команди користувача"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "06.06.13" "help2man 1.43.2" "Команди користувача"
 .SH НАЗВА
 help2man \— програма для створення простих сторінок довідника
 .SH "КОРОТКИЙ ОПИС"
@@ -122,12 +122,12 @@ or
 .I іншого
 (вище) у порядку, у якому їх вказано у файлі-включенні.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH "ДОСТУП ДО ПРОГРАМИ"
diff --git a/help2man.vi.1 b/help2man.vi.1
index f9b4b06..ec1c691 100644
--- a/help2man.vi.1
+++ b/help2man.vi.1
@@ -1,5 +1,5 @@
-.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.1.
-.TH HELP2MAN "1" "Tháng sáu 2013" "help2man 1.43.1" "Lệnh người dùng"
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.43.2.
+.TH HELP2MAN "1" "Tháng sáu 2013" "help2man 1.43.2" "Lệnh người dùng"
 .SH TÊN
 help2man \- tạo một trang hướng dẫn dạng man kiểu đơn giản
 .SH "TÓM TẮT"
@@ -132,12 +132,12 @@ cho những phần tiêu chuẩn đưa ra trên, hoặc được bao gồm tại
 .I other
 (bên trên) theo thứ tự gặp trong tập tin bao gồm.
 
-Placement of the text within the section may be explicity requested by using
+Placement of the text within the section may be explicitly requested by using
 the syntax
-.RI [< name ],
-.RI [= name ]
+.RI [< section ],
+.RI [= section ]
 or
-.RI [> name ]
+.RI [> section ]
 to place the additional text before, in place of, or after the default
 output respectively.
 .SH "TÍNH SẴN SÀNG"
diff --git a/po/de.gmo b/po/de.gmo
index f42ba76..341acf0 100644
Binary files a/po/de.gmo and b/po/de.gmo differ
diff --git a/po/de.po b/po/de.po
index 221b77e..b40c4a8 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.40.7\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2012-06-02 15:36-0700\n"
 "Last-Translator: Arun Persaud <arun@nubati.net>\n"
 "Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
@@ -417,13 +417,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/el.gmo b/po/el.gmo
index 8e5e2e1..a383e1b 100644
Binary files a/po/el.gmo and b/po/el.gmo differ
diff --git a/po/el.po b/po/el.po
index 066d55c..a28917f 100644
--- a/po/el.po
+++ b/po/el.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.40.7\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2012-05-05 22:23+0100\n"
 "Last-Translator: Savvas Radevic <vicedar@gmail.com>\n"
 "Language-Team: Greek <team@lists.gnome.gr>\n"
@@ -420,13 +420,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/eo.gmo b/po/eo.gmo
index fdf60da..98e753e 100644
Binary files a/po/eo.gmo and b/po/eo.gmo differ
diff --git a/po/eo.po b/po/eo.po
index 855d2ca..6e487cb 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.42.1\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2013-06-04 08:48-0300\n"
 "Last-Translator: Felipe Castro <fefcas@gmail.com>\n"
 "Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
@@ -415,13 +415,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/fi.gmo b/po/fi.gmo
index ad0d9bc..1cda7c0 100644
Binary files a/po/fi.gmo and b/po/fi.gmo differ
diff --git a/po/fi.po b/po/fi.po
index a4d7725..42d6b94 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.39.1\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2011-03-03 10:08+0200\n"
 "Last-Translator: Tommi Vainikainen <Tommi.Vainikainen@iki.fi>\n"
 "Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
@@ -415,13 +415,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/fr.gmo b/po/fr.gmo
index 8443c5e..e699375 100644
Binary files a/po/fr.gmo and b/po/fr.gmo differ
diff --git a/po/fr.po b/po/fr.po
index 4d672d1..e5e8121 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.40.7\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2012-04-05 16:42-0400\n"
 "Last-Translator: David Prévot <david@tilapin.org>\n"
 "Language-Team: French <traduc@traduc.org>\n"
@@ -466,13 +466,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/help2man.pot b/po/help2man.pot
index ba625dd..ef9559e 100644
--- a/po/help2man.pot
+++ b/po/help2man.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\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"
@@ -323,13 +323,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/hr.gmo b/po/hr.gmo
index 0e64fa5..d808727 100644
Binary files a/po/hr.gmo and b/po/hr.gmo differ
diff --git a/po/hr.po b/po/hr.po
index aa75ea0..bc2db4a 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.41.2\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2013-04-18 00:04+0200\n"
 "Last-Translator: Tomislav Krznar <tomislav.krznar@gmail.com>\n"
 "Language-Team: Croatian <lokalizacija@linux.hr>\n"
@@ -415,13 +415,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/it.gmo b/po/it.gmo
index 5fe0e45..7fb26e3 100644
Binary files a/po/it.gmo and b/po/it.gmo differ
diff --git a/po/it.po b/po/it.po
index 751e4f6..cba249d 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man-1.40.7\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2012-04-05 22:17+0200\n"
 "Last-Translator: Sergio Zanchetta <primes2h@ubuntu.com>\n"
 "Language-Team: Italian <tp@lists.linux.it>\n"
@@ -422,13 +422,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/ja.gmo b/po/ja.gmo
index bb19402..d72dff6 100644
Binary files a/po/ja.gmo and b/po/ja.gmo differ
diff --git a/po/ja.po b/po/ja.po
index 49d74c0..631554c 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.40.7\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2012-04-10 23:40+0900\n"
 "Last-Translator: Yasumichi Akahoshi <yasumichi@vinelinux.org>\n"
 "Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
@@ -419,13 +419,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/pl.gmo b/po/pl.gmo
index 8c9570e..5ff76d4 100644
Binary files a/po/pl.gmo and b/po/pl.gmo differ
diff --git a/po/pl.po b/po/pl.po
index d5944d6..dd3e1d6 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.40.7\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2012-04-05 21:09+0200\n"
 "Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>\n"
 "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
@@ -416,13 +416,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/pt_BR.gmo b/po/pt_BR.gmo
index 861dd6c..a4b9d98 100644
Binary files a/po/pt_BR.gmo and b/po/pt_BR.gmo differ
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 62ce163..1c3b7b2 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.41.1\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2013-01-23 08:46-0200\n"
 "Last-Translator: Rodolfo Ribeiro Gomes <rodolforg@gmail.com>\n"
 "Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge."
@@ -425,13 +425,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/ru.gmo b/po/ru.gmo
index c6925b4..e5790c8 100644
Binary files a/po/ru.gmo and b/po/ru.gmo differ
diff --git a/po/ru.po b/po/ru.po
index 625e5da..ab5e9f4 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.40.7\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2012-04-07 09:29+0400\n"
 "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
 "Language-Team: Russian <gnu@mx.ru>\n"
@@ -416,13 +416,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/sr.gmo b/po/sr.gmo
index c9b68b0..8e943e9 100644
Binary files a/po/sr.gmo and b/po/sr.gmo differ
diff --git a/po/sr.po b/po/sr.po
index edc9edc..2393be0 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man-1.40.7\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2012-05-02 10:03+0200\n"
 "Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
 "Language-Team: Serbian <gnu@prevod.org>\n"
@@ -414,13 +414,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/sv.gmo b/po/sv.gmo
index 2bbc772..7a0dc1a 100644
Binary files a/po/sv.gmo and b/po/sv.gmo differ
diff --git a/po/sv.po b/po/sv.po
index 1116835..981fd5b 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.36.3\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2006-01-23 20:33+0100\n"
 "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
 "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@@ -412,13 +412,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/uk.gmo b/po/uk.gmo
index a9d48e9..cd085c4 100644
Binary files a/po/uk.gmo and b/po/uk.gmo differ
diff --git a/po/uk.po b/po/uk.po
index 08aea81..51b737d 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man 1.40.7\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2012-04-06 06:25+0300\n"
 "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
 "Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
@@ -418,13 +418,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""
diff --git a/po/vi.gmo b/po/vi.gmo
index 90feb05..9f9762f 100644
Binary files a/po/vi.gmo and b/po/vi.gmo differ
diff --git a/po/vi.po b/po/vi.po
index bb61e0d..b716ee7 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: help2man-1.42.1\n"
 "Report-Msgid-Bugs-To: Brendan O'Dea <bug-help2man@gnu.org>\n"
-"POT-Creation-Date: 2013-06-06 03:49+1000\n"
+"POT-Creation-Date: 2013-06-06 08:26+1000\n"
 "PO-Revision-Date: 2013-06-01 14:06+0700\n"
 "Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
 "Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
@@ -425,13 +425,13 @@ msgstr ""
 
 #: help2man.h2m.PL:174
 msgid ""
-"Placement of the text within the section may be explicity requested by "
+"Placement of the text within the section may be explicitly requested by "
 "using\n"
 "the syntax\n"
-".RI [< name ],\n"
-".RI [= name ]\n"
+".RI [< section ],\n"
+".RI [= section ]\n"
 "or\n"
-".RI [> name ]\n"
+".RI [> section ]\n"
 "to place the additional text before, in place of, or after the default\n"
 "output respectively.\n"
 msgstr ""