55 lines
2.8 KiB
PHP
55 lines
2.8 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.
|
|
*
|
|
********************************************************************************/
|
|
/**
|
|
* this file can be used to internationalise the strings present in the picklist
|
|
*/
|
|
$mod_strings = array(
|
|
'LBL_ASSIGN_BUTTON'=>'Assign',
|
|
'ADD_PICKLIST_VALUES'=>'Add picklist values',
|
|
'LBL_EXISTING_PICKLIST_VALUES'=>'Existing picklist values',
|
|
'LBL_PICKLIST_ADDINFO'=>'Add new entries here',
|
|
'LBL_SELECT_ROLES'=>'Select roles',
|
|
'LBL_NON_EDITABLE_PICKLIST_ENTRIES'=>'Non-editable values',
|
|
'EDIT_PICKLIST_VALUE'=>'Edit picklist values',
|
|
'LBL_EDIT_HERE'=>'Replace with: ',
|
|
'LBL_SELECT_TO_EDIT'=>'Select a value to edit: ',
|
|
'DELETE_PICKLIST_VALUES'=>'Delete picklist values',
|
|
'LBL_REPLACE_WITH'=>'Replace with: ',
|
|
'ASSIGN_PICKLIST_VALUES'=>'Assign Picklist Values',
|
|
'LBL_PICKLIST_VALUES'=>'Available picklist values',
|
|
'LBL_PICKLIST_VALUES_ASSIGNED_TO'=>'Assigned picklist values for ',
|
|
'LBL_ADD_TO_OTHER_ROLES'=>'Add to other roles',
|
|
'LBL_OK_BUTTON_LABEL'=>'Ok',
|
|
'LBL_SELECT_ROLES'=>'Select roles',
|
|
'LBL_DISPLAYED_VALUES'=>'All accessible values for the role are shown below',
|
|
|
|
// For Dependency picklist
|
|
'LBL_PICKLIST_DEPENDENCY_SETUP' => 'Picklist Dependency Setup',
|
|
'LBL_PICKLIST_DEPENDENCY_DESCRIPTION' => 'Setup Dependency between Picklist values in each module',
|
|
'LBL_NEW_DEPENDENCY' => 'New Picklist Dependency',
|
|
'LBL_TOOLS' => 'Tools',
|
|
'LBL_SOURCE_FIELD' => 'Source Field',
|
|
'LBL_TARGET_FIELD' => 'Target Field',
|
|
'LBL_BUTTON_SELECTED_SOURCE_VALUES' => 'Select Source Values',
|
|
'LBL_SELECTED_SOURCE_VALUES_MSG' => 'Select Source Picklist Values to configure mapping',
|
|
'LBL_ERR_CYCLIC_DEPENDENCY' => 'This dependency setup is not allowed as it ends up in some cyclic dependency',
|
|
'LBL_SELECTED_VALUES' => 'Selected Values',
|
|
'LBL_CONFIGURE_DEPENDENCY_HELP_1' => 'Only mapped picklist values of the Source field will be shown below (except for first time)',
|
|
'LBL_CONFIGURE_DEPENDENCY_HELP_2' => "If you want to see or change the mapping for the other picklist values of Source field, <br/>
|
|
then you can select the values by clicking on <b>'Select Source values'</b> button on the right side",
|
|
'LBL_CONFIGURE_DEPENDENCY_HELP_3' => 'Selected values of the Target field values, are highlighted as',
|
|
'LBL_ADD_BUTTON' => 'Add Item',
|
|
'LBL_EDIT_BUTTON' => 'Rename Item',
|
|
'LBL_DELETE_BUTTON' => 'Delete Item',
|
|
'NTC_DELETE_CONFIRMATION'=>'Are you sure you want to delete this picklist dependency?',
|
|
);
|
|
?>
|