forked from mquinson/po4a
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
1996 lines (1629 loc) · 71.6 KB
/
NEWS
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
This file presents the major changes of each version, focusing on
user-visible changes while the day to day changes are in the git logs.
=======================================================================
___ _____ ___
__ __/ _ \|___ / _ \
\ \ / / | | | / / | | | unnamed
\ V /| |_| | / /| |_| |
\_/ \___(_)_/ \___/ (not released yet)
=======================================================================
___ __ ___
__ __/ _ \ / /_ / _ \
\ \ / / | | | '_ \ (_) | Happy New Year release.
\ V /| |_| | (_) \__, |
\_/ \___(_)___/ /_/ (Released on 2023/01/01)
Markdown:
* Parts of a fenced divs are now translated separately (GitHub's #381)
YAML and Yaml Front Matter:
* Use the implementation of YFM to parse YAML files too.
- This reduces the code dupplication, and brings the nice features over:
Numbers and arrays are not quoted anymore in Yaml files, as it should be.
- This adds the yfm_paths option to Markdown and Asciidoc YFM,
fixing GitHub's #392 along the way.
- Please note that '-o keys' is now case-sensitive in Yaml documents.
* Do not translate nor quote booleans, so that they are not treated as string.
Thanks Gissmo for GitHub's PR #393, even if I had to rework it quite a bit.
XML:
* Correctly handle placeholders of empty elements (GitHub's #389)
* Translate attributes within attribute-folded inline and placeholder (GH #391)
alt attribute of <img> can be properly handled with:
-o 'attributes=<image>alt' -o 'inline=<image>' -o foldattributes
* Thanks k-yaegashi for the pull request fixing both issues
Project organization:
* Do not leak the generation date in our manpages (GitHub's #387)
Thanks Arnout Engelen for the pull request.
Translations:
* New translation: Georgian, thanks Temuri Doghonadze.
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: French, thanks Jérémie Tarot & Brandelune.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Japanese, thanks gemmaro.
* Updated: Portuguese, thanks Hugo Carvalho.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
Status of the binary translation:
* 100%: fr, it, nl, pt_BR, uk.
* >95%: eo (96%), nb (96%), pt (99%), sr_Cyrl (99%).
* >90%: de (94%), es (94%), hr (94%), hu (92%), ru (93%), zh_CN (94%), zh_Hant (94%).
* >70%: id (77%), sv (72%).
* >50%: cs (57%), da (62%), et (67%), eu (56%), ja (63%), pl (62%), sl (56%), vi (67%).
* >33%: ca (45%).
* Starting: ace (2%), af (7%), ar (14%), ka (16%), kn (7%), ko (18%), zh_HK (3%).
Status of the documentation translation:
* 100%: it, uk.
* >95%: de (98%), fr (99%), ja (96%), nl (99%), sr_Cyrl (98%).
* >90%: pt (93%), pt_BR (94%), zh_CHS (94%), zh_Hant (94%).
* >80%: es (83%).
* >50%: pl (66%), ru (64%).
* >33%: ca (43%).
* Starting: eo (2%), hr (0%), hu (0%), nb (4%).
=======================================================================
___ __ ___
__ __/ _ \ / /_ ( _ )
\ \ / / | | | '_ \ / _ \ High Hopes release.
\ V /| |_| | (_) | (_) |
\_/ \___(_)___/ \___/ (Released on 2022/09/04)
This release dedication is here to remind you that Hope is always important.
Plus, the song of that name by Pink Floyd also deserves a dedication.
Project organization:
* Add a deprecation warning to po4a-translate and po4a-updatepo stating
that po4a is the prefered interface.
* Rewrite the po4a-gettextize documentation (Debian's #1016695) [Mt].
* Rewrite the intro of po4a doc, and add a Quick start tutorial [Mt].
gettextization:
* Rework completely the deduplication of msgids introduced in v0.67.
- Instead of adding spaces and require the users to merge them
manually after an extremely painful analysis of the produced file,
automatically merge the msgstr together.
- The result will look something like:
#, fuzzy
msgid "hello"
msgstr ""
"#-#-#-#-# file reference 1 (type: Title #) #-#-#-#-#\n"
"HELLO\n"
"#-#-#-#-# file reference 2 (type: Title ##) #-#-#-#-#\n"
"SUBTITLE\n"
- Closes Debian's #1017742, that was asking for help in the review [Mt].
Markdown:
* Allow lists to start the line with no leading spaces before the '-'
sign (Github's #378). This uncovers a bug in our test suite that
was enforcing the buggy behavior :( [Mt]
* Properly deal with fenced div blocks (Github's #381) [Mt]
Man:
* Bold text should never be wrapped as groff seems to reset the font
on new line (Debian's #1016753) [Mt].
* Properly deal with comments around macro definitions [Mt]
(Debian's #1017837).
Translations:
* Updated: Croatian, thanks Milo Ivir.
* Updated: Esperanto, thanks Marco Ciampa.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Japanese, thanks gemmaro.
* Updated: Portuguese, thanks Hugo Carvalho.
* Updated: Serbian (cyrillic), thanks Ivan Pesic.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська) & Artem.
Status of the binary translation:
* 100%: de, pt, sr_Cyrl, uk.
* >95%: eo (97%), es (95%), fr (97%), hr (95%), it (97%), nb (97%),
nl (95%), pt_BR (97%), zh_CN (95%), zh_Hant (95%).
* >90%: hu (93%), ru (93%).
* >70%: id (78%), sv (72%).
* >50%: cs (58%), da (62%), et (68%), eu (56%), ja (62%), pl (62%),
sl (56%), vi (67%).
* >33%: ca (45%).
* Starting: ace (2%), af (7%), ar (14%), kn (7%), ko (18%), zh_HK (3%).
Status of the documentation translation:
* 100%: it, uk.
* >95%: de (99%), fr (95%), pt_BR (95%), sr_Cyrl (99%).
* >90%: nl (94%), pt (94%), zh_CHS (94%), zh_Hant (94%).
* >80%: es (83%).
* >70%: ja (72%).
* >50%: pl (66%), ru (64%).
* >33%: ca (43%).
* Starting: eo (2%), hr (0%), hu (0%), nb (4%).
=======================================================================
___ __ _____
__ __/ _ \ / /|___ |
\ \ / / | | | '_ \ / / The Maryna Viazovska Release.
\ V /| |_| | (_) / /
\_/ \___(_)___/_/ (Released on 2022/07/14)
Maryna Viazovska was recently awarded a Fields Medal for her work on
the sphere-packing problem in higher dimension.
Asciidoc:
* Support Hugo shortcode on macros (GitHub's #352) [Danilo G. Baio]
* Support automatically numbered callouts (GitHub's #351) [J.N. Avila]
* Support line breaks (GitHub's #199) [J.N. Avila]
gettextization:
* Deduplicate the msgids, to prevent the structure desynchronizations
when the same string is used at several locations, with mismatching types.
(GitHub's #334) [mquinson]
* Add some tests for the gettextization feature. [mquinson]
po4a-translate:
* Do not check whether the po file is uptodate, as it's impossible to do
that correctly when several master files are merged in the same POT.
(GitHub's #156) [mquinson]
Man:
* Improve the error message when using '.de', '.if', '.ie' to hint about
the option 'groff_code=verbatim|translate' (GitHub's #361) [mquinson]
* Implement '.el' (else branch) as translate_joined [mquinson]
* Implement '.de1' (define with no check) as '.de' [mquinson]
* Implement '.dei', '.dei1' (define with subst) (Debian's #710678) [MQ]
* Implement '.it' (input trap) as untranslated (GitHub's #339) [mquinson]
* Make a sensible warning when user-defined macros are not explained to po4a
with the 'untranslated' option and friends. [mquinson]
Markdown:
* New option 'yfm_lenient' to proceed even if the YAML Front Matter parser fails.
Useful when your file starts with an horizontal ruler that is not a YFM.
(GitHub's #365) [mquinson]
This introduces a NEW DEPENDENCY: Syntax::Keyword::Try
* Do not quote the YFM lists to not break them (GitHub's #304) [mquinson].
Thanks @dbaio for the analysis and @ynojima for an initial patch in doc-l10n-kit.
xHTML:
* Add a test for tables and stop claiming that they may be broken
(GitHub's #366, thanks Petter Reinholdtsen).
Other bug fixes:
* Hide an ugly warning about uninitialized string (GitHub's #360) [mquinson]
Translations:
* Updated: Chinese (simplified and traditional), thanks taotieren.
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: Esperanto, thanks Marco Ciampa.
* Updated: French, thanks jmichault and Jérémie Tarot.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Norwegian Bokmål, thanks Petter Reinholdtsen.
* Updated: Portuguese, thanks Hugo Carvalho & Silvério Santos.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle and Luiz Fernando Ranghetti.
* Updated: Serbian (cyrillic), thanks Ivan Pesic.
* Updated: Spanish, thanks Francisco Serrador.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
* Updated: Vietnamese, thanks Trần Ngọc Quân.
Status of the binary translation:
* 5 languages = 100%: de, fr, nb, pt_BR, sr_Cyrl.
* 11 languages >= 95%: eo (97%), es (97%), hr (97%), hu (95%),
it (97%), nl (97%), pt (97%), ru (96%),
uk (98%), zh_CN (97%), zh_Hant(97%).
* 1 language >= 80%: id (80%).
* 1 language >= 70%: sv (74%).
* 8 languages >= 50%: cs (59%), da (62%), et (69%), eu (58%),
ja (64%), pl (64%), sl (57%), vi (69%).
* 1 language >= 33%: ca (46%).
* 6 starting languages: ace (2%), af (7%), ar (14%), kn (7%),
ko(19%), zh_HK (3%).
Status of the documentation translation:
* 2 languages = 100%: fr, uk.
* 8 languages >= 95%: de (98%), it (99%), nl (98%), pt (97%),
pt_BR (99%), sr_Cyrl (99%), zh_CHS (98%),
zh_Hant (98%).
* 1 language >= 80%: es (87%).
* 1 language >= 70%: ja (74%).
* 2 languages >= 50%: pl (67%), ru (68%).
* 1 language >= 33%: ca (44%).
* 4 starting languages: eo (2%), hr (0%), hu (0%), nb (4%).
=======================================================================
___ __ __
__ __/ _ \ / /_ / /_
\ \ / / | | | '_ \| '_ \ The 2+1 times 22 are 66 release.
\ V /| |_| | (_) | (_) |
\_/ \___(_)___/ \___/ (Released on 2/1/22)
Asciidoc:
* Support empty cells in tablecells mode (GitHub's #343) [J.N. Avila]
* Disable tablecells when table is not in PSV format (GitHub's #343 too)
[J.N. Avila]
Yaml:
* New option "paths" to select the full paths to extract.
The old "key" option (that allows to select any path ending with
the given key) still works as previously (thanks Oliver Rahner).
Tests:
* Make the SGML tests use valid input files to fix brekages on
paranoid OSes (GitHub's#327 -- thanks newbluemoon for report and fix).
* Add a new tests that fixes the weird permission settings of the
other tests, and prevent the users from running the tests as root.
(GitHub's #332 -- thanks Oliver Rahner for stepping on that trap)
* Fix the testsuite so that it works even if the source is checkouted
in an arbitrary directory (GitHub's #338).
po4a-gettextize:
* Use UTF-8 by default for localized charset.
Translations:
* Updated: Croatian, thanks Milo Ivir.
* Updated: Esperanto, thanks Marco Ciampa.
* Updated: French, thanks Martin Quinson & brandelune.
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Norwegian Bokmål, thanks Petter Reinholdtsen.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Russian, thanks Azamat H. Hackimov.
* Updated: Serbian (cyrillic), thanks Ivan Pesic.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
Status of the binary translation:
7 languages = 100%: fr, hr, it, nb, nl, pt_BR, uk.
8 languages >= 95%: de (97%), eo (98%), es (97%), hu (97%), pt (97%), ru (98%), sr_Cyrl (99%), zh_CN (97%).
1 language >= 80%: id (81%).
2 languages >= 70%: et (71%), sv (76%).
7 languages >= 50%: cs (60%), da (62%), eu (59%), ja (65%), pl (65%), sl (58%), vi (65%).
1 language >= 33%: ca (47%).
1 language >= 20%: zh_Hant (22%).
6 starting languages: ace (2%), af (7%), ar (14%), kn (7%), ko (19%), zh_HK (3%).
Status of the documentation translation:
3 languages = 100%: it, pt_BR, uk.
4 languages >= 95%: de (99%), fr (96%), nl (99%), sr_Cyrl (99%).
2 languages >= 90%: pt (94%), zh_CHS (93%).
1 language >= 70%: es (78%).
3 languages >= 50%: ja (69%), pl (69%), ru (69%).
1 language >= 33%: ca (44%).
4 starting languages: eo (2%), hr (0%), hu (0%), nb (3%).
=======================================================================
___ __ ____
__ __/ _ \ / /_| ___|
\ \ / / | | | '_ \___ \ The Apollo 12 release.
\ V /| |_| | (_) |__) |
\_/ \___(_)___/____/ (released November 14. 2021)
Asciidoc:
* Ensure that comments appear in the translated contents, to preserve
the document structure (Github's #307 and #308). Thanks Jean-Noël
Avila for the fix!
* Add an "nolinting" option to disable lint messages.
po4a runner:
* In split mode, allow to group several files within the same POT file.
* Rename the option 'master:file' to 'pot' for clarity. The old name
still works (with a warning).
Tex:
* Don't use the full absolute file path in #: references of PO files.
(Debian's #998196, Github's #281)
Translations:
* Updated: Croatian, thanks Milo Ivir.
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: French, thanks brandelune.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Hungarian, thanks Balázs Úr.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Russian, thanks Edward Smirnov and Azamat H. Hackimov.
* Updated: Serbian (cyrillic), thanks Ivan Pesic.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
Status of the binary translation:
6 languages = 100%: de, fr, it, nl, ru, uk.
9 languages >= 95%: eo (99%), es (99%), hr (99%), hu (99%), nb (99%), pt (99%), pt_BR (99%), sr_Cyrl (99%), zh_CN (99%).
1 language >= 80%: id (82%).
2 languages >= 70%: et (73%), sv (77%).
7 languages >= 50%: cs (61%), da (62%), eu (60%), ja (65%), pl (66%), sl (59%), vi (66%).
1 language >= 33%: ca (48%).
1 language >= 20%: zh_Hant (23%).
6 starting languages: ace (2%), af (7%), ar (14%), kn (7%), ko (19%), zh_HK (3%).
Status of the documentation translation:
2 languages = 100%: de, uk.
6 languages >= 95%: fr (97%), nl (99%), pt (97%), pt_BR (99%), sr_Cyrl (99%), zh_CHS (97%).
1 language >= 80%: es (80%).
3 languages >= 70%: it (75%), ja (72%), pl (71%).
1 language >= 50%: ru (67%).
1 language >= 33%: ca (46%).
4 starting languages: eo (2%), hr (0%), hu (0%), nb (1%).
=======================================================================
___ __ _ _
__ __/ _ \ / /_ | || |
\ \ / / | | | '_ \| || |_ The Lascaux release.
\ V /| |_| | (_) |__ _|
\_/ \___(_)___/ |_| (released September 12. 2021)
Asciidoc:
* Detect sublevel description lists with :::
* Don't split in attributes include:: and ifeval:: lines (Github's #298)
Pod:
* Don't wrap textblocks, as it may break C<> markup (similar to Github's #242)
Core:
* Mitigate Perl bug #18604 (simplify a regexp into a substring index) (Github's #302)
* Improve the consistency of all our module lists (related to Github's #136)
Thanks Viet Than.
Translations:
* Updated: Chinese (Traditional), thanks Shen-Ta Hsieh.
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: Esperanto, thanks phlostically.
* Updated: French, thanks jmichault.
* Updated: Indonesian, thanks Reza Almanda.
* Updated: Norwegian Bokmål, thanks Petter Reinholdtsen.
* Updated: Portuguese, thanks Silvério Santos.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Serbian (cyrillic), thanks Ivan Pesic.
* Updated: Spanish, thanks Támara Patiño.
* Updated: Swedish, thanks Anders Jonsson.
* Updated: Ukrainian, thanks Tymofij Lytvynenko and Yuri Chornoivan.
Status of the binary translation:
7 languages = 100%: de, nb, nl, pt, pt_BR, sr_Cyrl, uk.
8 languages >= 95%: eo (99%), es (99%), fr (99%), hr (99%), hu (99%), it (99%), ru (99%), zh_CN (99%).
1 language >= 80%: id (83%).
2 languages >= 70%: et (73%), sv (77%).
7 languages >= 50%: cs (61%), da (62%), eu (60%), ja (66%), pl (66%), sl (59%), vi (66%).
1 language >= 33%: ca (48%).
1 language >= 20%: zh_Hant (23%).
6 starting languages: ace (2%), af (7%), ar (14%), kn (7%), ko (19%), zh_HK (3%).
Status of the documentation translation:
8 languages >= 95%: de (97%), fr (97%), nl (97%), pt (97%), pt_BR (97%), sr_Cyrl (97%), uk (97%), zh_CHS (97%).
1 language >= 80%: es (80%).
2 languages >= 70%: ja (72%), pl (71%).
2 languages >= 50%: it (69%), ru (61%).
1 language >= 33%: ca (46%).
4 starting languages: eo (2%), hr (0%), hu (0%), nb (1%).
=======================================================================
___ __ _____
__ __/ _ \ / /_|___ /
\ \ / / | | | '_ \ |_ \ The actually translated release.
\ V /| |_| | (_) |__) |
\_/ \___(_)___/____/ (released February 22. 2021)
A bug in v0.62 removed all binary translations :(
Asciidoc:
* Properly deal with the YAML Front Matter, when one is found.
Texinfo:
* Add support for @tindex (Github's #284)
Yaml:
* Follow the reference style of YAML Front Matter in Markdown module to
fix the GitHub issue #289. (GitHub's #292)
Portability:
* Fix po4a(1) on Windows (GitHub's #293)
Build scripts:
* Fix Po4aBuilder to use -I instead of reseting PERL5LIB (Github's #286)
* Fix Po4aBuilder to actually install the mo files (GitHub's #294)
Translations:
* Updated: Esperanto, thanks jmichault.
* Updated: Estonian, thanks Kristjan Räts.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Russian, thanks Golubev Alexander.
* Updated: Spanish, Pau Garcia Quiles.
Status of the binary translation:
14 languages = 100%: de, es, fr, hr, hu, it, nb, nl, pt, pt_BR, ru,
sr_Cyrl, uk, zh_CN.
1 language >= 80%: eo (83%).
1 language >= 70%: et (73%).
9 languages >= 50%: cs (61%), da (62%), eu (60%), id (61%), ja (66%),
pl (66%), sl (59%), sv (64%), vi (66%).
1 language >= 33%: ca (48%).
5 starting languages: af (7%), ar (14%), kn (7%), ko (19%), zh_HK (3%).
Status of the documentation translation:
5 languages = 100%: de, fr, pt, pt_BR, uk.
3 languages >= 95%: nl (99%), sr_Cyrl (99%), zh_CHS (99%).
1 language >= 80%: es (80%).
2 languages >= 70%: ja (73%), pl (73%).
2 languages >= 50%: it (65%), ru (62%).
1 language >= 33%: ca (47%).
4 starting languages: eo (2%), hr (0%), hu (0%), nb (1%).
=======================================================================
___ __ ____
__ __/ _ \ / /_|___ \
\ \ / / | | | '_ \ __) | The make-it-better release.
\ V /| |_| | (_) / __/
\_/ \___(_)___/_____| (released December 7. 2020)
po4a tool:
* Improve po_paths on misconfigurations, improve doc and error messages.
Asciidoc:
* Unwrap all paragraphs by default (Github's #242).
Introduce "forcewrap" option to re-enable line wrapping on output.
* Support definition list continuations with indent (Github's #273)
DocBook:
* Mark xreflabel attributes as translatable (GitHub's #267).
Documentation:
* Fix some typos, thanks mestaritonttu.
Translations:
* Updated: Croatian, thanks Milo Ivir.
* Updated: Chinese (simplified), thanks taotieren.
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: French, thanks jmichault and Jean-Baptiste Holcroft.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Hungarian, thanks Balázs Úr.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Norwegian Bokmål, thanks Allan Nordhøy and Petter
Reinholdtsen.
* Updated: Portuguese, thanks Silvério Santos.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Russian, thanks Yuriy Balyuk and Artem.
* Updated: Serbian (cyrillic), thanks Ivan Pesic.
* Updated: Spanish, thanks Vladimir Támara Patiño and Emma Peel.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
Status of the binary translation:
13 languages = 100%: de, es, fr, hr, hu, it, nb, nl, pt, pt_BR,
sr_Cyrl, uk, zh_CN.
1 language >= 90%: ru (91%).
11 languages >= 50%: cs (61%), da (62%), eo (59%), et (66%), eu (60%),
id (61%), ja (66%), pl (66%), sl (59%), sv (64%),
vi (66%).
1 language >= 33%: ca (48%).
5 starting languages: af (7%), ar (14%), kn (7%), ko (19%), zh_HK (3%).
Status of the documentation translation:
4 languages = 100%: de, fr, pt_BR, uk.
4 languages >= 95%: nl (99%), pt (99%), sr_Cyrl (99%), zh_CHS (99%).
1 language >= 80%: es (80%).
2 languages >= 70%: ja (73%), pl (73%).
2 languages >= 50%: it (64%), ru (61%).
1 language >= 33%: ca (47%).
4 starting languages: eo (2%), hr (0%), hu (0%), nb (1%).
=======================================================================
___ __ _
__ __/ _ \ / /_ / |
\ \ / / | | | '_ \| | The schroot release.
\ V /| |_| | (_) | |
\_/ \___(_)___/|_| (released August 5. 2020)
po4a tool:
* Robustify --srcdir and --destdir: When building the schroot package,
these paths happen to be soft links to the same directory, making
po4a believe that the POT file is specified twice (to the same value).
po4a is now ignoring these dups (GitHub's #258).
Translations:
* Updated: Chinese, thanks taotieren.
* Updated: Czech, thanks to Michal Čihař.
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: French, thanks Jean-Baptiste and Martin Quinson.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Portuguese, thanks Silvério Santos.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Serbian (cyrillic), thanks Ivan Pesic.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
Status of the binary translation:
3 languages = 100%: fr, pt_BR, uk.
6 languages >= 95%: de (98%), hr (98%), it (96%), nl (98%),
sr_Cyrl (98%), zh_CN (98%).
2 languages >= 80%: hu (89%), ru (88%).
3 languages >= 70%: es (77%), nb (71%), pt (79%).
11 languages >= 50%: cs (62%), da (62%), eo (60%), et (67%), eu (61%),
id (62%), ja (67%), pl (67%), sl (60%), sv (65%),
vi (67%).
1 language >= 33%: ca (49%).
1 language >= 20%: ko (20%).
4 starting languages: af (8%), ar (14%), kn (8%), zh_HK (3%).
Status of the documentation translation:
3 languages = 100%: de, pt_BR, uk.
1 language >= 95%: nl (99%).
1 language >= 90%: pt (92%).
1 language >= 80%: fr (87%).
3 languages >= 70%: es (78%), ja (74%), pl (73%).
3 languages >= 50%: it (52%), ru (61%), sr_Cyrl (67%).
1 language >= 33%: ca (47%).
1 language >= 20%: zh_CHS (25%).
3 starting languages: hr (0%), hu (0%), nb (1%).
=======================================================================
___ __ ___
__ __/ _ \ / /_ / _ \
\ \ / / | | | '_ \| | | | The Roseta Stone release.
\ V /| |_| | (_) | |_| |
\_/ \___(_)___/ \___/ (released July 15. 2020)
The Roseta Stone was rediscovered 221 years ago, on July 15. 1799.
Asciidoc:
* Introduce "compat" option to parse like asciidoc or asciidoctor.
Text (and Markdown):
* Fix the support of nested lists (GitHub's #131).
Other:
* Remove the experimental C extension that was never built,
distributed, tested nor modified since 2007.
XML:
* Provide a meaningful message when the translators butcher the
<placeholder> attributes instead of truncating the file.
(GitHub's #254)
Translations:
* Updated: Chinese, thanks taotieren.
* Updated: Croatian, thanks Milo Ivir.
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: French, thanks Martin Quinson and Jean-Baptiste.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Norwegian Bokmål, thanks Allan Nordhøy.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Serbian (cyrillic), thanks Ivan Pesic.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
Status of the binary translation:
5 languages = 100%: fr, hr, nl, pt_BR, uk.
4 languages >= 95%: de (99%), it (97%), sr_Cyrl (99%), zh_CN (98%).
1 language >= 90%: hu (90%).
1 language >= 80%: ru (89%).
2 languages >= 70%: es (77%), nb (71%).
12 languages >= 50%: cs (61%), da (61%), eo (61%), et (68%), eu (61%), id (63%), ja (68%), pl (68%), pt (68%), sl (61%), sv (66%), vi (68%).
1 language >= 33%: ca (49%).
1 language >= 20%: ko (20%).
4 starting languages: af (8%), ar (14%), kn (8%), zh_HK (3%).
Status of the documentation translation:
3 languages = 100%: de, pt_BR, uk.
1 language >= 95%: nl (99%).
1 language >= 80%: fr (86%).
4 languages >= 70%: es (78%), ja (74%), pl (73%), pt (79%).
2 languages >= 50%: it (52%), ru (61%).
1 language >= 33%: ca (47%).
1 language >= 20%: sr_Cyrl (28%).
4 starting languages: hr (0%), hu (0%), nb (1%), zh_CHS (14%).
=======================================================================
___ ____ ___ _
/ _ \ | ___|/ _ \ / |
| | | ||___ \ (_) || | The aptitude release.
| |_| | ___) \__, || |
\___(_)____/ /_(_)_| (released 2020-05-24)
po4a tool:
* Really fix --srcdir and --destdir handling (Debian's #960892 again).
Even with the previous fix, the aptitude package was still broken.
Documentation:
* Clarify the syntax of -o parameters (GitHub's #233).
Sgml:
* Sort the attributes. Without this, msgids are randomly fuzzied.
(Debian's #725931 and Debian's #810988)
Translations:
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: French, thanks Martin Quinson and Jean-Baptiste.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Hungarian, thanks Balázs Úr.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
Status of the binary translation:
1 language = 100%: de.
6 languages >= 90%: fr (94%), hu (92%), nl (94%), pt_BR (94%), ru (91%), uk (94%).
3 languages >= 80%: es (80%), hr (80%), it (80%).
7 languages >= 70%: et (70%), ja (70%), nb (70%), pl (70%), pt (70%), sr_Cyrl (73%), vi (70%).
8 languages >= 50%: ca (50%), cs (63%), da (63%), eo (63%), eu (63%), id (64%), sl (63%), sv (68%).
2 languages >= 20%: ko (21%), zh_CN (23%).
4 starting languages: af (8%), ar (15%), kn (8%), zh_HK (3%).
Status of the documentation translation:
1 language = 100%: de.
2 languages >= 95%: pt_BR (99%), uk (99%).
1 language >= 80%: fr (82%).
4 languages >= 70%: es (78%), ja (74%), pl (73%), pt (79%).
2 languages >= 50%: it (53%), ru (61%).
2 languages >= 33%: ca (47%), nl (42%).
4 starting languages: hu (0%), nb (1%), sr_Cyrl (1%), zh_CHS (1%).
=======================================================================
___ ____ ___
__ __/ _ \ | ___|/ _ \
\ \ / / | | ||___ \ (_) | The dpkg release.
\ V /| |_| | ___) \__, |
\_/ \___(_)____/ /_/ (released 2020-05-20)
po4a tool:
* Fix --srcdir handling (GitHub's #237 and Debian's #960892).
This bug was breaking the build of several packages, including dpkg.
Addendum:
* New mode 'eof' to easily add at the end of the file (Debian's #960949).
Documentation:
* Fix many typos and glitches
* Start a section about external projects using po4a
Tests:
* po4a: Add a test for the [po_directory] feature
Overall:
* Improve the displayed messages, don't translate debug messages.
Translations:
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: French, thanks Martin Quinson.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Russian, thanks Golubev Alexander.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
Status of the binary translation:
3 languages = 100%: de, pt_BR, uk.
3 languages >= 95%: fr (97%), nl (97%), ru (96%).
4 languages >= 80%: es (84%), hr (84%), hu (84%), it (84%).
8 languages >= 70%: et (74%), ja (74%), nb (74%), pl (74%), pt (74%), sr_Cyrl (77%), sv (72%), vi (74%).
7 languages >= 50%: ca (53%), cs (67%), da (67%), eo (66%), eu (67%), id (68%), sl (66%).
2 languages >= 20%: ko (23%), zh_CN (25%).
4 starting languages: af (8%), ar (15%), kn (8%), zh_HK (3%).
Status of the documentation translation:
3 languages >= 95%: de (99%), pt_BR (99%), uk (99%).
5 languages >= 70%: es (78%), fr (79%), ja (74%), pl (73%), pt (79%).
2 languages >= 50%: it (53%), ru (62%).
1 language >= 33%: ca (47%).
1 language >= 20%: nl (32%).
4 starting languages: hu (0%), nb (1%), sr_Cyrl (1%), zh_CHS (1%).
=======================================================================
___ ____ ___ _
__ __/ _ \ | ___| ( _ ) / |
\ \ / / | | ||___ \ / _ \ | | The Release release.
\ V /| |_| | ___) | (_) || |
\_/ \___(_)____/ \___(_)_| (released 2020-05-11)
Documentation:
* Document an option of the XML parser (GitHub's #223).
* Small glitches found during the translations.
Tests:
* Also ignore 'Project-Id-Version' when diffing PO files (GitHub's #224)
* asciidoc: reactivate tablecells tests
AsciiDoc:
* Fix management of images in tables (Github's #226)
* Tolerate underline length variations in two lines titles (Github's #212)
Translations:
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Hungarian, thanks Balázs Úr.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Russian, thanks Golubev Alexander and Andrei Stepanov.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
Status of the binary translation:
10 languages = 100%: de, es, fr, hr, hu, it, nl, pt_BR, ru, uk.
1 language >= 90%: sr_Cyrl (93%).
7 languages >= 80%: et (89%), ja (87%), nb (89%), pl (89%),
pt (89%), sv (84%), vi (89%).
6 languages >= 70%: cs (77%), da (77%), eo (77%), eu (77%),
id (79%), sl (77%).
1 language >= 50%: ca (60%).
2 languages >= 20%: ko (27%), zh_CN (26%).
4 starting languages: af (10%), ar (17%), kn (12%), zh_HK (6%).
Status of the documentation translation:
3 languages = 100%: de, pt_BR, uk.
2 languages >= 80%: fr (80%), pt (80%).
3 languages >= 70%: es (79%), ja (75%), pl (74%).
2 languages >= 50%: it (53%), ru (58%).
1 language >= 33%: ca (48%).
5 starting languages: hu (0%), nb (1%), nl (13%), sr_Cyrl (1%),
zh_CHS (1%).
=======================================================================
___ ____ ___
__ __/ _ \ | ___| ( _ )
\ \ / / | | ||___ \ / _ \ The LockDown release.
\ V /| |_| | ___) | (_) |
\_/ \___(_)____/ \___/ (released 2020-05-04)
AsciiDoc:
* Accept numbered list items beginning with any number of dots
(GitHub's #210)
Markdown:
* Avoid translating Markdown fenced code block info string (GitHub's #194)
* List Markdown fenced code block info string as text type (GitHub's #195)
* Support YAML Front Matter (GitHub's #196). This requires YAML::Tiny.
* Introduce options yfm_keys and yfm_skip_array to respectively
specify which YAML keys should be translated, and that the array
content should not be translated.
* Work around a bug in YAML::Tiny that quotes numbers (GitHub's #217)
* Add gettext flag "markdown-text" for relevant entries (GitHub's #208)
Text:
* Honor the (existing) --neverwrap option to handle every content verbatim.
Texinfo:
* Add the comments starting with 'TRANSLATORS:' to the po file
(GitHub's #162)
XHTML:
* Don't fail nor warn when a closing tag is missing, that's legit in HTML.
(GitHub's #179)
XML and DocBook:
* Allow attributes with no value (GitHub's #178).
* Processing Instructions are handled as inline tags by default, but
you can change them back to breaking with '-o break-pi' (GitHub's #170)
Yaml:
* Introduce option to skip array values. (GitHub's #187)
po4a tool:
* Cleanups and fixups about options' parsing (now tested and documented)
_
/ \ You may need to upgrage your po4a.conf if you were using
/_!_\ "unwanted features" (ie, bugs) of the previous implementation.
* Do not touch source dir when --destdir is provided (Debian #602387)
* Pass --add-location=file to msgmerge when receiving option porefs.
(requires gettext >= 0.19 -- June 2014)
* Option --master-charset sets the charset of the generated POT file.
* Option --master-language sets the language of the generated POT file.
* Add support for addendum path in po4a_paths (Debian #823189)
* Stop pretending that --porefs can control the wrapping of reference
comments, as the gettext tools used internally always rewrap them.
Scripts:
* Rename po4aman-display-po to po4a-display-man
* Rename po4apod-display-po to po4a-display-pod
Core:
* Use UTF-8 by default (the 20th century is over -- Debian #862460)
po4a used to prefer ascii unless it proved impossible. But the
underlying detection would fail, possibly for document containing
UTF-8 chars composed on printable ascii chars only.
* Add a --wrap-po option to control how the po file is wrapped, and
chose between either nicely wrapped files that tend to produce git
conflicts, or ugly files that are easy to automatically deal with.
Tests:
* Completely refactor most tests. They are now more reliable and the
error messages are much more useful to understand the issues.
* Many bugs to po4a and the core were ironed out in the process.
* PO files content are now tested too (GitHub's #67)
Documentation:
* Various cleanups by Golubev Alexander (GitHub's #190 & #191)
Translations:
* New translation: Serbian (cyrillic), thanks Ivan Pesic.
* Updated: Croatian, thanks Milo Ivir.
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: French, thanks Mattéo Rossillol‑‑Laruelle and Martin Quinson.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Hungarian, thanks Balázs Úr.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Japanese, thanks Shuuji TAKAHASHI.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Russian, thanks Golubev Alexander and Artem.
* Updated: Spanish, thanks Omar Campagne.
* Updated: Swedish, thanks Mattias Münster.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
=======================================================================
___ ____ _____
__ __/ _ \ | ___|___ |
\ \ / / | | ||___ \ / / The Diwali release.
\ V /| |_| | ___) |/ /
\_/ \___(_)____//_/ (released 2019-10-25)
AsciiDoc:
* Fix a crash occuring when a cell is nothing.
Translations:
* New translation: Hungarian, thanks Balázs Úr.
* Updated: French, thanks brandelune, Mattéo Rossillol‑‑Laruelle and
Julien Lepiller.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Norwegian Bokmål, thanks Allan Nordhøy.
* Updated: Polish, thanks Robert Luberda.
* Updated: Portuguese, thanks Silvério Santos.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle.
* Updated: Spanish, thanks Adolfo Jayme Barrientos.
* Updated: Swedish, thanks Anders Jonsson.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
=======================================================================
___ ____ __
__ __/ _ \ | ___| / /_
\ \ / / | | ||___ \| '_ \ The D-Day release, 75th anniversary.
\ V /| |_| | ___) | (_) |
\_/ \___(_)____/ \___/ (released 2019-06-06)
AsciiDoc:
* Introduce option tablecells to process cells in tables. (GitHub's #166)
* widen accepted characters in the term part of definition list
(GitHub's #169)
po4a tool:
* Don't use single quotes to protect command line arguments, as it
fails on Windows (GitHub's #141)
Translations:
* New translation: Arabic, thanks mohammadA.
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: French, thanks Jean-Baptiste Holcroft.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Japanese, thanks Victory.
* Updated: Norwegian Bokmål, thanks Petter Reinholdtsen and Allan Nordhøy.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle and Silvério
Santos.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
=======================================================================
___ ____ ____
__ __/ _ \ | ___| ___|
\ \ / / | | ||___ \___ \ Happy (late) Saint Nicholas Day
\ V /| |_| | ___) |__) |
\_/ \___(_)____/____/ (released 2018-12-09)
AsciiDoc:
* Fix Asciidoc unindented lists (GitHub's #149)
* Make Asciidoc Tables nowrap and support current format (GitHub's #63)
* Do not include table fences in pot file (GitHub's #163)
* Add option to prevent translation of target of image blocks (GitHub's #164)
Markdown:
* Improve markdown ruler parsing, and add test.
* Add markdown fenced code block parsing, and add test.
Sgml:
* Avoid deprecated unescaped left brace in regex to get ready for Perl 5.32.
(Debian's #903735)
TransTractor:
* Ensure to split lines before addendum operation without loss or addition of
newline. With this change, addendum behavior is more intuitive.
(Debian's #518218, Github's #147, #153)
Wml:
* Fix longstanding error regarding comments at the beginning of a file.
(Github's #138)
Xml, Docbook:
* Document XML tag behavior customization with example to help use case
specific customization. (Debian's #515763)
* Debug output enhancement to help people understand what exactly happening
inside po4a.
* Extensive POD and code comment additions and updates.
po4a tool:
* Add pot_in feature to support the secondary master file for the base of
POT/PO file generation.
Test:
* Add XML test cases with po4a including addendum, tag customization, and
pot_in feature.
Translations:
* New translation to Chinese and Chinese Simplified, thanks Liu Guang.
* Updated: Dutch, thanks Frans Spiesschaert.
* Updated: Estonian, thanks Kristjan Räts.
* Updated: French, thanks Brandelune and ButterflyOfFire.
* Updated: German, thanks Helge Kreutzmann.
* Updated: Italian, thanks Marco Ciampa.
* Updated: Norwegian Bokmål, thanks Petter Reinholdtsen.
* Updated: Portuguese (Brazil), thanks Rafael Fontenelle and Luiz
Fernando Ranghetti.
* Updated: Russian: thanks Igor.
* Updated: Spanish, thanks emma peel and Omar Campagne.
* Updated: Swedish, thanks Anders Jonsson.
* Updated: Ukrainian, thanks Yuri Chornoivan (українська).
* Updated: Vietnamese, thanks Trần Ngọc Quân.
=======================================================================
___ ____ _ _
__ __/ _ \ | ___|| || |
\ \ / / | | ||___ \| || |_ Back on track. Again.
\ V /| |_| | ___) |__ _|
\_/ \___(_)____/ |_| (released 2018-06-30)
Yaml:
* Fix the behavior with utf-8 files, thanks to Zero King (GitHub's #112)
* Add the references from the Yaml file to the po file (GitHub's #117)
Thanks Zero King.
Texinfo:
* Fix handling of spaces in menu descriptions (Github's #122 and
Debian's #758851).
Text:
* Fix the parsing of fortunes files, which had been broken since
v0.43. The handling has changed a bit, all msgids are now marked as
"no-wrap", because the word wrap in fortunes files usually matters.
* Remove the option for parsing AsciiDoc. There has been a standalone
module for nearly five years, released with v0.45. The AsciiDoc
option for the Text module has been deprecated since then.
* Support pandoc's bibliographic information (title, author, date)
at the beginning of a markdown file. Also fix a trailing newline
in some markdown titles (Debian's #894977).
Man:
* Support .MT and .ME macros for e-mail address markup (Debian's #900965).
* Support .OP, .SY, and .YS macros for command synopses.
Asciidoc: