solenv/bin/desktop-translate.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 03701c986cd1082c5cd9aea7b479811c7a079bca Author: David Tardon <[email protected]> Date: Mon May 16 14:52:47 2016 +0200 rhbz#1327847 emit .desktop trans. in predictable order Change-Id: Ib07e27a9df6a08868ea505e141e2526435d2a0ef diff --git a/solenv/bin/desktop-translate.pl b/solenv/bin/desktop-translate.pl index 0680431..259e7da 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"; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
