Skip to content

Commit 5b7fd3e

Browse files
committed
nemo-actions/merge_action_strings: Sort by locale
1 parent e2f9304 commit 5b7fd3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data/nemo-actions/merge_action_strings

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ class Main:
3232
print("merge_action_strings - Failed to load .mo file: %s" % (os.path.join(root, file)))
3333

3434
if len(self.mo_files) > 0:
35-
for locale in self.mo_files.keys():
35+
for locale in sorted(self.mo_files.keys()):
3636
for entry in self.mo_files[locale]:
3737
self.check_name(locale, entry)
38-
for locale in self.mo_files.keys():
38+
for locale in sorted(self.mo_files.keys()):
3939
for entry in self.mo_files[locale]:
4040
self.check_comment(locale, entry)
4141

0 commit comments

Comments
 (0)