MojoMojo::I18N - support for language localization


MojoMojo documentation Contained in the MojoMojo distribution.

Index


Code Index:

Methods

Top

loc

Abbreviation for localize()

localize

Translate text to locality

tense

This is only here to satisfy Pod coverage tests. Not sure why t/03podcoverage.t thinks there is a tense sub in here?

NAME

Top

MojoMojo::I18N - support for language localization

AUTHORS

Top

Marcus Ramberg <mramberg@cpan.org>

LICENSE

Top

This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.


MojoMojo documentation Contained in the MojoMojo distribution.
package MojoMojo::I18N;
use strict;

use parent 'Locale::Maketext';

*loc = \&localize;

sub localize {
    my $self = shift;

    return $self->maketext(@_);
}

1;