Skip to content

Commit

Permalink
Fix path in show_translations.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc committed Jul 14, 2019
1 parent 2469712 commit 1756655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/language/show_translations.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
app = QCoreApplication(sys.argv)

# Load POT template (all English strings)
POT_source = open(os.path.join(language_path, 'OpenShot.pot')).read()
POT_source = open(os.path.join(language_path, 'OpenShot', 'OpenShot.pot')).read()
all_strings = re.findall('^msgid \"(.*)\"', POT_source, re.MULTILINE)

print("Scanning {} strings in all translation files...".format(len(all_strings)))
Expand Down

0 comments on commit 1756655

Please sign in to comment.