19 lines
460 B
Perl
19 lines
460 B
Perl
package WebGUI::i18n::English::Form_Date; ##Be sure to change the package name to match the filename
|
|
use strict;
|
|
|
|
our $I18N = { ##hashref of hashes
|
|
'Choose a date' => {
|
|
message => q|Choose a date|,
|
|
lastUpdated => 1253165348,
|
|
context => q|Label for the datepicker javascript|
|
|
},
|
|
|
|
'Invalid year' => {
|
|
message => q|Please enter a valid year.|,
|
|
lastUpdated => 1253165348,
|
|
context => q|Label for the datepicker javascript|
|
|
},
|
|
|
|
};
|
|
|
|
1;
|