From 860c79f3a687da43f9d5f21e5bd49fa91ed9810a Mon Sep 17 00:00:00 2001 From: Dwayne Bailey Date: Tue, 13 Aug 2024 14:05:47 +0100 Subject: [PATCH] Sort plurals forms in CLDR order Instead of alphabetical, sort these in the expect CLDR order zero...other Only sort when retreiving the values for formatter consumption, this should leave Twine files in their default order. Signed-off-by: Dwayne Bailey --- lib/twine/twine_file.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twine/twine_file.rb b/lib/twine/twine_file.rb index 5769021..f675f7a 100644 --- a/lib/twine/twine_file.rb +++ b/lib/twine/twine_file.rb @@ -58,7 +58,7 @@ module Twine def plural_translation_for_lang(lang) if @plural_translations.has_key? lang - @plural_translations[lang].dup + @plural_translations[lang].dup.sort_by { |key,_| TwineDefinition::PLURAL_KEYS.index(key) }.to_h end end