You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# File: a.pyimportpolibpo_filepath='test_po_file.po'# Create a new PO filepo=polib.POFile()
# Add a fuzzy entryfuzzy_entry=polib.POEntry(
msgid='fuzzy_message',
msgstr='ασαφής_εικόνα',
previous_msgid='fuzzy_image',
fuzzy=True, # Mark as fuzzyobsolete=True# Mark as obsolete
)
po.append(fuzzy_entry)
# Save the PO filepo.save(po_filepath)
Repro:
The .po file's contents:
After running b.py
The text was updated successfully, but these errors were encountered: