internationalize template labels f-l

This commit is contained in:
Colin Kuskie 2005-02-28 19:45:22 +00:00
parent 302ab8ad17
commit 26119007c9
2 changed files with 53 additions and 14 deletions

View file

@ -106,20 +106,20 @@ sub appendTemplateLabels {
$var->{"by.label"} = $i18n->("by");
$var->{'body.label'} = $i18n->("body");
$var->{"back.label"} = $i18n->("back");
$var->{'contentType.label'} = $i18n->("Content Type");
$var->{"date.label"} = $i18n->("Date");
$var->{"delete.label"} = $i18n->("Delete");
$var->{'description.label'} = $i18n->("Description");
$var->{"deny.label"} = $i18n->("Deny");
$var->{"edit.label"} = "Edit";
$var->{'endDate.label'} = "End Date";
$var->{'exactphrase.label'} = "Exact Phrase";
$var->{"layout.flat.label"} = "Flat";
$var->{'image.label'} = "Image";
$var->{'link.header.label'} = "Edit Link";
$var->{"lastReply.label"} = "Last Reply";
$var->{"lock.label"} = "Lock";
$var->{"layout.label"} = "Layout";
$var->{'contentType.label'} = $i18n->("contentType");
$var->{"date.label"} = $i18n->("date");
$var->{"delete.label"} = $i18n->("delete");
$var->{'description.label'} = $i18n->("description");
$var->{"deny.label"} = $i18n->("deny");
$var->{"edit.label"} = $i18n->("edit");
$var->{'endDate.label'} = $i18n->("endDate");
$var->{'exactphrase.label'} = $i18n->("exactPhrase");
$var->{"layout.flat.label"} = $i18n->("flatLayout");
$var->{'image.label'} = $i18n->("image");
$var->{'link.header.label'} = $i18n->("editLink");
$var->{"lastReply.label"} = $i18n->("lastReply");
$var->{"lock.label"} = $i18n->("lock");
$var->{"layout.label"} = $i18n->("layout");
$var->{'message.header.label'} = "Edit Message";
$var->{'message.label'} = "Message";
$var->{"next.label"} = "Next";

View file

@ -81,6 +81,45 @@ our $I18N = {
lastUpdated => 1109618544,
},
'edit' => {
message => q|Edit|,
lastUpdated => 1109618544,
},
'endDate' => {
message => q|End Date|,
lastUpdated => 1109618544,
},
'exactPhrase' => {
message => q|Exact Phrase|,
lastUpdated => 1109618544,
},
'flatLayout' => {
message => q|Flat|,
lastUpdated => 1109618544,
},
'image' => {
message => q|Image|,
lastUpdated => 1109618544,
},
'lastReply' => {
message => q|Last Reply|,
lastUpdated => 1109618544,
},
'lock' => {
message => q|Lock|,
lastUpdated => 1109618544,
},
'layout' => {
message => q|Layout|,
lastUpdated => 1109618544,
},
};