48 lines
1.8 KiB
PHP
48 lines
1.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.
|
|
********************************************************************************/
|
|
|
|
$mod_strings = array(
|
|
'Webforms' => 'Webforms',
|
|
'LBL_SUCCESS' => 'entry is added to vtiger CRM',
|
|
'LBL_FAILURE' => 'Failed to add entry to vtiger CRM',
|
|
'LBL_ERROR_CODE' => 'Error Code',
|
|
'LBL_ERROR_MESSAGE' => 'Error Message',
|
|
'LBL_WEBFORM_NAME' => 'Webform Name',
|
|
'LBL_DESCRIPTION' => 'Description',
|
|
'LBL_MODULE' => 'Module',
|
|
'LBL_RETURNURL' => 'Return URL',
|
|
'LBL_ACTION' => 'Action',
|
|
'LBL_ASSIGNED_TO' => 'Assigned To',
|
|
'LBL_EDIT' => 'Edit',
|
|
'LBL_DELETE' => 'Delete',
|
|
'LBL_SOURCE' => 'Show Form',
|
|
'LBL_MODULE_INFORMATION' => 'Webforms Information',
|
|
'LBL_FIELD_INFORMATION' => 'Field Information',
|
|
'LBL_ENABLE' => 'Enable',
|
|
'LBL_ENABLED' => 'Enabled',
|
|
'LBL_FIELDLABEL' => 'Field Name',
|
|
'LBL_DEFAULT_VALUE' => 'Override value',
|
|
'LBL_NEUTRALIZEDFIELD' => 'Webforms Reference Field',
|
|
'LBL_PUBLICID' => 'Public ID',
|
|
'LBL_NO_WEBFORM' => 'No Webforms Found!',
|
|
'LBL_CREATE_WEBFORM' => 'Create a webform',
|
|
'LBL_POSTURL' => 'Post URL',
|
|
'LBL_REQUIRED' => 'Required',
|
|
'LBL_STATUS' => 'Status',
|
|
'LBL_EMBED_MSG' => 'Embed the following form in your website',
|
|
'LBL_CANCEL' => 'Cancel',
|
|
'LBL_SAVE' => 'Save',
|
|
'LBL_SELECT_VALUE' => '--Select Value--',
|
|
'LBL_BASIC_INFORMATION' => 'Basic Information',
|
|
'LBL_SELECT_USER' => 'Select User',
|
|
'LBL_DUPLICATE_NAME' => 'Webform with same name exists',
|
|
'ERR_CREATE_WEBFORM' => 'Webform creation failed'
|
|
);
|
|
?>
|