Skip to content

gettext 3.4.7: 2023-08-17

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Aug 08:02
· 24 commits to master since this release

Fixes

  • po: Fixed a parser bug that it may add a fuzzy flag to non-fuzzy
    entry with ignore_fuzzy: true.

    Example PO:

    #, fuzzy
    #: file.rb:10
    msgid "hello"
    msgstr "bonjour"
    
    msgid "non-fuzzy"
    msgstr "non-fuzzy string"

    hello entry is ignored because ignore_fuzzy is true. The
    fuzzy flag in the hello entry is added to non-fuzzy entry.