blob: bfd00f4d0cc360a4ef2ea9eaded05e13932dd4dc (
plain) (
blame)
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
|
bin/autopoint
bin/gettextize
bin/msgattrib
bin/msgcat
bin/msgcmp
bin/msgcomm
bin/msgconv
bin/msgen
bin/msgexec
bin/msgfilter
bin/msgfmt
bin/msggrep
bin/msginit
bin/msgmerge
bin/msgunfmt
bin/msguniq
bin/recode-sr-latin
bin/xgettext
include/gettext-po.h
lib/libgettextlib-%%PORTVERSION%%.so
lib/libgettextlib.a
lib/libgettextlib.so
lib/libgettextpo.a
lib/libgettextpo.so
lib/libgettextpo.so.0
lib/libgettextpo.so.0.5.15
lib/libgettextsrc-%%PORTVERSION%%.so
lib/libgettextsrc.a
lib/libgettextsrc.so
libexec/gettext/cldr-plurals
libexec/gettext/hostname
libexec/gettext/project-id
libexec/gettext/urlget
libexec/gettext/user-email
share/aclocal/nls.m4
%%PORTDOCS%%%%DOCSDIR%%/FAQ.html
%%PORTDOCS%%%%DOCSDIR%%/autopoint.1.html
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/README
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharp.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpcomp.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpcomp.sh.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpexec-test.exe
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpexec.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/csharpexec.sh.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/dcomp.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/dcomp.sh.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/gocomp.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/gocomp.sh.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javacomp.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javacomp.sh.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javaexec.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/javaexec.sh.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/build-aux/modula2comp.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/hello.cc
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gnome-gnorba-check.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gnome-orbit-check.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gnome.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gtk--.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/m4/gtk.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/Makevars
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/POTFILES.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome2/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/README
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/hello.cc
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/hello.desktop.in.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/hello.gresource.xml
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/hello.ui
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/Makevars
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/POTFILES.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-gnome3/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/BUGS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/ChangeLog
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/Doxyfile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/Doxyfile.global
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/Makefile.common
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/acinclude.m4.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/am_edit
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/compile
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/conf.change.pl
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/config.guess
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/config.pl
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/config.sub
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/configure.in.bot.end
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/configure.in.min
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/cvs-clean.pl
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/cvs.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/debianrules
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/depcomp
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/detect-autoconf.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/install-sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/libtool.m4.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/ltmain.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/missing
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/mkinstalldirs
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/admin/ylwrap
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/configure.in.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/hello.cc
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/hellowindow.cc
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/hellowindow.h
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/Makevars
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/POTFILES.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-kde/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/BUGS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/hello.cc
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/m4/qt.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-qt/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/hello.cc
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/m4/wxwidgets.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++-wxwidgets/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/hello.cc
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/Makevars
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/POTFILES.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/hello.cc
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/Makevars
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/POTFILES.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c++20/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/hello.c
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/gnome-gnorba-check.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/gnome-orbit-check.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/m4/gnome.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/Makevars
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/POTFILES.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome2/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/README
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.c
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.desktop.in.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.gresource.xml
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello.ui
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.c
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.desktop.in.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.gresource.xml
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.gschema.xml
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/hello2.ui
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/Makevars
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/POTFILES.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-gnome3/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/hello-server.c
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/Makevars
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/POTFILES.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c-http/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/hello.c
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/Makevars
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/POTFILES.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-c/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/hello.lisp.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-clisp/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/README
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/hello.cs
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp-forms/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/hello.cs
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-csharp/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/hello.d.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-d/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/hello.awk
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-gawk/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/example1/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/example1/go.mod.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/example1/hello1ml.go.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go-http/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/go.mod.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/hello1ml.go.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example1/hello1sl.go.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example2/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example2/go.mod.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example2/hello2sl.go.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example3/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example3/go.mod.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/example3/hello3ml.go.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-go/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/hello.scm
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-guile/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/BUGS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/Hello.java
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/m4/TestAWT.class
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/m4/TestAWT.java
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-awt/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/BUGS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/Hello.java
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/m4/Test15.class
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/m4/Test15.java
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-qtjambi/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/BUGS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/Hello.java
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/m4/TestAWT.class
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/m4/TestAWT.java
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java-swing/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/Hello.java
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-java/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/hello.jl.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-librep/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/hello.mod.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-modula2/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/hello.m
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/gnome-gnorba-check.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/gnome-orbit-check.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/m4/gnome.m4
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/Makevars
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/POTFILES.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnome2/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/AppController.h
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/AppController.m
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/BUGS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/GNUmakefile
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/Hello.h
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/Hello.m
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/main.m
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/GNUmakefile
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/LocaleAliases
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc-gnustep/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/hello.m
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/Makevars
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/POTFILES.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-objc/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/hello.pas
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-pascal/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/hello-1.pl.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/hello-2.pl.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-perl/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/README
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/hello.php
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-php/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/hello.py.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-python/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/hello.rb
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ruby/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/Cargo.toml.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-rust/src/main.rs.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/hello-1.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/hello-2.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/hello-3.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-sh/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/hello.st.in
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-smalltalk/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/hello.tcl
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl-tk/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/hello.tcl
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-tcl/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/INSTALL
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/autoclean.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/autogen.sh
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/configure.ac
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/hello.ycp
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/m4/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/LINGUAS
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/Makefile.am
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/af.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ast.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/bg.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ca.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/cs.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/da.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/de.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/el.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/eo.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/es.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/fi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/fr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ga.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/gl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/hr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/hu.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/id.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/it.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ja.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ka.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ky.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/lv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ms.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/mt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/nb.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/nl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/nn.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/pl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/pt.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/pt_BR.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ro.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ru.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/sk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/sl.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/sq.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/sr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/sv.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/ta.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/tr.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/uk.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/vi.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/zh_CN.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/zh_HK.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/hello-ycp/po/zh_TW.po
%%PORTEXAMPLES%%%%DOCSDIR%%/examples/installpaths
%%PORTDOCS%%%%DOCSDIR%%/gettext_1.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_10.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_11.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_12.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_13.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_14.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_15.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_16.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_17.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_18.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_19.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_2.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_20.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_21.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_22.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_23.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_24.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_25.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_26.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_27.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_28.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_29.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_3.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_30.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_31.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_4.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_5.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_6.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_7.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_8.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_9.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_abt.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_fot.html
%%PORTDOCS%%%%DOCSDIR%%/gettext_toc.html
%%PORTDOCS%%%%DOCSDIR%%/gettextize.1.html
%%PORTDOCS%%%%DOCSDIR%%/msgattrib.1.html
%%PORTDOCS%%%%DOCSDIR%%/msgcat.1.html
%%PORTDOCS%%%%DOCSDIR%%/msgcmp.1.html
%%PORTDOCS%%%%DOCSDIR%%/msgcomm.1.html
%%PORTDOCS%%%%DOCSDIR%%/msgconv.1.html
%%PORTDOCS%%%%DOCSDIR%%/msgen.1.html
%%PORTDOCS%%%%DOCSDIR%%/msgexec.1.html
%%PORTDOCS%%%%DOCSDIR%%/msgfilter.1.html
%%PORTDOCS%%%%DOCSDIR%%/msgfmt.1.html
%%PORTDOCS%%%%DOCSDIR%%/msggrep.1.html
%%PORTDOCS%%%%DOCSDIR%%/msginit.1.html
%%PORTDOCS%%%%DOCSDIR%%/msgmerge.1.html
%%PORTDOCS%%%%DOCSDIR%%/msgunfmt.1.html
%%PORTDOCS%%%%DOCSDIR%%/msguniq.1.html
%%PORTDOCS%%%%DOCSDIR%%/recode-sr-latin.1.html
%%PORTDOCS%%%%DOCSDIR%%/tutorial.html
%%PORTDOCS%%%%DOCSDIR%%/xgettext.1.html
%%DATADIR%%-%%VERSION%%/its/docbook.loc
%%DATADIR%%-%%VERSION%%/its/docbook4.its
%%DATADIR%%-%%VERSION%%/its/docbook5.its
%%DATADIR%%-%%VERSION%%/its/glade.loc
%%DATADIR%%-%%VERSION%%/its/glade1.its
%%DATADIR%%-%%VERSION%%/its/glade2.its
%%DATADIR%%-%%VERSION%%/its/gsettings.its
%%DATADIR%%-%%VERSION%%/its/gsettings.loc
%%DATADIR%%-%%VERSION%%/its/gtkbuilder.its
%%DATADIR%%-%%VERSION%%/its/metainfo.its
%%DATADIR%%-%%VERSION%%/its/metainfo.loc
%%DATADIR%%/archive.dir.tar.xz
%%DATADIR%%/config.rpath
%%DATADIR%%/disclaim-translations.txt
%%DATADIR%%/javaversion.class
%%DATADIR%%/m4/build-to-host.m4
%%DATADIR%%/m4/gettext.m4
%%DATADIR%%/m4/host-cpu-c-abi.m4
%%DATADIR%%/m4/iconv.m4
%%DATADIR%%/m4/intlmacosx.m4
%%DATADIR%%/m4/lib-ld.m4
%%DATADIR%%/m4/lib-link.m4
%%DATADIR%%/m4/lib-prefix.m4
%%DATADIR%%/m4/nls.m4
%%DATADIR%%/m4/po.m4
%%DATADIR%%/m4/progtest.m4
%%DATADIR%%/msgunfmt.tcl
%%DATADIR%%/po/Makefile.in.in
%%DATADIR%%/po/Makevars.template
%%DATADIR%%/po/Rules-quot
%%DATADIR%%/po/boldquot.sed
%%DATADIR%%/po/en@boldquot.header
%%DATADIR%%/po/en@quot.header
%%DATADIR%%/po/insert-header.sed
%%DATADIR%%/po/quot.sed
%%DATADIR%%/po/remove-potcdate.sed
%%DATADIR%%/projects/GNOME/team-address
%%DATADIR%%/projects/GNOME/teams.html
%%DATADIR%%/projects/GNOME/teams.url
%%DATADIR%%/projects/GNOME/trigger
%%DATADIR%%/projects/KDE/team-address
%%DATADIR%%/projects/KDE/teams.html
%%DATADIR%%/projects/KDE/teams.url
%%DATADIR%%/projects/KDE/trigger
%%DATADIR%%/projects/TP/team-address
%%DATADIR%%/projects/TP/teams.html
%%DATADIR%%/projects/TP/teams.url
%%DATADIR%%/projects/TP/trigger
%%DATADIR%%/projects/index
%%DATADIR%%/projects/team-address
%%DATADIR%%/schema/its-extensions.xsd
%%DATADIR%%/schema/its.xsd10
%%DATADIR%%/schema/its.xsd11
%%DATADIR%%/schema/locating-rules.xsd10
%%DATADIR%%/schema/locating-rules.xsd11
%%DATADIR%%/styles/po-default.css
%%DATADIR%%/styles/po-emacs-x.css
%%DATADIR%%/styles/po-emacs-xterm.css
%%DATADIR%%/styles/po-emacs-xterm16.css
%%DATADIR%%/styles/po-emacs-xterm256.css
%%DATADIR%%/styles/po-vim.css
share/locale/be/LC_MESSAGES/gettext-tools.mo
share/locale/bg/LC_MESSAGES/gettext-tools.mo
share/locale/ca/LC_MESSAGES/gettext-tools.mo
share/locale/cs/LC_MESSAGES/gettext-tools.mo
share/locale/da/LC_MESSAGES/gettext-tools.mo
share/locale/de/LC_MESSAGES/gettext-tools.mo
share/locale/el/LC_MESSAGES/gettext-tools.mo
share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo
share/locale/en@quot/LC_MESSAGES/gettext-tools.mo
share/locale/es/LC_MESSAGES/gettext-tools.mo
share/locale/et/LC_MESSAGES/gettext-tools.mo
share/locale/eu/LC_MESSAGES/gettext-tools.mo
share/locale/fi/LC_MESSAGES/gettext-tools.mo
share/locale/fr/LC_MESSAGES/gettext-tools.mo
share/locale/gl/LC_MESSAGES/gettext-tools.mo
share/locale/hr/LC_MESSAGES/gettext-tools.mo
share/locale/id/LC_MESSAGES/gettext-tools.mo
share/locale/it/LC_MESSAGES/gettext-tools.mo
share/locale/ja/LC_MESSAGES/gettext-tools.mo
share/locale/ka/LC_MESSAGES/gettext-tools.mo
share/locale/ko/LC_MESSAGES/gettext-tools.mo
share/locale/nb/LC_MESSAGES/gettext-tools.mo
share/locale/nl/LC_MESSAGES/gettext-tools.mo
share/locale/nn/LC_MESSAGES/gettext-tools.mo
share/locale/pa/LC_MESSAGES/gettext-tools.mo
share/locale/pl/LC_MESSAGES/gettext-tools.mo
share/locale/pt/LC_MESSAGES/gettext-tools.mo
share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo
share/locale/ro/LC_MESSAGES/gettext-tools.mo
share/locale/ru/LC_MESSAGES/gettext-tools.mo
share/locale/sk/LC_MESSAGES/gettext-tools.mo
share/locale/sl/LC_MESSAGES/gettext-tools.mo
share/locale/sr/LC_MESSAGES/gettext-tools.mo
share/locale/sv/LC_MESSAGES/gettext-tools.mo
share/locale/tr/LC_MESSAGES/gettext-tools.mo
share/locale/uk/LC_MESSAGES/gettext-tools.mo
share/locale/vi/LC_MESSAGES/gettext-tools.mo
share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo
share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo
share/man/man1/autopoint.1.gz
share/man/man1/gettextize.1.gz
share/man/man1/msgattrib.1.gz
share/man/man1/msgcat.1.gz
share/man/man1/msgcmp.1.gz
share/man/man1/msgcomm.1.gz
share/man/man1/msgconv.1.gz
share/man/man1/msgen.1.gz
share/man/man1/msgexec.1.gz
share/man/man1/msgfilter.1.gz
share/man/man1/msgfmt.1.gz
share/man/man1/msggrep.1.gz
share/man/man1/msginit.1.gz
share/man/man1/msgmerge.1.gz
share/man/man1/msgunfmt.1.gz
share/man/man1/msguniq.1.gz
share/man/man1/recode-sr-latin.1.gz
share/man/man1/xgettext.1.gz
|