[Vtigercrm-commits] [vtiger-commits] r10239 - /vtigercrm/branches/5.0.3/modules/Calendar/calendarLayout.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Mon Feb 26 09:36:56 EST 2007


Author: saraj
Date: Mon Feb 26 07:36:51 2007
New Revision: 10239

Log:
i18n issue fixed. Fixes #3036

Modified:
    vtigercrm/branches/5.0.3/modules/Calendar/calendarLayout.php

Modified: vtigercrm/branches/5.0.3/modules/Calendar/calendarLayout.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/Calendar/calendarLayout.php (original)
+++ vtigercrm/branches/5.0.3/modules/Calendar/calendarLayout.php Mon Feb 26 07:36:51 2007
@@ -113,7 +113,7 @@
  */
 function get_mini_calendar(& $cal)
 {
-	global $current_user,$adb,$cal_log;
+	global $current_user,$adb,$cal_log,$mod_strings;
 	$category = getParentTab();
 	$cal_log->debug('Entering get_mini_calendar() method...');
 	$count = 0;
@@ -133,7 +133,7 @@
 	                     </td></tr>";
 	$minical .= "<tr class='hdrNameBg'>";
 	//To display days in week 
-	$minical .= '<th width="12%">Week</th>';
+	$minical .= '<th width="12%">'.$mod_strings['LBL_WEEK'].'</th>';
 	for ($i = 0; $i < 7; $i ++)
         {
                 $weekdays_row = $cal['calendar']->month_array[$cal['calendar']->slices[$i]];





More information about the vtigercrm-commits mailing list