[Vtigercrm-commits] [vtiger-commits] r10400 - in /vtigercrm/branches/5.0.3/include: language/en_us.lang.php utils/DetailViewUtils.php utils/ListViewUtils.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Fri Mar 9 03:56:21 EST 2007


Author: saraj
Date: Fri Mar  9 01:56:15 2007
New Revision: 10400

Log:
language support added for label 'no'

Modified:
    vtigercrm/branches/5.0.3/include/language/en_us.lang.php
    vtigercrm/branches/5.0.3/include/utils/DetailViewUtils.php
    vtigercrm/branches/5.0.3/include/utils/ListViewUtils.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 Fri Mar  9 01:56:15 2007
@@ -629,6 +629,7 @@
 'Expected Response' => 'Expected Response',
 'LBL_ADDRESS_INF' => 'Address Information',
 'yes' => 'yes',
+'no' => 'no',
 'LBL_RENAMEPROFILE_BUTTON_LABEL'=>'Rename',
 'LBL_RENAME_PROFILE'=>'Rename Profile',
 'LBL_PROFILE_NAME'=>'Profile Name',

Modified: vtigercrm/branches/5.0.3/include/utils/DetailViewUtils.php
==============================================================================
--- vtigercrm/branches/5.0.3/include/utils/DetailViewUtils.php (original)
+++ vtigercrm/branches/5.0.3/include/utils/DetailViewUtils.php Fri Mar  9 01:56:15 2007
@@ -350,7 +350,7 @@
 		}
 		else
 		{
-			$display_val = 'no';
+			$display_val = $app_strings['no'];
 		}
 		$label_fld[] = $display_val;
 	}

Modified: vtigercrm/branches/5.0.3/include/utils/ListViewUtils.php
==============================================================================
--- vtigercrm/branches/5.0.3/include/utils/ListViewUtils.php (original)
+++ vtigercrm/branches/5.0.3/include/utils/ListViewUtils.php Fri Mar  9 01:56:15 2007
@@ -1081,11 +1081,11 @@
 	{
 		if($temp_val == 1)
 		{
-			$value = 'yes';
+			$value = $app_strings['yes'];
 		}
 		else
 		{
-			$value = 'no';
+			$value = $app_strings['no'];
 		}
 	}	
 	elseif($uitype == 57)





More information about the vtigercrm-commits mailing list