Skip to content

Commit

Permalink
internationalization bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed Aug 21, 2009
1 parent e1a6641 commit bf15db0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions interface/patient_file/encounter/diagnosis.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ function validate(f) {
<dl>
<dt>
<a href="diagnosis_full.php" target="<?php echo $target; ?>" onclick="top.restoreSession()">
<span class=title><?php echo ($GLOBALS['phone_country_code'] == '1') ? 'Billing' : 'Coding'; ?></span>
<span class=title><?php echo ($GLOBALS['phone_country_code'] == '1') ? xl('Billing') : xl('Coding'); ?></span>
<font class=more><?php echo $tmore;?></font></a>

<?php
Expand Down Expand Up @@ -231,7 +231,7 @@ function validate(f) {
"href='diagnosis_full.php' onclick='top.restoreSession()'><b>" .
$iter['code'] . "</b> " .
ucwords(strtolower($iter['code_text'])) .
' payment entered on ' .
' ' . xl('payment entered on') . ' ' .
$iter['date']."</a></td></tr>\n";
}
else {
Expand Down Expand Up @@ -286,7 +286,7 @@ function validate(f) {
}
}

$billing_html["CPT4"] .= "<tr><td>total:</td><td>" . sprintf("%01.2f",$total) . "</td></tr>\n";
$billing_html["CPT4"] .= "<tr><td>" . xl('total') . ":</td><td>" . sprintf("%01.2f",$total) . "</td></tr>\n";
foreach ($billing_html as $key => $val) {
print "<tr><td>$key</td><td><table>$val</table><td></tr><tr><td height=\"5\"></td></tr>\n";
}
Expand Down

0 comments on commit bf15db0

Please sign in to comment.