File: fr.pm

package info (click to toggle)
libcatalyst-plugin-i18n-perl 0.10-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 232 kB
  • sloc: perl: 2,137; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 135 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
package TestApp::I18N::fr;

use strict;
use warnings;

use base qw( TestApp::I18N );

our %Lexicon = (
    'Hello' => 'Bonjour'
);

1;