1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
|
#!/usr/bin/perl -w
=encoding UTF-8
=head1 NAME
Locale::Po4a::Man - convert manual pages from/to PO files
=head1 DESCRIPTION
The po4a (PO for anything) project goal is to ease translations (and more
interestingly, the maintenance of translations) using gettext tools on
areas where they were not expected like documentation.
Locale::Po4a::Man is a module to help the translation of documentation in
the nroff format (the language of manual pages) into other [human]
languages.
=head1 TRANSLATING WITH PO4A::MAN
This module tries pretty hard to make translator's life easier. For that,
the text presented to translators isn't a verbatim copy of the text found
in the man page. Indeed, the cruder parts of the nroff format are hidden, so
that translators can't mess up with them.
=head2 Text wrapping
Unindented paragraphs are automatically rewrapped for the translator. This
can lead to some minor difference in the generated output, since the
rewrapping rules used by groff aren't very clear. For example, two spaces
after a parenthesis are sometimes preserved.
Anyway, the difference will only be about the position of the extra spaces
in wrapped paragraph, and I think it's worth.
=head2 Font specification
The first change is about font change specifications. In nroff, there are
several ways to specify if a given word should be written in small, bold or
italics. In the text to translate, there is only one way, borrowed from the
POD (Perl online documentation) format:
=over
=item IE<lt>textE<gt> -- italic text
equivalent to \fItext\fP or ".I text"
=item BE<lt>textE<gt> -- bold text
equivalent to \fBtext\fP or ".B text"
=item RE<lt>textE<gt> -- roman text
equivalent to \fRtext\fP
=item CWE<lt>textE<gt> -- constant width text
equivalent to \f(CWtext\fP or ".CW text"
=back
Remark: The CW face is not available for all groff devices. It is not
recommended to use it. It is provided for your convenience.
=head2 Automatic characters transliteration
Po4a automatically transliterate some characters to ease the translation
or the review of the translation.
Here is the list of the transliterations:
=over
=item hyphens
Hyphens (-) and minus signs (\-) in man pages are all transliterated
as simple dashes (-) in the PO file. Then all dash are transliterated into
roff minus signs (\-) when the translation is inserted into the output
document.
Translators can force an hyphen by using the roff glyph '\[hy]' in their
translations.
=item non-breaking spaces
Translators can use non-breaking spaces in their translations. These
non-breaking spaces (0xA0 in latin1) will be transliterated into a roff
non-breaking space ('\ ').
=item quotes transliterations
`` and '' are respectively tranliterated into \*(lq and \*(rq.
To avoid these transliterations, translators can insert a zero width roff
character (i.e., using `\&` or '\&' respectively).
=back
=head2 Putting 'E<lt>' and 'E<gt>' in translations
Since these chars are used to delimit parts under font modification, you
can't use them verbatim. Use EE<lt>ltE<gt> and EE<lt>gtE<gt> instead (as in
POD, one more time).
=head1 OPTIONS ACCEPTED BY THIS MODULE
These are this module's particular options:
=over
=item B<debug>
Activate debugging for some internal mechanisms of this module.
Use the source to see which parts can be debugged.
=item B<verbose>
Increase verbosity.
=item B<groff_code>
This option controls the behavior of the module when it encounter
a .de, .ie or .if section. It can take the following values:
=over
=item I<fail>
This is the default value.
The module will fail when a .de, .ie or .if section is encountered.
=item I<verbatim>
Indicates that the .de, .ie or .if sections must be copied as is
from the original to the translated document.
=item I<translate>
Indicates that the .de, .ie or .if sections will be proposed for the
translation.
You should only use this option if a translatable string is
contained in one of these section. Otherwise, I<verbatim>
should be preferred.
=back
=item B<generated>
This option specifies that the file was generated, and that po4a should not
try to detect if the man pages was generated from another format.
This option is mandatory to use po4a on generated man pages.
Note that translating generated pages instead of sources ones is often more fragile, and thus a bad idea.
=item B<mdoc>
This option is only useful for mdoc pages.
It selects a stricter support of the mdoc format by telling po4a not to
translate the 'NAME' section.
mdoc pages whose 'NAME' section is translated won't generate any header or
footer.
According to the groff_mdoc page, the NAME, SYNOPSIS and DESCRIPTION
sections are mandatory.
There are no known issues with translated SYNOPSIS or DESCRIPTION section,
but you can also specify these sections this way:
-o mdoc=NAME,SYNOPSIS,DESCRIPTION
This mdoc issue can also be solved with an addendum like this one:
PO4A-HEADER:mode=before;position=^.Dd
.TH DOCUMENT_TITLE 1 "Month day, year" OS "Section Name"
=back
The following options specify the behavior of a user-defined macro
(with a .de request), or of a classical macro that is not supported by po4a.
They take as argument a comma-separated list of macros.
For example:
-o noarg=FO,OB,AR -o translate_joined=BA,ZQ,UX
Note: if a macro is not supported by po4a and if you consider that it is a
standard roff macro, you should submit it to the po4a development team.
=over
=item B<untranslated>
B<untranslated> indicates that this macro (at its arguments) don't have to
be translated.
=item B<noarg>
B<noarg> is like B<untranslated>, except that po4a will verify that no
argument is added to this macro.
=item B<translate_joined>
B<translate_joined> indicates that po4a must propose to translate the
arguments of the macro.
=item B<translate_each>
With B<translate_each>, the arguments will also be proposed for the
translation, except that each one will be translated separately.
=item B<no_wrap>
This option takes as argument a list of comma-separated couples
I<begin>:I<end>, where I<begin> and I<end> are commands that delimit
the begin and end of a section that should not be rewrapped.
Note: no test is done to ensure that an I<end> command matches its
I<begin> command; any ending command stop the no_wrap mode.
If you have a I<begin> (respectively I<end>) macro that has no I<end>
(respectively I<begin>), you can specify an existing I<end> (like fi) or
I<begin> (like nf) as a counterpart.
These macros (and their arguments) won't be translated.
=item B<inline>
This option specifies a list of comma-separated macros that must
not split the current paragraph. The string to translate will then contain
I<foo E<lt>.bar baz quxE<gt> quux>, where I<bar> is the command that
should be inlined, and I<baz qux> its arguments.
=item B<unknown_macros>
This option indicates how po4a should behave when an unknown macro is found.
By default, po4a fails with a warning.
It can take the following values: B<failed> (the default value),
B<untranslated>, B<noarg>, B<translate_joined>, or B<translate_each> (see above
for an explanation of these values).
=back
=head1 AUTHORING MAN PAGES COMPLIANT WITH PO4A::MAN
This module is still very limited, and will always be, because it's not a
real nroff interpreter. It would be possible to do a real nroff
interpreter, to allow authors to use all the existing macros, or even to
define new ones in their pages, but we didn't want to. It would be too
difficult, and we thought it wasn't necessary. We do think that if
manpages' authors want to see their productions translated, they may have to
adapt to ease the work of translators.
So, the man parser implemented in po4a have some known limitations we are
not really inclined to correct, and which will constitute some pitfalls
you'll have to avoid if you want to see translators taking care of your
documentation.
=head2 Don't program in nroff
nroff is a complete programming language, with macro definition,
conditionals and so on. Since this parser isn't a fully featured nroff
interpreter, it will fail on pages using these facilities (There are about
200 such pages on my box).
=head2 Use the plain macro set
There are still some macros which are not supported by po4a::man. This is
only because I failed to find any documentation about them. Here is the
list of unsupported macros used on my box. Note that this list isn't
exhaustive since the program fails on the first encountered unsupported
macro. If you have any information about some of these macros, I'll
happily add support for them. Because of these macros, about 250 pages on
my box are inaccessible to po4a::man.
.. ." .AT .b .bank
.BE ..br .Bu .BUGS .BY
.ce .dbmmanage .do .En
.EP .EX .Fi .hw .i
.Id .l .LO .mf
.N .na .NF .nh .nl
.Nm .ns .NXR .OPTIONS .PB
.pp .PR .PRE .PU .REq
.RH .rn .S< .sh .SI
.splitfont .Sx .T .TF .The
.TT .UC .ul .Vb .zZ
=head2 Hiding text from po4a
Sometimes, the author knows that some parts are not translatable, and
should not be extracted by po4a. For example, an option may accept an
I<other> argument, and I<other> may also appear as the last item of a
list. In the first case, I<other> should be not be translatable. And in
the second case, I<other> should be translated.
In such case, the author can avoid po4a to extract some strings, using
some special groff constructs:
.if !'po4a'hide' .B other
(this will require the B<-o groff_code=verbatim> option)
A new macro can also be defined to automate this:
.de IR_untranslated
. IR \\$@
..
.IR_untranslated \-q ", " \-\-quiet
(this will require the options B<-o groff_code=verbatim> and
B<-o untranslated=IR_untranslated>; with this construct, the B<.if
!'po4a'hide'> conditional is not strictly needed since po4a will not parse
the internal of the macro definition)
or using an alias:
.als IR_untranslated IR
.IR_untranslated \-q ", " \-\-quiet
This will require the B<-o untranslated=als,IR_untranslated> option.
=head2 Conclusion
To summarise this section, keep simple, and don't try to be clever while
authoring your man pages. A lot of things are possible in nroff, and not
supported by this parser. For example, don't try to mess with \c to
interrupt the text processing (like 40 pages on my box do). Or, be sure to
put the macro arguments on the same line that the macro itself. I know that
it's valid in nroff, but would complicate too much the parser to be
handled.
Of course, another possibility is to use another format, more translator
friendly (like POD using po4a::pod, or one of the XML family like SGML),
but thanks to po4a::man it isn't needed anymore. That being said, if the
source format of your documentation is POD, or XML, it may be clever to
translate the source format and not this generated one. In most cases,
po4a::man will detect generated pages and issue a warning. It will even
refuse to process POD generated pages, because those pages are perfectly
handled by po4a::pod, and because their nroff counterpart defines a lot of
new macros I didn't want to write support for. On my box, 1432 of the 4323
pages are generated from POD and will be ignored by po4a::man.
In most cases, po4a::man will detect the problem and refuse to process the
page, issuing an adapted message. In some rare cases, the program will
complete without warning, but the output will be wrong. Such cases are
called "bugs" ;) If you encounter such case, be sure to report this, along
with a fix when possible…
=head1 STATUS OF THIS MODULE
This module can be used for most of the existing man pages.
Some tests are regularly run on Linux boxes:
=over 4
=item *
one third of the pages are refused because they were generated from
another format supported by po4a (e.g. POD or SGML).
=item *
10% of the remaining pages are rejected with an error (e.g. a
groff macro is not supported).
=item *
Then, less than 1% of the pages are accepted silently by po4a, but with
significant issues (i.e. missing words, or new words inserted)
=item *
The other pages are usually handled without differences more important
than spacing differences or line rewrapped (font issues in less than 10% of
the processed pages).
=back
=head1 SEE ALSO
L<Locale::Po4a::Pod(3pm)>,
L<Locale::Po4a::TransTractor(3pm)>,
L<po4a(7)|po4a.7>
=head1 AUTHORS
Denis Barbier <barbier@linuxfr.org>
Nicolas François <nicolas.francois@centraliens.net>
Martin Quinson (mquinson#debian.org)
=head1 COPYRIGHT AND LICENSE
Copyright © 2002-2008 SPI, Inc.
This program is free software; you may redistribute it and/or modify it
under the terms of GPL v2.0 or later (see the COPYING file).
=cut
package Locale::Po4a::Man;
use DynaLoader;
use 5.16.0;
use strict;
use warnings;
require Exporter;
use vars qw(@ISA @EXPORT);
@ISA = qw(Locale::Po4a::TransTractor DynaLoader);
@EXPORT = qw(); # new initialize);
# Try to use a C extension if present.
eval('bootstrap Locale::Po4a::Man "0.30"');
use Locale::Po4a::TransTractor;
use Locale::Po4a::Common;
use File::Spec;
use Getopt::Std;
my %macro; # hash of known macro, with parsing sub. See end of this file
my %default_macro; # The default known macros, when no options are used.
# A font start by \f and is followed either by
# [.*] - a font name within brackets (e.g. [P], [A_USER_FONT])
# (.. - a parenthesis followed by two char (e.g. "(CW")
# . - a single char (e.g. B, I, R, P, 1, 2, 3, 4, etc.)
my $FONT_RE = "\\\\f(?:\\[[^\\]]*\\]|\\(..|[^\\(\\[])";
# Variable used to identify non breaking spaces.
# These non breaking spaces are used to ease the parsing, and a
# translator can use them in their translation (and they will be translated
# into the groff non-breaking space).
my $nbs;
# Indicate if the page uses the mdoc macros
my $mdoc_mode = 0;
my $unknown_macros = undef;
#########################
#### DEBUGGING STUFF ####
#########################
my %debug;
# The following debug options can be set with '-o debug=...':
# * splitargs see how macro args are separated
# * pretrans see pre-conditioning of translation
# * postrans see post-conditioning of translation
# * fonts see font modifier handling
######## CONFIG #########
# This variable indicates the behavior of the module when a .de, .if or
# .ie is encountered.
my $groff_code;
# %no_wrap_begin and %no_wrap_end are lists of macros that respectively
# begins and ends a no_wrap paragraph.
# Any ending macro will end the no_wrap paragraph started by any beginning
# macro.
my %no_wrap_begin;
my %no_wrap_end;
# List of macros that should be inlined (with E<.xx ...>)
my %inline;
# The default list of inlined macros (when no options are used)
my %default_inline;
# This variable indicates whether po4a should try to detect the generated
# files.
my $allow_generated;
# This hash indicates section name that should not be translated in mdoc
# mode.
# The groff's mdoc processor requires the NAME section, otherwise headers
# and footers of the pages are not generated.
# The mdoc_groff man page indicates that NAME, SYNOPSIS and DESCRIPTION
# are mandatory.
my %mdoc;
sub initialize {
my $self = shift;
my %options = @_;
$self->{options}{'debug'} = '';
$self->{options}{'verbose'} = '';
$self->{options}{'groff_code'} = '';
$self->{options}{'untranslated'} = '';
$self->{options}{'noarg'} = '';
$self->{options}{'translate_joined'} = '';
$self->{options}{'translate_each'} = '';
$self->{options}{'no_wrap'} = '';
$self->{options}{'inline'} = '';
$self->{options}{'generated'} = '';
$self->{options}{'mdoc'} = '';
$self->{options}{'unknown_macros'} = '';
foreach my $opt ( keys %options ) {
if ( defined $options{$opt} ) {
die wrap_mod( "po4a::man", dgettext( "po4a", "Unknown option: %s" ), $opt )
unless exists $self->{options}{$opt};
$self->{options}{$opt} = $options{$opt};
}
}
%debug = ();
if ( defined $options{'debug'} ) {
foreach ( $options{'debug'} ) {
$debug{$_} = 1;
}
}
$groff_code = "fail";
if ( defined $options{'groff_code'} ) {
unless ( $options{'groff_code'} =~ m/fail|verbatim|translate/ ) {
die wrap_mod( "po4a::man",
dgettext( "po4a", "Invalid 'groff_code' value. Must be one of 'fail', 'verbatim', 'translate'." ) );
}
$groff_code = $options{'groff_code'};
}
if (%default_macro) {
%macro = %default_macro;
} else {
%default_macro = %macro;
}
if ( defined $options{'untranslated'} ) {
foreach ( split( /,/, $options{'untranslated'} ) ) {
$macro{$_} = \&untranslated;
}
}
if ( defined $options{'noarg'} ) {
foreach ( split( /,/, $options{'noarg'} ) ) {
$macro{$_} = \&noarg;
}
}
if ( defined $options{'translate_joined'} ) {
foreach ( split( /,/, $options{'translate_joined'} ) ) {
$macro{$_} = \&translate_joined;
}
}
if ( defined $options{'translate_each'} ) {
foreach ( split( /,/, $options{'translate_each'} ) ) {
$macro{$_} = \&translate_each;
}
}
%no_wrap_begin = (
'nf' => 1,
'EX' => 1,
'EQ' => 1
);
%no_wrap_end = (
'fi' => 1,
'EE' => 1,
'EN' => 1
);
if ( defined $options{'no_wrap'} ) {
foreach ( split( /,/, $options{'no_wrap'} ) ) {
if ( $_ =~ m/^(.*):(.*)$/ ) {
$no_wrap_begin{$1} = 1;
$no_wrap_end{$2} = 1;
} else {
die wrap_mod( "po4a::man",
dgettext( "po4a", "The no_wrap parameters must be a set of comma-separated begin:end couples.\n" )
);
}
}
}
if (%default_inline) {
%inline = %default_inline;
} else {
%default_inline = %inline;
}
if ( defined $options{'inline'} ) {
foreach ( split( /,/, $options{'inline'} ) ) {
$inline{$_} = 1;
}
}
$allow_generated = 0;
if ( defined $options{'generated'} ) {
$allow_generated = 1;
}
%mdoc = ();
if ( defined $options{'mdoc'} ) {
if ( $options{'mdoc'} eq 1 ) {
$mdoc{"NAME"} = 1;
} else {
foreach ( split( /,/, $options{'mdoc'} ) ) {
$mdoc{$_} = 1;
}
}
}
$unknown_macros = undef;
if ( defined $options{'unknown_macros'} ) {
if ( $options{'unknown_macros'} eq "failed" ) {
$unknown_macros = undef;
} elsif ( $options{'unknown_macros'} eq "untranslated" ) {
$unknown_macros = \&untranslated;
} elsif ( $options{'unknown_macros'} eq "noarg" ) {
$unknown_macros = \&noarg;
} elsif ( $options{'unknown_macros'} eq "translate_joined" ) {
$unknown_macros = \&translate_joined;
} elsif ( $options{'unknown_macros'} eq "translate_each" ) {
$unknown_macros = \&translate_each;
} else {
die wrap_mod( "po4a::man",
dgettext( "po4a", "Invalid 'unknown_macros' value. Must be one of:\n" )
. "failed untranslated noarg translate_joined translate_each\n" );
}
}
}
my @comments = ();
my @next_comments = ();
# This function returns the next line of the document being parsed
# (and its reference).
# It overload the Transtractor shiftline to handle:
# - font requests (.B, .I, .BR, .BI, ...)
# because these requests can be present in a paragraph (handled
# in the parse subroutine), or in argument (on the next line)
# of some other request (for example .TP)
# - font size requests (.SM,.SB) (not done yet)
# - input escape (\ at the end of a line)
sub shiftline {
my $self = shift;
# call Transtractor's shiftline
NEW_LINE:
my ( $line, $ref ) = $self->SUPER::shiftline();
if ( !defined $line ) {
# end of file
return ( $line, $ref );
}
# Do as few treatments as possible with the .de, .ie and .if sections
if ( $line =~ /^\.\s*(if|ie|de)/ ) {
chomp $line;
return ( $line, $ref );
}
# Handle some escapes
# * reduce the number of \ in macros
if ( $line =~ /^\\?[.']/ ) {
# The first backslash is consumed while the macro is read.
$line =~ s/\\\\/\\/g;
}
# * \\ is equivalent to \e, which is less error prone for the rest
# of the module (e.g. when searching for a font : \f, whe don't
# want to match \\f)
$line =~ s/\\\\/\\e/g;
# * \. is just a dot (this can even be used to introduce a macro)
$line =~ s/\\\././g;
chomp $line;
if ( $line =~ m/^(.*?)(?:(?<!\\)\\(["#])(.*))$/ ) {
my ( $l, $t, $c ) = ( $1, $2, $3 );
$line = $l;
unless ($allow_generated) {
# Check for comments indicating that the file was generated.
if ( $c =~ /Pod::Man/ ) {
warn wrap_ref_mod(
$ref,
"po4a::man",
dgettext(
"po4a",
"This file was generated with Pod::Man. Translate the POD file with the pod module of po4a."
)
);
exit 254;
} elsif ( $c =~ /generated by help2man/ ) {
warn wrap_ref_mod(
$ref,
"po4a::man",
dgettext(
"po4a",
"This file was generated with help2man. Translate the source file with the regular gettext."
)
);
} elsif ( $c =~ /with docbook-to-man/ ) {
warn wrap_ref_mod(
$ref,
"po4a::man",
dgettext(
"po4a",
"This file was generated with docbook-to-man. Translate the source file with the sgml module of po4a."
)
);
exit 254;
} elsif ( $c =~ /generated by docbook2man/ ) {
warn wrap_ref_mod(
$ref,
"po4a::man",
dgettext(
"po4a",
"This file was generated with docbook2man. Translate the source file with the sgml module of po4a."
)
);
exit 254;
} elsif ( $c =~ /created with latex2man/ ) {
warn wrap_ref_mod(
$ref,
"po4a::man",
dgettext(
"po4a",
"This file was generated with %s. "
. "You should translate the source file, but continuing anyway."
),
"latex2man"
);
} elsif ( $c =~ /Generated by db2man.xsl/ ) {
warn wrap_ref_mod(
$ref,
"po4a::man",
dgettext(
"po4a",
"This file was generated with db2man.xsl. Translate the source file with the xml module of po4a."
)
);
exit 254;
} elsif ( $c =~ /generated automatically by mtex2man/ ) {
warn wrap_ref_mod(
$ref,
"po4a::man",
dgettext(
"po4a",
"This file was generated with %s. "
. "You should translate the source file, but continuing anyway."
),
"mtex2man"
);
} elsif ( $c =~ /THIS FILE HAS BEEN AUTOMATICALLY GENERATED. DO NOT EDIT./
|| $c =~ /DO NOT EDIT/i
|| $c =~ /generated/i )
{
warn wrap_ref_mod(
$ref,
"po4a::man",
dgettext(
"po4a",
"This file contains the line '%s'. "
. "You should translate the source file, but continuing anyway."
),
$l . "\\\"" . $c
);
}
}
if ( $line =~ m/^[.']*$/ ) {
if ( $c !~ m/^\s+$/ ) {
# This commented line may be comment for the next paragraph
push @next_comments, [ $line ? substr( $line, 0, 1 ) : '.', $c ];
}
if ( $line =~ m/^[.']+$/ ) {
# those lines are ignored
# (empty lines are a little bit different)
goto NEW_LINE;
}
if ( $line =~ m/^\s*$/ and $t eq "#" ) {
# Groff comments
goto NEW_LINE;
}
} else {
push @comments, [ '.', $c ];
}
} else {
# finally, we did not reach the end of the paragraph. The comments
# belong to the current paragraph.
push @comments, @next_comments;
@next_comments = ();
}
# A .I or .B request change the current font
# and on exit, switch the font to Roman
# When one of these request doesn't have its argument on its line
# (and when we support this usage), we must keep this font request to
# insert it later.
# It is a stack of fonts to be inserted (in case a .I is followed by
# a .B and then followed bysome text; note that in this case,
# only one \fR must be inserted at the end of the text)
my $insert_font = "";
while ( $line =~ /\\$/ || $line =~ /^(\.[BI])\s*$/ || $line =~ /^\.[BI][\t ].*?\\c$/ ) {
my ( $l2, $r2 ) = $self->SUPER::shiftline();
chomp($l2);
if ( $line =~ /^(\.[BI])\s*$/ ) {
if ( $l2 =~ /^[.'][\t ]*([BI]|BI|BR|IB|IR|RB|RI)(?:[\t ]|\s*$)/ ) {
my $font = $line;
$font =~ s/^\.([BI])\s*$/$1/;
$insert_font = "\\f$font$insert_font";
$line = $l2;
$ref = $r2;
} elsif ( $l2 =~ /^[.'][\t ]*(SH|TP|TQ|P|PP|LP)(?:[\t ]|\s*$)/ ) {
$line =~ s/^\.([BI])\s*$/$insert_font\\f$1/;
$self->SUPER::unshiftline( $l2, $r2 );
} elsif ( $l2 =~ /^([.'][\t ]*(?:IP)[\t ]+"?)(.*)$/ ) {
# Install the font modifier into the next line
# after a possible quote (")
my $macro = $1;
my $arg = $2;
$line =~ /^\.([BI])\s*$/;
$line = $macro . "$insert_font\\f$1" . $arg;
$ref = $r2;
} elsif ( $l2 =~ /^[.']/ ) {
warn wrap_ref_mod(
$ref,
"po4a::man",
dgettext(
"po4a",
"Font modifiers followed by a command may disturb "
. "po4a. You should either remove the font modifier "
. "'%s', or integrate a \\f font modifier in the "
. "following command ('%s'), but continuing anyway."
),
$line, $l2
);
$line = "PO4A-INLINE:$line:PO4A-INLINE";
$self->SUPER::unshiftline( $l2, $r2 );
} else {
# convert " to the groff's double quote glyph; it will be
# converted back to " in pre_trans. It is needed because
# otherwise, these quotes will be taken as arguments
# delimiters.
$l2 =~ s/"/\\(dq/g;
# append this line to the macro, with surrounding quotes, so
# that the line appear as an uniq argument.
$line .= ' "' . $l2 . '"';
}
} else {
$line =~ s/\\$//;
$line =~ s/\\c$//;
$line .= $l2;
}
}
# Detect non-wrapped paragraphs
# This must be done before handling the .B, .RI ... font requests
$line =~ s/^($FONT_RE)(\s+)/$2$1/;
$line .= "\n";
# Handle font requests here
if ( $line =~ /^[.'][\t ]*([BI]|BI|BR|IB|IR|RB|RI)(?:(?: +|\t)(.*)|)$/ ) {
my $macro = $1;
my $arguments = $2;
my @args = splitargs( $ref, $arguments );
if ( $macro eq 'B' || $macro eq 'I' ) {
# To keep the space(s), we must introduce some \&
@args = map { $_ =~ s/^(\s*)$/\\&$1\\&/s; $_ } @args;
my $arg = join( " ", @args );
$arg =~ s/^ +//;
this_macro_needs_args( $macro, $ref, $arg );
$line = "$insert_font\\f$macro" . $arg . "\\fR\n";
$insert_font = "";
}
# .BI bold alternating with italic
# .BR bold/roman
# .IB italic/bold
# .IR italic/roman
# .RB roman/bold
# .RI roman/italic
if ( $macro eq 'BI'
|| $macro eq 'BR'
|| $macro eq 'IB'
|| $macro eq 'IR'
|| $macro eq 'RB'
|| $macro eq 'RI' )
{
# num of seen args, first letter of macro name, second one
my ( $i, $a, $b ) = ( 0, substr( $macro, 0, 1 ), substr( $macro, 1 ) );
$line = join( "", map { $i++ % 2 ? "\\f$b$_" : "\\f$a$_" } @args ) . "\\fR\n";
if ( $i eq 0 ) {
# If a .BI is used without argument, we must insert a
# \fI\fR. The \fR was inserted previously.
$line = "\\f$b$line";
}
}
if ( length $insert_font ) {
$line =~ s/\n$//;
$line = "$insert_font$line\\fR\n";
}
if ( $line =~ /^(.*)\\c(\\f.)?\s*\\fR\n/ ) {
my $begin = $1;
my ( $l2, $r2 ) = $self->SUPER::shiftline();
if ( $l2 =~ /^[.']/ ) {
$self->SUPER::unshiftline( $l2, $r2 );
} else {
$l2 =~ s/\s*$//s;
$line = "$begin\\fR$l2\n";
}
}
}
return ( $line, $ref );
}
# Overload Transtractor's pushline.
# This pushline first push comments (if there are comments for the
# current line, and the line is not empty), and then push the line.
sub pushline {
my ( $self, $line ) = ( shift, shift );
if ( $line !~ m/^\s*$/ ) {
# add comments
foreach my $c (@comments) {
# comments are pushed (maybe at the wrong place).
$self->SUPER::pushline( $self->r("$$c[0]\\\"$$c[1]\n") );
}
@comments = ();
}
$self->SUPER::pushline($line);
}
# The default unshiftline from Transtractor may fail because shiftline
# is overloaded
sub unshiftline {
die wrap_mod(
"po4a::man",
dgettext(
"po4a",
"The unshiftline is not supported for the man module. "
. "Please send a bug report with the groff page that generated "
. "this error."
)
);
}
###############################################
#### FUNCTION TO TRANSLATE OR NOT THE TEXT ####
###############################################
sub pushmacro {
my $self = shift;
if ( scalar @_ ) {
# Do quote the arguments containing spaces, as it should.
# but do not do so if they already contain quotes and escaped spaces
# For example, cdrdao(1) uses:
# .IP CATALOG\ "ddddddddddddd" (Here, the quote have to be displayed)
# Adding extra quotes as in:
# .IP "CATALOG\ "ddddddddddddd""
# results in two args: 'CATALOG\ ' and 'ddddddddddddd""'
$self->pushline(
join(
" ",
map {
# Replace double quotes by \(dq (double quotes could be
# taken as an argument delimiter).
# Only quotes not preceded by \ are taken into account
# (\" introduces a comment).
s/(?<!\\)"/\\\(dq/g if ( defined $_ );
defined $_
? (
length($_)
? ( m/([^\\] |^ )/ ? "\"$_\"" : "$_" )
# Quote arguments that contain a space.
# (not needed for non breaknig spaces, i.e.
# spaces preceded by '\')
: '""' # empty argument
)
: '' # no argument
} @_
)
. "\n"
);
} else {
$self->pushline("\n");
}
}
sub this_macro_needs_args {
my ( $macroname, $ref, $args ) = @_;
unless ( length($args) ) {
die wrap_ref_mod(
$ref,
"po4a::man",
dgettext(
"po4a",
"macro %s called without arguments. "
. "Even if placing the macro arguments on the next line is authorized "
. "by man(7), handling this would make the po4a parser too complicate. "
. "Please simply put the macro args on the same line."
),
$macroname
);
}
}
sub pre_trans {
my ( $self, $str, $ref, $type ) = @_;
# Preformatting, so that translators don't see
# strange chars
my $origstr = $str;
print STDERR "pre_trans($str)="
if ( $debug{'pretrans'} );
# Do as few treatments as possible with the .de, .ie and .if sections
if ( defined $self->{type} && $self->{type} =~ m/^(ie|if|de)$/ ) {
return $str;
}
# Note: if you want to implement \c support, the groff man page is your playground
if ( not defined $self->{type} ) {
$str =~ s/(\G|^(?:.*?)\n|^) # Last position, or begin of a line
([ \t]*[^.'][^\n]*(?<!\\)(?:\\\\)*) # the new line, which
\\c[ \t]*\n # ends by \c and followed by a line
(?![ \t]*[.'])/$1$2/sgx; # not followed by a command (.')
}
die wrap_ref_mod( $ref, "po4a::man",
dgettext( "po4a", "Escape sequence \\c encountered. This is not completely handled yet. Faulty input: %s" ),
$str )
if ( $str =~ /\\c/ );
$str =~ s/>/E<gt>/sg;
$str =~ s/</E<lt>/sg;
$str =~ s/EE<lt>gt>/E<gt>/g; # could be done in a smarter way?
while ( $str =~ m/^(.*)PO4A-INLINE:(.*?):PO4A-INLINE(.*)$/s ) {
my ( $t1, $t2, $t3 ) = ( $1, $2, $3 );
$str = "$1E<$2>";
if ($mdoc_mode) {
# When a punctuation sign must be joined to an argument, mdoc allows such a construct:
# .Ar file1 , file2 , file3 ) .
# Here, we move the punctuation out of the E<...> tag.
# This is reverted in post_trans.
# FIXME: To be checked with the French punctuation
while ( $str =~ m/(?<!\\) +([.,;:\)\]]) *>/s ) {
$str =~ s/(?<!\\) +([.,;:\)\]]) *>/>$1/s;
}
}
if ( defined $t3 and length $t3 ) {
$t3 =~ s/^\n//s;
$str .= "\n$t3";
}
}
# simplify the fonts for the translators
if ( defined $self->{type} && $self->{type} =~ m/^(SH|SS)$/ ) {
set_regular("B");
}
$str = do_fonts( $str, $ref );
if ( defined $self->{type} && $self->{type} =~ m/^(SH|SS)$/ ) {
set_regular("R");
}
# After the simplification, the first char can be a \n.
# Simply push these newlines before the translation, but make sure the
# resulting string is not empty (or an additional line will be
# added).
if ( $str =~ /^(\n+)(.+)$/s ) {
$self->pushline($1);
$str = $2;
}
unless ($mdoc_mode) {
# Kill minus sign/hyphen difference.
# Aestetic of printed man pages may suffer, but:
# * they are translator-unfriendly
# * they break when using utf8 (for obscure reasons)
# * they forbid the searches, since keybords don't have hyphen key
# * they forbid copy/paste, since options need minus sign, not hyphen
$str =~ s|\\-|-|sg;
# Groff bestiary
$str =~ s/\\\*\(lq/``/sg;
$str =~ s/\\\*\(rq/''/sg;
$str =~ s/\\\(dq/"/sg;
}
# non-breaking spaces
# some non-breaking spaces may have been added during the parsing
$str =~ s/\Q$nbs/\\ /sg;
$str =~ s/\\~/\\ /sg;
print STDERR "$str\n" if ( $debug{'pretrans'} );
return $str;
}
sub post_trans {
my ( $self, $str, $ref, $type, $wrap ) = @_;
my $transstr = $str;
print STDERR "post_trans($str)="
if ( $debug{'postrans'} );
# Do as few treatments as possible with the .de, .ie and .if sections
if ( defined $self->{type} && $self->{type} =~ m/^(ie|if|de)$/ ) {
return $str;
}
unless ($mdoc_mode) {
# Post formatting, so that groff see the strange chars
$str =~ s|\\-|-|sg; # in case the translator added some of them manually
# change hyphens to minus signs
# (this shouldn't be done for \s-<number> font size modifiers)
# nor on .so/.mso args
unless ( defined $self->{type} && $self->{type} =~ m/^m?so$/ ) {
my $tmp = "";
while ( $str =~ m/^(.*?)-(.*)$/s ) {
my $begin = $1;
$str = $2;
my $tmp2 = $tmp . $begin;
if ( ( $begin =~ m/(?<!\\)(\\\\)*\\s$/s )
or ( $begin =~ m/(?<!\\)(\\\\)*\\\((.|E<[gl]t>)?$/s )
or ( $tmp2 =~ m/(?<!\\)(\\\\)*\\[ZHhCv]'([^']|(?<!\\)(\\\\)*\\')*$/ )
or ( $tmp2 =~ m/(?<!\\)(\\\\)*\\(\*)?\[([^\]]|(?<!\\)(\\\\)*\\\[)*$/ )
or ( $tmp2 =~ m/(?<!\\)(\\\\)*\\\*\(.?$/ ) )
{
# Do not change - to \- for
# * \s-n (reduce font size)
# * \(.. (e.g. '<-', '-D')
# * inside a \h'...'
# * inside a \C'...'
# * inside a \[...]
# * inside a \*(..
# * inside a \*[...]
# * inside a \v'...'
# * inside a \H'...'
# * inside a \Z'...'
$tmp = $tmp2 . "-";
} else {
$tmp = $tmp2 . "\\-";
}
}
$str = $tmp . $str;
}
}
# There must not be an end of line inside an inline macro
$str =~ s/(E<\.[^>]*)\n([^>]*>)/$1 $2/gs;
# No . or ' on first char, or nroff will think it's a macro
# * at the beginning of a paragraph, add \& (zero width space) at
# the beginning of the line
if ( not defined $self->{type} ) {
# Only do it on regular text, because
# his doesn't work after a TS (this macros shift
# lines, which may contain macros)
# or for the .ta arguments (e.g. .ta .5i 3i)
$str =~ s/^((?:
(?:CW|[RBI])<
|$FONT_RE
)?
[.']
)/\\&$1/mgx;
} elsif ( $self->{type} =~ m/^(TP|TQ)$/ ) {
# But it is also needed for some type (e.g. TP, if followed by a
# font macro)
# This regular expression is the same as above
$str =~ s/^((?:(?:CW|[RBI])<|$FONT_RE)?[.'])/\\&$1/mg;
}
# * degraded mode, doesn't work for the first line of a paragraph
$str =~ s/\n([.'])/ $1/mg;
# Change ascii non-breaking space to groff one
my $nbs_out = get_out_nbs( $self->get_out_charset );
$str =~ s/\Q$nbs_out/\\ /sg if defined $nbs_out;
# No nbsp (said "\ " in groff on the last pos of the line, or groff adds
# an extra space
$str =~ s/\\ \n(?=.)/\\ /sg;
# Make sure we compute internal sequences right.
# think about: B<AZE E<lt> EZA E<gt>>
while ( $str =~ m/^(.*)(CW|[RBI])<(.*)$/s ) {
my ( $done, $rest ) = ( $1 . "\\f$2", $3 );
$done =~ s/CW$/\(CW/;
my $lvl = 1;
while ( length $rest && $lvl > 0 ) {
my $first = substr( $rest, 0, 1 );
if ( $first eq '<' ) {
$lvl++;
} elsif ( $first eq '>' ) {
$lvl--;
}
if ( $first eq "\n" ) {
# Don't accept \n within B<> parameters as troff seems to reset font on new line (Debian's #1016753)
$done .= ' ' if ( $lvl > 0 );
} else {
$done .= $first if ( $lvl > 0 );
}
$rest = substr( $rest, 1 );
}
die wrap_ref_mod( $ref || $self->{ref},
"po4a::man", dgettext( "po4a", "Unbalanced '<' and '>' in font modifier. Faulty message: %s" ), $str )
if ( $lvl > 0 );
# Return to the regular font
$done .= "\\fP$rest";
$str = $done;
}
while ( $str =~ m/^(.*?)E<([.'][\t ]*.*?(?<!E<[gl]t))>(.*)$/s ) {
my ( $t1, $t2, $t3 ) = ( $1, $2, $3 );
$t1 =~ s/ +$//s;
$t2 =~ s/\n/ /gs;
if ($mdoc_mode) {
# restore the punctuation inside the line (see pre_trans)
if ( $t3 =~ s/^([.,;:\)\]]+)//s ) {
my $punctuation = $1;
$punctuation =~ s/([.,;:\)\]])/$1 /;
$t2 .= " $punctuation";
}
}
$t3 =~ s/^ +//s;
if ($wrap) {
# The no-wrap case should be checked
$t1 =~ s/\n$//s;
}
$str = $t1;
if ( length $t1 ) {
$t1 =~ s/\n$//s;
$str = "$t1\n";
}
$str .= $t2;
if ( defined $t3 and length $t3 ) {
$t3 =~ s/^\n//s;
$str .= "\n$t3";
}
}
my $str2 = $str;
$str2 =~ s/E<[gl]t>//g;
die wrap_ref_mod( $ref || $self->{ref},
"po4a::man", dgettext( "po4a", "Unknown '<' or '>' sequence. " . "Faulty message: %s" ), $str )
if $str2 =~ /[<>]/;
$str =~ s/E<gt>/>/mg;
$str =~ s/E<lt>/</mg;
# Don't do that, because we'll go into trouble if previous line was .TP
# $str =~ s/^\\f([BI])(.*?)\\f[RP]$/\.$1 $2/mg;
unless ($mdoc_mode) {
my $tmp = "";
while ( $str =~ m/^(.*?)(``|'')(.*)$/s ) {
$tmp .= $1;
my $q = $2;
$str = $3;
# There are probably many more exceptions, here are those I could
# detect in my manpages.
# \*(.' \*(.`
# \*' \*`
# \N'xxx'
if ( $tmp =~ m/(?<!\\)(?:\\\\)*\\\*\($/s ) {
$tmp .= $q;
} elsif (
$tmp =~ m/(?<!\\)(?:\\\\)*\\\*\(.$/s
or $tmp =~ m/(?<!\\)(?:\\\\)*\\\*$/s
or ( $tmp =~ m/(?<!\\)(?:\\\\)*\\N'[0-9]*$/s
and $q eq "''" )
)
{
$q =~ m/(.)(.)/;
$tmp .= $1;
$str = $2 . $str;
} else {
$q =~ s/``/\\\*\(lq/;
$q =~ s/''/\\\*\(rq/;
$tmp .= $q;
}
}
$str = $tmp . $str;
}
if ( not defined $self->{type} ) {
$str =~ s/(?<!\\) $//mg;
}
print STDERR "$str\n" if ( $debug{'postrans'} );
return $str;
}
sub translate {
my ( $self, $str, $ref, $type ) = ( shift, shift, shift, shift );
my (%options) = @_;
my $origstr = $str;
return $str unless ( defined $str ) && length($str);
return $str if ( $str eq "\n" );
# Do not translate the strings that only consist of fonts, spaces and
# \&. This is useful because we introduced \& in shiftline.
if ( $str =~ m/^($FONT_RE|\s|\\&)*$/s ) {
do_fonts( $str, $ref || $self->{ref} );
return $str;
}
# If a string is quoted, only translate the argument between the
# quotes.
if ( $options{'wrap'} or $str !~ m/\n/s ) {
if ( $str =~ m/^\"(.*)\"$/s and $1 !~ m/(?<!\\)\"/ ) {
$str = '"' . $self->translate( $1, $ref, $type, %options ) . '"';
$str =~ s/\n"$/"\n/s;
return $str;
}
}
$str = pre_trans( $self, $str, $ref || $self->{ref}, $type );
$options{'comment'} .= join( '\n', map { $$_[1] } @comments );
# Translate this
$str = $self->SUPER::translate( $str, $ref || $self->{ref}, $type || $self->{type}, %options );
if ( $options{'wrap'} ) {
my (@paragraph);
@paragraph = split( /\n/, $str );
if ( defined( $paragraph[0] ) && $paragraph[0] eq '' ) {
shift @paragraph;
}
$str = join( "\n", @paragraph ) . "\n";
}
$str = post_trans( $self, $str, $ref || $self->{ref}, $type, $options{'wrap'} );
return $str;
}
# shortcut
sub t {
return $_[0]->translate( $_[1] );
}
# shortcut.
# As a rule of thumb, I do not recode macro names, unless they may be
# followed by other characters.
sub r {
my $self = shift;
my $str = shift;
# non-breaking spaces
# some non-breaking spaces may have been added during the parsing
$str =~ s/\Q$nbs/\\ /sg;
return $str;
}
sub do_paragraph {
my ( $self, $paragraph, $wrapped_mode ) = ( shift, shift, shift );
# Following needed because of 'ft' (at least, see ft macro below)
unless ( $paragraph =~ m/\n$/s ) {
my @paragraph = split( /\n/, $paragraph );
$paragraph .= "\n"
unless scalar(@paragraph) == 1;
}
$self->pushline( $self->translate( $paragraph, $self->{ref}, "Plain text", "wrap" => ( $wrapped_mode eq 'YES' ) ) );
}
#############################
#### MAIN PARSE FUNCTION ####
#############################
sub parse {
my $self = shift;
my ( $line, $ref );
my ($paragraph) = ""; # Buffer where we put the paragraph while building
my $wrapped_mode = 'YES'; # Should we wrap the paragraph? Three possible values:
# YES: do wrap
# NO: don't wrap because this paragraph contains indented lines
# this status disapear after the end of the paragraph
# MACRONO: don't wrap because we saw the nf macro. It stays so
# until the next fi macro.
# We want to change the non-breaking space according to the input
# document charset
$nbs = get_in_nbs( $self->{TT}{'file_in_charset'} );
LINE:
undef $self->{type};
( $line, $ref ) = $self->shiftline();
while ( defined($line) ) {
# print STDERR "line=$line;ref=$ref";
chomp($line);
$self->{ref} = "$ref";
# print STDERR "LINE=$line<<\n";
if ( $line =~ /^[.']/ ) {
die wrap_mod( "po4a::man", dgettext( "po4a", "Unparsable line: %s" ), $line )
unless ( $line =~ /^([.']+\\*?)(\\["#])(.*)/
|| $line =~ /^([.'])(\S*)(.*)/ );
my $arg1 = $1;
$arg1 .= $2;
my $macro = $2;
my $arguments = $3;
if ( $inline{$macro} ) {
$paragraph .= "PO4A-INLINE:" . $line . ":PO4A-INLINE\n";
goto LINE;
}
# Split on spaces for arguments, but not spaces within double quotes
my @args = ();
push @args, $arg1;
if ( $macro =~ /^(?:ta|TP|ie|if|de)$/ ) {
# The number of spaces may be critical for the 'ta' macro,
# and there is no need to split the arguments.
push @args, $arguments;
} else {
push @args, splitargs( $ref, $arguments );
}
if ( length($paragraph) ) {
do_paragraph( $self, $paragraph, $wrapped_mode );
$paragraph = "";
$wrapped_mode = $wrapped_mode eq 'NO' ? 'YES' : $wrapped_mode;
}
# Special case: Don't change these lines
# .\" => comments
# .\# => comments
# ." => comments
# . => empty point on the line
# .tr abcd...
# => substitution like Perl's tr/ac/bd/ on output.
if ( $macro eq '\\"'
|| $macro eq ''
|| $macro eq 'tr'
|| $macro eq '"'
|| $macro eq '\\#' )
{
$self->pushline( $self->r($line) . "\n" );
goto LINE;
}
# Special case:
# .nf => stop wrapped mode
# .fi => wrap again
if ( $no_wrap_begin{$macro} or $no_wrap_end{$macro} ) {
if ( $no_wrap_end{$macro} ) {
$wrapped_mode = 'YES';
} else {
$wrapped_mode = 'MACRONO';
}
$self->pushline( $self->r($line) . "\n" );
goto LINE;
}
# SH resets the wrapping (in addition to starting a section)
if ( $macro eq 'SH' ) {
$wrapped_mode = 'YES';
}
unshift @args, $self;
# Apply macro
$self->{type} = $macro;
if ( defined( $macro{$macro} ) ) {
&{ $macro{$macro} }(@args);
} else {
if ( defined $unknown_macros ) {
&{$unknown_macros}(@args);
} else {
$self->pushline( $self->r($line) . "\n" );
die wrap_ref_mod(
$ref,
"po4a::man",
dgettext(
"po4a",
"Unknown macro '%s'. Remove it from the document, or refer to the Locale::Po4a::Man manpage to see how po4a can handle new macros."
),
$line
);
}
}
} elsif ( $line =~ /^ +[^. ]/ ) {
# (Lines containing only spaces are handled as empty lines)
# Not a macro, but not a wrapped paragraph either
$wrapped_mode = $wrapped_mode eq 'YES' ? 'NO' : $wrapped_mode;
$paragraph .= $line . "\n";
} elsif ( $line =~ /^[^.].*/ && $line !~ /^ *$/ ) {
# (Lines containing only spaces are handled latter as empty lines)
if ( $line =~ /^\\"/ ) {
# special case: the line is entirely a comment, keep the
# comment.
# NOTE: comment could also be found in the middle of a line.
# From info groff:
# Escape: \": Start a comment. Everything to the end of the
# input line is ignored.
$self->pushline( $self->r($line) . "\n" );
goto LINE;
} elsif ( $line =~ /^\\#/ ) {
# Special groff comment. Do not keep the new line
goto LINE;
} else {
# Not a macro
# * first, try to handle some "output line continuation" (\c)
$paragraph =~ s/\\c *(($FONT_RE)?)\n?$/$1/s;
# * append the line to the current paragraph
$paragraph .= $line . "\n";
}
} else { #empty line, or line containing only spaces
if ( length($paragraph) ) {
do_paragraph( $self, $paragraph, $wrapped_mode );
$paragraph = "";
}
$wrapped_mode = $wrapped_mode eq 'NO' ? 'YES' : $wrapped_mode;
$self->pushline( $line . "\n" );
}
# finally, we did not reach the end of the paragraph. The comments
# belong to the current paragraph.
push @comments, @next_comments;
@next_comments = ();
# Reinit the loop
( $line, $ref ) = $self->shiftline();
undef $self->{type};
}
if ( length($paragraph) ) {
do_paragraph( $self, $paragraph, $wrapped_mode );
$wrapped_mode = $wrapped_mode eq 'NO' ? 'YES' : $wrapped_mode;
$paragraph = "";
}
# flush the last comments
push @comments, @next_comments;
@next_comments = @comments;
@comments = ();
for my $c (@next_comments) {
$self->pushline( $self->r("$$c[0]\\\"$$c[1]\n") );
}
# reinitialize the module
@next_comments = ();
set_regular("R");
set_font("R");
set_font("R");
$mdoc_mode = 0;
} # end of main
# Cache the results of get_in_nbs and get_out_nbs
{
my $last_in_charset;
my $last_in_nbs;
# get_in_nbs(charset)
# Return the representation of a non breaking space in the input charset
# (given in argument).
# or PO4A:VERY_IMPROBABLE_STRING_USEDFOR_NON-BREAKING-SPACES if this
# character doesn't exist in this charset.
sub get_in_nbs() {
my $charset = shift;
return $last_in_nbs
if ( defined $charset
and defined $last_in_charset
and $charset eq $last_in_charset );
my $nbs = "\xA0";
my $length;
if ( defined $charset and length $charset ) {
eval(
"\$length = Encode::from_to(\$nbs, \"latin-1\",
\$charset,
1)"
);
}
# fall back solution
$nbs = "PO4A:VERY_IMPROBABLE_STRING_USEDFOR_NON-BREAKING-SPACES"
unless defined $length;
$last_in_charset = $charset;
$last_in_nbs = $nbs;
return $last_in_nbs;
}
my $last_out_charset;
my $last_out_nbs;
# get_out_nbs(charset)
# Return the representation of a non breaking space in the output charset
# (given in argument).
# or undef if this character doesn't exist in this charset.
sub get_out_nbs() {
my $charset = shift;
return $last_out_nbs
if ( defined $charset
and defined $last_out_charset
and $charset eq $last_out_charset );
my $nbs = "\xA0";
my $length;
if ( defined $charset and length $charset ) {
eval(
"\$length = Encode::from_to(\$nbs, \"latin-1\",
\$charset,
1)"
);
}
# fall back solution
undef $nbs
unless defined $length;
$last_out_charset = $charset;
$last_out_nbs = $nbs;
return $last_out_nbs;
}
}
# We can't push the header in the first line of the document, as in the
# other module, because the first line may contain indications on how the
# man page must be processed.
sub docheader {
return "";
}
# The header is pushed just before the .TH macro (this macro is mandatory
# and must be specified at the begining (there may be macro definitions
# before).
sub push_docheader {
my $self = shift;
$self->pushline( ".\\\"*******************************************************************\n"
. ".\\\"\n"
. ".\\\" This file was generated with po4a. Translate the source file.\n"
. ".\\\"\n"
. ".\\\"*******************************************************************\n" );
}
# Split request's arguments.
# see:
# info groff --index-search "Request Arguments"
sub splitargs {
my ( $ref, $arguments ) = ( $_[0], $_[1] );
my @args = ();
my $buffer = "";
my $escaped = 0;
if ( !defined $arguments ) {
return @args;
}
# change non-breaking space before to ensure that split does what we want
# We change them back before pushing into the arguments. The one which
# will be translated will have the same change again (in pre_trans and
# post_trans), but the ones which won't get translated are not changed
# anymore. Let's play safe.
$arguments =~ s/\\ /$nbs/g;
$arguments =~ s/^ +//;
$arguments =~ s/\\&"/\\(dq/g;
$arguments =~ s/^ *//;
while ( length $arguments ) {
if ( $arguments =~ s/^"((?:[^"]|"")*)"(?!") *// ) {
my $a = $1;
$a =~ s/""/"/g if defined $a;
push @args, $a;
} elsif ( $arguments =~ s/^"((?:[^"]|"")*) *$// ) {
# Unterminated quote, but this seems to be handled by removing
# the trailing spaces and closing the quotes.
my $a = $1;
$a =~ s/""/"/g if defined $a;
push @args, $a;
} elsif ( $arguments =~ s/^([^ ]+) *// ) {
push @args, $1;
} else {
die wrap_ref_mod( $ref, "po4a::man", dgettext( "po4a", "Cannot parse command arguments: %s" ), $arguments );
}
}
if ( $debug{'splitargs'} ) {
print STDERR "ARGS=";
map { print STDERR "$_^" } @args;
print STDERR "\n";
}
return @args;
}
{
#static variables
# font stack.
# Keep track of the current font (because a font modifier can
# stay open at the end of a paragraph), and the previous font (to
# handle \fP)
my $current_font = "R";
my $previous_font = "R";
# $regular_font describe the "Regular" font, which is the font used
# when there is no font modifier.
# For example, .SS use a Bold font, and thus in
# .SS This is a \fRsubsection\fB header
# the \fR and \fB font modifiers have to be kept.
my $regular_font = "R";
# Set the regular font
# It takes the regular font in argument (when no argument is provided,
# it uses "R").
sub set_regular {
print STDERR "set_regular('@_')\n"
if ( $debug{'fonts'} );
set_font(@_);
$regular_font = $current_font;
}
sub set_font {
print STDERR "set_font('@_')\n"
if ( $debug{'fonts'} );
my $saved_previous = $previous_font;
$previous_font = $current_font;
if ( !defined $_[0] ) {
$current_font = "R";
} elsif ( $_[0] =~ /^(P|\[\]|\[P\])/ ) {
$current_font = $saved_previous;
} elsif ( length( $_[0] ) == 1 ) {
$current_font = $_[0];
} elsif ( length( $_[0] ) == 2 ) {
$current_font = "($_[0]";
} else {
$current_font = "[$_[0]]";
}
print STDERR "r:'$regular_font', p:'$previous_font', c:'$current_font'\n"
if ( $debug{'fonts'} );
}
sub do_fonts {
# one argument: a string
my ( $str, $ref ) = ( shift, shift );
print STDERR "do_fonts('$str', '$ref')="
if ( $debug{'fonts'} );
# restore the font stack
$str = "\\f$previous_font\\f$current_font" . $str;
# In order to be able to split on /\\f/, without problem with
# \\foo, groff backslash (\\) are changed to the (equivalent)
# form: \e (this should be done in shiftline).
my @array1 = split( /\\f/, $str );
$str = shift @array1; # The first element is always empty because
# the $current_font was put at the beginning
# $last_font indicates the last font that was appended to the buffer.
# It differ from $current_font because concecutive identical fonts
# are not written in the buffer.
my $last_font = $regular_font;
foreach my $elem (@array1) {
# Do not touch the fonts in the inline macros
# These inline macros may have their argument in bold or italic,
# we can't know.
if ( $str =~ m/E<\.([^>]|E<gt>|E<lt>)*$/s ) {
# We can't use \\f here, otherwise the font simplifier regexp
# will use the fonts of the inline macros.
$str .= "PO4A-FAKE-FONT" . $elem;
next;
}
# Replace \fP by the exact font (because some font modifiers will
# be removed or added, which will break groff's font stack)
$elem =~ s/^(P|\[\]|\[P\])/$previous_font/s;
# change \f1 to \fR, etc.
# Those fonts are defined in the DESC file, which
# may depend on the groff device.
# fonts 1 to 4 are usually mapped to R, I, B, BI
# TODO: use an array for the font positions. This
# array should be updated by .fp requests.
$elem =~ s/^1/R/;
$elem =~ s/^2/I/;
$elem =~ s/^3/B/;
$elem =~ s/^4/(BI/;
if ( $elem =~ /^([1-4]|B|I|R|\(..|\[[^]]*\]|L)(.*)$/s ) {
# Each element should now start by a recognized font modifier
my $new_font = $1;
my $arg = $2;
# Update the font stack
$previous_font = $current_font;
$current_font = $new_font;
if ( $new_font eq $last_font ) {
# continue with the same font.
$str .= $arg;
} else {
# A new font is used, update $last_font
$last_font = $new_font;
$str .= "\\f" . $elem;
}
} else {
die wrap_ref_mod( $ref, "po4a::man", dgettext( "po4a", "Unsupported font in: '%s'." ), "\\f" . $elem );
}
}
# Do some simplification (they don't change the font stack)
# Remove empty font modifiers at the end
$str =~ s/($FONT_RE)*$//s;
# close any font modifier
if ( $str =~ /.*($FONT_RE)(.*?)$/s && $1 ne "\\f$regular_font" ) {
$str =~ s/(\n?)$/\\f$regular_font$1/;
}
# remove fonts with empty argument
while ( $str =~ /($FONT_RE){2}/ ) {
# while $str has two consecutive font modifiers
# only keep the second one.
$str =~ s/($FONT_RE)($FONT_RE)/$2/s;
}
# when there are two consecutive switches to the regular font,
# remove the last one.
while (
$str =~ /^(.*)\\f$regular_font # anything followed by a
# regular font
((?:\\(?!f)|[^\\])*) # the text concerned by
# this font (i.e. without any
# font modifier, i.e. it
# contains no '\' followed by
# an 'f')
\\f$regular_font # another regular font
(.*)$/sx
)
{
$str = "$1\\f$regular_font$2$3";
}
# the regular font modifier at the beginning of the string is not
# needed (the do_fonts subroutine ensure that every paragraph ends with
# the regular font.
if ( $str =~ /^(.*?)\\f$regular_font(.*)$/s && $1 !~ /$FONT_RE/ ) {
$str = "$1$2";
}
# Use special markup for common fonts, so that translators don't see
# groff's font modifiers
my $PO_FONTS = "B|I|R|\\(CW";
# remove the regular font from this list
$PO_FONTS =~ s/^$regular_font\|//;
$PO_FONTS =~ s/\|$regular_font\|/|/;
$PO_FONTS =~ s/\|$regular_font$//;
while (
$str =~ /^(.*?) # $1: anything (non greedy: as
# few as possible)
\\f($PO_FONTS) # followed by a common font
# modifier ($2)
((?:\\[^f]|[^\\])*) # $3: the text concerned by
# this font (i.e. without any
# font modifier, i.e. it
# contains no '\' followed by
# an 'f')
\\f # the next font modifier
(.*)$/sx
)
{ # $4: anything up to the end
my ( $begin, $font, $arg, $end ) = ( $1, $2, $3, $4 );
if ( $end =~ /^$regular_font(.*)$/s ) {
# no need to add a switch to $regular_font
$str = $begin . "$font<$arg>$1";
} else {
$str = $begin . "$font<$arg>\\f$end";
}
}
$str =~ s/\(CW</CW</sg;
$str =~ s/PO4A-FAKE-FONT/\\f/sg;
print STDERR "'$str'\n" if ( $debug{'fonts'} );
return $str;
}
}
##########################################
#### DEFINITION OF THE MACROS WE KNOW ####
##########################################
# Each sub is passed self as first arg,
# plus the args present on the roff line
# ie, <<.TH LS "1" "October 2002" "ls (coreutils) 4.5.2" "User Commands">>
# is passed (".TH","LS","1","October 2002","ls (coreutils) 4.5.2","User Commands")
# Macro name is also passed, because .B (bold) will be encoded in pod format (and mangeled).
# They should return a list, which will be join'ed(' ',..)
# or undef when they don't want to add anything
# Some well known macro handling
# For macro taking only one argument, but people may forget the quotes.
# Example: >>.SH Another Section<< which should be >>.SH "Another Section"<<
sub translate_joined {
my ( $self, $macroname, $macroarg ) = ( shift, shift, join( " ", @_ ) );
#section# .S[HS] name
$self->pushmacro( $macroname, $self->t($macroarg) );
}
# For macro taking several arguments, having to be translated separately
sub translate_each {
my ( $self, $first ) = ( shift, 0 );
$self->pushmacro( map { $first++ ? $self->t($_) : $_ } @_ );
}
# For macro which shouldn't be given any arg
sub noarg {
my $self = shift;
warn "Macro $_[0] does not accept any argument\n"
if ( defined( $_[1] ) );
$self->pushmacro(@_);
}
# For macro whose arguments shouldn't be translated
sub untranslated {
my ( $self, $first ) = ( shift, 0 );
$self->pushmacro( map { $first++ ? $self->r($_) : $_ } @_ );
}
###
### man 7 man
###
$macro{'TH'} = sub {
my $self = shift;
my ( $th, $title, $section, $date, $source, $manual ) = @_;
#Preamble#.TH title section date source manual
# print STDERR "TH=$th;titre=$title;sec=$section;date=$date;source=$source;manual=$manual\n";
# Reset the memories
$self->push_docheader();
$self->pushmacro( $th, $self->t($title), $section, $self->t($date), $self->t($source), $self->t($manual) );
};
# .SS t Subheading t (like .SH, but used for a subsection inside a section).
$macro{'SS'} = $macro{'SH'} = sub {
if ( !defined $_[2] ) {
# The argument is on the next line.
my ( $self, $macroname ) = ( shift, shift );
my ( $l2, $ref2 ) = $self->shiftline();
if ( $l2 =~ /^\./ ) {
$self->SUPER::unshiftline( $l2, $ref2 );
} else {
chomp($l2);
$self->pushmacro( $macroname, $self->t($l2) );
}
return;
} else {
return translate_joined(@_);
}
};
# Macro: .SM [text]
# Set the text on the same line or the text on the next line in a
# font that is one point size smaller than the default font.
# FIXME: Maybe we should find a better way to represent this (inline is
# not really nice in the PO).
$inline{'SM'} = 1;
# .SP n Skip n lines (I think)
$macro{'SP'} = \&untranslated;
#Normal Paragraphs
# .LP Same as .PP (begin a new paragraph).
# .P Same as .PP (begin a new paragraph).
# .PP Begin a new paragraph and reset prevailing indent.
#Relative Margin Indent
# .RS i Start relative margin indent - moves the left margin i to the right
# As a result, all following paragraph(s) will be indented until
# the corresponding .RE.
# .RE End relative margin indent.
$macro{'LP'} = $macro{'P'} = $macro{'PP'} = sub {
noarg(@_);
# From info groff:
# The font size and shape are reset to the default value (10pt roman if no
# `-rS' option is given on the command line).
set_font("R");
};
$macro{'RE'} = \&noarg;
$macro{'RS'} = \&untranslated;
sub parse_tp_tq {
my $self = shift;
my ( $line, $l2, $ref2 );
$line .= $_[0] if defined( $_[0] );
$line .= ' ' . $_[1] if defined( $_[1] );
$self->pushline( $self->r($line) . "\n" );
( $l2, $ref2 ) = $self->shiftline();
chomp($l2);
while ( $l2 =~ /^\.PD/ ) {
$self->pushline( $self->r($l2) . "\n" );
( $l2, $ref2 ) = $self->shiftline();
chomp($l2);
}
# Deal with \c line continuation in .TP or .TQ
while ( $l2 =~ s/\\c$// ) {
my ( $l3, $ref3 ) = $self->shiftline();
$l2 .= $l3;
chomp($l2);
}
if ( $l2 =~ /^([.'][\t ]*([^\t ]*))(?:([\t ]+)(.*)$|$)/ ) {
if ( $inline{$2} ) {
my $tmp = "";
if ( defined $4 and length $4 ) {
$tmp = $3 . $self->t( $4, "wrap" => 0 );
}
$self->pushline( $1 . $tmp . "\n" );
} else {
# If the line after a .TP is a macro,
# let the parser do it's job.
# Note: use Transtractor unshiftline for now. This may require an
# implementation of the man module's own implementation.
# This may be a problem if, for example, the line resulted
# of a line continuation.
$self->SUPER::unshiftline( $l2, $ref2 );
}
} else {
$self->pushline( $self->t( $l2, "wrap" => 0 ) . "\n" );
}
}
#Indented Paragraph Macros
# .TP i Begin paragraph with hanging tag. The tag is given on the next line,
# but its results are like those of the .IP command.
$macro{'TP'} = sub {
parse_tp_tq(@_);
# From info groff:
# Note that neither font shape nor font size of the label [i.e. argument
# or first line] is set to a default value; on the other hand, the rest of
# the text has default font settings.
set_font("R");
};
# Indented Paragraph Macros
# .TQ Indicates continuation of the .TP labels that precede the indented
# paragraph.
$macro{'TQ'} = sub {
warn "Macro $_[1] does not accept any argument\n"
if ( defined( $_[2] ) );
parse_tp_tq(@_);
};
# Indented Paragraph Macros
# .HP i Begin paragraph with a hanging indent (the first line of the paragraph
# is at the left margin of normal paragraphs, and the rest of the para-
# graph's lines are indented).
#
$macro{'HP'} = sub {
untranslated(@_);
# From info groff:
# Font size and face are reset to their default values.
set_font("R");
};
# Indented Paragraph Macros
# .IP [designator] [nnn]
# Sets up an indented paragraph, using designator as a tag to mark
# its beginning. The indentation is set to nnn if that argument is
# supplied (default unit is `n'), otherwise the default indentation
# value is used. Font size and face of the paragraph (but not the
# designator) are reset to its default values. To start an indented
# paragraph with a particular indentation but without a designator,
# use `""' (two doublequotes) as the second argument.
# Note that the above is the groff_man(7) version, which of course differs radically
# from man(7). In one case, the designator is optional and the nnn is not, and the
# contrary in the other. This implies that when sticking to groff_man(7), we should
# mark an uniq argument as translatable.
$macro{'IP'} = sub {
my $self = shift;
if ( defined $_[2] ) {
$self->pushmacro( $_[0], $self->t( $_[1] ), $_[2] );
} elsif ( defined $_[1] ) {
$self->pushmacro( $_[0], $self->t( $_[1] ) );
} else {
$self->pushmacro(@_);
}
# From info groff:
# Font size and face of the paragraph (but not the designator) are reset
# to their default values.
set_font("R");
};
# Hypertext Link Macros
# .UR u Begins a hypertext link to the URI (URL) u; it will end with
# the corresponding UE command. When generating HTML this should
# translate into the HTML command <A HREF="u">.
# There is an exception: if u is the special value ":", then no
# hypertext link of any kind will be generated until after the
# closing UE (this permits disabling hypertext links in
# phrases like LALR(1) when linking is not appropriate).
# .UE Ends the corresponding UR command; when generating HTML this
# should translate into </A>.
# .UN u Creates a named hypertext location named u; do not include a
# corresponding UE command.
# When generating HTML this should translate into the HTML command
# <A NAME="u" id="u"> </A>
#
# E-Mail address Macros
# .MT m Begins a mailto link to the adress m; it will end with
# the corresponding ME command. When generating HTML this should
# translate into the HTML command <A HREF="mailto:m">.
# .ME Ends the corresponding MT command; when generating HTML this
# should translate into </A>.
$inline{'UR'} = $inline{'MT'} = 1;
$inline{'UE'} = $inline{'ME'} = 1;
$macro{'UN'} = \&translate_joined;
# Macros to describe command synopses
#
# These macros are a convenience for authors. They also assist
# automated translation tools and help browsers in recognizing command
# synopses and treating them differently from running text.
#
# .OP key value
# Describe an optional command argument. The arguments of this
# macro are set surrounded by option braces in the default Roman
# font; the first argument is printed with a bold face, while
# the second argument is typeset as italic.
#
# .SY command
# Begin synopsis. Takes a single argument, the name of a
# command. Text following, until closed by .YS, is set with a
# hanging indentation with the width of command plus a space.
# This produces the traditional look of a Unix command synopsis.
#
# .YS This macro restores normal indentation at the end of a command
# synopsis.
$macro{'OP'} = \&translate_each;
$macro{'SY'} = \&translate_joined;
$macro{'YS'} = \&noarg;
# Miscellaneous Macros
# .DT Reset tabs to default tab values (every 0.5 inches); does not
# cause a break.
# .PD d Set inter-paragraph vertical distance to d (if omitted, d=0.4v);
# does not cause a break.
$macro{'DT'} = \&noarg;
$macro{'PD'} = \&untranslated;
# Indexing term (printed on standard error).
# (ms macros)
$macro{'IX'} = \&translate_each;
###
### groff macros
###
# .br
$macro{'br'} = \&noarg;
# .bp N Eject current page and begin new page.
$macro{'bp'} = \&untranslated;
# .ad Begin line adjustment for output lines in current adjust mode.
# .ad c Start line adjustment in mode c (c=l,r,b,n).
$macro{'ad'} = \&untranslated;
my %ds_variables;
# .ds stringvar anything
# Set stringvar to anything.
$macro{'ds'} = sub {
my ( $self, $m ) = ( shift, shift );
my $name = shift;
my $string = "@_";
$ds_variables{$name} = $string;
# indicate to which variable this corresponds. The translator can
# find references to this string in the translation "\*(name" or
# "\*[name]"
$self->{type} = "ds $name";
$self->pushline( $m . " " . $self->r($name) . " " . $self->translate($string) . "\n" );
};
# .de macro [end] Define or redefine macro until end is encountered (end=.. by default).
# .de1 macro [end] Define or redefine macro until end is encountered (end=.. by default), turns off compatibility mode while executing the macro.
# .dei macro [end] Define or redefine macro until end is encountered (end=.. by default) substituting parameters with '.ds' content
# .dei1 macro [end] Define or redefine macro until end is encountered (end=.. by default) substituting parameters and turning compatibility off
$macro{'de'} = $macro{'de1'} = $macro{'dei'} = $macro{'dei1'} = sub {
my $self = shift;
if ( $groff_code ne "fail" ) {
my $paragraph = "@_";
my $end = ".";
my $comment;
my $macroname = $_[1];
$macroname = $ds_variables{$macroname} if ( $_[0] eq "dei" || $_[0] eq "dei1" );
if ( $macroname =~ m/(.*?)\\"(.*)$/ ) {
# Remove comments after the macro name (Debian's #1017837)
( $macroname, $comment ) = ( $1, $2 );
}
$macroname =~ s/^ *//;
$macroname =~ s/ *$//;
unless ( exists $macro{$macroname} || exists $inline{$macroname} ) {
if ( defined $comment ) {
$comment =~ s/^ *//;
$comment =~ s/ *$//;
warn wrap_mod(
"po4a::man",
dgettext(
"po4a",
"This page defines a new macro '%s' with '%s' (inline comment: %s), but you did not specify the expected po4a behavior "
. "when '%s' is used. You will get an error if this macro is actually used in your page.\n"
. "Add your macro to one of the '%s', '%s', '%s', '%s', '%s' or '%s' parameters to avoid issues.\n"
. "For example, passing '%s' to po4a will ensure that the defined macro remains hidden from translators.\n"
. "Please refer to the manpage of Locale::Po4a::Man for more info on these parameters.\n"
),
$macroname,
$_[0],
$comment,
$macroname,
'untranslated',
'noarg',
'translate_joined',
'translate_each',
'no_wrap',
'inline',
"-o untranslated=$macroname"
);
} else {
warn wrap_mod(
"po4a::man",
dgettext(
"po4a",
"This page defines a new macro '%s' with '%s', but you did not specify the expected po4a behavior "
. "when '%s' is used. You will get an error if this macro is actually used in your page.\n"
. "Add your macro to one of the '%s', '%s', '%s', '%s', '%s' or '%s' parameters to avoid issues.\n"
. "For example, passing '%s' to po4a will ensure that the defined macro remains hidden from translators.\n"
. "Please refer to the manpage of Locale::Po4a::Man for more info on these parameters.\n"
),
$macroname,
$_[0],
$macroname,
'untranslated',
'noarg',
'translate_joined',
'translate_each',
'no_wrap',
'inline',
"-o untranslated=$macroname"
);
}
}
if ( $paragraph =~ /^[.'][\t ]*d[ei1]*[\t ]+([^\t ]+)[\t ]+([^\t ]+)[\t ]$/ ) {
$end = $2;
$end = $ds_variables{$end} if ( $_[0] eq "dei" || $_[0] eq "dei1" );
}
my ( $line, $ref ) = $self->SUPER::shiftline();
chomp $line;
$paragraph .= "\n" . $line;
while ( defined($line) and $line ne ".$end" ) {
( $line, $ref ) = $self->SUPER::shiftline();
if ( defined $line ) {
chomp $line;
$paragraph .= "\n" . $line;
}
}
$paragraph .= "\n";
if ( $groff_code eq "verbatim" ) {
$self->pushline( $self->r($paragraph) );
} else {
$self->pushline( $self->translate( $paragraph, $self->{ref}, "groff code", "wrap" => 0 ) );
}
} else {
die wrap_ref_mod(
$self->{ref},
"po4a::man",
dgettext(
"po4a",
"This page defines a new macro with '%s'. Since po4a is not a real groff parser, this is not supported. "
. "The option '%s' gets these macros copied verbatim in the translated file, but it's not very robust. "
. "'%s' shows these macros to the translators, but groff macros are not user-friendly for translators."
),
$_[0],
"groff_code=verbatim",
"groff_code=translate"
);
}
};
# .fam Return to previous font family.
# .fam name Set the current font family to name.
$macro{'fam'} = \&untranslated;
# .fc a b Set field delimiter to a and pad character to b.
$macro{'fc'} = \&untranslated;
# .ft font Change to font name or number font;
$macro{'ft'} = sub {
if ( defined $_[2] ) {
set_font( $_[2] );
} else {
set_font("P");
}
};
# .hc c Set up additional hyphenation indicator character c.
$macro{'hc'} = \&untranslated;
# .hy Enable hyphenation (see nh)
# .hy N Switch to hyphenation mode N.
# .hym n Set the hyphenation margin to n (default scaling indicator m).
# .hys n Set the hyphenation space to n.
$macro{'hy'} = $macro{'hym'} = $macro{'hys'} = \&untranslated;
# .ie cond anything If cond then anything else goto .el.
# .if cond anything If cond then anything; otherwise do nothing.
$macro{'ie'} = $macro{'if'} = sub {
my $self = shift;
if ( $groff_code ne "fail" ) {
my $m = $_[0];
my $paragraph = "@_";
my ( $line, $ref );
my $count = 0;
$count = 1 if ( $paragraph =~ m/(?<!\\)\\\{/s );
while (( $paragraph =~ m/(?<!\\)\\$/s )
or ( $count > 0 ) )
{
( $line, $ref ) = $self->SUPER::shiftline();
chomp $line;
$paragraph .= "\n" . $line;
$count += 1 if ( $line =~ m/(?<!\\)\\\{/s );
$count -= 1 if ( $line =~ m/(?<!\\)\\\}/s );
}
if ( $m eq '.ie' ) {
# The .el line may be preceded by comments
( $line, $ref ) = $self->SUPER::shiftline();
chomp $line;
while ( $line =~ m/^[.']\\"/ ) {
$paragraph .= "\n" . $line;
( $line, $ref ) = $self->SUPER::shiftline();
chomp $line;
}
if ( $line !~ m/^[.'][ \t]*el(\s|\\\{)/ ) {
die wrap_ref_mod( $self->{ref}, "po4a::man",
dgettext( "po4a", "The .ie macro must be followed by a .el macro." ) );
}
my $paragraph2 = $line;
$count = 0;
$count = 1 if ( $line =~ m/(?<!\\)\\\{/s );
while (( $paragraph2 =~ m/(?<!\\)\\$/s )
or ( $count > 0 ) )
{
( $line, $ref ) = $self->SUPER::shiftline();
chomp $line;
$paragraph2 .= "\n" . $line;
$count += 1 if ( $line =~ m/(?<!\\)\\\{/s );
$count -= 1 if ( $line =~ m/(?<!\\)\\\}/s );
}
$paragraph .= "\n" . $paragraph2;
}
$paragraph .= "\n";
if ( $groff_code eq "verbatim" ) {
$self->pushline( $self->r($paragraph) );
} else {
$self->pushline( $self->translate( $paragraph, $self->{ref}, "groff code", "wrap" => 0 ) );
}
} else {
die wrap_ref_mod(
$self->{ref},
"po4a::man",
dgettext(
"po4a",
"This page uses conditionals with '%s'. Since po4a is not a real groff parser, this is not supported by default. "
. "The option '%s' gets these macros copied verbatim in the translated file, but it's not very robust. "
. "'%s' shows these macros to the translators, but groff macros are not user-friendly for translators."
),
$_[0],
"groff_code=verbatim",
"groff_code=translate"
);
}
};
# .el anything Display the parameter (part of a if-then-else with .ie)
$macro{'el'} = \&translate_joined;
# .in N Change indent according to N (default scaling indicator m).
$macro{'in'} = \&untranslated;
# .ig end Ignore text until .end.
$macro{'ig'} = sub {
my $self = shift;
$self->pushmacro(@_);
my ( $name, $end ) = ( shift, shift || '' );
$end = '' if ( $end =~ m/^\\\"/ );
my ( $line, $ref ) = $self->shiftline();
while ( defined($line) ) {
$self->pushline( $self->r($line) );
last if ( $line =~ /^\.$end\./ );
( $line, $ref ) = $self->shiftline();
}
};
# .it n macro Set an input line trap.
$macro{'it'} = \&untranslated;
# .lf N file Set input line number to N and filename to file.
$macro{'lf'} = \&untranslated;
# .ll N Set line length according to N
$macro{'ll'} = \&untranslated;
# .nh disable hyphenation (see hy)
$macro{'nh'} = \&untranslated;
# .na No Adjusting (see ad)
$macro{'na'} = \&untranslated;
# .ne N Need N vertical space
$macro{'ne'} = \&untranslated;
# .nr register N M
# Define or modify register
$macro{'nr'} = \&untranslated;
# .ps N Point size; same as \s[N]
$macro{'ps'} = \&untranslated;
# .so filename Include source file.
# .mso groff variant of .so (other search path)
$macro{'so'} = $macro{'mso'} = sub {
warn wrap_mod( "po4a::man",
dgettext( "po4a", "This page includes another file with '%s'. Do not forget to translate this file ('%s')." ),
$_[1], $_[2] );
my $self = shift;
$self->pushmacro(@_);
};
# .sp Skip one line vertically.
# .sp N Space vertical distance N
$macro{'sp'} = \&untranslated;
# .vs [space]
# .vs +space
# .vs -space
# Change (increase, decrease) the vertical spacing by SPACE. The
# default scaling indicator is `p'.
$macro{'vs'} = \&untranslated;
# .ta T N Set tabs after every position that is a multiple of N.
# .ta n1 n2 ... nn T r1 r2 ... rn
# Set tabs at positions n1, n2, ..., nn, [...]
$macro{'ta'} = sub {
# In some cases, a ta request can contain a translatable argument.
# FIXME: detect those cases (something like 5i does not need to be
# translated)
my ( $self, $m ) = ( shift, shift );
my $line = "@_";
$line =~ s/^ +//;
$self->pushline( $m . " " . $self->translate( $line, $self->{ref}, 'ta' ) . "\n" );
};
# .ti +N Temporary indent next line (default scaling indicator m).
$macro{'ti'} = \&untranslated;
###
### tbl macros
###
$macro{'TS'} = sub {
my $self = shift;
my ( $in_headers, $tab, $buffer ) = ( 1, "\t", "" );
my ( $in_textblock, $preline, $postline ) = ( 0, "", "" );
my ( $line, $ref ) = $self->shiftline();
my @options;
# Push table start
$self->pushmacro(@_);
while ( defined($line) ) {
if ( $line =~ /^\.TE/ ) {
# Table end
$self->pushline( $self->r($line) );
return;
}
if ($in_headers) {
if ( $line =~ /;$/ ) { # global options line
if ( $line =~ /\btab\s*\((.)\)/ ) {
$tab = $1;
}
} elsif ( $line =~ /\.$/ ) {
$in_headers = 0;
}
$self->pushline( $self->r($line) );
} elsif ( $in_textblock && $line =~ /^T}\s*/ ) { # end of text block
$in_textblock = 0;
$preline = $&; # save the `T}' marker to be output later
$line = $'; # save the remaing part of the line
# Drop any EOL from entry to be translated and save it for
# output below.
if ( chomp $buffer ) {
$postline .= "\n";
}
$self->pushline( $self->translate( $buffer, $ref, 'tbl table' ) . $postline );
$buffer = $postline = "";
next; # continue processing with the remaining part of the line
} elsif ( $in_textblock && $line =~ /^[.']/ ) {
# TODO: properly handle macros inside text blocks, currently we mark them
# for translations just like the previous version did
$self->pushline( $self->translate( $buffer, $ref, 'tbl table' ) );
$self->pushline( $self->translate( $line, $ref, 'tbl table' ) );
$buffer = "";
} elsif ( $line =~ /\\$/ || $in_textblock ) {
# Lines are continued on \ at the end of line
$buffer .= $line;
} else {
if ( $line =~ s/\s*T\{\s*$// ) { # start of text block
$in_textblock = 1;
$postline = $&; # save the `T{' to be outputed below
}
$buffer .= $line;
# Drop any EOL from entry to be translated and save it for
# output below.
if ( chomp $buffer ) {
$postline .= "\n";
}
# Arguments to translate are separated by the table's tab
# character (\t by default). We must be careful to preserve
# empty trailing fields, since in particular a text block is
# likely to show up as an empty trailing field here.
$self->pushline( $preline
. join( $tab, map { $self->translate( $_, $ref, 'tbl table' ) } split( /\Q$tab/, $buffer, -1 ) )
. $postline );
$buffer = $preline = $postline = "";
}
( $line, $ref ) = $self->shiftline();
}
};
###
### info groff
###
## Builtin register, of course they do not need to be translated
$macro{'F'} = $macro{'H'} = $macro{'V'} = $macro{'A'} = $macro{'T'} = \&untranslated;
## ms package
##
#
# Displays and keeps. None of these macro accept a translated argument
# (they allow to make blocks of text which cannot be broken by new page)
$macro{'DS'} = $macro{'LD'} = $macro{'DE'} = \&untranslated;
$macro{'ID'} = $macro{'BD'} = $macro{'CD'} = \&untranslated;
$macro{'RD'} = $macro{'KS'} = $macro{'KE'} = \&untranslated;
$macro{'KF'} = $macro{'B1'} = $macro{'B2'} = \&untranslated;
$macro{'DA'} = \&translate_joined;
# .pc c Change page number character
$macro{'pc'} = \&translate_joined;
# .ns Disable .sp and such
# .rs Enable them again
$macro{'ns'} = $macro{'rs'} = \&untranslated;
# .cs font [width [em-size]]
# Switch to and from "constant glyph space mode".
$macro{'cs'} = \&untranslated;
# .ss word_space_size [sentence_space_size]
# Change the minimum size of a space between filled words.
$macro{'ss'} = \&untranslated;
# .ce Center one line horizontally
# .ce N Center N lines
# .ul N Underline N lines (but not the spaces)
# .cu N Underline N lines (even the spaces)
$macro{'ce'} = $macro{'ul'} = $macro{'cu'} = sub {
my $self = shift;
if ( defined $_[1] ) {
if ( $_[1] <= 0 ) {
# disable centering, underlining, ...
$self->pushmacro( $_[0] );
} else {
# All of these are not handled yet because the number of line may change
# during the translation
die wrap_mod(
"po4a::man",
dgettext(
"po4a",
"This page uses the '%s' request with the number of lines in argument. This is not supported yet."
),
$_[0]
);
}
} else {
$self->pushmacro( $_[0] );
}
};
# .ec [c]
# Set the escape character to C. With no argument the default
# escape character `\' is restored. It can be also used to
# re-enable the escape mechanism after an `eo' request.
$macro{'ec'} = sub {
my $self = shift;
if ( defined $_[1] ) {
die wrap_mod(
"po4a::man",
dgettext(
"po4a", "This page uses the '%s' request. This request is only supported when no argument is provided."
),
$_[0]
);
} else {
$self->pushmacro( $_[0] );
}
};
###
### BSD compatibility macros: .AT and .UC
### (define the version of Berkley used)
### FIXME: the header ("3rd Berkeley Distribution" or such) declared
### by this macro isn't translatable we may want to remove
### this from the generated manpage, and declare our own header
###
$macro{'UC'} = $macro{'AT'} = \&untranslated;
# Request: .hw word1 word2 ...
# Define how WORD1, WORD2, etc. are to be hyphenated. The words
# must be given with hyphens at the hyphenation points.
#
# If the English page needs to specify how a word must be hyphenated, the
# translated page may also have this need.
$macro{'hw'} = \&translate_each;
#############################################################################
#
# mdoc macros
#
# The macros are defined in mdoc(7) and groff_mdoc(7)
#
# TBC: Should the font processing be disabled in the mdoc mode?
#############################################################################
# FIXME: Maybe we should verify that the page is an mdoc page
# (add a flag in Dd, and always check that this flag is set in the
# other mdoc macros)
sub translate_mdoc {
my ( $self, $macroname ) = ( shift, shift );
my $macroarg = "";
foreach (@_) {
$macroarg .= " " if ( length $macroarg );
if ( $_ =~ m/((?<!\\) |\t|^$)/ ) {
$macroarg .= "\"$_\"";
} else {
$macroarg .= $_;
}
}
$self->pushline( "$macroname " . $self->t($macroarg) . "\n" );
}
sub translate_mdoc_no_quotes {
my ( $self, $macroname, $macroarg ) = ( shift, shift, join( " ", @_ ) );
$self->pushline( "$macroname " . $self->t($macroarg) . "\n" );
}
#
# Title Macros
# ============
# .Dd Month day, year Document date.
$macro{'Dd'} = sub {
my ( $self, $macroname, $macroarg ) = ( shift, shift, join( " ", @_ ) );
$mdoc_mode = 1;
$self->push_docheader();
# FIXME: It would be nice if we could switch from one set of macros to the
# other.
#
# This does not work at this time. If we erase the current set of macros,
# po4a fails when a configuration file uses both mdoc and groff pages.
#
# # Erase the current macro definitions
# %macro=();
# %inline=();
# %no_wrap_begin=();
# %no_wrap_end=();
# Use the mdoc macros
define_mdoc_macros();
$self->translate_mdoc_no_quotes( $macroname, $macroarg );
};
sub define_mdoc_macros {
# .Dt DOCUMENT_TITLE [section] [volume] Title, in upper case.
$macro{'Dt'} = \&translate_mdoc;
# .Os OPERATING_SYSTEM [version/release] Operating system (BSD).
$macro{'Os'} = \&translate_each;
# Keep the quotes e.g. finger.1
# Don't add quotes e.g. logger.1
# Page Layout Macros
# ==================
# .Sh Section Headers.
# (man mdoc indicates only a limited set of valid headers,
# but it should be OK to translate the header)
$macro{'Sh'} = sub {
my ( $self, $macroname ) = ( shift, shift );
my $macroarg = "";
foreach (@_) {
$macroarg .= " " if ( length $macroarg );
if ( $_ =~ m/((?<!\\) |\t|^$)/ ) {
$macroarg .= "\"$_\"";
} else {
$macroarg .= $_;
}
}
if ( $mdoc{$macroarg} ) {
$self->pushline( "$macroname " . $self->r($macroarg) . "\n" );
} else {
$self->pushline( "$macroname " . $self->t($macroarg) . "\n" );
}
};
# .Ss Subsection Headers.
$macro{'Ss'} = \&translate_mdoc;
# .Pp Paragraph Break. Vertical space (one line).
$macro{'Pp'} = \&noarg;
# .Lp Same as .Pp
$macro{'Lp'} = \&noarg;
# .D1 (D-one) Display-one Indent and display one text line.
$macro{'D1'} = \&translate_mdoc;
# .Dl (D-ell) Display-one literal.
# Indent and display one line of literal text
$macro{'Dl'} = \&translate_mdoc;
# .Bd Begin-display block.
# FIXME: Note: there are some options, some of the options argument
# may be translatable (-file <name>, -offset <string>)
$no_wrap_begin{'Bd'} = 1;
# .Ed End-display (matches .Bd).
$no_wrap_end{'Ed'} = 1;
# .Bl Begin-list. Create lists or columns.
# FIXME: As for .Bd, there are some options
$macro{'Bl'} = \&untranslated;
# .El End-list.
$macro{'El'} = \&noarg;
# .It List item.
# FIXME: Maybe we could extract other modifiers
# as in .It Fl l Ar num
$macro{'It'} = \&translate_mdoc;
# .Lk html link
$macro{'Lk'} = \&untranslated;
# Manual Domain Macros
# ====================
# FIXME: I think most Manual and General text domain are in the inline category
foreach (qw(Ad An Ar Cd Cm Dv Er Ev Fa Fd Fn Ic Li Nm Op Ot Pa St Va Vt Xr)) {
$inline{$_} = 1;
}
# FIXME: some of these macros introduce a line in bold.
# Using \fP in these line is not supported.
# do_fonts should be called for every inline line
# General Text Domain
# ===================
foreach (
qw(%A %B %C %D %I %J %N %O %P %Q %R %T %U %V
Ac Ao Ap Aq At Bc Bf Bo Bq Brc Bro Brq Bx Db Dc Do Dq Ec Ef Em Eo Eq Fx No Ns
Pc Pf Po Pq Qc Ql Qo Qq Re Rs Rv Sc So Sq Sm Sx Sy Tn Ux Xc Xo)
)
{
$inline{$_} = 1;
}
# FIXME: Maybe it should be joined with the preceding .Nm
$macro{'Nd'} = \&translate_mdoc;
# Command line flags
$inline{'Fl'} = 1;
# Exit status
$inline{'Ex'} = 1;
# Opening option bracket
$inline{'Oo'} = 1;
# Closing option bracket
$inline{'Oc'} = 1;
# Begin keep (keep words in the same line)
$inline{'Bk'} = 1;
# End keep
$inline{'Ek'} = 1;
# Library Names
$inline{'Lb'} = 1;
# Function Types
$inline{'Ft'} = 1;
# Function open (for functions with many arguments)
$inline{'Fo'} = 1;
# Function close
$inline{'Fc'} = 1;
# OpenBSD macro
$inline{'Ox'} = 1;
# BSD/OS Macro
$inline{'Bsx'} = 1;
# #include statements
$macro{'In'} = \&translate_mdoc;
# NetBSD Macro
$inline{'Nx'} = 1;
# Math symbol
$inline{'Ms'} = 1;
# Prints 'under development'
$inline{'Ud'} = 1;
# This macro is a groff macro. I don't know if ot is valid in an mdoc page.
# But this is used in some pages and seems to work
$macro{'br'} = \&noarg;
} # end of define_mdoc_macros
__END__
# LocalWords: Charset charset po UTF gettext msgid nostrip
|