1Publican::Localise(3) User Contributed Perl DocumentationPublican::Localise(3)
2
3
4
6 Publican::Localise - Publican localisation utilities.
7
8 #...any methods you might want all your languages to share...
9
10 # And, assuming you want the base class to be an _AUTO lexicon, # as is
11 discussed a few sections up:
12
13 fallback_language_classes
14 fallback to en for unknown locales
15
16 package Publican::Localise::de_de; use base qw(Locale::Maketext::Gettext);
17 return 1;
18
19 package Publican::Localise::zh_tw; use base
20 qw(Locale::Maketext::Gettext);
21
22 return 1;
23
24 package Publican::Localise::zh_cn; use base
25 qw(Locale::Maketext::Gettext);
26
27 return 1;
28
30 None reported.
31
32 Please report any bugs or feature requests to
33 "publican-list@redhat.com", or through the web interface at
34 <https://bugzilla.redhat.com/bugzilla/enter_bug.cgi?product=Publican&component=publican>.
35
37 Jeff Fearn "<jfearn@redhat.com>"
38
39
40
41perl v5.32.1 2021-01-27 Publican::Localise(3)