changes-2
This commit is contained in:
@@ -2,4 +2,5 @@
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'logs' => 'Logs',
|
'logs' => 'Logs',
|
||||||
|
'system_logs' => 'System logs',
|
||||||
];
|
];
|
||||||
|
@@ -41,10 +41,10 @@ class="nav-link active"
|
|||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<div class="card card-light">
|
<div class="card card-light">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<h3 class="card-title">{{Lang::get('lang.system_logs')}}</h3>
|
<h3 class="card-title">{{Lang::get('log::lang.system_logs')}}</h3>
|
||||||
<div class="card-tools">
|
<div class="card-tools">
|
||||||
<a href="?dl={{ base64_encode($current_file) }}" class="btn btn-primary btn-sm text-white"><span class="fas fa-download"></span> Download file</a>
|
<a href="?dl={{ base64_encode($current_file) }}" class="btn btn-primary btn-sm text-white"><span class="fas fa-download"></span>{{trans('lang.download_file')}}</a>
|
||||||
<a id="delete-log" href="?del={{ base64_encode($current_file) }}" class="btn btn-danger btn-sm text-white"><span class="fas fa-trash"></span> Delete file</a>
|
<a id="delete-log" href="?del={{ base64_encode($current_file) }}" class="btn btn-danger btn-sm text-white"><span class="fas fa-trash"></span>{{trans('lang.delete_file')}}</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
@@ -61,7 +61,7 @@ class="nav-link active"
|
|||||||
<div class="col-md-10 table-container">
|
<div class="col-md-10 table-container">
|
||||||
@if ($logs === null)
|
@if ($logs === null)
|
||||||
<div>
|
<div>
|
||||||
Log file >50M, please download it.
|
{{trans('lang.log_file_50M_please_download_it.')}}
|
||||||
</div>
|
</div>
|
||||||
@else
|
@else
|
||||||
<table id="table-log" class="table table-striped">
|
<table id="table-log" class="table table-striped">
|
||||||
|
@@ -69,7 +69,6 @@ class OrganizationController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function org_list()
|
public function org_list()
|
||||||
{
|
{
|
||||||
$modalTitle = __('lang.your_translation_key_here');
|
|
||||||
// chumper datable package call to display Advance datatable
|
// chumper datable package call to display Advance datatable
|
||||||
return \Datatable::collection(Organization::all())
|
return \Datatable::collection(Organization::all())
|
||||||
/* searchable name */
|
/* searchable name */
|
||||||
@@ -109,15 +108,15 @@ class OrganizationController extends Controller
|
|||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h4 class="modal-title">{{ $modalTitle }}</h4>
|
<h4 class="modal-title">'.\Lang::get('lang.are_you_sure').'</h4>
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
'.$model->user_name.'
|
'.$model->user_name.'
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer justify-content-between">
|
<div class="modal-footer justify-content-between">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal" id="dismis2">Close</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal" id="dismis2">'.\Lang::get('lang.close').'</button>
|
||||||
<a href="'.route('org.delete', $model->id).'"><button class="btn btn-danger">delete</button></a>
|
<a href="'.route('org.delete', $model->id).'"><button class="btn btn-danger">'.\Lang::get('lang.delete').'</button></a>
|
||||||
</div>
|
</div>
|
||||||
</div><!-- /.modal-content -->
|
</div><!-- /.modal-content -->
|
||||||
</div><!-- /.modal-dialog -->
|
</div><!-- /.modal-dialog -->
|
||||||
|
@@ -91,15 +91,15 @@ class ArticleController extends Controller
|
|||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h4 class="modal-title">Delete</h4>
|
<h4 class="modal-title">'.Lang::get('lang.delete').'</h4>
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
Are you sure you want to delete <b> '.$model->name.' </b> ?
|
<span>'.Lang::get('lang.are_you_sure_you_want_to_delete').'</span> <b> '.$model->name.' </b> ?
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer justify-content-between">
|
<div class="modal-footer justify-content-between">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal" id="dismis2">Close</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal" id="dismis2">'.Lang::get('lang.close').'</button>
|
||||||
<a href='.url("article/delete/$model->slug").'><button class="btn btn-danger">delete</button></a>
|
<a href='.url("article/delete/$model->slug").'><button class="btn btn-danger">'.Lang::get('lang.delete').'</button></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -6,7 +6,6 @@ use App\Http\Controllers\Agent\helpdesk\TicketController;
|
|||||||
use App\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
use App\Http\Requests\kb\PageRequest;
|
use App\Http\Requests\kb\PageRequest;
|
||||||
// request
|
// request
|
||||||
use App\Http\Requests\kb\PageUpdate;
|
|
||||||
use App\Model\kb\Page;
|
use App\Model\kb\Page;
|
||||||
use Datatable;
|
use Datatable;
|
||||||
// Model
|
// Model
|
||||||
@@ -91,15 +90,15 @@ class PageController extends Controller
|
|||||||
<div class="modal-dialog">
|
<div class="modal-dialog">
|
||||||
<div class="modal-content">
|
<div class="modal-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h4 class="modal-title">Delete</h4>
|
<h4 class="modal-title">'.Lang::get('lang.delete').'</h4>
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
Are you sure you want to delete <b>'.$model->name.'</b> ?
|
<span>'.Lang::get('lang.are_you_sure_you_want_to_delete').'</span> <b>'.$model->name.'</b> ?
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer justify-content-between">
|
<div class="modal-footer justify-content-between">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal" id="dismis2">Close</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal" id="dismis2">'.Lang::get('lang.close').'</button>
|
||||||
<a href="page/delete/'.$model->id.'"><button class="btn btn-danger">Delete</button></a>
|
<a href="page/delete/'.$model->id.'"><button class="btn btn-danger">'.Lang::get('lang.delete').'</button></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -3,11 +3,11 @@
|
|||||||
return [
|
return [
|
||||||
/*
|
/*
|
||||||
|----------------------------------------------------------------------------------------
|
|----------------------------------------------------------------------------------------
|
||||||
| Authentication Pages [English(en)]
|
| Authentication Pages [Arabic(ar)]
|
||||||
|----------------------------------------------------------------------------------------
|
|----------------------------------------------------------------------------------------
|
||||||
|
|
|
|
||||||
| The following language lines are used in all authentication related issues to translate
|
| The following language lines are used in all authentication related issues to translate
|
||||||
| some words in view to English. You are free to change them to anything you want to
|
| some words in view to Arabic. You are free to change them to anything you want to
|
||||||
| customize your views to better match your application.
|
| customize your views to better match your application.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
@@ -50,7 +50,7 @@ return [
|
|||||||
'password' => 'كلمة المرور',
|
'password' => 'كلمة المرور',
|
||||||
'password_confirmation' => 'تأكيد كلمة المرور',
|
'password_confirmation' => 'تأكيد كلمة المرور',
|
||||||
'woops' => 'عذرًا!',
|
'woops' => 'عذرًا!',
|
||||||
'theirisproblem' => 'هناك بعض المشاكل في الإدخال الخاص بك.',
|
'theirisproblem' => 'كانت هناك بعض المشاكل مع المدخلات الخاصة بك.',
|
||||||
'e-mail' => 'البريد الإلكتروني',
|
'e-mail' => 'البريد الإلكتروني',
|
||||||
'reg_new_member' => 'تسجيل عضوية جديدة',
|
'reg_new_member' => 'تسجيل عضوية جديدة',
|
||||||
'this_account_is_currently_inactive' => 'هذا الحساب غير نشط حاليًا!',
|
'this_account_is_currently_inactive' => 'هذا الحساب غير نشط حاليًا!',
|
||||||
@@ -89,7 +89,7 @@ return [
|
|||||||
'activate_your_account_click_on_Link_that_send_to_your_mail_sms_plugin_inactive_or_not_setup' => 'تم إنشاء الحساب، يرجى الاتصال بمسؤول النظام حيث لم نتمكن من إرسال رمز OTP إلى هاتفك المحمول والبريد الإلكتروني إلى عنوان بريدك الإلكتروني.',
|
'activate_your_account_click_on_Link_that_send_to_your_mail_sms_plugin_inactive_or_not_setup' => 'تم إنشاء الحساب، يرجى الاتصال بمسؤول النظام حيث لم نتمكن من إرسال رمز OTP إلى هاتفك المحمول والبريد الإلكتروني إلى عنوان بريدك الإلكتروني.',
|
||||||
'this_field_do_not_match_our_records' => 'هذا الحقل لا يتطابق مع سجلاتنا.',
|
'this_field_do_not_match_our_records' => 'هذا الحقل لا يتطابق مع سجلاتنا.',
|
||||||
'we_have_e-mailed_your_password_reset_link' => 'لقد أرسلنا رابط إعادة تعيين كلمة المرور الخاص بك عبر البريد الإلكتروني!',
|
'we_have_e-mailed_your_password_reset_link' => 'لقد أرسلنا رابط إعادة تعيين كلمة المرور الخاص بك عبر البريد الإلكتروني!',
|
||||||
"we_can't_find_a_user_with_that_e-mail_address" => 'لا يمكننا العثور على مستخدم بهذا العنوان الإلكتروني.',
|
"we_can't_find_a_user_with_that_e-mail_address" => "لا يمكننا العثور على مستخدم بهذا العنوان الإلكتروني.",
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| Reset Password Page
|
| Reset Password Page
|
||||||
@@ -366,7 +366,9 @@ return [
|
|||||||
'check-cron-set' => 'للتحقق من كيفية ضبط وظائف cron على خادمك.',
|
'check-cron-set' => 'للتحقق من كيفية ضبط وظائف cron على خادمك.',
|
||||||
'notification-email' => 'ملخص يومي',
|
'notification-email' => 'ملخص يومي',
|
||||||
'click-url-copy' => 'انقر هنا لنسخ عنوان URL',
|
'click-url-copy' => 'انقر هنا لنسخ عنوان URL',
|
||||||
'job-scheduler-error' => 'لا يمكن تحديث جدولة المهام.',
|
'job-scheduler-error' =>
|
||||||
|
|
||||||
|
'لا يمكن تحديث جدولة المهام.',
|
||||||
'job-scheduler-success' => 'تم تحديث جدولة المهام بنجاح.',
|
'job-scheduler-success' => 'تم تحديث جدولة المهام بنجاح.',
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
@@ -521,7 +523,7 @@ return [
|
|||||||
'add_plugin' => 'إضافة برنامج مساعد',
|
'add_plugin' => 'إضافة برنامج مساعد',
|
||||||
'plugins' => 'البرامج المساعدة',
|
'plugins' => 'البرامج المساعدة',
|
||||||
'upload' => 'رفع',
|
'upload' => 'رفع',
|
||||||
'plugins-list' => 'قائمة البرامج المساعدة',
|
'plugins-list' => 'قائمة الإضافات',
|
||||||
'plugin-exists' => 'البرنامج المساعد موجود بالفعل',
|
'plugin-exists' => 'البرنامج المساعد موجود بالفعل',
|
||||||
'plugin-installed' => 'تم تثبيت البرنامج المساعد بنجاح.',
|
'plugin-installed' => 'تم تثبيت البرنامج المساعد بنجاح.',
|
||||||
'plugin-path-missing' => 'مسار ملف البرنامج المساعد غير موجود',
|
'plugin-path-missing' => 'مسار ملف البرنامج المساعد غير موجود',
|
||||||
@@ -618,6 +620,7 @@ return [
|
|||||||
'sla_plan_can_not_delete' => 'لا يمكن حذف خطة SLA',
|
'sla_plan_can_not_delete' => 'لا يمكن حذف خطة SLA',
|
||||||
'make-default-sla' => 'اجعلها خطة SLA الافتراضية للنظام',
|
'make-default-sla' => 'اجعلها خطة SLA الافتراضية للنظام',
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| سير العمل
|
| سير العمل
|
||||||
@@ -818,6 +821,8 @@ ed' => 'تعذر إدراج الفئة',
|
|||||||
'create_an_agent' => 'إنشاء وكيل',
|
'create_an_agent' => 'إنشاء وكيل',
|
||||||
'edit_an_agent' => 'تعديل وكيل',
|
'edit_an_agent' => 'تعديل وكيل',
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| صفحة إنشاء القسم
|
| صفحة إنشاء القسم
|
||||||
@@ -972,9 +977,7 @@ ed' => 'تعذر إدراج الفئة',
|
|||||||
'this_email_have_been_banned' => 'تم حظر هذا البريد الإلكتروني',
|
'this_email_have_been_banned' => 'تم حظر هذا البريد الإلكتروني',
|
||||||
'ticket_updated_successfully' => 'تم تحديث التذكرة بنجاح',
|
'ticket_updated_successfully' => 'تم تحديث التذكرة بنجاح',
|
||||||
'you_have_successfully_replied_to_your_ticket' => 'لقد قمت بالرد على تذكرتك بنجاح',
|
'you_have_successfully_replied_to_your_ticket' => 'لقد قمت بالرد على تذكرتك بنجاح',
|
||||||
'for_some_reason_your_message_was_not_posted_please_try_again_later' => 'لسبب ما، لم يتم نشر رسالتك. يرجى المحاولة مرة أخر
|
'for_some_reason_your_message_was_not_posted_please_try_again_later' => 'لسبب ما لم يتم نشر رسالتك. الرجاء معاودة المحاولة في وقت لاحق',
|
||||||
|
|
||||||
ى لاحقًا',
|
|
||||||
'for_some_reason_your_reply_was_not_posted_please_try_again_later' => 'لسبب ما، لم يتم نشر ردك. يرجى المحاولة مرة أخرى لاحقًا',
|
'for_some_reason_your_reply_was_not_posted_please_try_again_later' => 'لسبب ما، لم يتم نشر ردك. يرجى المحاولة مرة أخرى لاحقًا',
|
||||||
'you_have_unassigned_your_ticket' => 'لقد قمت بإلغاء تعيين تذكرتك',
|
'you_have_unassigned_your_ticket' => 'لقد قمت بإلغاء تعيين تذكرتك',
|
||||||
'for_some_reason_your_request_failed' => 'لسبب ما، فشلت طلبك',
|
'for_some_reason_your_request_failed' => 'لسبب ما، فشلت طلبك',
|
||||||
@@ -1042,9 +1045,7 @@ ed' => 'تعذر إدراج الفئة',
|
|||||||
'user_created_successfully' => 'تم إنشاء المستخدم بنجاح',
|
'user_created_successfully' => 'تم إنشاء المستخدم بنجاح',
|
||||||
'user_updated_successfully' => 'تم تحديث المستخدم بنجاح',
|
'user_updated_successfully' => 'تم تحديث المستخدم بنجاح',
|
||||||
'profile_updated_sucessfully' => 'تم تحديث الملف الشخصي بنجاح',
|
'profile_updated_sucessfully' => 'تم تحديث الملف الشخصي بنجاح',
|
||||||
'password_updated_sucess
|
'password_updated_sucessfully' => 'تم تحديث كلمة المرور بنجاح',
|
||||||
|
|
||||||
fully' => 'تم تحديث كلمة المرور بنجاح',
|
|
||||||
'password_was_not_updated_incorrect_old_password' => 'لم يتم تحديث كلمة المرور. كلمة المرور القديمة غير صحيحة',
|
'password_was_not_updated_incorrect_old_password' => 'لم يتم تحديث كلمة المرور. كلمة المرور القديمة غير صحيحة',
|
||||||
'the_user_has_been_removed_from_this_organization' => 'تمت إزالة المستخدم من هذه المؤسسة',
|
'the_user_has_been_removed_from_this_organization' => 'تمت إزالة المستخدم من هذه المؤسسة',
|
||||||
'user_report' => 'تقرير المستخدم',
|
'user_report' => 'تقرير المستخدم',
|
||||||
@@ -1128,6 +1129,7 @@ fully' => 'تم تحديث كل
|
|||||||
'search_existing_users' => 'البحث عن مستخدمين موجودين',
|
'search_existing_users' => 'البحث عن مستخدمين موجودين',
|
||||||
'add_new_user' => 'إضافة مستخدم جديد',
|
'add_new_user' => 'إضافة مستخدم جديد',
|
||||||
|
|
||||||
|
|
||||||
'search_existing_users_or_add_new_users' => 'البحث عن مستخدمين موجودين أو إضافة مستخدمين جدد',
|
'search_existing_users_or_add_new_users' => 'البحث عن مستخدمين موجودين أو إضافة مستخدمين جدد',
|
||||||
'search_by_email' => 'البحث بالبريد الإلكتروني',
|
'search_by_email' => 'البحث بالبريد الإلكتروني',
|
||||||
'list_of_collaborators_of_this_ticket' => 'قائمة المشاركين في هذه التذكرة',
|
'list_of_collaborators_of_this_ticket' => 'قائمة المشاركين في هذه التذكرة',
|
||||||
@@ -1407,7 +1409,7 @@ fully' => 'تم تحديث كل
|
|||||||
'password_updated_sucessfully' => 'تم تحديث كلمة المرور بنجاح',
|
'password_updated_sucessfully' => 'تم تحديث كلمة المرور بنجاح',
|
||||||
'password_was_not_updated_incorrect_old_password' => 'لم يتم تحديث كلمة المرور. كلمة المرور القديمة غير صحيحة',
|
'password_was_not_updated_incorrect_old_password' => 'لم يتم تحديث كلمة المرور. كلمة المرور القديمة غير صحيحة',
|
||||||
'there_is_no_such_ticket_number' => 'لا يوجد رقم تذكرة كهذا',
|
'there_is_no_such_ticket_number' => 'لا يوجد رقم تذكرة كهذا',
|
||||||
"email_didn't_match_with_ticket_number" => 'لم يتطابق البريد الإلكتروني مع رقم التذكرة',
|
"email_didn't_match_with_ticket_number" => "لم يتطابق البريد الإلكتروني مع رقم التذكرة",
|
||||||
'we_have_sent_you_a_link_by_email_please_click_on_that_link_to_view_ticket' => 'لقد أرسلنا لك رابطًا عبر البريد الإلكتروني. يرجى النقر فوق هذا الرابط لعرض التذكرة',
|
'we_have_sent_you_a_link_by_email_please_click_on_that_link_to_view_ticket' => 'لقد أرسلنا لك رابطًا عبر البريد الإلكتروني. يرجى النقر فوق هذا الرابط لعرض التذكرة',
|
||||||
'no_records_on_publish_time' => 'لا توجد سجلات في وقت النشر',
|
'no_records_on_publish_time' => 'لا توجد سجلات في وقت النشر',
|
||||||
'your_details_send_to_system' => 'تم إرسال تفاصيلك إلى النظام',
|
'your_details_send_to_system' => 'تم إرسال تفاصيلك إلى النظام',
|
||||||
@@ -1453,6 +1455,7 @@ fully' => 'تم تحديث كل
|
|||||||
'error-logs' => 'سجلات الأخطاء',
|
'error-logs' => 'سجلات الأخطاء',
|
||||||
// / ---------------------------------------------------------------------------------------
|
// / ---------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
// /
|
// /
|
||||||
'that_email_is not_available_in_this_system' => 'البريد الإلكتروني غير متوفر في هذا النظام',
|
'that_email_is not_available_in_this_system' => 'البريد الإلكتروني غير متوفر في هذا النظام',
|
||||||
'use_subject' => 'استخدم الموضوع',
|
'use_subject' => 'استخدم الموضوع',
|
||||||
@@ -1460,6 +1463,7 @@ fully' => 'تم تحديث كل
|
|||||||
'invalid_attempt' => 'محاولة غير صالحة',
|
'invalid_attempt' => 'محاولة غير صالحة',
|
||||||
// / ---------------------------------------------------------------------------------------
|
// / ---------------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
// /
|
// /
|
||||||
'queue' => 'قائمة الانتظار',
|
'queue' => 'قائمة الانتظار',
|
||||||
'queues' => 'القوائم الانتظارية',
|
'queues' => 'القوائم الانتظارية',
|
||||||
@@ -1683,6 +1687,8 @@ fully' => 'تم تحديث كل
|
|||||||
'clean-forever' => 'حذف بشكل دائم',
|
'clean-forever' => 'حذف بشكل دائم',
|
||||||
'mail-sent-to-job-for-process' => 'تم إرسال البريد إلى الوظيفة للمعالجة، ستظهر في صندوق البريد الخاص بك بمجرد معالجتها من قبل خدمة الاصفو',
|
'mail-sent-to-job-for-process' => 'تم إرسال البريد إلى الوظيفة للمعالجة، ستظهر في صندوق البريد الخاص بك بمجرد معالجتها من قبل خدمة الاصفو',
|
||||||
'click-here-to-see-more-details' => 'انقر هنا لرؤية المزيد من التفاصيل',
|
'click-here-to-see-more-details' => 'انقر هنا لرؤية المزيد من التفاصيل',
|
||||||
|
|
||||||
|
|
||||||
'already_got_an_account?' => 'بالفعل_حصلت_على_حساب؟',
|
'already_got_an_account?' => 'بالفعل_حصلت_على_حساب؟',
|
||||||
'article_list' => 'قائمة المقالات ',
|
'article_list' => 'قائمة المقالات ',
|
||||||
'category_list' => 'قائمة الفئات',
|
'category_list' => 'قائمة الفئات',
|
||||||
@@ -1701,14 +1707,16 @@ fully' => 'تم تحديث كل
|
|||||||
'linkedin' => 'ينكدين',
|
'linkedin' => 'ينكدين',
|
||||||
'bitbucket' =>'دلو بت',
|
'bitbucket' =>'دلو بت',
|
||||||
'whoops' => 'عفوًا',
|
'whoops' => 'عفوًا',
|
||||||
'theirisproblem' => 'كانت هناك بعض المشاكل مع المدخلات الخاصة بك.',
|
|
||||||
'Please_choose_your_Email_Fetching_timing' => 'الرجاء اختيار توقيت جلب البريد الإلكتروني الخاص بك',
|
'Please_choose_your_Email_Fetching_timing' => 'الرجاء اختيار توقيت جلب البريد الإلكتروني الخاص بك',
|
||||||
'Please_choose_your_ Email_ Notification_timing'=> 'الرجاء اختيار توقيت إشعار البريد الإلكتروني الخاص بك',
|
'Please_choose_your_ Email_ Notification_timing'=> 'الرجاء اختيار توقيت إشعار البريد الإلكتروني الخاص بك',
|
||||||
'Please_choose_your_Auto-close_Workflow_timing'=> 'الرجاء اختيار توقيت سير العمل للإغلاق التلقائي',
|
'Please_choose_your_Auto-close_Workflow_timing'=> 'الرجاء اختيار توقيت سير العمل للإغلاق التلقائي',
|
||||||
'lockout_period:' =>'فترة القفل:',
|
'lockout_period:' =>'فترة القفل:',
|
||||||
'Lockout_Message:' =>'رسالة القفل:',
|
'Lockout_Message:' =>'رسالة القفل:',
|
||||||
'please_enter_valid_no_days' =>'الرجاء إدخال عدد صحيح من الأيام',
|
'please_enter_valid_no_days' =>'الرجاء إدخال عدد صحيح من الأيام',
|
||||||
'plugins-list' => 'قائمة الإضافات',
|
|
||||||
'author' => 'مؤلف',
|
'author' => 'مؤلف',
|
||||||
|
'what_should_be_done_with_content_owned_by_this_user' =>'ما يجب فعله بالمحتوى المملوك لهذا المستخدم',
|
||||||
|
'download_file' => 'تحميل الملف',
|
||||||
|
'delete_file' => 'حذف ملف',
|
||||||
|
'log_file_50M_please_download_it.' => 'ملف السجل أكبر من 50 ميجا، يرجى تنزيله.',
|
||||||
|
'support' => 'يدعم',
|
||||||
];
|
];
|
||||||
|
@@ -1158,4 +1158,6 @@ return [
|
|||||||
'selected-user-is-already-the-owner' => 'Der ausgewählte Benutzer ist bereits Inhaber dieses Tickets.',
|
'selected-user-is-already-the-owner' => 'Der ausgewählte Benutzer ist bereits Inhaber dieses Tickets.',
|
||||||
//updated 15-5-2017
|
//updated 15-5-2017
|
||||||
'session-expired' => 'Die Sitzung ist abgelaufen oder ungültig. Bitte versuchen Sie es erneut.',
|
'session-expired' => 'Die Sitzung ist abgelaufen oder ungültig. Bitte versuchen Sie es erneut.',
|
||||||
|
//updated 10-10-2023
|
||||||
|
'what_should_be_done_with_content_owned_by_this_user'=> 'Was soll mit Inhalten geschehen, die diesem Benutzer gehören',
|
||||||
];
|
];
|
||||||
|
@@ -1283,7 +1283,7 @@ return [
|
|||||||
|------------------------------------------------
|
|------------------------------------------------
|
||||||
| Error Pages
|
| Error Pages
|
||||||
|------------------------------------------------
|
|------------------------------------------------
|
||||||
*/'knowledge_base' => 'knowledge base',
|
*/
|
||||||
'not_found' => 'Not found',
|
'not_found' => 'Not found',
|
||||||
'oops_page_not_found' => 'Oops! Page not found',
|
'oops_page_not_found' => 'Oops! Page not found',
|
||||||
'we_could_not_find_the_page_you_were_looking_for' => 'We could not find the page you were looking for',
|
'we_could_not_find_the_page_you_were_looking_for' => 'We could not find the page you were looking for',
|
||||||
@@ -1568,7 +1568,6 @@ return [
|
|||||||
'deleted_user_directory' => 'Deleted User Directory',
|
'deleted_user_directory' => 'Deleted User Directory',
|
||||||
'restore' => 'Restore',
|
'restore' => 'Restore',
|
||||||
'user_restore_successfully' => 'User restore successfully',
|
'user_restore_successfully' => 'User restore successfully',
|
||||||
|
|
||||||
/*** updates 28-11-2016***/
|
/*** updates 28-11-2016***/
|
||||||
'apply' => 'Apply',
|
'apply' => 'Apply',
|
||||||
|
|
||||||
@@ -1660,7 +1659,7 @@ return [
|
|||||||
'category_list' => 'Category list',
|
'category_list' => 'Category list',
|
||||||
'check_ticket' => 'Check ticket',
|
'check_ticket' => 'Check ticket',
|
||||||
'search_result' => 'Search Results',
|
'search_result' => 'Search Results',
|
||||||
'already_got_an_account?' => 'Alreaddy got an account?',
|
'already_got_an_account?' => 'Already got an account?',
|
||||||
'message-choose' => 'Choose File(s)',
|
'message-choose' => 'Choose File(s)',
|
||||||
'Ticket details' => 'Ticket Conversation',
|
'Ticket details' => 'Ticket Conversation',
|
||||||
'provider' => 'Providers',
|
'provider' => 'Providers',
|
||||||
@@ -1677,6 +1676,10 @@ return [
|
|||||||
'Lockout_Message:' => 'Lockout Message:',
|
'Lockout_Message:' => 'Lockout Message:',
|
||||||
'please_enter_valid_no_days' => 'Please enter valid no of days',
|
'please_enter_valid_no_days' => 'Please enter valid no of days',
|
||||||
'author' =>'Author',
|
'author' =>'Author',
|
||||||
'system_logs' => 'System logs',
|
'what_should_be_done_with_content_owned_by_this_user' => 'What should be done with content owned by this user',
|
||||||
|
'ticket_conversation' => 'Ticket Conversation',
|
||||||
|
'download_file' => 'Download file',
|
||||||
|
'delete_file' => 'Delete file',
|
||||||
|
'log_file_50M_please_download_it.' => 'Log file >50M, please download it.',
|
||||||
|
'support' => 'Support',
|
||||||
];
|
];
|
||||||
|
@@ -671,7 +671,7 @@ return [
|
|||||||
'form_name' => 'Nombre del formulario',
|
'form_name' => 'Nombre del formulario',
|
||||||
'view_this_form' => 'Ver este formulario',
|
'view_this_form' => 'Ver este formulario',
|
||||||
'delete_from' => 'Eliminar formulario',
|
'delete_from' => 'Eliminar formulario',
|
||||||
'are_you_sure_you_want_to_delete' => 'estas seguro que quieres borrarlo',
|
'are_you_sure_you_want_to_delete' => 'Estas seguro que quieres borrarlo',
|
||||||
'close' => 'Cerca',
|
'close' => 'Cerca',
|
||||||
'instructions' => 'Instrucciones',
|
'instructions' => 'Instrucciones',
|
||||||
'instructions_on_creating_form' => 'Seleccione el tipo de campo que desea agregar al formulario de abajo y haga clic en el menú desplegable "Tipo". No olvide establecer las opciones de campo si el tipo es select, checkbox o radio. Separe cada opción con una coma. Una vez que haya terminado de crear el formulario, puede guardar el formulario haciendo clic en el botón "Guardar formulario"',
|
'instructions_on_creating_form' => 'Seleccione el tipo de campo que desea agregar al formulario de abajo y haga clic en el menú desplegable "Tipo". No olvide establecer las opciones de campo si el tipo es select, checkbox o radio. Separe cada opción con una coma. Una vez que haya terminado de crear el formulario, puede guardar el formulario haciendo clic en el botón "Guardar formulario"',
|
||||||
@@ -1664,4 +1664,6 @@ Puede ingresar el número de días de registros de base de datos que se eliminar
|
|||||||
|
|
||||||
//updates 22-2-2017
|
//updates 22-2-2017
|
||||||
'invalid-date-range' => 'Invalid date range',
|
'invalid-date-range' => 'Invalid date range',
|
||||||
|
//updated 10-10-2023
|
||||||
|
'what_should_be_done_with_content_owned_by_this_user' => '¿Qué se debe hacer con el contenido propiedad de este usuario',
|
||||||
];
|
];
|
||||||
|
@@ -1563,5 +1563,7 @@ return [
|
|||||||
'selected-user-is-already-the-owner' => 'L\'utilisateur sélectionné est déjà le propriétaire du ticket.',
|
'selected-user-is-already-the-owner' => 'L\'utilisateur sélectionné est déjà le propriétaire du ticket.',
|
||||||
//updated 15-5-2017
|
//updated 15-5-2017
|
||||||
'session-expired' => 'Session expired or invalid, please try again.',
|
'session-expired' => 'Session expired or invalid, please try again.',
|
||||||
|
//updated 10-10-2023
|
||||||
|
'what_should_be_done_with_content_owned_by_this_user' => 'Que faire du contenu appartenant à cet utilisateur',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@@ -1594,4 +1594,7 @@ return [
|
|||||||
'all-users' => 'Tutti gli utenti',
|
'all-users' => 'Tutti gli utenti',
|
||||||
//update 21-12-2016
|
//update 21-12-2016
|
||||||
'selected-user-is-already-the-owner' => 'L\'utente selezionato è già il proprietario del ticket.',
|
'selected-user-is-already-the-owner' => 'L\'utente selezionato è già il proprietario del ticket.',
|
||||||
|
//updated 10-10-2023
|
||||||
|
'what_should_be_done_with_content_owned_by_this_user' => 'Cosa si dovrebbe fare con i contenuti di proprietà di questo utente',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@@ -1609,4 +1609,6 @@ return [
|
|||||||
'selected-user-is-already-the-owner' => 'Selected user is already the owner of this ticket.',
|
'selected-user-is-already-the-owner' => 'Selected user is already the owner of this ticket.',
|
||||||
//updated 15-5-2017
|
//updated 15-5-2017
|
||||||
'session-expired' => 'Session expired or invalid, please try again.',
|
'session-expired' => 'Session expired or invalid, please try again.',
|
||||||
|
//updated 10-10-2023
|
||||||
|
'what_should_be_done_with_content_owned_by_this_user' => 'Wat moet er gebeuren met de inhoud die eigendom is van deze gebruiker',
|
||||||
];
|
];
|
||||||
|
@@ -1552,5 +1552,7 @@ return [
|
|||||||
'selected-user-is-already-the-owner' => 'O usuário selecionado já é o proprietário deste ticket.',
|
'selected-user-is-already-the-owner' => 'O usuário selecionado já é o proprietário deste ticket.',
|
||||||
//updated 15-5-2017
|
//updated 15-5-2017
|
||||||
'session-expired' => 'Sessão expirada ou inválida, tente novamente.',
|
'session-expired' => 'Sessão expirada ou inválida, tente novamente.',
|
||||||
|
//updated 10-10-2023
|
||||||
|
'what_should_be_done_with_content_owned_by_this_user' => 'O que deve ser feito com o conteúdo de propriedade deste usuário',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@@ -1554,5 +1554,7 @@ return [
|
|||||||
'selected-user-is-already-the-owner' => 'Selected user is already the owner of this ticket.',
|
'selected-user-is-already-the-owner' => 'Selected user is already the owner of this ticket.',
|
||||||
//updated 15-5-2017
|
//updated 15-5-2017
|
||||||
'session-expired' => 'Session expired or invalid, please try again.',
|
'session-expired' => 'Session expired or invalid, please try again.',
|
||||||
|
//updated 10-10-2023
|
||||||
|
'what_should_be_done_with_content_owned_by_this_user' => 'O que deve ser feito com o conteúdo de propriedade deste usuário',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@@ -1651,4 +1651,6 @@ return [
|
|||||||
'ticket-has-x-priority' => 'Приоритет заявки - :priority',
|
'ticket-has-x-priority' => 'Приоритет заявки - :priority',
|
||||||
'clean-forever' => 'удалить навсегда',
|
'clean-forever' => 'удалить навсегда',
|
||||||
'mail-sent-to-job-for-process' => 'Почта была отправлена на задание для обработки, она появится в вашем почтовом ящике после обработки выбранной службой очереди. Если вы не получаете почту, проверьте журнал на наличие ошибок или предупреждений.',
|
'mail-sent-to-job-for-process' => 'Почта была отправлена на задание для обработки, она появится в вашем почтовом ящике после обработки выбранной службой очереди. Если вы не получаете почту, проверьте журнал на наличие ошибок или предупреждений.',
|
||||||
|
//updated 10-10-2023
|
||||||
|
'what_should_be_done_with_content_owned_by_this_user' =>'Что следует делать с контентом, принадлежащим этому пользователю',
|
||||||
];
|
];
|
||||||
|
@@ -1709,4 +1709,6 @@ return [
|
|||||||
'ticket_type_updated_successfully' => '工单类型更新成功',
|
'ticket_type_updated_successfully' => '工单类型更新成功',
|
||||||
'ticket_type_deleted_successfully' => '工单类型删除成功',
|
'ticket_type_deleted_successfully' => '工单类型删除成功',
|
||||||
'create_new_ticket' => '创建工单',
|
'create_new_ticket' => '创建工单',
|
||||||
|
//updated 10-10-2023
|
||||||
|
'what_should_be_done_with_content_owned_by_this_user' => '应如何处理该用户拥有的内容',
|
||||||
];
|
];
|
||||||
|
@@ -81,9 +81,9 @@ class="nav-link active"
|
|||||||
@endif
|
@endif
|
||||||
<td>
|
<td>
|
||||||
{!! Form::open(['route'=>['groups.destroy', $group->id],'method'=>'DELETE']) !!}
|
{!! Form::open(['route'=>['groups.destroy', $group->id],'method'=>'DELETE']) !!}
|
||||||
<a href="{{route('groups.edit', $group->id)}}" class="btn btn-primary btn-xs"><i class="fas fa-edit"> </i> Edit</a>
|
<a href="{{route('groups.edit', $group->id)}}" class="btn btn-primary btn-xs"><i class="fas fa-edit"> </i> {{trans('lang.edit')}}</a>
|
||||||
<!-- To pop up a confirm Message -->
|
<!-- To pop up a confirm Message -->
|
||||||
{!! Form::button('<i class="fas fa-trash"> </i> Delete',
|
{!! Form::button('<i class="fas fa-trash"> </i>'.trans('lang.delete'),
|
||||||
['type' => 'submit',
|
['type' => 'submit',
|
||||||
'class'=> 'btn btn-danger btn-xs',
|
'class'=> 'btn btn-danger btn-xs',
|
||||||
'onclick'=>'return confirm("Are you sure?")'])
|
'onclick'=>'return confirm("Are you sure?")'])
|
||||||
|
@@ -114,15 +114,15 @@ class="nav-link active"
|
|||||||
<td>{!! UTC::usertimezone($email->updated_at) !!}</td>
|
<td>{!! UTC::usertimezone($email->updated_at) !!}</td>
|
||||||
<td>
|
<td>
|
||||||
{!! Form::open(['route'=>['emails.destroy', $email->id],'method'=>'DELETE']) !!}
|
{!! Form::open(['route'=>['emails.destroy', $email->id],'method'=>'DELETE']) !!}
|
||||||
<a href="{{route('emails.edit', $email->id)}}" class="btn btn-primary btn-xs"><i class="fas fa-edit"> </i> Edit</a>
|
<a href="{{route('emails.edit', $email->id)}}" class="btn btn-primary btn-xs"><i class="fas fa-edit"> </i>{{Lang::get('lang.edit')}}</a>
|
||||||
<!-- To pop up a confirm Message -->
|
<!-- To pop up a confirm Message -->
|
||||||
|
|
||||||
@if($default_email == $email->id)
|
@if($default_email == $email->id)
|
||||||
{!! Form::button('<i class="fas fa-trash"> </i> Delete',
|
{!! Form::button('<i class="fas fa-trash"> </i>'.Lang::get('lang.delete'),
|
||||||
['class'=> 'btn btn-danger btn-xs '. $disabled])
|
['class'=> 'btn btn-danger btn-xs '. $disabled])
|
||||||
!!}
|
!!}
|
||||||
@else
|
@else
|
||||||
{!! Form::button('<i class="fas fa-trash"> </i> Delete',
|
{!! Form::button('<i class="fas fa-trash"> </i>'.Lang::get('lang.delete'),
|
||||||
['type' => 'submit',
|
['type' => 'submit',
|
||||||
'class'=> 'btn btn-danger btn-xs',
|
'class'=> 'btn btn-danger btn-xs',
|
||||||
'onclick'=>'return confirm("Are you sure?")'])
|
'onclick'=>'return confirm("Are you sure?")'])
|
||||||
|
@@ -87,8 +87,8 @@ class="nav-link active"
|
|||||||
|
|
||||||
<div class="form-group col-sm-3 {{ $errors->has('ispublic') ? 'has-error' : '' }}">
|
<div class="form-group col-sm-3 {{ $errors->has('ispublic') ? 'has-error' : '' }}">
|
||||||
{!! Form::label('ispublic',Lang::get('lang.visibility')) !!} <span class="text-red"> *</span><br/>
|
{!! Form::label('ispublic',Lang::get('lang.visibility')) !!} <span class="text-red"> *</span><br/>
|
||||||
<input type="radio" name="ispublic" value="1" checked> Public
|
<input type="radio" name="ispublic" value="1" checked>{{Lang::get('lang.public')}}
|
||||||
<input type="radio" name="ispublic" value="0" > Private
|
<input type="radio" name="ispublic" value="0" > {{Lang::get('lang.private')}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- Admin Note : Textarea : -->
|
<!-- Admin Note : Textarea : -->
|
||||||
|
@@ -66,8 +66,8 @@ class="nav-link active"
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
<div class="btn-group" id="toggle_event_editing" style="float: right; margin-bottom: 10">
|
<div class="btn-group" id="toggle_event_editing" style="float: right; margin-bottom: 10">
|
||||||
<button type="button" class="btn {{$user_status->status == '0' ? 'btn-info' : 'btn-default'}} locked_active">Inactive</button>
|
<button type="button" class="btn {{$user_status->status == '0' ? 'btn-info' : 'btn-default'}} locked_active">{{Lang::get('lang.inactive')}}</button>
|
||||||
<button type="button" class="btn {{$user_status->status == '1' ? 'btn-info' : 'btn-default'}} unlocked_inactive">Active</button>
|
<button type="button" class="btn {{$user_status->status == '1' ? 'btn-info' : 'btn-default'}} unlocked_inactive">{{Lang::get('lang.active')}}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="priority-table" style="padding-top: 10px">
|
<div class="priority-table" style="padding-top: 10px">
|
||||||
|
@@ -282,7 +282,7 @@ class="nav-link active"
|
|||||||
<td>
|
<td>
|
||||||
<select class="form-control" onChange="selectdata({!! $i !!})" id="selected{!! $i !!}" name="action[{!! $i !!}][a]" required>
|
<select class="form-control" onChange="selectdata({!! $i !!})" id="selected{!! $i !!}" name="action[{!! $i !!}][a]" required>
|
||||||
<option value="">-- {!! Lang::get('lang.select_an_action') !!} --</option>
|
<option value="">-- {!! Lang::get('lang.select_an_action') !!} --</option>
|
||||||
<optgroup label="Ticket">
|
<optgroup label={{trans('lang.ticket')}}>
|
||||||
<option value="reject" <?php
|
<option value="reject" <?php
|
||||||
if ($workflow_action->condition == 'reject') {
|
if ($workflow_action->condition == 'reject') {
|
||||||
echo "selected='selected'";
|
echo "selected='selected'";
|
||||||
|
@@ -33,7 +33,7 @@ class="nav-link active"
|
|||||||
@section('content')
|
@section('content')
|
||||||
@if (count($errors) > 0)
|
@if (count($errors) > 0)
|
||||||
<div class="alert alert-danger">
|
<div class="alert alert-danger">
|
||||||
<strong>Whoops!</strong> There were some problems with your input.<br><br>
|
<strong>{{Lang::get('lang.woops')}}</strong> {{Lang::get('lang.theirisproblem')}}<br><br>
|
||||||
<ul>
|
<ul>
|
||||||
@foreach ($errors->all() as $error)
|
@foreach ($errors->all() as $error)
|
||||||
<li>{{ $error }}</li>
|
<li>{{ $error }}</li>
|
||||||
|
@@ -656,7 +656,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="card card-light">
|
<div class="card card-light">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<h3 class="card-title">Logs</h3>
|
<h3 class="card-title">{{Lang::get('log::lang.logs')}}</h3>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.box-header -->
|
<!-- /.box-header -->
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
@@ -671,7 +671,7 @@
|
|||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-center text-sm">Logs</div>
|
<div class="text-center text-sm">{{Lang::get('log::lang.logs')}}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -108,7 +108,7 @@ class="nav-link active"
|
|||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
<!-- logo -->
|
<!-- logo -->
|
||||||
{!! Form::label('logo',Lang::get('lang.logo')) !!}
|
{!! Form::label('logo',Lang::get('lang.logo')) !!}
|
||||||
<div class="btn bg-olive btn-file" style="color:blue"> {{trans('lang.upload_file')}}
|
<div class="btn bg-olive btn-file" style="color:blue"> {{Lang::get('lang.upload_file')}}
|
||||||
{!! Form::file('logo') !!}
|
{!! Form::file('logo') !!}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{!! Form::model($emails,['url' => 'post-scheduler', 'method' => 'PATCH']) !!}
|
{!! Form::model($emails,['url' => 'post-scheduler', 'method' => 'PATCH']) !!}
|
||||||
@if (count($errors) > 0)
|
@if (count($errors) > 0)
|
||||||
<div class="alert alert-danger">
|
<div class="alert alert-danger">
|
||||||
<strong>{{trans('lang.whoops')}}!</strong> {{\Illuminate\Support\Facades\Lang::get('lang.theirisproblem')}}<br><br>
|
<strong>{{Lang::get('lang.woops')}}</strong> {{Lang::get('lang.theirisproblem')}}<br><br>
|
||||||
<ul>
|
<ul>
|
||||||
@foreach ($errors->all() as $error)
|
@foreach ($errors->all() as $error)
|
||||||
<li>{{ $error }}</li>
|
<li>{{ $error }}</li>
|
||||||
|
@@ -7,7 +7,7 @@
|
|||||||
<div class="box-body table-responsive"style="overflow:hidden;">
|
<div class="box-body table-responsive"style="overflow:hidden;">
|
||||||
@if (count($errors) > 0)
|
@if (count($errors) > 0)
|
||||||
<div class="alert alert-danger">
|
<div class="alert alert-danger">
|
||||||
<strong>Whoops!</strong> There were some problems with your input.<br><br>
|
<strong>{{Lang::get('lang.woops')}}</strong> {{Lang::get('lang.theirisproblem')}}<br><br>
|
||||||
<ul>
|
<ul>
|
||||||
@foreach ($errors->all() as $error)
|
@foreach ($errors->all() as $error)
|
||||||
<li>{{ $error }}</li>
|
<li>{{ $error }}</li>
|
||||||
|
@@ -32,7 +32,7 @@ class="nav-link active"
|
|||||||
@section('content')
|
@section('content')
|
||||||
@if (count($errors) > 0)
|
@if (count($errors) > 0)
|
||||||
<div class="alert alert-danger">
|
<div class="alert alert-danger">
|
||||||
<strong>Whoops!</strong> There were some problems with your input.<br><br>
|
<strong>{{Lang::get('lang.woops')}}</strong> {{Lang::get('lang.theirisproblem')}}<br><br>
|
||||||
<ul>
|
<ul>
|
||||||
@foreach ($errors->all() as $error)
|
@foreach ($errors->all() as $error)
|
||||||
<li>{{ $error }}</li>
|
<li>{{ $error }}</li>
|
||||||
@@ -83,8 +83,7 @@ class="nav-link active"
|
|||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{url('social/media/facebook')}}" class="btn btn-primary">{{trans('lang.settings')}}</a>
|
<a href="{{url('social/media/facebook')}}" class="btn btn-primary">{{trans('lang.settings')}}</a> </td>
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{\Illuminate\Support\Facades\Lang::get('lang.google')}}</td>
|
<td>{{\Illuminate\Support\Facades\Lang::get('lang.google')}}</td>
|
||||||
@@ -94,11 +93,9 @@ class="nav-link active"
|
|||||||
@else
|
@else
|
||||||
<span style="color: red">{{trans('lang.inactive')}}</span>
|
<span style="color: red">{{trans('lang.inactive')}}</span>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{url('social/media/google')}}" class="btn btn-primary">{{trans('lang.settings')}}</a>
|
<a href="{{url('social/media/google')}}" class="btn btn-primary">{{trans('lang.settings')}}</a> </td>
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{\Illuminate\Support\Facades\Lang::get('lang.github')}}</td>
|
<td>{{\Illuminate\Support\Facades\Lang::get('lang.github')}}</td>
|
||||||
@@ -110,8 +107,7 @@ class="nav-link active"
|
|||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{url('social/media/github')}}" class="btn btn-primary">{{trans('lang.settings')}}</a>
|
<a href="{{url('social/media/github')}}" class="btn btn-primary">{{trans('lang.settings')}}</a> </td>
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{\Illuminate\Support\Facades\Lang::get('lang.twitter')}}</td>
|
<td>{{\Illuminate\Support\Facades\Lang::get('lang.twitter')}}</td>
|
||||||
@@ -123,8 +119,7 @@ class="nav-link active"
|
|||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{url('social/media/twitter')}}" class="btn btn-primary">{{trans('lang.settings')}}</a>
|
<a href="{{url('social/media/twitter')}}" class="btn btn-primary">{{trans('lang.settings')}}</a> </td>
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{\Illuminate\Support\Facades\Lang::get('lang.linkedin')}}</td>
|
<td>{{\Illuminate\Support\Facades\Lang::get('lang.linkedin')}}</td>
|
||||||
@@ -136,8 +131,7 @@ class="nav-link active"
|
|||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{url('social/media/linkedin')}}" class="btn btn-primary">{{trans('lang.settings')}}</a>
|
<a href="{{url('social/media/linkedin')}}" class="btn btn-primary">{{trans('lang.settings')}}</a> </td>
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{\Illuminate\Support\Facades\Lang::get('lang.bitbucket')}}</td>
|
<td>{{\Illuminate\Support\Facades\Lang::get('lang.bitbucket')}}</td>
|
||||||
@@ -149,8 +143,7 @@ class="nav-link active"
|
|||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{{url('social/media/bitbucket')}}" class="btn btn-primary">{{trans('lang.settings')}}</a>
|
<a href="{{url('social/media/bitbucket')}}" class="btn btn-primary">{{trans('lang.settings')}}</a> </td>
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
@@ -33,7 +33,7 @@ class="nav-link active"
|
|||||||
{!! Form::open(['url' => 'social/media/'.$provider, 'method' => 'POST']) !!}
|
{!! Form::open(['url' => 'social/media/'.$provider, 'method' => 'POST']) !!}
|
||||||
@if (count($errors) > 0)
|
@if (count($errors) > 0)
|
||||||
<div class="alert alert-danger">
|
<div class="alert alert-danger">
|
||||||
<strong>Whoops!</strong> There were some problems with your input.<br><br>
|
<strong>{{Lang::get('lang.woops')}}</strong> {{Lang::get('lang.theirisproblem')}}<br><br>
|
||||||
<ul>
|
<ul>
|
||||||
@foreach ($errors->all() as $error)
|
@foreach ($errors->all() as $error)
|
||||||
<li>{{ $error }}</li>
|
<li>{{ $error }}</li>
|
||||||
@@ -103,10 +103,10 @@ class="nav-link active"
|
|||||||
{!! Form::label('status',Lang::get('lang.status')) !!}
|
{!! Form::label('status',Lang::get('lang.status')) !!}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<p>{!! Form::radio('status',1,$social->checkActive($provider))!!} Active</p>
|
<p>{!! Form::radio('status',1,$social->checkActive($provider)) .Lang::get('lang.active')!!}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<p>{!! Form::radio('status',0,$social->checkInactive($provider)) !!} Inactive</p>
|
<p>{!! Form::radio('status',0,$social->checkInactive($provider)) .Lang::get('lang.inactive')!!} </p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<i>Activate login via {{ucfirst($provider)}}</i>
|
<i>Activate login via {{ucfirst($provider)}}</i>
|
||||||
|
@@ -90,7 +90,7 @@ class="nav-link active"
|
|||||||
<!-- Default Priority: Required : manual : Dropdowm -->
|
<!-- Default Priority: Required : manual : Dropdowm -->
|
||||||
<div class="form-group col-md-6 {{ $errors->has('priority') ? 'has-error' : '' }}">
|
<div class="form-group col-md-6 {{ $errors->has('priority') ? 'has-error' : '' }}">
|
||||||
{!! Form::label('priority',Lang::get('lang.default_priority')) !!}
|
{!! Form::label('priority',Lang::get('lang.default_priority')) !!}
|
||||||
{!!Form::select('priority', [''=>'select a priority','Priorities'=>$priority->pluck('priority_desc','priority_id')->toArray()],null,['class' => 'form-control']) !!}
|
{!!Form::select('priority', [''=>Lang::get('lang.select_a_priority'),Lang::get('lang.priorities')=>$priority->pluck('priority_desc','priority_id')->toArray()],null,['class' => 'form-control']) !!}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@@ -34,7 +34,7 @@ class="nav-link active"
|
|||||||
|
|
||||||
@if (count($errors) > 0)
|
@if (count($errors) > 0)
|
||||||
<div class="alert alert-danger">
|
<div class="alert alert-danger">
|
||||||
<strong>Whoops!</strong> There were some problems with your input.<br><br>
|
<strong>{{Lang::get('lang.woops')}}</strong> {{Lang::get('lang.theirisproblem')}} <br><br>
|
||||||
<ul>
|
<ul>
|
||||||
@foreach ($errors->all() as $error)
|
@foreach ($errors->all() as $error)
|
||||||
<li>{{ $error }}</li>
|
<li>{{ $error }}</li>
|
||||||
|
@@ -690,7 +690,7 @@
|
|||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a href="{{ url('logs') }}" @yield('Log') class="nav-link">
|
<a href="{{ url('logs') }}" @yield('Log') class="nav-link">
|
||||||
<i class="nav-icon fas fa-lock"></i>
|
<i class="nav-icon fas fa-lock"></i>
|
||||||
<p>Logs</p>
|
<p>{{Lang::get('log::lang.logs')}}</p>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@endif
|
@endif
|
||||||
|
@@ -255,7 +255,7 @@ class="nav-item d-none d-sm-inline-block active"
|
|||||||
<tr>
|
<tr>
|
||||||
<th>{{trans('lang.department')}}</th>
|
<th>{{trans('lang.department')}}</th>
|
||||||
@forelse($statuses as $status)
|
@forelse($statuses as $status)
|
||||||
<th>{!! $status !!}</th>
|
<th>{{trans('lang.'.strtolower($status))}}</th>
|
||||||
@empty
|
@empty
|
||||||
|
|
||||||
@endforelse
|
@endforelse
|
||||||
|
@@ -138,7 +138,7 @@ class="active"
|
|||||||
|
|
||||||
<div class='col-sm-1'>
|
<div class='col-sm-1'>
|
||||||
{!! Form::label('filter', 'Filter:',['style' => 'visibility:hidden;']) !!}<br>
|
{!! Form::label('filter', 'Filter:',['style' => 'visibility:hidden;']) !!}<br>
|
||||||
<input type="submit" class="btn btn-primary" value="Submit" id="submit">
|
<input type="submit" class="btn btn-primary" value="{{trans('lang.submit')}}" id="submit">
|
||||||
</div>
|
</div>
|
||||||
<br/>
|
<br/>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
@@ -149,9 +149,9 @@ class="active"
|
|||||||
|
|
||||||
<div class="float-right">
|
<div class="float-right">
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<button type="button" class="btn btn-default" id="click_day">Day</button>
|
<button type="button" class="btn btn-default" id="click_day">{{trans('lang.day')}}</button>
|
||||||
<button type="button" class="btn btn-default" id="click_week">Week</button>
|
<button type="button" class="btn btn-default" id="click_week">{{trans('lang.week')}}</button>
|
||||||
<button type="button" class="btn btn-default" id="click_month">Month</button>
|
<button type="button" class="btn btn-default" id="click_month">{{trans('lang.month')}}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -262,7 +262,7 @@ class="active"
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-md-5">
|
<div class="col-md-5">
|
||||||
<?php $Priority = App\Model\helpdesk\Ticket\Ticket_Priority::where('status','=',1)->get(); ?>
|
<?php $Priority = App\Model\helpdesk\Ticket\Ticket_Priority::where('status','=',1)->get(); ?>
|
||||||
{!! Form::select('priority', ['Priority'=>$Priority->pluck('priority_desc','priority_id')->toArray()],null,['class' => 'form-control select']) !!}
|
{!! Form::select('priority', [Lang::get('lang.priorities')=>$Priority->pluck('priority_desc','priority_id')->toArray()],null,['class' => 'form-control select']) !!}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@@ -185,7 +185,7 @@ if (Request::has('assigned'))
|
|||||||
@foreach($statuses as $ticket_status)
|
@foreach($statuses as $ticket_status)
|
||||||
<a href="javascript:;" class="dropdown-item" onclick="changeStatus({!! $ticket_status -> id !!}, '{!! $ticket_status->name !!}')"
|
<a href="javascript:;" class="dropdown-item" onclick="changeStatus({!! $ticket_status -> id !!}, '{!! $ticket_status->name !!}')"
|
||||||
data-toggle="modal" data-target="#myModal">
|
data-toggle="modal" data-target="#myModal">
|
||||||
{!! $ticket_status->name !!}
|
{{trans('lang.'.strtolower($ticket_status->name)) }}
|
||||||
</a>
|
</a>
|
||||||
@endforeach
|
@endforeach
|
||||||
</div>
|
</div>
|
||||||
|
@@ -1296,9 +1296,9 @@ class="nav-link active"
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
What should be done with content owned by this user?</br>
|
|
||||||
|
|
||||||
|
|
||||||
|
<p>{!! Lang::get('lang.what_should_be_done_with_content_owned_by_this_user') !!}?</p>
|
||||||
|
<br>
|
||||||
<?php $user = App\User::where('id', $users->id)->first(); ?>
|
<?php $user = App\User::where('id', $users->id)->first(); ?>
|
||||||
@if($user->role == 'agent')
|
@if($user->role == 'agent')
|
||||||
{!! Form::label('delete_all_content',Lang::get('lang.delete_all_content')) !!} <span class="text-red"> *</span>
|
{!! Form::label('delete_all_content',Lang::get('lang.delete_all_content')) !!} <span class="text-red"> *</span>
|
||||||
|
@@ -310,7 +310,7 @@
|
|||||||
class="img-size-50">
|
class="img-size-50">
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="dropdown-footer"><a class="text-dark" href="{{ url('notifications-list')}}">View all</a>
|
<li class="dropdown-footer"><a class="text-dark" href="{{ url('notifications-list')}}">{{trans('lang.view_all')}}</a>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
@@ -445,6 +445,7 @@
|
|||||||
|
|
||||||
<li class="nav-header">{!! Lang::get('lang.Departments') !!}</li>
|
<li class="nav-header">{!! Lang::get('lang.Departments') !!}</li>
|
||||||
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
$flattened = $department->flatMap(function ($values) {
|
$flattened = $department->flatMap(function ($values) {
|
||||||
return $values->keyBy('status');
|
return $values->keyBy('status');
|
||||||
@@ -472,7 +473,7 @@
|
|||||||
|
|
||||||
<a href="#" @if($dept2 === $name) @yield('ticket-bar') @endif class="nav-link">
|
<a href="#" @if($dept2 === $name) @yield('ticket-bar') @endif class="nav-link">
|
||||||
<i class="nav-icon fas fa-folder-open"></i>
|
<i class="nav-icon fas fa-folder-open"></i>
|
||||||
<p>{!! $name !!}<i class="right fas fa-angle-left"></i></p>
|
<p>{!!trans('lang.'.strtolower($name))!!}<i class="right fas fa-angle-left"></i></p>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
@foreach($statuses as $status)
|
@foreach($statuses as $status)
|
||||||
@@ -483,7 +484,7 @@
|
|||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a href="{!! url('tickets?departments='.$name.'&status='.$dept->get($status)->status) !!}" @if($status2 == $dept->get($status)->status && $dept2 === $name) @yield('inbox') @endif class="nav-link">
|
<a href="{!! url('tickets?departments='.$name.'&status='.$dept->get($status)->status) !!}" @if($status2 == $dept->get($status)->status && $dept2 === $name) @yield('inbox') @endif class="nav-link">
|
||||||
<i class="far fa-circle nav-icon"></i>
|
<i class="far fa-circle nav-icon"></i>
|
||||||
<p>{!!$dept->get($status)->status !!}</p>
|
<p>{!!trans('lang.'.strtolower($dept->get($status)->status)) !!}</p>
|
||||||
<small class="right badge badge-success">{{$dept->get($status)->count}}</small>
|
<small class="right badge badge-success">{{$dept->get($status)->count}}</small>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
@stop
|
@stop
|
||||||
@section('sidebar')
|
@section('sidebar')
|
||||||
|
|
||||||
<li class="nav-header">KNOWLEDGE BASE</li>
|
<li class="nav-header">{{strtoupper(trans('lang.knowledge_base'))}}</li>
|
||||||
|
|
||||||
<li @yield('category-menu-parent') class="nav-item">
|
<li @yield('category-menu-parent') class="nav-item">
|
||||||
|
|
||||||
|
@@ -44,7 +44,7 @@ class="nav-link active"
|
|||||||
<h3 class="card-title">{!! Lang::get('lang.list_of_templates_sets') !!}</h3>
|
<h3 class="card-title">{!! Lang::get('lang.list_of_templates_sets') !!}</h3>
|
||||||
<div class="card-tools">
|
<div class="card-tools">
|
||||||
<button class="btn btn-default btn-tool" data-toggle="modal" data-target="#create" title="Create" id="2create">
|
<button class="btn btn-default btn-tool" data-toggle="modal" data-target="#create" title="Create" id="2create">
|
||||||
<i class="fas fa-plus"> </i> Create
|
<i class="fas fa-plus"> </i> {{Lang::get('lang.create')}}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div><!-- /.box-header -->
|
</div><!-- /.box-header -->
|
||||||
@@ -134,7 +134,7 @@ class="nav-link active"
|
|||||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<span>Are you sure you want to Delete ?</span>
|
<span>{{Lang::get('lang.are_you_sure_you_want_to_delete')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer justify-content-between">
|
<div class="modal-footer justify-content-between">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
||||||
|
@@ -26,6 +26,29 @@ foreach($segments as $seg){
|
|||||||
"sPaginationType": "full_numbers",
|
"sPaginationType": "full_numbers",
|
||||||
"bProcessing": true,
|
"bProcessing": true,
|
||||||
"bServerSide": true,
|
"bServerSide": true,
|
||||||
|
"oLanguage": {
|
||||||
|
"sEmptyTable": "{!! Lang::get('datatables.sEmptyTable') !!}",
|
||||||
|
"sInfo": "{!! Lang::get('datatables.sInfo') !!}",
|
||||||
|
"sInfoEmpty": "{!! Lang::get('datatables.sInfoEmpty') !!}",
|
||||||
|
"sInfoFiltered": "{!! Lang::get('datatables.sInfoFiltered') !!}",
|
||||||
|
"sInfoPostFix": "{!! Lang::get('datatables.sInfoPostFix') !!}",
|
||||||
|
"sInfoThousands": "{!! Lang::get('datatables.sInfoThousands') !!}",
|
||||||
|
"sLengthMenu": "{!! Lang::get('datatables.sLengthMenu') !!}",
|
||||||
|
"sLoadingRecords": "{!! Lang::get('datatables.sLoadingRecords') !!}",
|
||||||
|
"sProcessing": "{!! Lang::get('datatables.sProcessing') !!}",
|
||||||
|
"sSearch": "{!! Lang::get('datatables.sSearch') !!}",
|
||||||
|
"sZeroRecords": "{!! Lang::get('datatables.sZeroRecords') !!}",
|
||||||
|
"oPaginate": {
|
||||||
|
"sFirst": "{!! Lang::get('datatables.oPaginate.sFirst') !!}",
|
||||||
|
"sLast": "{!! Lang::get('datatables.oPaginate.sLast') !!}",
|
||||||
|
"sNext": "{!! Lang::get('datatables.oPaginate.sNext') !!}",
|
||||||
|
"sPrevious": "{!! Lang::get('datatables.oPaginate.sPrevious') !!}"
|
||||||
|
},
|
||||||
|
"oAria": {
|
||||||
|
"sSortAscending": "{!! Lang::get('datatables.oAria.sSortAscending') !!}",
|
||||||
|
"sSortDescending": "{!! Lang::get('datatables.oAria.sortDescending') !!}"
|
||||||
|
},
|
||||||
|
},
|
||||||
"ajax": {
|
"ajax": {
|
||||||
url: "{{url('user-list')}}",
|
url: "{{url('user-list')}}",
|
||||||
data: function (d) {
|
data: function (d) {
|
||||||
|
Reference in New Issue
Block a user