line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
########################################################################### |
3
|
|
|
|
|
|
|
# Copyright (c) Nate Wiger http://nateware.com. All Rights Reserved. |
4
|
|
|
|
|
|
|
# Please visit http://formbuilder.org for tutorials, support, and examples. |
5
|
|
|
|
|
|
|
########################################################################### |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
package CGI::FormBuilder::Messages::locale; |
8
|
|
|
|
|
|
|
|
9
|
2
|
|
|
2
|
|
8
|
use strict; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
51
|
|
10
|
|
|
|
|
|
|
|
11
|
2
|
|
|
2
|
|
7
|
use CGI::FormBuilder::Messages::default; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
47
|
|
12
|
2
|
|
|
2
|
|
4
|
use base 'CGI::FormBuilder::Messages::default'; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
137
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
our $VERSION = '3.10'; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# Inherit all messages from default (English) messages |
17
|
|
|
|
|
|
|
# |
18
|
|
|
|
|
|
|
# This structure is needed so that we can have a ::default class and |
19
|
|
|
|
|
|
|
# have all languages inherit from that. Before, we ran into oddities |
20
|
|
|
|
|
|
|
# where ::default != ::locale and got "base class is empty" errors. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |
23
|
|
|
|
|
|
|
__END__ |