-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tema Smirnov
committed
Jul 5, 2017
1 parent
fb2bc1d
commit c34416c
Showing
64 changed files
with
3,863 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = tab | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?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. | ||
*************************************************************************************/ | ||
//TODO: Localize & Update | ||
$languageStrings = array( | ||
// Basic Strings | ||
'LBL_SEND_SMS_TO_SELECTED_NUMBERS' => 'ارسال رسالة نصية للارقام المحددة', | ||
'LBL_STEP_1' => 'الخطوة ١', | ||
'LBL_STEP_2' => 'الخطوة ٢', | ||
'LBL_SELECT_THE_PHONE_NUMBER_FIELDS_TO_SEND' => 'حدد حقول رقم الهاتق للارسال', | ||
'LBL_TYPE_THE_MESSAGE' => 'اكتب الرسالة', | ||
'LBL_WRITE_YOUR_MESSAGE_HERE' => 'اكتب الرسالة هنا', | ||
'LBL_ADD_MORE_FIELDS' => 'اضافة حقول اخرى هنا', | ||
'LBL_SERVER_CONFIG' => 'اعدادات الخادم', | ||
|
||
//DetailView Actions | ||
'LBL_CHECK_STATUS' => 'التحقق من الحالة', | ||
'message' => 'الرسالة', | ||
|
||
//Blocks | ||
'LBL_SMSNOTIFIER_INFORMATION' => 'معلومات الرسالة النصية', | ||
'SINGLE_SMSNotifier' => 'اخطار الرسالة النصية', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
//TODO: Localize | ||
$languageStrings = array( | ||
|
||
'SMSNotifier' => 'SMS Provider Configuration', | ||
'SINGLE_SMSNotifier' => 'SMS Notifier', | ||
|
||
'LBL_ADD_RECORD' => 'New Configuration', | ||
'LBL_ADD_CONFIGURATION' => 'New Configuration', | ||
'LBL_EDIT_CONFIGURATION' => 'Edit Configuration', | ||
'LBL_SELECT_ONE' => 'Select One', | ||
|
||
'providertype' => 'Provider', | ||
'isactive' => 'Active', | ||
'username' => 'Username', | ||
'password' => 'Password', | ||
'Provider' => 'Provider', | ||
'User Name' => 'User Name', | ||
'Yes' => 'Yes', | ||
'No' => 'No', | ||
|
||
'LBL_SMS_TIME' => 'Time(mins)', | ||
'LBL_SMS_SENDER' => 'Sender', | ||
'LBL_SMS_SECRET_HASH' => 'Secret hash', | ||
'LBL_ACCOUNT_NUMBER' => 'Account number', | ||
|
||
); | ||
|
||
$jsLanguageStrings = array( | ||
'LBL_DELETE_CONFIRMATION' => 'Are you sure, you want to delete this SMSNotifier Configuration', | ||
'JS_RECORD_DELETED_SUCCESSFULLY' => 'SMS Provider Deleted Successfully', | ||
'JS_CONFIGURATION_SAVED' => 'SMS Provider Configuration saved', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
//TODO: Localize | ||
$languageStrings = array( | ||
|
||
// Basic Strings | ||
'LBL_STEP_1' => 'Step 1', | ||
'LBL_STEP_2' => 'Step 2', | ||
'LBL_ADD_MORE_FIELDS' => 'Add more fields', | ||
'LBL_TYPE_THE_MESSAGE' => 'Type the message', | ||
'LBL_SERVER_CONFIG' => 'Server Configuration', | ||
'LBL_WRITE_YOUR_MESSAGE_HERE' => 'Write your message here', | ||
'LBL_SEND_SMS_TO_SELECTED_NUMBERS' => 'Send SMS to the selected numbers', | ||
'LBL_SELECT_THE_PHONE_NUMBER_FIELDS_TO_SEND' => 'Select the phone number fields to send', | ||
|
||
// DetailView Actions | ||
'LBL_CHECK_STATUS' => 'Check Status', | ||
'message' => 'Message', | ||
|
||
// Blocks | ||
'LBL_SMSNOTIFIER_INFORMATION' => 'SMS Information', | ||
'SINGLE_SMSNotifier' => 'SMS Notifier', | ||
|
||
// Misc | ||
'LBL_NUMBER' => 'Number', | ||
'LBL_STATUS' => 'Status', | ||
'LBL_STATUS_MESSAGE' => 'Status message', | ||
'LBL_NO_NUMBERS_TO_SEND_SMS' => 'All numbers for send are empty. Sms not send', | ||
'SMSNotifier' => 'SMS Notifications', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
//TODO: Localize | ||
$languageStrings = array( | ||
|
||
'SMSNotifier' => 'SMS Provider Configuration', | ||
'SINGLE_SMSNotifier' => 'SMS Notifier', | ||
|
||
'LBL_ADD_RECORD' => 'New Configuration', | ||
'LBL_ADD_CONFIGURATION' => 'New Configuration', | ||
'LBL_EDIT_CONFIGURATION' => 'Edit Configuration', | ||
'LBL_SELECT_ONE' => 'Select One', | ||
|
||
'providertype' => 'Provider', | ||
'isactive' => 'Active', | ||
'username' => 'Username', | ||
'password' => 'Password', | ||
'Provider' => 'Provider', | ||
'User Name' => 'User Name', | ||
'Yes' => 'Yes', | ||
'No' => 'No', | ||
|
||
'LBL_SMS_TIME' => 'Time(mins)', | ||
'LBL_SMS_SENDER' => 'Sender', | ||
'LBL_SMS_SECRET_HASH' => 'Secret hash', | ||
'LBL_ACCOUNT_NUMBER' => 'Account number', | ||
|
||
); | ||
|
||
$jsLanguageStrings = array( | ||
'LBL_DELETE_CONFIRMATION' => 'Are you sure, you want to delete this SMSNotifier Configuration', | ||
'JS_RECORD_DELETED_SUCCESSFULLY' => 'SMS Provider Deleted Successfully', | ||
'JS_CONFIGURATION_SAVED' => 'SMS Provider Configuration saved', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
$languageStrings = array( | ||
|
||
// Basic Strings | ||
'LBL_STEP_1' => 'Step 1', | ||
'LBL_STEP_2' => 'Step 2', | ||
'LBL_ADD_MORE_FIELDS' => 'Add more fields', | ||
'LBL_TYPE_THE_MESSAGE' => 'Type the message', | ||
'LBL_SERVER_CONFIG' => 'Server Configuration', | ||
'LBL_WRITE_YOUR_MESSAGE_HERE' => 'Write your message here', | ||
'LBL_SEND_SMS_TO_SELECTED_NUMBERS' => 'Send SMS to the selected numbers', | ||
'LBL_SELECT_THE_PHONE_NUMBER_FIELDS_TO_SEND' => 'Select the phone number fields to send', | ||
|
||
// DetailView Actions | ||
'LBL_CHECK_STATUS' => 'Check Status', | ||
'message' => 'Message', | ||
|
||
// Blocks | ||
'LBL_SMSNOTIFIER_INFORMATION' => 'SMS Information', | ||
'SINGLE_SMSNotifier' => 'SMS Notifier', | ||
|
||
// Misc | ||
'LBL_NUMBER' => 'Number', | ||
'LBL_STATUS' => 'Status', | ||
'LBL_STATUS_MESSAGE' => 'Status message', | ||
'LBL_NO_NUMBERS_TO_SEND_SMS' => 'All numbers for send are empty. Sms not send', | ||
'SMSNotifier' => 'SMS Notifications', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
//TODO: Localize | ||
$languageStrings = array( | ||
|
||
'SMSNotifier' => 'SMS Provider Configuration', | ||
'SINGLE_SMSNotifier' => 'SMS Notifier', | ||
|
||
'LBL_ADD_RECORD' => 'New Configuration', | ||
'LBL_ADD_CONFIGURATION' => 'New Configuration', | ||
'LBL_EDIT_CONFIGURATION' => 'Edit Configuration', | ||
'LBL_SELECT_ONE' => 'Select One', | ||
|
||
'providertype' => 'Provider', | ||
'isactive' => 'Active', | ||
'username' => 'Username', | ||
'password' => 'Password', | ||
'Provider' => 'Provider', | ||
'User Name' => 'User Name', | ||
'Yes' => 'Yes', | ||
'No' => 'No', | ||
|
||
'LBL_SMS_TIME' => 'Time(mins)', | ||
'LBL_SMS_SENDER' => 'Sender', | ||
'LBL_SMS_SECRET_HASH' => 'Secret hash', | ||
'LBL_ACCOUNT_NUMBER' => 'Account number', | ||
|
||
); | ||
|
||
$jsLanguageStrings = array( | ||
'LBL_DELETE_CONFIRMATION' => 'Are you sure, you want to delete this SMSNotifier Configuration', | ||
'JS_RECORD_DELETED_SUCCESSFULLY' => 'SMS Provider Deleted Successfully', | ||
'JS_CONFIGURATION_SAVED' => 'SMS Provider Configuration saved', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
$languageStrings = array( | ||
|
||
// Basic Strings | ||
'LBL_STEP_1' => 'Step 1', | ||
'LBL_STEP_2' => 'Step 2', | ||
'LBL_ADD_MORE_FIELDS' => 'Add more fields', | ||
'LBL_TYPE_THE_MESSAGE' => 'Type the message', | ||
'LBL_SERVER_CONFIG' => 'Server Configuration', | ||
'LBL_WRITE_YOUR_MESSAGE_HERE' => 'Write your message here', | ||
'LBL_SEND_SMS_TO_SELECTED_NUMBERS' => 'Send SMS to the selected numbers', | ||
'LBL_SELECT_THE_PHONE_NUMBER_FIELDS_TO_SEND' => 'Select the phone number fields to send', | ||
|
||
// DetailView Actions | ||
'LBL_CHECK_STATUS' => 'Check Status', | ||
'message' => 'Message', | ||
|
||
// Blocks | ||
'LBL_SMSNOTIFIER_INFORMATION' => 'SMS Information', | ||
'SINGLE_SMSNotifier' => 'SMS Notifier', | ||
|
||
// Misc | ||
'LBL_NUMBER' => 'Number', | ||
'LBL_STATUS' => 'Status', | ||
'LBL_STATUS_MESSAGE' => 'Status message', | ||
'LBL_NO_NUMBERS_TO_SEND_SMS' => 'All numbers for send are empty. Sms not send', | ||
'SMSNotifier' => 'SMS Notifications', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
//TODO: Localize | ||
$languageStrings = array( | ||
|
||
'SMSNotifier' => 'SMS Provider Configuration', | ||
'SINGLE_SMSNotifier' => 'SMS Notifier', | ||
|
||
'LBL_ADD_RECORD' => 'New Configuration', | ||
'LBL_ADD_CONFIGURATION' => 'New Configuration', | ||
'LBL_EDIT_CONFIGURATION' => 'Edit Configuration', | ||
'LBL_SELECT_ONE' => 'Select One', | ||
|
||
'providertype' => 'Provider', | ||
'isactive' => 'Active', | ||
'username' => 'Username', | ||
'password' => 'Password', | ||
'Provider' => 'Provider', | ||
'User Name' => 'User Name', | ||
'Yes' => 'Yes', | ||
'No' => 'No', | ||
|
||
'LBL_SMS_TIME' => 'Time(mins)', | ||
'LBL_SMS_SENDER' => 'Sender', | ||
'LBL_SMS_SECRET_HASH' => 'Secret hash', | ||
'LBL_ACCOUNT_NUMBER' => 'Account number', | ||
|
||
); | ||
|
||
$jsLanguageStrings = array( | ||
'LBL_DELETE_CONFIRMATION' => 'Are you sure, you want to delete this SMSNotifier Configuration', | ||
'JS_RECORD_DELETED_SUCCESSFULLY' => 'SMS Provider Deleted Successfully', | ||
'JS_CONFIGURATION_SAVED' => 'SMS Provider Configuration saved', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?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. | ||
* Portions created by JPL TSolucio, S.L. are Copyright (C) jpl tsolucio. | ||
* All Rights Reserved. | ||
* ******************************************************************************** | ||
* Language : Español es_es | ||
* Version : 6.0.0 | ||
* Created Date : 2012-10-26 | ||
* Author : JPL TSolucio, S. L. Joe Bordes | ||
* Last change : 2013-05-03 | ||
* Author : JPL TSolucio, S. L. Joe Bordes | ||
************************************************************************************/ | ||
//TODO: Localize & Update | ||
$languageStrings = array( | ||
'LBL_SEND_SMS_TO_SELECTED_NUMBERS' => 'Enviar SMS a los números seleccionados', | ||
'LBL_STEP_1' => 'Paso 1', | ||
'LBL_STEP_2' => 'Paso 2', | ||
'LBL_SELECT_THE_PHONE_NUMBER_FIELDS_TO_SEND' => 'Selecciona los números de teléfono', | ||
'LBL_TYPE_THE_MESSAGE' => 'Escribe el mensaje', | ||
'LBL_WRITE_YOUR_MESSAGE_HERE' => 'escribe el mensaje aquí', | ||
'LBL_ADD_MORE_FIELDS' => 'Añadir más campos', | ||
'LBL_SERVER_CONFIG' => 'Configuración Servidor', | ||
'LBL_CHECK_STATUS' => 'Verificar Estado', | ||
'message' => 'Mensaje', | ||
'LBL_SMSNOTIFIER_INFORMATION' => 'Información SMS', | ||
'SINGLE_SMSNotifier' => 'SMS Notifier', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?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. | ||
* ******************************************************************************** | ||
* Language : Español es_es | ||
* Version : 6.0.0 | ||
* Created Date : 2013-05-10 | ||
* Author : JPL TSolucio, S. L. Joe Bordes | ||
* Last change : 2013-05-10 | ||
* Author : JPL TSolucio, S. L. Joe Bordes | ||
*************************************************************************************/ | ||
//TODO: Localize & Update | ||
$languageStrings = array( | ||
'LBL_ADD_RECORD' => 'Nueva Configuración', | ||
'SMSNotifier' => 'Configuración Proveedor SMS', | ||
'LBL_ADD_CONFIGURATION' => 'Nueva Configuración', | ||
'LBL_EDIT_CONFIGURATION' => 'Editar Configuración', | ||
'LBL_SELECT_ONE' => 'Selecciona uno', | ||
|
||
//Fields | ||
'providertype' => 'Proveedor', | ||
'isactive' => 'Activo', | ||
'username' => 'Nombre Usuario', | ||
'password' => 'Contraseña', | ||
); | ||
|
||
$jsLanguageStrings = array( | ||
'LBL_DELETE_CONFIRMATION' => '¿Estás seguro que quieres eliminar esta configuración de proveedor SMS?', | ||
'JS_RECORD_DELETED_SUCCESSFULLY' => 'Se ha eliminado la configuración del proveedor SMS', | ||
'JS_CONFIGURATION_SAVED' => 'Se ha guardado la configuración del proveedor SMS', | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?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. | ||
* Author : Francisco Hernandez Odin Consultores S de RL de CV | ||
* Author : www.odin.mx | ||
* Author : Proudly, the best Vtiger's Partner in Mexico | ||
************************************************************************************/ | ||
//TODO: Localize & Update | ||
$languageStrings = array( | ||
'LBL_SEND_SMS_TO_SELECTED_NUMBERS' => 'Envía un SMS a los números seleccionados', | ||
'LBL_STEP_1' => 'Paso 1', | ||
'LBL_STEP_2' => 'Paso 2', | ||
'LBL_SELECT_THE_PHONE_NUMBER_FIELDS_TO_SEND' => 'Selecciona el campo de teléfono para enviar', | ||
'LBL_TYPE_THE_MESSAGE' => 'Tipo de mensaje', | ||
'LBL_WRITE_YOUR_MESSAGE_HERE' => 'Escribe tu mensaje aqui', | ||
'LBL_ADD_MORE_FIELDS' => 'Agregar más campos', | ||
'LBL_SERVER_CONFIG' => 'Configuración de Servidor', | ||
'LBL_CHECK_STATUS' => 'Verificar Estado', | ||
'message' => 'Mensaje', | ||
'LBL_SMSNOTIFIER_INFORMATION' => 'Información SMS', | ||
'SINGLE_SMSNotifier' => 'Notificador SMS', | ||
); |
Oops, something went wrong.