DateTime::Locale - Localization support for DateTime.pm
use DateTime::Locale;
my $loc = DateTime::Locale->load('en_GB');
print $loc->native_locale_name, "\n", $loc->long_datetime_format, "\n";
# but mostly just things like ...
my $dt = DateTime->now( locale => 'fr' ); print "Aujourd'hui le mois est " . $dt->month_name, "\n":
If you want to know what methods are available for locale objects, then please read the "DateTime::Locale::Base" documentation.
If the requested locale is not found, a fallback search takes place to find a suitable replacement.
The fallback search order is:
language_script_territory language_script language_territory_variant language_territory language
Eg. For locale "es_XX_UNKNOWN" the fallback search would be:
es_XX_UNKNOWN # Fails - no such locale es_XX # Fails - no such locale es # Found - the es locale is returned as the # closest match to the requested id
Eg. For locale "es_Latn_XX" the fallback search would be:
es_Latn_XX # Fails - no such locale es_Latn # Fails - no such locale es_XX # Fails - no such locale es # Found - the es locale is returned as the # closest match to the requested id
If no suitable replacement is found, then an exception is thrown.
Please note that if you provide an id to this method, then the returned locale object's "id()" method will always return the value you gave, even if that value was an alias to some other id.
This is done for forwards compatibility, in case something that is currently an alias becomes a unique locale in the future.
This means that the value of "id()" and the object's class may not match.
The loaded locale is cached, so that locale objects may be singletons. Calling "register()", "add_aliases()", or "remove_alias()" clears the cache.
my @ids = DateTime::Locale->ids; my $ids = DateTime::Locale->ids;
Returns an unsorted list of the available locale ids, or an array reference if called in a scalar context. This list does not include aliases.
my @names = DateTime::Locale->names; my $names = DateTime::Locale->names;
Returns an unsorted list of the available locale names in English, or an array reference if called in a scalar context.
my @names = DateTime::Locale->native_names; my $names = DateTime::Locale->native_names;
Returns an unsorted list of the available locale names in their native language, or an array reference if called in a scalar context. All native names are utf8 encoded.
NB: Many locales are only partially translated, so some native locale names may still contain some English.
If the passed locale id is neither registered nor listed in ``AVAILABLE LOCALES'', an exception is thrown.
DateTime::Locale->add_aliases( LastResort => 'es_ES' );
# Equivalent to DateTime::Locale->load('es_ES'); DateTime::Locale->load('LastResort');
You can also pass a hash reference to this method.
DateTime::Locale->add_aliases( { Default => 'en_GB', Alternative => 'en_US', LastResort => 'es_ES' } );
DateTime::Locale->add_aliases( LastResort => 'es_ES' );
# Equivalent to DateTime::Locale->load('es_ES'); DateTime::Locale->load('LastResort');
DateTime::Locale->remove_alias('LastResort');
# Throws an exception, 'LastResort' no longer exists DateTime::Locale->load('LastResort');
Until registered, custom locales cannot be instantiated via "load()" and will not be returned by querying methods such as "ids()" or "names()".
register( id => $locale_id, en_language => ..., # something like 'English' or 'Afar',
# All other keys are optional. These are: en_script => ..., en_territory => ..., en_variant => ...,
native_language => ..., native_sript => ..., native_territory => ..., native_variant => ...,
# Optional - defaults to DateTime::Locale::$locale_id class => $class_name,
replace => $boolean )
The locale id and English name are required, and the following formats should used wherever possible:
id: languageId[_script][_territoryId[_variantId]]
Where: languageId = Lower case ISO 639 code - Always choose 639-1 over 639-2 where possible.
script = Title Case ISO 15924 script code
territoryId = Upper case ISO 3166 code - Always choose 3166-1 over 3166-2 where possible.
variantId = Upper case variant id - Basically anything you want, since this is typically the component that uniquely identifies a custom locale.
You cannot not use '@' or '=' in locale ids - these are reserved for future use. The underscore (_) is the component separator, and should not be used for any other purpose.
If the ``native_*'' components are supplied, they must be utf8 encoded and follow:
If omitted, the native name is assumed to be identical to the English name.
If class is supplied, it must be the full module name of your custom locale. If omitted, the locale module is assumed to be a DateTime::Locale subclass.
Examples:
DateTime::Locale->register ( id => 'en_GB_RIDAS', en_language => 'English', en_territory => 'United Kingdom', en_variant => 'Ridas Custom Locale', );
# Returns instance of class DateTime::Locale::en_GB_RIDAS my $l = DateTime::Locale->load('en_GB_RIDAS');
DateTime::Locale->register ( id => 'hu_HU', en_language => 'Hungarian', en_territory => Hungary', native_language => 'Magyar', native_territory => 'Magyarorszц║g', );
# Returns instance of class DateTime::Locale::hu_HU my $l = DateTime::Locale->load('hu_HU');
DateTime::Locale->register ( id => 'en_GB_RIDAS', name => 'English United Kingdom Ridas custom locale', class => 'Ridas::Locales::CustomGB', );
# Returns instance of class Ridas::Locales::CustomGB # NOT Ridas::Locales::Custom::en_GB_RIDAS ! my $l = DateTime::Locale->load('en_GB_RIDAS');
If you register a locale for an id that already exists, the ``replace'' parameter must be true or an exception will be thrown.
The complete name for a registered locale is generated by joining together the language, territory, and variant components with a single space.
This means that in the first example, the complete English and native names for the locale would be ``English United Kingdom Ridas Custom Locale'', and in the second example the complete English name is ``Hungarian Hungary'', while the complete native name is ``Magyar Magyarorszц║g''. The locale will be loadable by these complete names (English and native), via the "load()" method.
In either case the locale MUST be registered before use.
package Ridas::Locale::en_GB_RIDAS1;
use strict; use DateTime::Locale::en_GB;
@Ridas::Locale::en_GB_RIDAS1::ISA = qw ( DateTime::Locale::en_GB );
my $locale_id = 'en_GB_RIDAS1';
my $date_formats = { 'full' => '%A %{day} %B %{ce_year}', 'long' => '%{day} %B %{ce_year}', 'medium' => '%{day} %b %{ce_year}', 'short' => '%{day}/%m/%y', };
my $time_formats = { 'full' => '%H h %{minute} %{time_zone_short_name}', 'long' => '%{hour12}:%M:%S %p', 'medium' => '%{hour12}:%M:%S %p', 'short' => '%{hour12}:%M %p', };
sub short_date_format { $date_formats{short} } sub medium_date_format { $date_formats{medium} } sub long_date_format { $date_formats{long} } sub full_date_format { $date_formats{full} }
sub short_time_format { $time_formats{short} } sub medium_time_format { $time_formats{medium} } sub long_time_format { $time_formats{long} } sub full_time_format { $time_formats{full} }
1;
Now register it:
DateTime::Locale->register ( id => 'en_GB_RIDAS1',
# name, territory, and variant as described in register() documentation
class => 'Ridas::Locale::en_GB_RIDAS1' );
id month_names month_abbreviations day_names day_abbreviations am_pms eras
short_date_format medium_date_format long_date_format full_date_format
short_time_format medium_time_format long_time_format full_time_format
datetime_format_pattern_order date_parts_order _default_date_format_length _default_time_format_length
See "DateTime::Locale::Base" for a description of each method, and take a look at DateTime/Locale/root.pm for an example of a complete implementation.
You are, of course, free to subclass "DateTime::Locale::Base" if you want to, though this is not required.
Once created, remember to register it!
Of course, you can always do the registration in the module itself, and simply load it before using it.
The following methods can be used to get information about the locale's id and name.
The following methods all accept a "DateTime.pm" object and return a localized name.
The following methods return strings appropriate for the "DateTime.pm" "strftime()" method:
The following methods deal with the default format lengths:
The default when an object is created is determined by the CLDR locale data.
The following methods can be used to get the object's raw localization data. If a method returns a reference, altering it will alter the object, so make a copy if you need to do so.
When reporting errors in data, please check the primary data sources first, then where necessary report errors directly to the primary source via the CLDR bug report system. See http://unicode.org/cldr/filing_bug_reports.html for details.
Once these errors have been confirmed, please forward the error report and corrections to the DateTime mailing list, datetime@perl.org.
Support for this module is provided via the datetime@perl.org email list. See http://lists.perl.org/ for more details.
Dave Rolsky <autarch@urth.org>
These modules are loosely based on the DateTime::Language modules, which were in turn based on the Date::Language modules from Graham Barr's TimeDate distribution.
Thanks to Rick Measham for providing the Java to strftime pattern conversion routines used during locale generation.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
The locale modules in directory "DateTime/Locale/" have been generated from data provided by the CLDR project, see "DateTime/Locale/LICENSE.cldr" for details on the CLDR data's license.
datetime@perl.org mailing list
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |