forked from mquinson/po4a
-
Notifications
You must be signed in to change notification settings - Fork 1
/
changelog
4251 lines (3215 loc) · 165 KB
/
changelog
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
2013-08-21 Denis Barbier <[email protected]>
* t/data-20/test2.sgml: Remove spurious line, it causes
test failures with recent Docbook DTD. Thanks to
Didier Spaier.
2013-08-15 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Po.pm: Fix again DST in
POT-Creation-Date, by Jakub Wilk.
2013-08-15 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Xml.pm: Improve error reporting, by
Martin Quinson.
2013-08-15 Denis Barbier <[email protected]>
* Po4aBuilder.pm: Fix generation with newer
Module::Build.
2013-08-15 Denis Barbier <[email protected]>
* lib/Locale/Po4a/LaTeX.pm: The newtheorem command
accepts two optional parameters, by Federico Poloni.
2013-05-16 Denis Barbier <[email protected]>
* po4a po4a-updatepo lib/Locale/Po4a/{Po,Wml}.pm: Fix
usage of File::Temp::tempfile, by Richard W.M. Jones.
2013-05-16 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Po.pm: Fix DST in POT-Creation-Date.
Thanks to Ineiev for the report and patch.
2013-01-05 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Ini.pm: Add key parameter as an
automatic comment. This allows using po4a-gettextize
on ini files. Thanks to Didier Raboud.
2012-10-31 Denis Barbier <[email protected]>
* po4a po4a-updatepo lib/Locale/Po4a/{Po,Sgml,Wml}.pm:
Use $ENV{TMPDIR} instead of /tmp if it is defined.
2012-10-28 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Asciidoc.pm: make <beginpage> inline.
Thanks to Petter Reinholdtsen for the report and patch.
2012-10-27 Denis Barbier <[email protected]>
* po4a: Allowing specifying the name of master files in
splitted mode. Thanks to Yann Dirson for the report and
patch. A slightly different version of his patch is
implemented, syntax is
master:file=<file-name>
2012-10-26 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Asciidoc.pm: Many improvements.
2012-10-22 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Asciidoc.pm: Promote AsciiDoc to its
own format, and deprecate -o asciidoc in Text format.
2012-10-09 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Text.pm: According to documentation,
minimum width for two-line title is two and not four.
2012-09-26 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Text.pm: Support more AsciiDoc styles.
2012-09-18 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Po.pm po4a: Add another possible
value to --porefs option: counter.
2012-09-14 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Text.pm: Rewrite the parse() method
to improve its readability.
2012-09-10 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Text.pm: Do not wrap tables in Asciidoc.
Report and patch by Anders Nawroth.
2012-09-09 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Po.pm po4a: Add a wrap/nowrap modifier
to --porefs option, and make po4a recognize this option.
* lib/Locale/Po4a/Man.pm: Declare .UR/.UE macros as being
inline.
2012-09-08 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Man.pm: Add missing macros used by several
NetBSD manual pages. Thanks to Kiwamu Okabe for the patch.
2012-02-23 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Po.pm: Preserve obsolete entries (prefixed
by #~) in read()+write() cycle.
2012-02-23 Denis Barbier <[email protected]>
* po4a: Allow adding command-line options after config file.
2011-07-24 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Text.pm: Add support for control files.
2010-11-22 Denis Barbier <[email protected]>
* po4a: Fix parsing to allow empty commands in
configuration files.
* po4a: Expand variables when reading @-prefixed
addenda files.
2010-11-20 Denis Barbier <[email protected]>
* Makefile: File removed, all building stuff is
performed within Build.PL; otherwise we would have
to let Makefile support options passed to Build.PL,
this may get tricky.
2010-11-03 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Xml.pm: Fix handling of CDATA text.
Fixes bug#312773 on the Alioth tracker.
* po4a: Fix the --srcdir option, master file was not found.
2010-10-11 Nicolas François <[email protected]>
* lib/Locale/Po4a/Man.pm: Make sure input is always passing
through either sub t{} or sub r{}. Convert back non breaking
spaces in sub r{}. This fixes the handling of mdoc(7).
2010-10-02 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Texinfo.pm: Fix handling of
@defcodeindex and @defindex.
2010-09-23 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Text.pm: Remove trailing newline
in titles from PO files.
* lib/Locale/Po4a/TransTractor.pm: Remove trailing
carriage returns when reading input files.
* lib/Locale/Po4a/Po.pm, po4a: Do no more generate
backups for PO files. The --no-backups and
--rm-backups flags are kept for now, but do nothing.
2010-09-21 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Xml.pm: Under rare circumstances,
tag definitions passed as options could be applied
to other files listed in the configuration file.
2010-09-01 Denis Barbier <[email protected]>
* po4a-updatepo: This script did no more call
msgmerge with --previous flag since the last change
in 2009-12-30.
2010-08-24 Denis Barbier <[email protected]>
* CVS -> SVN: Migrate from CVS to SVN.
All CVS history has been converted. See
http://svn.debian.org/viewsvn/po4a/
The standard SVN layout is used (with top-level
/trunk, /branches and /tags directories), and
the files to generate the website (html/,
po/html.cfg and po/www) are moved into a new
/web top-level directory.
2010-08-20 Denis Barbier <[email protected]>
* share/doc/po4a*.xml: Add xml:lang="en" attribute
to the root node of XML documents, this attribute
will be translated by po4a and xsltproc will then
provide translated section titles.
2010-08-14 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Man.pm: Do not remove the last
newline if it follows an escaped space character,
otherwise paragraphs are merged.
2010-08-13 Denis Barbier <[email protected]>
* lib/Locale/Po4a/TransTractor.pm: Slightly change
previous commit to be more conservative.
* lib/Locale/Po4a/Man.pm: Fix handling of escaped
spaces in post_trans.
2010-08-03 David Prévot <[email protected]>
* lib/Locale/Po4a/TransTractor.pm: Do not wrap all
trailing spaces: keep one in order to keep non
breaking space at the end of lines for manual pages.
2010-07-31 David Prévot <[email protected]>
* lib/Locale/Po4a/*.pm: Stylistic changes in
runtime messages, make them more coherent with
documentation.
2010-07-28 David Prévot <[email protected]>
* doc/*.pod lib/Locale/Po4a/*.pm: Style update in
documentation.
2010-07-30 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Po.pm: Change header entry to be
consistent with xgettext when creating POT files:
replace Content-Transfer-Encoding: ENCODING" by
"Content-Transfer-Encoding: 8bit\n" and add a
Language field.
2010-07-28 Denis Barbier <[email protected]>
* MANIFEST: Add po/pod/ru.po, Russian translation
was not included in tarball.
2010-07-26 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Po.pm: Let read() handle previous
strings, which are flagged by '#|'. They were
previously managed like translator's comments, and
calling write() after read()ing a PO file containing
such comments generated an invalid PO file.
This happened only with msgsearch or msguntypot, and
not po4a* tools.
* scripts/msguntypot: Call msgmerge with the
--previous option; add a --no-previous option to
disable this new behavior.
2010-07-20 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Po.pm: When gettextize() fails,
recode $trans into current charset before printing
it on stderr.
2010-07-19 Denis Barbier <[email protected]>
* lib/Locale/Po4a/Man.pm: Support font modifiers in
the form \f(XX and \f[FONT-NAME].
* lib/Locale/Po4a/Man.pm: Add support for .TQ macro.
Patch by James Vega.
* lib/Locale/Po4a/{Text,Sgml}.pm: Handle gracefully
the case when input file is empty.
* po4a: New EXAMPLE section in documentation,
contributed by Helge Kreutzmann.
2010-04-17 Denis Barbier <[email protected]>
* po4a: New '--translate-only <file>' option.
* lib/Locale/Po4a/Man.pm: Add new macros: Brq, %Q, Ms, Ud.
2010-03-29 TATEISHI Katsuyuki <[email protected]>
* NEWS, lib/Locale/Po4a/Text.pm: Fix failures: "Unknown option:
copyright-holder".
2010-03-17 Nicolas François <[email protected]>
* lib/Locale/Po4a/TeX.pm: Die with a more sensible error if a file
cannot be found with kpsewhich.
2010-02-02 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/TransTractor.pm: Next version will be
0.39.
* po/bin/po4a.pot, po/pod/po4a-pod.pot: Regenerated.
* po/bin/*.po, po/pod/*.po: Synchronized with the POTs.
2010-01-21 Denis Barbier <[email protected]>
* po4a, po4a-translate: New syntax for addenda, path may be
preceded by modifiers.
2010-01-15 Nicolas François <[email protected]>
* po4a: Add table of content.
* po4a: Stress that po4a(1) is meant to ease the use of the po4a-*
commands.
* po4a: Fix the location of the explanation when --force is not
specified.
* po4a: Added notes in the [po4a_langs] and [po4a_paths] sections
to indicate that [po_directory] is recommended.
* po4a: Split long example lines.
2010-01-15 Nicolas François <[email protected]>
* po4a, lib/Locale/Po4a/TeX.pm, lib/Locale/Po4a/Text.pm: Fixed
typos.
2010-01-14 Nicolas François <[email protected]>
* TODO: Updated TODO list (new TODO items for po4a-build).
2010-01-14 Nicolas François <[email protected]>
* po4a: Document the $lang expansion in --msgmerge-opt
* po4a: Improve the $lang expansion outside of --msgmerge-opt
(e.g. to avoid expansion of $language)
2010-01-14 Denis Barbier <[email protected]>
* po4a: Expand $lang in --msgmerge-opt option.
2010-01-14 Nicolas François <[email protected]>
* po4a: Check earlier if master files exist.
2010-01-05 Nicolas François <[email protected]>
* lib/Locale/Po4a/Xhtml.pm: Remove outdated information. Xhtml is
ready for production.
2010-01-05 Nicolas François <[email protected]>
* po/pod/fr.po: Updated to 1323t3f133u.
2009-12-30 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/TransTractor.pm: Next version will be
0.38.
* po/bin/Makevars: xgettext needed some options. At least -L Perl
This seems to be OK for shell script also. This is not complete,
but fixes the generation of POT.
* po/bin/po4a.pot, po/pod/po4a-pod.pot: Regenerated.
* po/bin/*.po, po/pod/*.po: Synchronized with the POTs.
2009-12-30 Nicolas François <[email protected]>
* NEWS, po4a, po4a-updatepo: --previous is activated by default.
* NEWS, po4a, po4a-updatepo: Use --no-previous to support versions
of gettext earlier than 0.16.
2009-12-30 Nicolas François <[email protected]>
* lib/Locale/Po4a/Po.pm: Add a lang attribute, based on the PO
file basename.
* NEWS, lib/Locale/Po4a/Xml.pm: Add option addlang to force po4a
to add a lang attribute to some tags.
2009-12-30 Nicolas François <[email protected]>
* share/doc/po4a-build.xml, share/doc/po4aman-display-po.xml,
share/doc/po4apod-display-po.xml: Use more content related tags.
* po/pod/ca.po, po/pod/es.po, po/pod/fr.po, po/pod/it.po,
po/pod/ja.po, po/pod/pl.po, po/pod/po4a-pod.pot: Updated.
* po/pod/es.po, po/pod/pl.po: Unfuzzied (1455t).
* po/pod/fr.po: Updated to 1303t8f144u.
2009-12-30 Nicolas François <[email protected]>
* lib/Locale/Po4a/Text.pm: Fixed typo (nobullet -> nobullets)
* lib/Locale/Po4a/Text.pm: Fail when unknown options are provided.
2009-12-27 Nicolas François <[email protected]>
* lib/Locale/Po4a/TransTractor.pm: Reset the detection of
non-ascii files between two process() calls (i.e. when po4a
process a new file).
2009-12-27 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Pod.pm: Detect the encoding based on the
input's =encoding line.
2009-12-27 Nicolas François <[email protected]>
* po4a, po4a-gettextize, po4a-normalize, po4a-translate,
po4a-updatepo, lib/Locale/Po4a/Xml.pm, lib/Locale/Po4a/Xhtml.pm,
lib/Locale/Po4a/Wml.pm, lib/Locale/Po4a/TransTractor.pm,
lib/Locale/Po4a/Text.pm, lib/Locale/Po4a/Texinfo.pm,
lib/Locale/Po4a/TeX.pm, lib/Locale/Po4a/Sgml.pm,
lib/Locale/Po4a/Pod.pm, lib/Locale/Po4a/Po.pm,
lib/Locale/Po4a/NewsDebian.pm, lib/Locale/Po4a/Man.pm,
lib/Locale/Po4a/LaTeX.pm, lib/Locale/Po4a/KernelHelp.pm,
lib/Locale/Po4a/Ini.pm, lib/Locale/Po4a/Html.pm,
lib/Locale/Po4a/Halibut.pm, lib/Locale/Po4a/Guide.pm,
lib/Locale/Po4a/Docbook.pm, lib/Locale/Po4a/Dia.pm,
lib/Locale/Po4a/Debconf.pm, lib/Locale/Po4a/Common.pm,
lib/Locale/Po4a/Chooser.pm, lib/Locale/Po4a/BibTeX.pm: Specify the
encoding of the files processed by pod2man.
2009-12-27 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Xml.pm: Fix handling of multi-lines
placeholder tags.
2009-11-23 Neil Williams <[email protected]>
* share/po4a-build: Set utf8 default for pod2man.
2009-11-23 Neil Williams <[email protected]>
* share/po4a-build: Specify the real module name
when using pod2man and section 3.
2009-11-22 Nicolas François <[email protected]>
* lib/Locale/Po4a/Pod.pm, lib/Locale/Po4a/TransTractor.pm:
Improved detection of the output charset to provide the
'=encoding' line in the output POD.
* t/data-04/text-iso8859.pod-ok, t/data-04/utf.pod-ok: Updated
testsuite accordingly.
2009-11-21 Neil Williams <[email protected]>
* po/pod/es.po: Fix a few typos.
* share/po4a-build: Read the translated XML;
fix for typo in call to xsltproc.
2009-11-13 Neil Williams <[email protected]>
* MANIFEST: Add build and runtime documentation.
* Makefile: Remove empty directories after install.
* doc/po4a-build.conf.5.pod: Documentation for the
po4a-build.conf file.
* doc/po4a-runtime.7.pod: Documentation for using example
files from po4a for runtime script translation.
* doc/po4a.7.pod: Typo.
* po4a-build.conf: Add section 5 and 7 POD content.
* share/doc/po4a-build.xml: Document section 5 support.
* share/po4a-build: Support section 5 for POD.
* share/po4a-build.conf.example: Section 5 support.
2009-11-12 Neil Williams <[email protected]>
* Build.PL: OK, this is a hack but gettext really doesn't
like mixing shell and perl without one of the formats
having a file extension, so make a temporary po4a-build.sh
symlink which gets cleaned up later.
* Makefile: Clean up the temporary symlink.
* po/bin/Makevars: Let xgettext use the default Lang
now that the symlink solves the other confusion.
* po/bin/POTFILES.in: Get POTFILES to look at the symlink.
* po/bin/po4a.pot: Updated with new strings from po4a-build.
* share/po4a-build: Fix the string markup so that xgettext
finds all 14 strings.
2009-11-12 Neil Williams <[email protected]>
* Build.PL: Convert to the po4a-build build system.
* MANIFEST: Add po4a-build support files.
* Makefile: Generate translated content via po4a-build.
* changelog: Fold share/Changelog into main changelog.
* po/bin/LINGUAS: po4a-build support.
* po/bin/Makefile: copy of the example in share/
* po/bin/Makevars: based on the example in share/
* po/bin/POTFILES.in: Scripts with translatable content.
* po/pod/ca.po: Updated for po4a-build strings.
* po/pod/es.po: Updated for po4a-build strings.
* po/pod/fr.po: Updated for po4a-build strings.
* po/pod/it.po: Updated for po4a-build strings.
* po/pod/ja.po: Updated for po4a-build strings.
* po/pod/pl.po: Updated for po4a-build strings.
* share/ChangeLog: Removed.
* share/Makefile: Add a clean target.
* t/.cvsignore: Ignore t/tmp.
2009-11-11 Neil Williams <[email protected]>
* share/po4a-build: Properly separate man (3) from man (1) XML
* share/po4a-build.conf: Update with modified variables.
* share/po4a-build.conf.example: Update the example too.
2009-11-10 Neil Williams <[email protected]>
* share/po4a-build: Add support for man (7) and include
changes from more testing within the po4a build.
* share/doc/po4aman-display-po.xml,
* share/doc/po4apod-display-po.xml: Add XML from doclifter
so that the manpages can be generated and the XML
translated. Add translations to doc/po/.
* share/po4a-build.conf: Allow use of internal po4a support.
2009-11-07 Omar Campagne <[email protected]>
* po/pod/es.po: Updated to 1248t.
2009-11-07 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/TransTractor.pm: Prepare next release
* po/bin/po4a.pot, po/pod/po4a-pod.pot: Regenerated.
* po/bin/*.po, po/pod/*.po: Synchronized with the POTs.
2009-11-07 Nicolas François <[email protected]>
* NEWS: Fixed NEWS entries.
* NEWS, lib/Locale/Po4a/Text.pm: Added options breaks and tabs.
* lib/Locale/Po4a/Text.pm: Do not set $self->{options} in
initialize().
2009-11-07 Nicolas François <[email protected]>
* MANIFEST, doc/addendum_man.es: Added addenda for groff manpages.
2009-11-06 Neil Williams <[email protected]>
* share/README: trying to describe what I'm seeking here.
* share/doc/po4a-build.xml: Prototype manpage for po4a-build
* share/doc/po4a.config: po4a-build config file for it's own
manpage translation, in due course.
* share/po/.cvsignore: Ignore the POT
* share/po4a-build: Switch to po4a-build as the script name and
po4a-build.conf as the config file name. Comment out
"debianism" of looking for debian/changelog.
* share/po4a-build.conf: Internal conf file for eventual manpage
generation and translation.
* share/po4a-build.conf.example: SCRIPTS= unsupported - better done
using the Makefile snippets, see README.
2009-11-06 Neil Williams <[email protected]>
* share/Makevars-perl.example: Example for perl packages.
* share/Makevars-shell.example: Example for shell packages.
* share/po/Makefile: Copy of po4a-build.make for our translations.
* share/po/Makevars: Copy of Makevars-shell.example for po4a-build
* share/po/POTFILES.in: po4a-build support.
* share/po4a-build: main script to allow translation to be a one-stop
process.
* share/po4a-build.make: Based on autotools, allows preparation of
POT files and updating of PO files for script output translation
messages.
2009-11-06 Omar Campagne <[email protected]>
* NEWS, po/pod/es.po: Updated to 1239t.
* doc/addendum.es: Added Omar Campagne to the list of Spanish
translators.
2009-10-25 Thomas Mueller <[email protected]>
* po/bin/de.po: Updated to 182t.
2009-10-25 Florentin Duneau <[email protected]>
* scripts/po4apod-display-po: Fixed bashism.
* po/pod/fr.po: Fixed typos in the French translation of the
po4apod-display-po manpage.
2009-10-25 Clytie Siddall <[email protected]>
* po/bin/vi.po: Added Vietnamese translation.
2009-09-30 Michal Simunek <[email protected]>
* po/bin/cs.po: Updated to 182t.
2009-09-10 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/TransTractor.pm: Prepare next release
2009-09-10 Thomas Mueller <[email protected]>
* po/bin/de.po: Updated to 182t.
2009-09-08 António Moreira <[email protected]>
* NEWS, po/bin/pt.po: Updated to 183t.
2009-09-02 Luca Monducci <[email protected]>
* NEWS, lib/Locale/Po4a/Sgml.pm: Inclusion of entities may not end
with a space.
2009-08-30 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/TransTractor.pm: Prepare next release
2009-08-29 Martin Bagge <[email protected]>
* po/bin/sv.po: Updated to 183t.
2009-08-29 Michal Simunek <[email protected]>
* po/bin/cs.po: Updated to 182t.
2009-08-29 Piarres Beobide <[email protected]>
* po/bin/eu.po: Updated to 182t.
2009-08-29 Nicolas François <[email protected]>
* po/bin/fr.po: Updated to 183t.
* po/pod/fr.po: Updated to 1239t.
2009-08-29 Yuri Kozlov <[email protected]>
* po/bin/ru.po: Updated to 183t.
2009-08-29 Joop Eggen <[email protected]>
* po/bin/eo.po: Updated to 183t.
2009-08-21 Omar Campagne <[email protected]>
* po/bin/es.po: Updated to 183t.
2009-08-19 Annika <[email protected]>
* po/bin/et.po: Updated Estonian translation. (84t18f81u)
2009-08-18 Nicolas François <[email protected]>
* po/bin/po4a.pot, po/pod/po4a-pod.pot: Regenerated.
* po/bin/*.po, po/pod/*.po: Synchronized with the POTs.
* po/bin/*.po, po/pod/*.po: Header cleanup. Removed invalid
language team addresses.
2009-08-18 Nicolas François <[email protected]>
* t/data-05/test7.err: Fix testsuite. This is probably a bug in
the testsuite. The stdout and stderr outputs should probably be
separated.
2009-08-16 Nicolas François <[email protected]>
* NEWS, po4a, lib/Locale/Po4a/TransTractor.pm: Added options
--srcdir and --destdir. They permit to strip the base directory
for the input and output documents (in the config file and in the
references generated in the PO files).
2009-08-16 Omar Campagne <[email protected]>
* NEWS, po/bin/es.po: Updated Spanish translation.
2009-07-29 Nicolas François <[email protected]>
* NEWS, po4a-updatepo: Added options --msgid-bugs-address,
--copyright-holder, --package-name, --package-version to control
the generation of the PO header.
2009-07-22 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/TransTractor.pm: prevent the plugin from
croaking on the options intended for Po.pm.
* NEWS, lib/Locale/Po4a/TransTractor.pm: Prepare next release
0.36.3.
* po/bin/po4a.pot, po/pod/po4a-pod.pot: Regenerated.
* po/bin/*.po, po/pod/*.po: Synchronized with the POTs.
2009-07-21 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/TransTractor.pm: Prepare next release
0.36.2.
* po/bin/po4a.pot, po/pod/po4a-pod.pot: Regenerated.
* po/bin/*.po, po/pod/*.po: Synchronized with the POTs.
* MANIFEST, Build.PL: Distribute the po4apod-display-po script.
* doc/addendum_man.fr: Fix encoding.
* po/pod.cfg: Added po4apod-display-po manpage.
2009-07-21 Nicolas François <[email protected]>
* lib/Locale/Po4a/Wml.pm: Inherit from Xhtml instead of calling
Xhtml separately. This avoids having to deal with the options
multiple times. This should not change the Wml module behavior.
2009-07-21 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Xml.pm: Added option customtag.
2009-07-21 Nicolas François <[email protected]>
* lib/Locale/Po4a/LaTeX.pm: Do not translate the colors.
2009-07-21 Nicolas François <[email protected]>
* NEWS, po4a-gettextize: Added options --msgid-bugs-address,
--copyright-holder, --package-name, --package-version to control
the generation of the PO header.
* lib/Locale/Po4a/TransTractor.pm: Pass the PO options to the
created Locale::Po4a::Po objects.
2009-07-20 Nicolas François <[email protected]>
* scripts/po4apod-display-po: Fix some bashisms.
* scripts/po4apod-display-po: Added support for additional
options.
* scripts/po4apod-display-po: Always generate the manpagesin
UTF-8. man will figure out what has to be done.
2009-07-20 Florentin Duneau <[email protected]>
* NEWS, scripts/po4apod-display-po, scripts/po4apod-display-po.1,
scripts/po4aman-display-po: Added script to display previews of
POD translations.
2009-07-20 Nicolas François <[email protected]>
* po/pod/fr.po: Fixed typo.
2009-07-19 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Text.pm: Avoid the translation of some
markup: title and horizontal rules.
2009-07-19 Jonas Smedegaard <[email protected]>
* NEWS, lib/Locale/Po4a/Text.pm: Improved Markdown support.
2009-07-11 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Wml.pm: Copy {TT}{'file_in_encoder'}
together with {TT}{'file_in_charset'}. This fixes the handling of
non ASCII documents.
2009-04-11 Nicolas François <[email protected]>
* po/pod/fr.po: Fix typo.
2009-04-05 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/TransTractor.pm: Prepare for the next release
* po/bin/po4a.pot, po/pod/po4a-pod.pot: Regenerated.
* po/bin/*.po, po/pod/*.po: Synchronized with the POTs.
2009-04-05 Nicolas François <[email protected]>
* lib/Locale/Po4a/Xml.pm: Do not include commented out entities.
2009-03-31 Nicolas François <[email protected]>
* lib/Locale/Po4a/TeX.pm: Two escape sequences (\\ in LaTeX or @@
in Texinfo) do not introduce a command.
* lib/Locale/Po4a/TeX.pm: Escaped brackets should not be counted
(for the balancing of brackets).
* lib/Locale/Po4a/Texinfo.pm: Added support for opindex
2009-03-23 Nicolas François <[email protected]>
* lib/Locale/Po4a/Pod.pm: Do not add an =encoding header if the
encoding is empty. Thanks to Joey Hess.
2009-03-16 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/TeX.pm: Fix support for inline
customization of separators. The [#x] modifier is optional.
* NEWS, lib/Locale/Po4a/LaTeX.pm: Added support for the tabularx
environment.
2009-03-16 Nicolas François <[email protected]>
* doc/po4a.7.pod, lib/Locale/Po4a/Xml.pm: Fix Typos.
* po/pod/fr.po: Updated French translation.
* po/bin/po4a.pot, po/pod/po4a-pod.pot: Regenerated.
* po/bin/*.po, po/pod/*.po: Synchronized with the POTs.
2009-03-08 Nicolas François <[email protected]>
* lib/Locale/Po4a/Xml.pm: The tag and the po4a-id may have been
split on different lines in the PO file.
2009-03-07 Nicolas François <[email protected]>
* po/bin/fr.po: Updated French translation.
2009-03-07 Nicolas François <[email protected]>
* lib/Locale/Po4a/Xml.pm: Do not expect external entities to be in
the current directory. Use the current file's path instead.
2009-03-07 Nicolas François <[email protected]>
* po4a, po4a-gettextize, po4a-normalize, po4a-translate,
po4a-updatepo, scripts/msgsearch, scripts/msguntypot: DO not use
the hardcoded /usr/bin/perl. Just use perl from the PATH.
2009-03-07 Nicolas François <[email protected]>
* scripts/msguntypot: Do not include Locale::gettext directly. Use
Locale::Po4a::Common instead.
2009-03-04 Nicolas François <[email protected]>
* po/bin/po4a.pot, po/pod/po4a-pod.pot: Regenerated.
* po/bin/*.po, po/pod/*.po: Synchronized with the POTs.
* NEWS, lib/Locale/Po4a/TransTractor.pm: Prepare for the next release
2009-03-04 Nicolas François <[email protected]>
* lib/Locale/Po4a/Xml.pm: Fix the support for the nodefault
option.
* lib/Locale/Po4a/Xml.pm: Fix the detection of tags wrongly added
to 2 exclusive categories.
2009-03-03 Nicolas François <[email protected]>
* lib/Locale/Po4a/Xml.pm: Simplify handling of references from
@save_holders.
2009-03-02 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Xml.pm: Added foldattributes option.
Useful to simplify strings and avoid typos when attributes shall
not be translated.
2009-03-02 Nicolas François <[email protected]>
* lib/Locale/Po4a/Wml.pm: Issue warnings only in debug mode.
2009-03-02 Nicolas François <[email protected]>
* lib/Locale/Po4a/Xml.pm: Added missing initialization of
$self->{options}{'_default_attributes'}
2009-03-01 Nicolas François <[email protected]>
* lib/Locale/Po4a/Docbook.pm, lib/Locale/Po4a/Guide.pm,
lib/Locale/Po4a/Xhtml.pm: Use _default_attributes instead of
attributes.
* lib/Locale/Po4a/Xml.pm: Added support for _default_attributes.
* lib/Locale/Po4a/Xml.pm: Do not use the default setting if the
tag is already assigned to the category on the command line
(modifiers may differ).
2009-02-28 Nicolas François <[email protected]>
* t/data-02/man.po, t/data-02/man.po-empty, t/data-02/man.po-ok,
t/data-02/pod.po, t/data-02/pod.po-empty, t/data-02/pod.po-ok,
t/data-04/ascii-iso8859.po-ok, t/data-04/ascii.po-ok,
t/data-04/iso8859.po-ok, t/data-04/trans.po, t/data-04/utf.po,
t/data-04/utf.po-ok, t/data-05/test0.fr.po,
t/data-05/test0.fr.po-empty, t/data-05/test0.pot,
t/data-05/test2.de.po, t/data-05/test2.de.po-empty,
t/data-05/test2.es.po, t/data-05/test2.es.po-empty,
t/data-05/test2.fr.po, t/data-05/test2.fr.po-empty,
t/data-05/test2.it.po, t/data-05/test2.it.po-empty,
t/data-05/test2.pot, t/data-11/pod1.po, t/data-11/pod2.po,
t/data-20/test2.pot, t/data-20/xml.po, t/data-21/extract.po-ok,
t/data-21/transl.po, t/data-22/html.po, t/data-22/spaces.po,
t/data-23/dot1.fr.po, t/data-23/dot1.pot, t/data-23/dot5.it.po,
t/data-23/dot5.pot, t/data-23/escapes1.it.po,
t/data-23/escapes1.pot, t/data-23/fonts.en.po,
t/data-23/fonts.pot, t/data-23/hyphens.translate.fr.po,
t/data-23/hyphens.translate.pot, t/data-23/hyphens.verbatim.fr.po,
t/data-23/hyphens.verbatim.pot, t/data-23/mdoc.fr.po,
t/data-23/mdoc.pot, t/data-23/mixed.fr.po, t/data-23/mixed.pot,
t/data-23/null.fr.po, t/data-23/null.pot,
t/data-23/spaces.fr_latin1.po, t/data-23/spaces.fr_utf8.po,
t/data-23/spaces.ja.po, t/data-23/spaces.pot,
t/data-24/simple.fr.po, t/data-24/simple.pot,
t/data-25/includessi.po, t/data-25/xhtml.po,
t/data-27/comments.po, t/data-27/general.po, t/data-27/options.po,
t/data-29/general.po, t/data-30/Attributes.po,
t/data-30/BlockId.po, t/data-30/BlockTitles.po,
t/data-30/Callouts.po, t/data-30/DelimitedBlocks.po,
t/data-30/Footnotes.po, t/data-30/Lists.po,
t/data-30/Paragraphs.po, t/data-30/Tables.po, t/data-30/Titles.po:
Updated testsuite according to last change for "type:" comments.
2009-02-28 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Po.pm: Tag "type:" comments as extracted
comments (starting with '#. ') instead of translator comments.
2009-02-28 Nicolas François <[email protected]>
* t/data-05/test7.err: Updated testsuite. Man is much less verbose
in debug mode since the simplification of the splitargs() function.
* t/data-23/quotes, t/data-23/quotes.fr, t/data-23/quotes.fr.po,
t/data-23/quotes.pot: Updated testsuite. splitargs() is now
* t/data-24/simple-translate.out, t/data-24/simple-updatepo.out,
t/data-24/simple-gettextize.out: Updated testsuite. New warning
for files which are not found.
* t/data-24/simple.fr.tex, t/data-24/simple.tex: article.cls is a
standard file, and is found by kpsewhich. Use article-wrong.cls
instead.
* t/data-27/general-normalized.xml: New behavior of Xml for
comments.
2009-02-28 Nicolas François <[email protected]>
* lib/Locale/Po4a/TeX.pm: Warn if kpsewhich cannot find the file.
2009-02-28 Nicolas François <[email protected]>
* lib/Locale/Po4a/Dia.pm: Since the removal of tagsonly,
found_string() may receive an empty (or space only) string. Just
return the provided string in that case.
2009-02-22 Nicolas François <[email protected]>
* lib/Locale/Po4a/Xhtml.pm: Remove <map> from the set of inline
tags. <img> are not translated so <map>/<area> should not be
neither.
2009-02-22 Nicolas François <[email protected]>
* NEWS,lib/Locale/Po4a/TeX.pm: Use kpsewhich instead of directly
TEXINPUTS to find included files.
2009-02-22 Nicolas François <[email protected]>
* Build.PL: Fix the title (release and center titles) of the
English po4a.7 manpage.
* Build.PL: Fix the titles (release and center titles) of
translated manpages (they use to be doubly encoded in UTF-8).
2009-02-22 Robert Luberda <[email protected]>
* doc/po4a.7.pod: Fixed typo.
2009-02-22 Nicolas François <[email protected]>
* lib/Locale/Po4a/Dia.pm, lib/Locale/Po4a/Docbook.pm,
lib/Locale/Po4a/Guide.pm: Do not use tagsonly, which is not needed
anymore and deprecated.
2009-02-22 Nicolas François <[email protected]>
* po4a: Fix the handling of global options in the configuration
file. [options] opt:"-M UTF-8" failed.
2009-02-22 Nicolas François <[email protected]>
* lib/Locale/Po4a/Xml.pm: Check that the translated and
untranslated lists are exclusive.
* lib/Locale/Po4a/Xml.pm: Check that the break, inline and
placeholder lists are exclusive.
2009-02-22 Nicolas François <[email protected]>
* lib/Locale/Po4a/Xml.pm: Remove the translate argument from
translate_paragraph(). It is not used anymore.
2009-02-22 Nicolas François <[email protected]>
* lib/Locale/Po4a/Xml.pm: Updated documentation.
2009-02-22 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Xml.pm: The tags and tagsonly options are
deprecated. Use the translated/untranslated and
break/inline/placeholder options instead.
2009-02-15 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Xml.pm: Only issue a warning when the
doctype does not match. Also provide more help to the users.
2009-02-14 Nicolas François <[email protected]>
* doc/po4a.7.pod: Harmonize the filename used in the
documentation, example, etc.
* doc/po4a.7.pod: Added section "HOWTO customize po4a".
2009-02-14 Nicolas François <[email protected]>
* lib/Locale/Po4a/Common.pm, lib/Locale/Po4a/TransTractor.pm,
lib/Locale/Po4a/Text.pm: Fix warnings in the generated manpages.
* lib/Locale/Po4a/Text.pm: Document the asciidoc option.
2009-02-14 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Man.pm: Rewrite splitargs() to handle
arguments having multiple spaces for formatting. This information
was lost when splitting the arguments string on spaces.
2009-02-13 Nicolas François <[email protected]>
* NEWS, lib/Locale/Po4a/Xml.pm: Give placeholders a type and a
more valid XML representation.
2009-02-10 Nicolas François <[email protected]>
* po4a: Fail with an error if options cannot be parsed (instead of
infinite loop).
2009-02-10 Martin Quinson <[email protected]>
* lib/Locale/Po4a/Xml.pm: Reset @path in initialize(). This is
needed when po4a is used with multiple files which leave an
unclean path.
2009-02-10 Nicolas François <[email protected]>
* NEWS: Updated release date.
* NEWS, Build.PL: Build the manpage with the Pod::Man utf8 option.
This requires a recent Pod::Man (>= 5.10?)
* NEWS, lib/Locale/Po4a/Pod.pm: Announce the encoding in the POD
header.
2009-02-09 Nicolas François <[email protected]>
* Build.PL: Another try to fix the installation of manpages and mo
files.