fix broken i18n labels

This commit is contained in:
Colin Kuskie 2005-12-14 23:29:08 +00:00
parent d4e9102424
commit 27ae1a9977
5 changed files with 15 additions and 5 deletions

View file

@ -234,7 +234,7 @@ sub www_editProductParameterSave {
$parameterId = $session{form}{parameterId};
push (@error, $i18n->get('edit parameter error name')) unless $session{form}{name};
push (@error, $i18n->get('edit parameter name error')) unless $session{form}{name};
push (@error, $i18n->get('edit parameter productId error')) unless $session{form}{productId};
return "<ul><li>".join('</li><li>', @error)."</li></ul>".WebGUI::Operation::execute('editProductParameter') if (@error);

View file

@ -358,7 +358,7 @@ sub www_listSubscriptionCodes {
$output .= '<br />';
$output .= '<table border="1" cellpadding="5" cellspacing="0" align="center">';
$output .= '<tr>';
$output .= '<th>'.$i18n->get('batchId').'</th><th>'.$i18n->get('code').'</th><th>'.$i18n->get('creation date').
$output .= '<th>'.$i18n->get('batch id').'</th><th>'.$i18n->get('code').'</th><th>'.$i18n->get('creation date').
'</th><th>'.$i18n->get('dateUsed').'</th><th>'.$i18n->get('status').'</th>'; $output .= '</tr>';
foreach (@{$codes}) {
$output .= '<tr>';