(self)
| 42 | |
| 43 | |
| 44 | def parse_files(self): |
| 45 | for po_file in self.all_po_files: |
| 46 | self._parse_one_file( |
| 47 | join(self.folder_path, po_file), |
| 48 | self.lang_from_filename(po_file) |
| 49 | ) |
| 50 | |
| 51 | |
| 52 | def lang_from_filename(self, filename): |
no test coverage detected