diff options
author | David Tardon <dtardon@redhat.com> | 2016-05-16 14:52:47 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-05-16 14:54:17 +0200 |
commit | 03701c986cd1082c5cd9aea7b479811c7a079bca (patch) | |
tree | 865be4034e626a8ac9a9e88d54f15a774ae7513b /solenv | |
parent | b8db7dcfd038d9609d7c093dbf634b3503434539 (diff) |
rhbz#1327847 emit .desktop trans. in predictable order
Change-Id: Ib07e27a9df6a08868ea505e141e2526435d2a0ef
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/desktop-translate.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/desktop-translate.pl b/solenv/bin/desktop-translate.pl index 0680431fad4d..259e7da752fb 100644 --- a/solenv/bin/desktop-translate.pl +++ b/solenv/bin/desktop-translate.pl @@ -144,7 +144,7 @@ foreach $template (keys %templates) { print OUTFILE $keyline; if (/$key/) { my $translations = $templates{$template}->{'translations'}; - foreach my $locale (keys %{$translations}) { + foreach my $locale (sort (keys %{$translations})) { my $value = $translations->{$locale}; # print "locale is $locale\n"; # print "value is $value\n"; |