~ubuntu-branches/ubuntu/intrepid/libcgi-formbuilder-perl/intrepid

« back to all changes in this revision

Viewing changes to lib/CGI/FormBuilder/Messages/fr.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::fr_FR - French messages for FormBuilder
10
 
 
11
 
=head1 SYNOPSIS
12
 
 
13
 
    use CGI::FormBuilder;
14
 
 
15
 
    my $form = CGI::FormBuilder->new(messages => 'fr');
16
 
 
17
 
=cut
18
 
 
19
9
use strict;
20
10
use utf8;
21
11
 
22
 
our $VERSION = '3.03';
 
12
our $REVISION = do { (my $r='$Revision: 100 $') =~ s/\D+//g; $r };
 
13
our $VERSION = '3.0501';
23
14
 
24
15
# Simply create a hash of messages for this language
25
16
our %MESSAGES = (
84
75
1;
85
76
__END__
86
77
 
87
 
=head1 DESCRIPTION
88
 
 
89
 
This module contains French messages for FormBuilder.
90
 
 
91
 
If the C<messages> option is set to "auto" (the recommended
92
 
but NOT default setting), these messages will automatically
93
 
be displayed to French clients: 
94
 
 
95
 
     my $form = CGI::FormBuilder->new(messages => 'auto');
96
 
 
97
 
To force display of these messages, use the following
98
 
option:
99
 
 
100
 
     my $form = CGI::FormBuilder->new(messages => ':fr_FR');
101
 
 
102
 
Thanks to Laurent Dami for the French translation.
103
 
 
104
 
=head1 REVISION
105
 
 
106
 
$Id: fr_FR.pm,v 1.8 2006/02/24 01:42:29 nwiger Exp $
107
 
 
108
 
=head1 AUTHOR
109
 
 
110
 
Copyright (c) 2005-2006 Nate Wiger <nate@wiger.org>,
111
 
Laurent Dami <dami@cpan.org>. All Rights Reserved.
112
 
 
113
 
This module is free software; you may copy this under the terms of
114
 
the GNU General Public License, or the Artistic License, copies of
115
 
which should have accompanied your Perl kit.
116
 
 
117
 
=cut
118