Releases: ruby-gettext/gettext
Releases · ruby-gettext/gettext
gettext 3.4.9: 2023-10-22
Improvements
rmsgcat
,rmsgmerge
,rxgettext
: Added
--use-one-line-per-reference
option.
gettext 3.4.8: 2023-10-22
Fixes
-
doc: Fixed a wrong description for interpolation.
- GH-102
- Patch by Ilmari Karonen
-
po: Fixed a parser bug that flags aren't parsed correctly. If a
normal comment has "fuzzy", the entry is also treated as a fuzzy
entry. -
po: Fixed an output bug that flags aren't formatted correctly.
- GH-105
- Patch by Yoshikazu Nojima
Thanks
-
Ilmari Karonen
-
Yoshikazu Nojima
gettext 3.4.7: 2023-08-17
Fixes
-
po: Fixed a parser bug that it may add a
fuzzy
flag to non-fuzzy
entry withignore_fuzzy: true
.Example PO:
#, fuzzy #: file.rb:10 msgid "hello" msgstr "bonjour" msgid "non-fuzzy" msgstr "non-fuzzy string"
hello
entry is ignored becauseignore_fuzzy
istrue
. The
fuzzy
flag in thehello
entry is added tonon-fuzzy
entry.
gettext 3.4.6: 2023-07-12
Fixes
- po: Fixed a bug that parsed
msgid
/msgstr
/msgctxt
in.po
may be too much unescaped.
gettext 3.4.5: 2023-07-12
Improvements
- po: Added support for escaping
\r
inmsgid
/msgstr
.
gettext 3.4.4: 2023-06-11
Improvements
- Added
racc
to runtime dependencies because Ruby 3.3 doesn't
includeracc/parser
.