Skip Menu |

This queue is for tickets about the Locale-Maketext-Utils CPAN distribution.

Report information
The Basics
Id: 81300
Status: open
Priority: 0/
Queue: Locale-Maketext-Utils

People
Owner: Nobody in particular
Requestors: dmuey [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Update overlooked spots: prefer fallback_locale before get_language_tag() etc
For example, the directionality of the fallback locale will be ltr w/ ar unless we incorporate fallback_locale, like so, in get_language_tag_character_orientation(): - return Cpanel::CPAN::Locales::DB::CharacterOrientation::Tiny::get_orientation( $_[1] || $_[0]- Show quoted text
>get_language_tag() );
+ return Cpanel::CPAN::Locales::DB::CharacterOrientation::Tiny::get_orientation( $_[1] || $_[0]- Show quoted text
>{fallback_locale} || $_[0]->get_language_tag() );
TODO: verify anything here that 0.36 did not address.