~ubuntu-branches/ubuntu/trusty/libcgi-formbuilder-perl/trusty-proposed

« back to all changes in this revision

Viewing changes to lib/CGI/FormBuilder/Messages/en_US.pm

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-28 20:29:04 UTC
  • mfrom: (2.1.7 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080628202904-81kzjon8e8silx88
Tags: 3.05.01-6
Set urgency=medium as 3.05.01-6 included a FTBFS bugfix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
# Copyright (c) 2005 Nate Wiger <nate@wiger.org>. All Rights Reserved.
3
 
# Use "perldoc CGI::FormBuilder::Messages" to read full documentation.
 
2
###########################################################################
 
3
# Copyright (c) 2000-2006 Nate Wiger <nate@wiger.org>. All Rights Reserved.
 
4
# Please visit www.formbuilder.org for tutorials, support, and examples.
 
5
###########################################################################
4
6
 
5
7
package CGI::FormBuilder::Messages::locale;
6
8
 
7
 
=head1 NAME
8
 
 
9
 
CGI::FormBuilder::Messages::en_US - English (default) messages for FormBuilder
10
 
 
11
 
=head1 SYNOPSIS
12
 
 
13
 
    use CGI::FormBuilder;
14
 
 
15
 
    my $form = CGI::FormBuilder->new(messages => 'auto');
16
 
 
17
 
=cut
18
 
 
19
9
use strict;
20
10
 
21
 
our $VERSION = '3.03';
 
11
our $REVISION = do { (my $r='$Revision: 100 $') =~ s/\D+//g; $r };
 
12
our $VERSION = '3.0501';
22
13
 
23
14
# Simply create a hash of messages for this language
24
15
our %MESSAGES = (
82
73
1;
83
74
__END__
84
75
 
85
 
=head1 DESCRIPTION
86
 
 
87
 
This module contains English (default) messages for FormBuilder.
88
 
 
89
 
If the C<messages> option is set to "auto" (the recommended
90
 
but NOT default setting), these messages will automatically
91
 
be displayed to English clients, or clients for which no
92
 
language set exists:
93
 
 
94
 
     my $form = CGI::FormBuilder->new(messages => 'auto');
95
 
 
96
 
To force display of these messages, use the following
97
 
option:
98
 
 
99
 
     my $form = CGI::FormBuilder->new(messages => ':en_US');
100
 
 
101
 
=head1 REVISION
102
 
 
103
 
$Id: en_US.pm,v 1.11 2006/02/24 01:42:29 nwiger Exp $
104
 
 
105
 
=head1 AUTHOR
106
 
 
107
 
Copyright (c) 2005-2006 Nate Wiger <nate@wiger.org>. All Rights Reserved.
108
 
 
109
 
This module is free software; you may copy this under the terms of
110
 
the GNU General Public License, or the Artistic License, copies of
111
 
which should have accompanied your Perl kit.
112
 
 
113
 
=cut
114