started adding functionality, somethings look OK still long ways to go for base functionality

This commit is contained in:
daviddelikat 2009-10-07 10:41:03 -05:00
parent ccc9e36e25
commit 03a0279040
8 changed files with 443 additions and 60 deletions

View file

@ -20,6 +20,12 @@ our $I18N = { ##hashref of hashes
context => q|This is the help text for the 'send email' flag. If set to 'Yes', the user will recieve email for every change made to the submission.|
},
'comments' => {
message => q|Comments|,
lastUpdated => 1131394072,
context => q|Label for the comments tab.|
},
# 'TODO' => {
# message => q|TODO|,
# lastUpdated => 1131394072,

View file

@ -75,7 +75,7 @@ our $I18N = { ##hashref of hashes
context => q|This is the default message for informing the user that the submission deadline is past.|
},
'past deadline label' => {
message => q|Post SUbmission Deadline Text|,
message => q|Past Submission Deadline Text|,
lastUpdated => 1131394072,
context => q|This is the label for the message indicating that the deadline for submissions has past.|
},
@ -85,6 +85,18 @@ our $I18N = { ##hashref of hashes
context => q|This help text should describe how the user tells submitters that the submission deadline has past.|
},
'submission deadline label' => {
message => q|Submission Deadline|,
lastUpdated => 1131394072,
context => q|Label for the submission deadline field|
},
'submission deadline label help' => {
message => q|Enter a date after which no more new submissions will be taken.|,
lastUpdated => 1131394072,
context => q|Help text for the submission deadline field. After this date this submission form will not accept any more entries.|
},
# 'TODO' => {
# message => q|TODO|,
# lastUpdated => 1131394072,

View file

@ -0,0 +1,15 @@
package WebGUI::i18n::English::Form_Div;
use strict; ##Required for all good Perl::Critic compliant code
our $I18N = {
'topicName' => {
message => q|Form Control Div Element|,
lastUpdated => 1131394070, #seconds from the epoch
context => q|Name of the form control that generates HTML Div elements|
},
};
1;
#vim:ft=perl