2010-01-11 19:39:20 +00:00
|
|
|
package App::ClusterSSH::L10N;
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
use Locale::Maketext 1.01;
|
|
|
|
use base qw(Locale::Maketext);
|
|
|
|
|
|
|
|
# This projects primary language is English
|
|
|
|
|
|
|
|
our %Lexicon = ( '_AUTO' => 1, );
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
=pod
|
|
|
|
|
2010-06-20 17:51:47 +01:00
|
|
|
=head1 NAME
|
2010-01-11 19:39:20 +00:00
|
|
|
|
|
|
|
ClusterSSH::L10N - Base translations module
|
|
|
|
|
|
|
|
=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
|
|
|
|
|
|
|
|
See Locale::Maketext - there are curently no extra methods in this module.
|
|
|
|
|
|
|
|
=head1 AUTHOR
|
|
|
|
|
2010-06-20 20:23:41 +01:00
|
|
|
Duncan Ferguson, C<< <duncan_j_ferguson at yahoo.co.uk> >>
|
2010-01-11 19:39:20 +00:00
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT
|
|
|
|
|
2010-06-20 20:23:41 +01:00
|
|
|
Copyright 1999-2010 Duncan Ferguson.
|
2010-01-11 19:39:20 +00:00
|
|
|
|
2010-06-20 20:23:41 +01:00
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of either: the GNU General Public License as published
|
|
|
|
by the Free Software Foundation; or the Artistic License.
|
2010-01-11 19:39:20 +00:00
|
|
|
|
2010-06-20 20:23:41 +01:00
|
|
|
See http://dev.perl.org/licenses/ for more information.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
1;
|