Date::Manip::Lang::index - An index of languages supported by Date::Manip


Date-Manip documentation Contained in the Date-Manip distribution.

Index


Code Index:

NAME

Top

Date::Manip::Lang::index - An index of languages supported by Date::Manip

SYNPOSIS

Top

This module is not intended to be used directly. Other Date::Manip modules will load it as needed.


Date-Manip documentation Contained in the Date-Manip distribution.

package Date::Manip::Lang::index;
# Copyright (c) 2003-2011 Sullivan Beck. All rights reserved.
# This program is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.

########################################################################
########################################################################

require 5.010000;

use strict;
use warnings;

our($VERSION);
$VERSION='6.24';

our(%Lang);

# A list of languages, and their module name

%Lang = qw(
            catalan     catalan
            ca          catalan

            danish      danish
            da          danish

            dutch       dutch
            nederlands  dutch
            nl          dutch

            english     english
            en          english
            en_us       english

            french      french
            fr          french
            fr_fr       french

            german      german
            de          german
            de_de       german

            italian     italian
            it          italian
            it_it       italian

            norwegian   norwegian
            nb          norwegian
            nb_no       norwegian

            polish      polish
            pl          polish
            pl_pl       polish

            portuguese  portugue
            pt          portugue
            pt_pt       portugue

            romanian    romanian
            ro          romanian
            ro_ro       romanian

            russian     russian
            ru          russian
            ru_ru       russian

            spanish     spanish
            es          spanish
            es_es       spanish

            swedish     swedish
            sv          swedish

            turkish     turkish
            tr          turkish
            tr_tr       turkish
         );

1;