File: I18N.pm

package info (click to toggle)
libhtml-formfu-model-dbic-perl 0.06000-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,252 kB
  • ctags: 147
  • sloc: perl: 2,112; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 183 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package HTMLFormFu::I18N;
use strict;
use warnings;

use base 'Locale::Maketext';

*loc = \&localize;

sub localize {
    my $self = shift;
    
    return $self->maketext(@_);
}

1;