Skip to content

Commit

Permalink
fix(exporters): honor strings filter for MO files
Browse files Browse the repository at this point in the history
While the blank strings are probably not useful for using as MO files,
the fuzzy strings might be and the filter is in place to allow users
filter strings they want.

Fixes #11656
  • Loading branch information
nijel committed May 22, 2024
1 parent bcd80bb commit b7a99d2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions weblate/formats/exporters.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,9 +360,6 @@ def store_flags(self, output, flags) -> None:
return

def add_unit(self, unit) -> None:
# We do not store untranslated units
if not unit.translated:
return
# Parse properties from unit
if self.monolingual:
if self.use_context:
Expand Down

0 comments on commit b7a99d2

Please sign in to comment.