33 lines
1.4 KiB
PHP
33 lines
1.4 KiB
PHP
|
<?php
|
||
|
/*+********************************************************************************
|
||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||
|
* ("License"); You may not use this file except in compliance with the License
|
||
|
* The Original Code is: vtiger CRM Open Source
|
||
|
* The Initial Developer of the Original Code is vtiger.
|
||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||
|
* All Rights Reserved.
|
||
|
********************************************************************************/
|
||
|
|
||
|
$mod_strings = array(
|
||
|
'FieldFormulas' => 'Field Formulas',
|
||
|
'LBL_FIELDFORMULAS' => 'Field Formulas',
|
||
|
'LBL_FIELDFORMULAS_DESCRIPTION' => 'Add custom equations to custom fields',
|
||
|
'LBL_FIELDS' => 'Fields',
|
||
|
'LBL_FUNCTIONS' => 'Functions',
|
||
|
'LBL_FIELD' => 'Field',
|
||
|
'LBL_EXPRESSION' => 'Expression',
|
||
|
'LBL_SETTINGS' => 'Settings',
|
||
|
'LBL_NEW_FIELD_EXPRESSION_BUTTON' => 'New Field Expression',
|
||
|
'LBL_EDIT_EXPRESSION' => 'Edit Expression',
|
||
|
'LBL_MODULE_INFO' => 'Forumlas defined for ',
|
||
|
'NEED_TO_ADD_A' => 'You need to add a string or integer type ',
|
||
|
'LBL_CUSTOM_FIELD' => 'Custom field',
|
||
|
'LBL_CHECKING' => 'Checking...',
|
||
|
'LBL_SELECT_ONE_DOTDOTDOT' => 'Select one...',
|
||
|
'LBL_TARGET_FIELD' => 'Target field',
|
||
|
'LBL_DELETE_EXPRESSION_CONFIRM' => 'Are you sure you want to delete the expression?',
|
||
|
'LBL_EXAMPLES' => 'Examples',
|
||
|
'LBL_USE_FIELD_VALUE_DASHDASH' => '-- Use Field Value --',
|
||
|
'LBL_USE_FUNCTION_DASHDASH' => '-- Use Function --'
|
||
|
);
|
||
|
?>
|