[Vtigercrm-commits] [vtiger-commits] r10696 - in /vtigercrm/branches/5.0.3/include: language/en_us.lang.php quickcreate.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Mon Apr 16 05:46:00 EDT 2007


Author: richie
Date: Mon Apr 16 03:45:53 2007
New Revision: 10696

Log:
fix for inconsistent label for To Do. Fixes #3292 --minnie

Modified:
    vtigercrm/branches/5.0.3/include/language/en_us.lang.php
    vtigercrm/branches/5.0.3/include/quickcreate.php

Modified: vtigercrm/branches/5.0.3/include/language/en_us.lang.php
==============================================================================
--- vtigercrm/branches/5.0.3/include/language/en_us.lang.php (original)
+++ vtigercrm/branches/5.0.3/include/language/en_us.lang.php Mon Apr 16 03:45:53 2007
@@ -148,7 +148,7 @@
 'SINGLE_HelpDesk' => 'Ticket',
 'SINGLE_Leads' => 'Lead',
 'SINGLE_Events' => 'Event',
-'SINGLE_Calendar' => 'Task',
+'SINGLE_Calendar' => 'To Do',
 'SINGLE_Dashboard' => 'Dashboard',
 'SINGLE_Emails' => 'Email',
 'SINGLE_Faq' => 'Faq',

Modified: vtigercrm/branches/5.0.3/include/quickcreate.php
==============================================================================
--- vtigercrm/branches/5.0.3/include/quickcreate.php (original)
+++ vtigercrm/branches/5.0.3/include/quickcreate.php Mon Apr 16 03:45:53 2007
@@ -23,7 +23,6 @@
 $image_path=$theme_path."images/";
 require_once($theme_path.'layout_utils.php');
 
-
 $smarty = new vtigerCRM_Smarty;
 
 $qcreate_array = QuickCreate("$module");
@@ -37,9 +36,9 @@
 $smarty->assign("IMAGE_PATH",$image_path);
 $smarty->assign("ACTIVITY_MODE", $_REQUEST['activity_mode']);
 if($module == 'Calendar')
-	$smarty->assign("QCMODULE", $app_strings['Task']);
+	$smarty->assign("QCMODULE", 'Todo');
 elseif($module == "HelpDesk")
-	$smarty->assign("QCMODULE", $app_strings['Ticket']);
+	$smarty->assign("QCMODULE", 'Ticket');
 else
 	$smarty->assign("QCMODULE",rtrim($module,'s'));
 $smarty->assign("USERID",$current_user->id);





More information about the vtigercrm-commits mailing list