=over 4
=item * id
The complete locale id, something like "en_US".
=item * language_id
The language portion of the id, like "en".
=item * script_id
The script portion of the id, like "Hant".
=item * territory_id
The territory portion of the id, like "US".
=item * variant_id
The variant portion of the id, like "PREEURO".
=item * name
The locale's complete name, which always includes at least a language
component, plus optional territory and variant components. Something
like "English United States". The value returned will always be in
English.
=item * language
=item * script
=item * territory
=item * variant
The relevant component from the locale's complete name, like "English"
or "United States".
=item * native_name
The locale's complete name in localized form as a UTF-8 string.
=item * native_language
=item * native_script
=item * native_territory
=item * native_variant
The relevant component from the locale's complete native name as a
UTF-8 string.
=back
The following methods all accept a C<DateTime.pm> object and return
a localized name.
=over 4
=item * month_name ($dt)
=item * month_abbreviation ($dt)
=item * day_name ($dt)
=item * day_abbreviation ($dt)
=item * am_pm ($dt)
=back
The following methods return strings appropriate for the
C<DateTime.pm> C<strftime()> method:
=over 4
=item * full_date_format
=item * long_date_format
=item * medium_date_format
=item * short_date_format
=item * full_time_format
=item * long_time_format
=item * medium_time_format
=item * short_time_format
=item * full_datetime_format
=item * long_datetime_format
=item * medium_datetime_format
=8= |