From 0bca87a09c969146a73b9ceb827ba38752173c26 Mon Sep 17 00:00:00 2001 From: Janusz Dobrowolski Date: Sat, 14 May 2011 09:45:41 +0200 Subject: [PATCH] Fixed subheaders gettext in Tial Balance inquiry. --- gl/inquiry/gl_trial_balance.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gl/inquiry/gl_trial_balance.php b/gl/inquiry/gl_trial_balance.php index e4228cb..12aa232 100644 --- a/gl/inquiry/gl_trial_balance.php +++ b/gl/inquiry/gl_trial_balance.php @@ -86,7 +86,7 @@ function display_trial_balance($type, $typename) if (!$printtitle) { start_row("class='inquirybg' style='font-weight:bold'"); - label_cell("Group - ".$type ." - ".$typename, "colspan=8"); + label_cell(_("Group")." - ".$type ." - ".$typename, "colspan=8"); end_row(); $printtitle = 1; } @@ -138,7 +138,7 @@ function display_trial_balance($type, $typename) if (!$printtitle) { start_row("class='inquirybg' style='font-weight:bold'"); - label_cell("Group - ".$type ." - ".$typename, "colspan=8"); + label_cell(_("Group")." - ".$type ." - ".$typename, "colspan=8"); end_row(); $printtitle = 1; } @@ -189,7 +189,7 @@ $classresult = get_account_classes(false); while ($class = db_fetch($classresult)) { start_row("class='inquirybg' style='font-weight:bold'"); - label_cell("Class - ".$class['cid'] ." - ".$class['class_name'], "colspan=8"); + label_cell(_("Class")." - ".$class['cid'] ." - ".$class['class_name'], "colspan=8"); end_row(); //Get Account groups/types under this group/type with no parents -- 2.30.2