[Vtigercrm-commits] [vtiger-commits] r10249 - in /vtigercrm/branches/5.0.3/modules/CustomView: CustomView.php language/en_us.lang.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Tue Feb 27 06:04:41 EST 2007
Author: saraj
Date: Tue Feb 27 04:04:34 2007
New Revision: 10249
Log:
i18n for Custom View filter in drop down. Fixes #3082
Modified:
vtigercrm/branches/5.0.3/modules/CustomView/CustomView.php
vtigercrm/branches/5.0.3/modules/CustomView/language/en_us.lang.php
Modified: vtigercrm/branches/5.0.3/modules/CustomView/CustomView.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/CustomView/CustomView.php (original)
+++ vtigercrm/branches/5.0.3/modules/CustomView/CustomView.php Tue Feb 27 04:04:34 2007
@@ -22,14 +22,14 @@
global $adv_filter_options;
$adv_filter_options = array("e"=>"".$mod_strings['equals']."",
- "n"=>"".$mod_strings['not_equal_to']."",
- "s"=>"".$mod_strings['starts_with']."",
+ "n"=>"".$mod_strings['not equal to']."",
+ "s"=>"".$mod_strings['starts with']."",
"c"=>"".$mod_strings['contains']."",
- "k"=>"".$mod_strings['does_not_contain']."",
- "l"=>"".$mod_strings['less_than']."",
- "g"=>"".$mod_strings['greater_than']."",
- "m"=>"".$mod_strings['less_or_equal']."",
- "h"=>"".$mod_strings['greater_or_equal']."",
+ "k"=>"".$mod_strings['does not contain']."",
+ "l"=>"".$mod_strings['less than']."",
+ "g"=>"".$mod_strings['greater than']."",
+ "m"=>"".$mod_strings['less or equal']."",
+ "h"=>"".$mod_strings['greater or equal']."",
);
class CustomView extends CRMEntity{
Modified: vtigercrm/branches/5.0.3/modules/CustomView/language/en_us.lang.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/CustomView/language/en_us.lang.php (original)
+++ vtigercrm/branches/5.0.3/modules/CustomView/language/en_us.lang.php Tue Feb 27 04:04:34 2007
@@ -77,14 +77,14 @@
'Next 120 Days'=>'Next 120 Days',
'equals'=>'equals',
-'not_equal_to'=>'Not equal to',
-'starts_with'=>'Starts with',
+'not equal to'=>'Not equal to',
+'starts with'=>'Starts with',
'contains'=>'Contains',
-'does_not_contain'=>'does not contain',
-'less_than'=>'less than',
-'greater_than'=>'greater than',
-'less_or_equal'=>'less or equal',
-'greater_or_equal'=>'greater or equal',
+'does not contain'=>'does not contain',
+'less than'=>'less than',
+'greater than'=>'greater than',
+'less or equal'=>'less or equal',
+'greater or equal'=>'greater or equal',
//Strings added to translate field label vtiger_groups
'Address'=>'Address',
More information about the vtigercrm-commits
mailing list