clusterssh/lib/App/ClusterSSH/L10N.pm

35 lines
709 B
Perl
Raw Normal View History

2010-01-11 19:39:20 +00:00
use strict;
use warnings;
package App::ClusterSSH::L10N;
2010-01-11 19:39:20 +00:00
# ABSTRACT: ClusterSSH::L10N - Base translations module
2010-01-11 19:39:20 +00:00
=head1 SYNOPSIS
use ClusterSSH::L10N;
my $lang = ClusterSSH::L10N->get_handle('en');
$lang->maketext('text to localise with args [_1]', $arg1);
=head1 DESCRIPTION
L<Locale::Maketext> based translation module for ClusterSSH. See
L<Locale::Maketext> for more information and usage.
NOTE: the default language of this module is English.
=head1 METHODS
2015-12-03 22:17:02 -08:00
See Locale::Maketext - there are currently no extra methods in this module.
2010-01-11 19:39:20 +00:00
=cut
2010-01-11 19:39:20 +00:00
use Locale::Maketext 1.01;
use base qw(Locale::Maketext);
2010-01-11 19:39:20 +00:00
# This projects primary language is English
our %Lexicon = ( '_AUTO' => 1, );
1;