Skip to content

Commit

Permalink
Fix crowdin settings
Browse files Browse the repository at this point in the history
  • Loading branch information
blueset committed Aug 22, 2019
1 parent c97c23c commit 0cfba20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crowdin.yaml
Expand Up @@ -7,6 +7,6 @@ files: [
},
{
"source": "/EFBChannels/efb-wechat-slave/readme_translations/locale/README.pot",
"translation": "/EFBChannels/efb-wechat-slave/readme_translations/locale/%locale_with_underscore%.po"
"translation": "/EFBChannels/efb-wechat-slave/readme_translations/locale/%locale_with_underscore%/LC_MESSAGES/README.po"
}
]
2 changes: 1 addition & 1 deletion dodo.py
Expand Up @@ -44,7 +44,7 @@ def task_msgfmt():
except ValueError:
pass

sources = glob.glob("./{package}/**/*.po".format(package=PACKAGE), recursive=True)
sources = glob.glob("./**/*.po", recursive=True)
dests = [i[:-3] + ".mo" for i in sources]
actions = [["msgfmt", sources[i], "-o", dests[i]] for i in range(len(sources))]

Expand Down

0 comments on commit 0cfba20

Please sign in to comment.