| MojoMojo documentation | Contained in the MojoMojo distribution. |
Abbreviation for localize()
Translate text to locality
This is only here to satisfy Pod coverage tests. Not sure why t/03podcoverage.t thinks there is a tense sub in here?
MojoMojo::I18N - support for language localization
Marcus Ramberg <mramberg@cpan.org>
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;