65 lines
4.1 KiB
PHP
Executable File
65 lines
4.1 KiB
PHP
Executable File
<?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.
|
|
************************************************************************************/
|
|
$languageStrings = array(
|
|
'SINGLE_Settings:Webforms' => 'Webform' , // TODO: Review
|
|
'WebForm Name' => 'Webform Name' , // TODO: Review
|
|
'Public Id' => 'Public Id' , // TODO: Review
|
|
'Enabled' => 'Status' , // TODO: Review
|
|
'Module' => 'Module' , // TODO: Review
|
|
'Return Url' => 'Return Url' , // TODO: Review
|
|
'Post Url' => 'Post Url' , // TODO: Review
|
|
'Captcha Enabled' => 'Captcha Enabled' ,
|
|
'SINGLE_Webforms' => 'Webform' , // TODO: Review
|
|
'LBL_SHOW_FORM' => 'Show Form' , // TODO: Review
|
|
'LBL_DUPLICATES_EXIST' => 'Webform Name already exists' , // TODO: Review
|
|
'LBL_WEBFORM_INFORMATION' => 'Webform Information' , // TODO: Review
|
|
'LBL_FIELD_INFORMATION' => 'Field Information' , // TODO: Review
|
|
'LBL_FIELD_NAME' => 'Field Name' , // TODO: Review
|
|
'LBL_OVERRIDE_VALUE' => 'Override Value' , // TODO: Review
|
|
'LBL_MANDATORY' => 'Mandatory' , // TODO: Review
|
|
'LBL_WEBFORM_REFERENCE_FIELD' => 'Webforms reference Field' , // TODO: Review
|
|
'LBL_SELECT_FIELDS_OF_TARGET_MODULE' => 'Select Fields for Target Module...', // TODO: Review
|
|
'LBL_ALLOWS_YOU_TO_MANAGE_WEBFORMS' => 'Allows you to manage webforms', // TODO: Review
|
|
'LBL_ADD_FIELDS' => 'Add Fields' , // TODO: Review
|
|
'LBL_EMBED_THE_FOLLOWING_FORM_IN_YOUR_WEBSITE' => 'Embed the following form in your website', // TODO: Review
|
|
'LBL_SELECT_VALUE' => 'Select Value' , // TODO: Review
|
|
'LBL_LABEL' => 'label' , // TODO: Review
|
|
'LBL_SAVE_FIELDS_ORDER' => 'Save fields order',
|
|
'LBL_HIDDEN' => 'Hidden',
|
|
'LBL_ENABLE_TARGET_MODULES_FOR_WEBFORM' => 'Enable Target modules for webform',
|
|
'LBL_ASSIGN_USERS' => 'User Assignment',
|
|
'LBL_ASSIGN_ROUND_ROBIN' => 'Assign Users In Round Robin',
|
|
'LBL_ROUNDROBIN_USERS_LIST' => 'Round Robin Users List',
|
|
|
|
'LBL_ADD_RECORD' => 'Add Webform',
|
|
|
|
'LBL_UPLOAD_DOCUMENTS' => 'Upload Documents',
|
|
'LBL_ADD_FILE_FIELD' => 'File Upload Field',
|
|
'LBL_FIELD_LABEL' => 'Document Title',
|
|
'LBL_FILE_FIELD_INFO' => 'For each file uploaded from web form a new Document is created with the attached file. Document is also linked to this newly created %s.',
|
|
'LBL_NO_FILE_FIELD' => 'No file fields added.',
|
|
'LBL_COPY_TO_CLIPBOARD' => 'Copy to clipboard',
|
|
);
|
|
$jsLanguageStrings = array(
|
|
'JS_WEBFORM_DELETED_SUCCESSFULLY' => 'Webform deleted successfully', // TODO: Review
|
|
'JS_LOADING_TARGET_MODULE_FIELDS' => 'Loadding Target Module Fields', // TODO: Review
|
|
'JS_SELECT_VALUE' => 'Select Vlaue' , // TODO: Review
|
|
'JS_MANDATORY_FIELDS_WITHOUT_OVERRIDE_VALUE_CANT_BE_HIDDEN' => 'Mandatory Fields without override values cant be hidden',
|
|
'JS_REFERENCE_FIELDS_CANT_BE_MANDATORY_WITHOUT_OVERRIDE_VALUE' => 'Reference fields cant be mandatory without override value',
|
|
'JS_TYPE_TO_SEARCH' => 'Type to search',
|
|
"JS_WEBFORM_WITH_THIS_NAME_ALREADY_EXISTS" => 'Webform with this name already exists',
|
|
|
|
'JS_SELECT_AN_OPTION' => 'Select an Option',
|
|
'JS_LABEL' => 'label',
|
|
|
|
'JS_MAX_FILE_FIELDS_LIMIT' => 'Maximum you can add %s file fields.',
|
|
'JS_COPIED_SUCCESSFULLY' => 'Copied successfully.',
|
|
'JS_COPY_FAILED' => 'Copy failed. Please copy manually.',
|
|
); |