Skip to content

Commit

Permalink
minor internationalization modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed Jun 26, 2009
1 parent 6c6efde commit c876a0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions interface/main/calendar/modules/PostCalendar/pnadmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@ function postcalendar_admin_categories($msg='',$e='',$args)
$tpl->assign('FormHidden',$form_hidden);
}
$form_submit = '<input type=hidden name="form_action" value="commit"/>
'.$authkey.'<input type="submit" name="submit" value="go">' ;
'.$authkey.'<input type="submit" name="submit" value="' . xl('go') . '">';
$tpl->assign('FormSubmit',$form_submit);

$output->Text($tpl->fetch($template_name.'/admin/submit_category.html'));
Expand Down Expand Up @@ -1967,10 +1967,10 @@ function postcalendar_admin_categoryLimits($msg='',$e='',$args)
$limits =& pnModAPIFunc(__POSTCALENDAR__,'user','getCategoryLimits');
$tpl->assign_by_ref('limits', $limits);
$tpl->assign('BGCOLOR2',$GLOBALS['style']['BGCOLOR2']);
$tpl->assign("catTitle", "Category");
$tpl->assign("catTitle",_PC_REP_CAT_TITLE_S);
$tpl->assign("catid", "catid");
$form_submit = '<input type=hidden name="form_action" value="commit"/>
'.$authkey.'<input type="submit" name="submit" value="go">' ;
'.$authkey.'<input type="submit" name="submit" value="' . xl('go') . '">';
$tpl->assign('FormSubmit',$form_submit);


Expand Down

0 comments on commit c876a0a

Please sign in to comment.