begin i18n work
This commit is contained in:
parent
827a4082b5
commit
c192f5fe5b
2 changed files with 40 additions and 10 deletions
|
|
@ -172,21 +172,21 @@ sub www_editEvent {
|
|||
-name => "title",
|
||||
-value => $self->session->form->get("title") || $event->{title},
|
||||
-hoverHelp => $i18n->get('add/edit event title description'),
|
||||
-label => "Title" #$i18n->get('add/edit event title')
|
||||
-label => $i18n->get('add/edit event title')
|
||||
);
|
||||
|
||||
$f->HTMLArea(
|
||||
-name => "description",
|
||||
-value => $self->session->form->get("description") || $event->{description},
|
||||
-hoverHelp => $i18n->get('add/edit event description description'),
|
||||
-label => "Description" #$i18n->get('add/edit event description')
|
||||
-label => $i18n->get('add/edit event description')
|
||||
);
|
||||
|
||||
$f->float(
|
||||
-name => "price",
|
||||
-value => $self->session->form->get("price") || $event->{price},
|
||||
-hoverHelp => $i18n->get('add/edit event price description'),
|
||||
-label => "Price" #$i18n->get('add/edit event price')
|
||||
-label => $i18n->get('add/edit event price')
|
||||
);
|
||||
|
||||
$f->template(
|
||||
|
|
|
|||
|
|
@ -18,39 +18,69 @@ our $I18N = { ##hashref of hashes
|
|||
lastUpdated => 1131394072,
|
||||
context => q|Field label for Paginate After|
|
||||
},
|
||||
|
||||
|
||||
'paginate after description' => {
|
||||
message => q|Number of events to display on one page.|,
|
||||
lastUpdated => 1131394072,
|
||||
context => q|Describes the Paginate After field|
|
||||
},
|
||||
|
||||
|
||||
'group to add events' => {
|
||||
message => q|Group to Add Events|,
|
||||
lastUpdated => 1131394072,
|
||||
context => q|Field label|
|
||||
},
|
||||
|
||||
|
||||
'group to add events description' => {
|
||||
message => q|Members of the selected group will have the ability to add events to an Event Management System.
|
||||
Events added will not be available for purchase until the event is approved by a member of the Group to Approve Events.|,
|
||||
lastUpdated => 1131394072,
|
||||
context => q|Describes the Group To Add Events field|
|
||||
},
|
||||
|
||||
|
||||
'group to approve events' => {
|
||||
message => q|Group to Approve Events|,
|
||||
lastUpdated => 1131394072,
|
||||
context => q|Field Label|
|
||||
},
|
||||
|
||||
|
||||
'group to approve events description' => {
|
||||
message => q|Members of the selected group will have the ability to approve a pending event so that it is available for purchase.|,
|
||||
lastUpdated => 1131394072,
|
||||
context => q|Describes the Group To Approve Events field|
|
||||
},
|
||||
|
||||
|
||||
|
||||
'add/edit event title' => {
|
||||
message => q|Event Title|,
|
||||
lastUpdated => 1138312761,
|
||||
},
|
||||
|
||||
'add/edit event title description' => {
|
||||
message => q|Enter the name or title of your event.|,
|
||||
lastUpdated => 1138312761,
|
||||
},
|
||||
|
||||
'add/edit event description' => {
|
||||
message => q|Description|,
|
||||
lastUpdated => 1138312761,
|
||||
},
|
||||
|
||||
'add/edit event description description' => {
|
||||
message => q|The details of your event, such as location, time, and what the event is about.|,
|
||||
lastUpdated => 1138312761,
|
||||
},
|
||||
|
||||
'add/edit event price' => {
|
||||
message => q|Price|,
|
||||
lastUpdated => 1138312761,
|
||||
},
|
||||
|
||||
'add/edit event price description' => {
|
||||
message => q|The cost to attend the event.|,
|
||||
lastUpdated => 1138312761,
|
||||
},
|
||||
|
||||
|
||||
#If the help file documents an Asset, it must include an assetName key
|
||||
#If the help file documents an Macro, it must include an macroName key
|
||||
#For all other types, use topicName
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue