r12f / potr

Potr (Po Translator) is a command line tool for translating gettext PO files.
https://github.com/r12f/potr
Apache License 2.0
9 stars 2 forks source link

Add as-fuzzy command line argument to mark translated messages as fuzzy for future review. #10

Closed r12f closed 11 months ago

r12f commented 11 months ago

Before the change:

#: src/SUMMARY.md:3
msgid "This is a pen!"
msgstr "This is a pen!"

After enabling --fuzzy:

#: src/SUMMARY.md:3
#, fuzzy
msgid "This is a pen!"
msgstr "This is a pen!"
r12f commented 11 months ago

8