Merge pull request #330 from ladybirdweb/analysis-XVjwdZ
Apply fixes from StyleCI
This commit is contained in:
@@ -24,7 +24,6 @@ class LaravelLogViewerServiceProvider extends ServiceProvider
|
|||||||
$this->package('rap2hpoutre/laravel-log-viewer', 'laravel-log-viewer', __DIR__.'/../../');
|
$this->package('rap2hpoutre/laravel-log-viewer', 'laravel-log-viewer', __DIR__.'/../../');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$view_path = app_path().DIRECTORY_SEPARATOR.'FaveoLog'.DIRECTORY_SEPARATOR.'views';
|
$view_path = app_path().DIRECTORY_SEPARATOR.'FaveoLog'.DIRECTORY_SEPARATOR.'views';
|
||||||
$this->loadViewsFrom($view_path, 'log');
|
$this->loadViewsFrom($view_path, 'log');
|
||||||
|
|
||||||
|
@@ -276,7 +276,6 @@ class AgentController extends Controller
|
|||||||
$user->id;
|
$user->id;
|
||||||
$user->delete();
|
$user->delete();
|
||||||
throw new \Exception($error);
|
throw new \Exception($error);
|
||||||
|
|
||||||
return redirect('agents')->with('success', Lang::get('lang.agent_deleted_sucessfully'));
|
return redirect('agents')->with('success', Lang::get('lang.agent_deleted_sucessfully'));
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
return redirect('agents')->with('fails', $error);
|
return redirect('agents')->with('fails', $error);
|
||||||
|
@@ -639,7 +639,8 @@ class EmailsController extends Controller
|
|||||||
$controller->fetch($email);
|
$controller->fetch($email);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function checkMail($request) {
|
public function checkMail($request)
|
||||||
|
{
|
||||||
$mailservice_id = $request->input('sending_protocol');
|
$mailservice_id = $request->input('sending_protocol');
|
||||||
$driver = $this->getDriver($mailservice_id);
|
$driver = $this->getDriver($mailservice_id);
|
||||||
$username = $request->input('email_address');
|
$username = $request->input('email_address');
|
||||||
@@ -657,6 +658,7 @@ class EmailsController extends Controller
|
|||||||
$transport->setPassword($password);
|
$transport->setPassword($password);
|
||||||
$mailer = \Swift_Mailer::newInstance($transport);
|
$mailer = \Swift_Mailer::newInstance($transport);
|
||||||
$mailer->getTransport()->start();
|
$mailer->getTransport()->start();
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -997,7 +997,6 @@ class SettingsController extends Controller
|
|||||||
$number .= '0';
|
$number .= '0';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if ($array_format[$i] !== '$' && $array_format[$i] !== '#') {
|
if ($array_format[$i] !== '$' && $array_format[$i] !== '#') {
|
||||||
$number .= $array_format[$i];
|
$number .= $array_format[$i];
|
||||||
}
|
}
|
||||||
|
@@ -153,7 +153,6 @@ $users = DB::table('team_assign_agent')->select('team_assign_agent.id', 'team_as
|
|||||||
return $full_name;
|
return $full_name;
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
->addColumn('active', function ($model) {
|
->addColumn('active', function ($model) {
|
||||||
if ($model->active == '1') {
|
if ($model->active == '1') {
|
||||||
$role = "<a class='btn btn-success btn-xs'>".'Active'.'</a>';
|
$role = "<a class='btn btn-success btn-xs'>".'Active'.'</a>';
|
||||||
@@ -164,7 +163,6 @@ $users = DB::table('team_assign_agent')->select('team_assign_agent.id', 'team_as
|
|||||||
return $role;
|
return $role;
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
->addColumn('assign_group', function ($model) {
|
->addColumn('assign_group', function ($model) {
|
||||||
$group = Groups::whereId($model->assign_group)->first();
|
$group = Groups::whereId($model->assign_group)->first();
|
||||||
|
|
||||||
|
@@ -88,7 +88,6 @@ class ReportController extends Controller
|
|||||||
// $help_topic = Help_topic::where('status', '=', '1')->min('id');
|
// $help_topic = Help_topic::where('status', '=', '1')->min('id');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$return = '';
|
$return = '';
|
||||||
$last = '';
|
$last = '';
|
||||||
$j = 0;
|
$j = 0;
|
||||||
|
@@ -516,7 +516,6 @@ class TicketController extends Controller
|
|||||||
}
|
}
|
||||||
$ticket_id = $request->input('ticket_ID');
|
$ticket_id = $request->input('ticket_ID');
|
||||||
|
|
||||||
|
|
||||||
$tickets = Tickets::where('id', '=', $ticket_id)->first();
|
$tickets = Tickets::where('id', '=', $ticket_id)->first();
|
||||||
$tickets->isanswered = '1';
|
$tickets->isanswered = '1';
|
||||||
$tickets->save();
|
$tickets->save();
|
||||||
@@ -598,7 +597,6 @@ class TicketController extends Controller
|
|||||||
// sending attachments via php mail function
|
// sending attachments via php mail function
|
||||||
$message = '';
|
$message = '';
|
||||||
|
|
||||||
|
|
||||||
$collaborators = Ticket_Collaborator::where('ticket_id', '=', $ticket_id)->get();
|
$collaborators = Ticket_Collaborator::where('ticket_id', '=', $ticket_id)->get();
|
||||||
|
|
||||||
$emails = Emails::where('department', '=', $tickets->dept_id)->first();
|
$emails = Emails::where('department', '=', $tickets->dept_id)->first();
|
||||||
@@ -2145,7 +2143,6 @@ class TicketController extends Controller
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return redirect()->back()->with('Success', 'Thank you for your rating!');
|
return redirect()->back()->with('Success', 'Thank you for your rating!');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -459,7 +459,6 @@ class UserController extends Controller
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if ($users->role == 'agent') {
|
if ($users->role == 'agent') {
|
||||||
if ($delete_all == null) {
|
if ($delete_all == null) {
|
||||||
$UserEmail = Input::get('assign_to');
|
$UserEmail = Input::get('assign_to');
|
||||||
|
@@ -150,7 +150,7 @@ class AuthController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function postRegister(User $user, RegisterRequest $request)
|
public function postRegister(User $user, RegisterRequest $request)
|
||||||
{
|
{
|
||||||
try{
|
try {
|
||||||
$request_array = $request->input();
|
$request_array = $request->input();
|
||||||
$password = Hash::make($request->input('password'));
|
$password = Hash::make($request->input('password'));
|
||||||
$user->password = $password;
|
$user->password = $password;
|
||||||
@@ -162,7 +162,7 @@ class AuthController extends Controller
|
|||||||
$user->email = $request->input('email');
|
$user->email = $request->input('email');
|
||||||
}
|
}
|
||||||
if ($request_array['mobile'] == '') {
|
if ($request_array['mobile'] == '') {
|
||||||
$user->mobile = null;
|
$user->mobile = null;
|
||||||
} else {
|
} else {
|
||||||
$user->mobile = $request->input('mobile');
|
$user->mobile = $request->input('mobile');
|
||||||
}
|
}
|
||||||
@@ -188,19 +188,20 @@ class AuthController extends Controller
|
|||||||
if ($request_array['email'] != '') {
|
if ($request_array['email'] != '') {
|
||||||
$var = $this->PhpMailController->sendmail($from = $this->PhpMailController->mailfrom('1', '0'), $to = ['name' => $name, 'email' => $request->input('email')], $message = ['subject' => null, 'scenario' => 'registration'], $template_variables = ['user' => $name, 'email_address' => $request->input('email'), 'password_reset_link' => url('account/activate/'.$code)]);
|
$var = $this->PhpMailController->sendmail($from = $this->PhpMailController->mailfrom('1', '0'), $to = ['name' => $name, 'email' => $request->input('email')], $message = ['subject' => null, 'scenario' => 'registration'], $template_variables = ['user' => $name, 'email_address' => $request->input('email'), 'password_reset_link' => url('account/activate/'.$code)]);
|
||||||
}
|
}
|
||||||
if ($settings->status == 1 || $settings->status == '1') {
|
if ($settings->status == 1 || $settings->status == '1') {
|
||||||
if (count($sms) > 0) {
|
if (count($sms) > 0) {
|
||||||
if ($sms->status == 1 || $sms->status == '1') {
|
if ($sms->status == 1 || $sms->status == '1') {
|
||||||
$message12 = Lang::get('lang.activate_your_account_click_on_Link_that_send_to_your_mail_and_moble');
|
$message12 = Lang::get('lang.activate_your_account_click_on_Link_that_send_to_your_mail_and_moble');
|
||||||
} else {
|
|
||||||
$message12 = Lang::get('lang.activate_your_account_click_on_Link_that_send_to_your_mail_sms_plugin_inactive_or_not_setup');
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
$message12 = Lang::get('lang.activate_your_account_click_on_Link_that_send_to_your_mail_sms_plugin_inactive_or_not_setup');
|
$message12 = Lang::get('lang.activate_your_account_click_on_Link_that_send_to_your_mail_sms_plugin_inactive_or_not_setup');
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$message12 = Lang::get('lang.activate_your_account_click_on_Link_that_send_to_your_mail');
|
$message12 = Lang::get('lang.activate_your_account_click_on_Link_that_send_to_your_mail_sms_plugin_inactive_or_not_setup');
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
$message12 = Lang::get('lang.activate_your_account_click_on_Link_that_send_to_your_mail');
|
||||||
|
}
|
||||||
|
|
||||||
return redirect('home')->with('success', $message12);
|
return redirect('home')->with('success', $message12);
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
return redirect()->back()->with('fails', $e->getMessage());
|
return redirect()->back()->with('fails', $e->getMessage());
|
||||||
|
@@ -11,8 +11,8 @@ use App\Model\helpdesk\Settings\Email;
|
|||||||
use App\User;
|
use App\User;
|
||||||
use Auth;
|
use Auth;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Mail;
|
|
||||||
use Lang;
|
use Lang;
|
||||||
|
use Mail;
|
||||||
|
|
||||||
class PhpMailController extends Controller
|
class PhpMailController extends Controller
|
||||||
{
|
{
|
||||||
@@ -121,7 +121,6 @@ class PhpMailController extends Controller
|
|||||||
$email_address = $this->checkElement('email_address', $template_variables);
|
$email_address = $this->checkElement('email_address', $template_variables);
|
||||||
$user = $this->checkElement('user', $template_variables);
|
$user = $this->checkElement('user', $template_variables);
|
||||||
|
|
||||||
|
|
||||||
$status = \DB::table('settings_email')->first();
|
$status = \DB::table('settings_email')->first();
|
||||||
|
|
||||||
$template = TemplateType::where('name', '=', $template_type)->first();
|
$template = TemplateType::where('name', '=', $template_type)->first();
|
||||||
@@ -148,7 +147,6 @@ class PhpMailController extends Controller
|
|||||||
$subject = null;
|
$subject = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$variables = ['{!!$user!!}', '{!!$agent!!}', '{!!$ticket_number!!}', '{!!$content!!}', '{!!$from!!}', '{!!$ticket_agent_name!!}', '{!!$ticket_client_name!!}', '{!!$ticket_client_email!!}', '{!!$ticket_body!!}', '{!!$ticket_assigner!!}', '{!!$ticket_link_with_number!!}', '{!!$system_error!!}', '{!!$agent_sign!!}', '{!!$department_sign!!}', '{!!$password_reset_link!!}', '{!!$email_address!!}', '{!!$user_password!!}', '{!!$system_from!!}', '{!!$system_link!!}', '{!!$ticket_link!!}'];
|
$variables = ['{!!$user!!}', '{!!$agent!!}', '{!!$ticket_number!!}', '{!!$content!!}', '{!!$from!!}', '{!!$ticket_agent_name!!}', '{!!$ticket_client_name!!}', '{!!$ticket_client_email!!}', '{!!$ticket_body!!}', '{!!$ticket_assigner!!}', '{!!$ticket_link_with_number!!}', '{!!$system_error!!}', '{!!$agent_sign!!}', '{!!$department_sign!!}', '{!!$password_reset_link!!}', '{!!$email_address!!}', '{!!$user_password!!}', '{!!$system_from!!}', '{!!$system_link!!}', '{!!$ticket_link!!}'];
|
||||||
|
|
||||||
$data = [$user, $agent, $ticket_number, $content, $from, $ticket_agent_name, $ticket_client_name, $ticket_client_email, $ticket_body, $ticket_assigner, $ticket_link_with_number, $system_error, $agent_sign, $department_sign, $password_reset_link, $email_address, $user_password, $system_from, $system_link, $ticket_link];
|
$data = [$user, $agent, $ticket_number, $content, $from, $ticket_agent_name, $ticket_client_name, $ticket_client_email, $ticket_body, $ticket_assigner, $ticket_link_with_number, $system_error, $agent_sign, $department_sign, $password_reset_link, $email_address, $user_password, $system_from, $system_link, $ticket_link];
|
||||||
@@ -158,7 +156,6 @@ class PhpMailController extends Controller
|
|||||||
$contents = $messagebody;
|
$contents = $messagebody;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if ($template_type == 'ticket-reply-agent') {
|
if ($template_type == 'ticket-reply-agent') {
|
||||||
$line = '---Reply above this line--- <br/><br/>';
|
$line = '---Reply above this line--- <br/><br/>';
|
||||||
$content = $line.$messagebody;
|
$content = $line.$messagebody;
|
||||||
|
@@ -137,7 +137,6 @@ class UpgradeController extends Controller
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//Make the directory if we need to...
|
//Make the directory if we need to...
|
||||||
if (!is_dir($update.'/'.$thisFileDir.'/')) {
|
if (!is_dir($update.'/'.$thisFileDir.'/')) {
|
||||||
\File::makeDirectory($update.'/'.$thisFileDir, 0775, true, true);
|
\File::makeDirectory($update.'/'.$thisFileDir, 0775, true, true);
|
||||||
@@ -252,7 +251,6 @@ class UpgradeController extends Controller
|
|||||||
|
|
||||||
return redirect('dashboard')->with('fails', 'Could not find latest realeases from repository.');
|
return redirect('dashboard')->with('fails', 'Could not find latest realeases from repository.');
|
||||||
|
|
||||||
|
|
||||||
// else {
|
// else {
|
||||||
// return redirect()->back();
|
// return redirect()->back();
|
||||||
// }
|
// }
|
||||||
|
@@ -29,7 +29,6 @@ class MailRequest extends Request
|
|||||||
$email_address_rule = 'required|email|unique:emails,id,'.$id;
|
$email_address_rule = 'required|email|unique:emails,id,'.$id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$rules = [
|
$rules = [
|
||||||
'email_address' => $email_address_rule,
|
'email_address' => $email_address_rule,
|
||||||
'email_name' => 'required',
|
'email_name' => 'required',
|
||||||
|
@@ -30,7 +30,6 @@ class PriorityRequest extends Request
|
|||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
|
|
||||||
|
|
||||||
'priority' => 'required|max:10',
|
'priority' => 'required|max:10',
|
||||||
'status' => 'required',
|
'status' => 'required',
|
||||||
'priority_desc' => 'required|max:255',
|
'priority_desc' => 'required|max:255',
|
||||||
@@ -39,9 +38,6 @@ class PriorityRequest extends Request
|
|||||||
'priority_successfully_updated' => 'priority successfully updated',
|
'priority_successfully_updated' => 'priority successfully updated',
|
||||||
'priority_successfully_created!!!' => 'priority successfully created',
|
'priority_successfully_created!!!' => 'priority successfully created',
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -28,34 +28,29 @@ Route::group(['middleware' => ['web']], function () {
|
|||||||
| Here is defining entire routes for the Admin Panel
|
| Here is defining entire routes for the Admin Panel
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
Route::get('password/email/{one?}/{two?}/{three?}/{four?}/{five?}',['as' => 'password.email', 'uses' => 'Auth\PasswordController@getEmail']);
|
Route::get('password/email/{one?}/{two?}/{three?}/{four?}/{five?}', ['as' => 'password.email', 'uses' => 'Auth\PasswordController@getEmail']);
|
||||||
Breadcrumbs::register('password.email', function ($breadcrumbs) {
|
Breadcrumbs::register('password.email', function ($breadcrumbs) {
|
||||||
$breadcrumbs->parent('/');
|
$breadcrumbs->parent('/');
|
||||||
$breadcrumbs->push('Login', url('auth/login'));
|
$breadcrumbs->push('Login', url('auth/login'));
|
||||||
$breadcrumbs->push('Forgot Password', url('password/email'));
|
$breadcrumbs->push('Forgot Password', url('password/email'));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// register page
|
// register page
|
||||||
Route::get('auth/register/{one?}/{two?}/{three?}/{four?}/{five?}',['as' => 'auth.register', 'uses' => 'Auth\AuthController@getRegister']);
|
Route::get('auth/register/{one?}/{two?}/{three?}/{four?}/{five?}', ['as' => 'auth.register', 'uses' => 'Auth\AuthController@getRegister']);
|
||||||
Breadcrumbs::register('auth.register', function ($breadcrumbs) {
|
Breadcrumbs::register('auth.register', function ($breadcrumbs) {
|
||||||
$breadcrumbs->parent('/');
|
$breadcrumbs->parent('/');
|
||||||
$breadcrumbs->push('Login', url('auth/login'));
|
$breadcrumbs->push('Login', url('auth/login'));
|
||||||
$breadcrumbs->push('Create Account', url('auth/register'));
|
$breadcrumbs->push('Create Account', url('auth/register'));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// Auth login
|
// Auth login
|
||||||
Route::get('auth/login/{one?}/{two?}/{three?}/{four?}/{five?}',['as' => 'auth.login', 'uses' => 'Auth\AuthController@getLogin']);
|
Route::get('auth/login/{one?}/{two?}/{three?}/{four?}/{five?}', ['as' => 'auth.login', 'uses' => 'Auth\AuthController@getLogin']);
|
||||||
Breadcrumbs::register('auth.login', function ($breadcrumbs) {
|
Breadcrumbs::register('auth.login', function ($breadcrumbs) {
|
||||||
$breadcrumbs->parent('/');
|
$breadcrumbs->parent('/');
|
||||||
$breadcrumbs->push('Create Account', url('auth/register'));
|
$breadcrumbs->push('Create Account', url('auth/register'));
|
||||||
$breadcrumbs->push('Login', url('auth/login'));
|
$breadcrumbs->push('Login', url('auth/login'));
|
||||||
|
});
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Route::get('account/activate/{token}', ['as' => 'account.activate', 'uses' => 'Auth\AuthController@accountActivate']);
|
Route::get('account/activate/{token}', ['as' => 'account.activate', 'uses' => 'Auth\AuthController@accountActivate']);
|
||||||
Route::get('getmail/{token}', 'Auth\AuthController@getMail');
|
Route::get('getmail/{token}', 'Auth\AuthController@getMail');
|
||||||
Route::get('verify-otp', ['as' => 'otp-verification', 'uses' => 'Auth\AuthController@getVerifyOTP']);
|
Route::get('verify-otp', ['as' => 'otp-verification', 'uses' => 'Auth\AuthController@getVerifyOTP']);
|
||||||
@@ -1194,8 +1189,6 @@ Route::group(['middleware' => ['web']], function () {
|
|||||||
$api_control->ticketDetailEvent($details);
|
$api_control->ticketDetailEvent($details);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Route::get('test', ['as' => 'test', 'uses' => 'Common\PushNotificationController@response']);
|
Route::get('test', ['as' => 'test', 'uses' => 'Common\PushNotificationController@response']);
|
||||||
|
|
||||||
Route::get('mail/config/service', ['as' => 'mail.config.service', 'uses' => 'Job\MailController@serviceForm']);
|
Route::get('mail/config/service', ['as' => 'mail.config.service', 'uses' => 'Job\MailController@serviceForm']);
|
||||||
|
@@ -8,11 +8,10 @@ use Illuminate\Contracts\Queue\ShouldQueue;
|
|||||||
use Illuminate\Queue\InteractsWithQueue;
|
use Illuminate\Queue\InteractsWithQueue;
|
||||||
use Illuminate\Queue\SerializesModels;
|
use Illuminate\Queue\SerializesModels;
|
||||||
|
|
||||||
class SendEmail extends Job implements SelfHandling,ShouldQueue
|
class SendEmail extends Job implements SelfHandling, ShouldQueue
|
||||||
{
|
{
|
||||||
use InteractsWithQueue,SerializesModels;
|
use InteractsWithQueue,SerializesModels;
|
||||||
|
|
||||||
|
|
||||||
protected $from;
|
protected $from;
|
||||||
protected $to;
|
protected $to;
|
||||||
protected $message;
|
protected $message;
|
||||||
|
@@ -40,9 +40,9 @@ class QueueService extends Model
|
|||||||
public function getStatus()
|
public function getStatus()
|
||||||
{
|
{
|
||||||
$status = $this->attributes['status'];
|
$status = $this->attributes['status'];
|
||||||
$html = "<span style='color:red'>".Lang::get('lang.inactive')."</span>";
|
$html = "<span style='color:red'>".Lang::get('lang.inactive').'</span>';
|
||||||
if ($status == 1) {
|
if ($status == 1) {
|
||||||
$html = "<span style='color:green'>".Lang::get('lang.active')."</span>";
|
$html = "<span style='color:green'>".Lang::get('lang.active').'</span>';
|
||||||
}
|
}
|
||||||
|
|
||||||
return $html;
|
return $html;
|
||||||
@@ -52,9 +52,9 @@ class QueueService extends Model
|
|||||||
{
|
{
|
||||||
$id = $this->attributes['id'];
|
$id = $this->attributes['id'];
|
||||||
$status = $this->attributes['status'];
|
$status = $this->attributes['status'];
|
||||||
$html = '<a href='.url('queue/'.$id.'/activate')." class='btn btn-primary'>".Lang::get('lang.activate')."</a>";
|
$html = '<a href='.url('queue/'.$id.'/activate')." class='btn btn-primary'>".Lang::get('lang.activate').'</a>';
|
||||||
if ($status == 1) {
|
if ($status == 1) {
|
||||||
$html = "<a href='#' class='btn btn-primary' disabled>".Lang::get('lang.activate')."</a>";
|
$html = "<a href='#' class='btn btn-primary' disabled>".Lang::get('lang.activate').'</a>';
|
||||||
}
|
}
|
||||||
|
|
||||||
return $html;
|
return $html;
|
||||||
|
@@ -139,7 +139,6 @@ return [
|
|||||||
* Laravel Framework Service Providers...
|
* Laravel Framework Service Providers...
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
'Illuminate\Auth\AuthServiceProvider',
|
'Illuminate\Auth\AuthServiceProvider',
|
||||||
'Illuminate\Bus\BusServiceProvider',
|
'Illuminate\Bus\BusServiceProvider',
|
||||||
'Illuminate\Cache\CacheServiceProvider',
|
'Illuminate\Cache\CacheServiceProvider',
|
||||||
@@ -186,8 +185,6 @@ return [
|
|||||||
Laravel\Socialite\SocialiteServiceProvider::class,
|
Laravel\Socialite\SocialiteServiceProvider::class,
|
||||||
App\FaveoLog\LaravelLogViewerServiceProvider::class,
|
App\FaveoLog\LaravelLogViewerServiceProvider::class,
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
],
|
],
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
@@ -36,7 +36,6 @@ return [
|
|||||||
'image/gif',
|
'image/gif',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
||||||
// valid file mimetypes (only when '/laravel-filemanager?type=Files')
|
// valid file mimetypes (only when '/laravel-filemanager?type=Files')
|
||||||
'valid_file_mimetypes' => [
|
'valid_file_mimetypes' => [
|
||||||
'image/jpeg',
|
'image/jpeg',
|
||||||
|
@@ -62,5 +62,4 @@ return [
|
|||||||
'redirect' => '', //'http://localhost/FaveoVersions/faveo-helpdesk/public/social/login/bitbucket', //redirect
|
'redirect' => '', //'http://localhost/FaveoVersions/faveo-helpdesk/public/social/login/bitbucket', //redirect
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@@ -1985,11 +1985,8 @@ class DatabaseSeeder extends Seeder
|
|||||||
'numcode' => '716',
|
'numcode' => '716',
|
||||||
'phonecode' => '263', ]);
|
'phonecode' => '263', ]);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Security::create(['id' => '1', 'lockout_message' => 'You have been locked out of application due to too many failed login attempts.', 'backlist_offender' => '0', 'backlist_threshold' => '15', 'lockout_period' => '15', 'days_to_keep_logs' => '0']);
|
Security::create(['id' => '1', 'lockout_message' => 'You have been locked out of application due to too many failed login attempts.', 'backlist_offender' => '0', 'backlist_threshold' => '15', 'lockout_period' => '15', 'days_to_keep_logs' => '0']);
|
||||||
|
|
||||||
|
|
||||||
TemplateSet::create(['id' => '1', 'name' => 'default', 'active' => '1']);
|
TemplateSet::create(['id' => '1', 'name' => 'default', 'active' => '1']);
|
||||||
|
|
||||||
TemplateType::create(['id' => '1', 'name' => 'assign-ticket']);
|
TemplateType::create(['id' => '1', 'name' => 'assign-ticket']);
|
||||||
@@ -2006,7 +2003,6 @@ class DatabaseSeeder extends Seeder
|
|||||||
TemplateType::create(['id' => '12', 'name' => 'team_assign_ticket']);
|
TemplateType::create(['id' => '12', 'name' => 'team_assign_ticket']);
|
||||||
TemplateType::create(['id' => '13', 'name' => 'reset_new_password']);
|
TemplateType::create(['id' => '13', 'name' => 'reset_new_password']);
|
||||||
|
|
||||||
|
|
||||||
Template::create(['id' => '1', 'variable' => '0', 'name' => 'This template is for sending notice to agent when ticket is assigned to them', 'type' => '1', 'message' => '<div>Hello {!!$ticket_agent_name!!},<br /><br /><b>Ticket No:</b> {!!$ticket_number!!}<br />Has been assigned to you by {!!$ticket_assigner!!} <br/> Please check and resppond on the ticket.<br /> Link: {!!$ticket_link!!}<br /><br />Thank You<br />Kind Regards,<br /> {!!$system_from!!}</div>', 'set_id' => '1']);
|
Template::create(['id' => '1', 'variable' => '0', 'name' => 'This template is for sending notice to agent when ticket is assigned to them', 'type' => '1', 'message' => '<div>Hello {!!$ticket_agent_name!!},<br /><br /><b>Ticket No:</b> {!!$ticket_number!!}<br />Has been assigned to you by {!!$ticket_assigner!!} <br/> Please check and resppond on the ticket.<br /> Link: {!!$ticket_link!!}<br /><br />Thank You<br />Kind Regards,<br /> {!!$system_from!!}</div>', 'set_id' => '1']);
|
||||||
Template::create(['id' => '2', 'variable' => '1', 'name' => 'This template is for sending notice to client with ticket link to check ticket without logging in to system', 'type' => '2', 'subject' => 'Check your Ticket', 'message' => '<div>Hello {!!$user!!},<br/><br/>Click the link below to view your requested ticket<br/> {!!$ticket_link_with_number!!}<br/><br/>Kind Regards,<br/> {!!$system_from!!}</div>', 'set_id' => '1']);
|
Template::create(['id' => '2', 'variable' => '1', 'name' => 'This template is for sending notice to client with ticket link to check ticket without logging in to system', 'type' => '2', 'subject' => 'Check your Ticket', 'message' => '<div>Hello {!!$user!!},<br/><br/>Click the link below to view your requested ticket<br/> {!!$ticket_link_with_number!!}<br/><br/>Kind Regards,<br/> {!!$system_from!!}</div>', 'set_id' => '1']);
|
||||||
Template::create(['id' => '3', 'variable' => '0', 'name' => 'This template is for sending notice to client when ticket status is changed to close', 'type' => '3', 'message' => '<div>Hello,<br/><br/>This message is regarding your ticket ID {!!$ticket_number!!}. We are changing the status of this ticket to "Closed" as the issue appears to be resolved.<br/><br/>Thank you<br/>Kind regards,<br/> {!!$system_from!!}</div>', 'set_id' => '1']);
|
Template::create(['id' => '3', 'variable' => '0', 'name' => 'This template is for sending notice to client when ticket status is changed to close', 'type' => '3', 'message' => '<div>Hello,<br/><br/>This message is regarding your ticket ID {!!$ticket_number!!}. We are changing the status of this ticket to "Closed" as the issue appears to be resolved.<br/><br/>Thank you<br/>Kind regards,<br/> {!!$system_from!!}</div>', 'set_id' => '1']);
|
||||||
@@ -2021,7 +2017,6 @@ class DatabaseSeeder extends Seeder
|
|||||||
Template::create(['id' => '12', 'variable' => '1', 'name' => 'This template is for sending notice to team when ticket is assigned to team', 'type' => '12', 'message' => '<div>Hello {!!$ticket_agent_name!!},<br /><br /><b>Ticket No:</b> {!!$ticket_number!!}<br />Has been assigned to your team : {!!$team!!} by {!!$ticket_assigner!!} <br /><br />Thank You<br />Kind Regards,<br />{!!$system_from!!}</div>', 'set_id' => '1']);
|
Template::create(['id' => '12', 'variable' => '1', 'name' => 'This template is for sending notice to team when ticket is assigned to team', 'type' => '12', 'message' => '<div>Hello {!!$ticket_agent_name!!},<br /><br /><b>Ticket No:</b> {!!$ticket_number!!}<br />Has been assigned to your team : {!!$team!!} by {!!$ticket_assigner!!} <br /><br />Thank You<br />Kind Regards,<br />{!!$system_from!!}</div>', 'set_id' => '1']);
|
||||||
Template::create(['id' => '13', 'variable' => '1', 'name' => 'This template is for sending notice to client when password is changed', 'type' => '13', 'subject' => 'Verify your email address', 'message' => 'Hello {!!$user!!},<br /><br />Your password is successfully changed.Your new password is : {!!$user_password!!}<br /><br />Thank You.<br /><br />Kind Regards,<br /> {!!$system_from!!}', 'set_id' => '1']);
|
Template::create(['id' => '13', 'variable' => '1', 'name' => 'This template is for sending notice to client when password is changed', 'type' => '13', 'subject' => 'Verify your email address', 'message' => 'Hello {!!$user!!},<br /><br />Your password is successfully changed.Your new password is : {!!$user_password!!}<br /><br />Thank You.<br /><br />Kind Regards,<br /> {!!$system_from!!}', 'set_id' => '1']);
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* All the common settings will be listed here
|
* All the common settings will be listed here
|
||||||
*/
|
*/
|
||||||
@@ -2038,7 +2033,6 @@ class DatabaseSeeder extends Seeder
|
|||||||
Rating::create(['id' => '1', 'name' => 'OverAll Satisfaction', 'display_order' => '1', 'allow_modification' => '1', 'rating_scale' => '5', 'rating_area' => 'Helpdesk Area']);
|
Rating::create(['id' => '1', 'name' => 'OverAll Satisfaction', 'display_order' => '1', 'allow_modification' => '1', 'rating_scale' => '5', 'rating_area' => 'Helpdesk Area']);
|
||||||
Rating::create(['id' => '2', 'name' => 'Reply Rating', 'display_order' => '1', 'allow_modification' => '1', 'rating_scale' => '5', 'rating_area' => 'Comment Area']);
|
Rating::create(['id' => '2', 'name' => 'Reply Rating', 'display_order' => '1', 'allow_modification' => '1', 'rating_scale' => '5', 'rating_area' => 'Comment Area']);
|
||||||
|
|
||||||
|
|
||||||
Limit_Login::create(['id' => '1']);
|
Limit_Login::create(['id' => '1']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -948,8 +948,6 @@ return [
|
|||||||
'reply_content_is_a_required_field' => 'Reply content is a required field',
|
'reply_content_is_a_required_field' => 'Reply content is a required field',
|
||||||
'internal_content_is_a_required_field' => 'Internal content is a required field',
|
'internal_content_is_a_required_field' => 'Internal content is a required field',
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|-----------------------------------------------
|
|-----------------------------------------------
|
||||||
| Profile
|
| Profile
|
||||||
@@ -1248,7 +1246,6 @@ return [
|
|||||||
'manage_status' => 'Manage status',
|
'manage_status' => 'Manage status',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
|
|
||||||
|
|
||||||
'auto_close_workflow' => 'Auto-close workflow',
|
'auto_close_workflow' => 'Auto-close workflow',
|
||||||
'close_ticket_workflow_settings' => 'Close ticket workflow settings',
|
'close_ticket_workflow_settings' => 'Close ticket workflow settings',
|
||||||
'successfully_saved_your_settings' => 'Successfully saved your settings',
|
'successfully_saved_your_settings' => 'Successfully saved your settings',
|
||||||
@@ -1547,10 +1544,10 @@ return [
|
|||||||
'select_another_agent' => 'Select another agent',
|
'select_another_agent' => 'Select another agent',
|
||||||
'agent_delete_successfully_and_ticket_assign_to_another_agent' => 'Agent deleted successfully and ticket assigned to another agent',
|
'agent_delete_successfully_and_ticket_assign_to_another_agent' => 'Agent deleted successfully and ticket assigned to another agent',
|
||||||
//login,registration
|
//login,registration
|
||||||
'enter_your_email_here'=>'Enter your email here',
|
'enter_your_email_here'=> 'Enter your email here',
|
||||||
|
|
||||||
/*********** Updated 3-12-2016 **********/
|
/*********** Updated 3-12-2016 **********/
|
||||||
'activate' => 'Activate',
|
'activate' => 'Activate',
|
||||||
'system-email-not-configured' => 'We are unable to process email request as the system has no configured email for sending mails. Please contact and report system admin.',
|
'system-email-not-configured' => 'We are unable to process email request as the system has no configured email for sending mails. Please contact and report system admin.',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@@ -11,12 +11,12 @@
|
|||||||
|--------------------------------------------------------------------------------
|
|--------------------------------------------------------------------------------
|
||||||
| Added by :
|
| Added by :
|
||||||
| translated : [NO/YES]
|
| translated : [NO/YES]
|
||||||
| Added on :
|
| Added on :
|
||||||
*/
|
*/
|
||||||
return [
|
return [
|
||||||
/*
|
/*
|
||||||
|----------------------------------------------------------------------------------------
|
|----------------------------------------------------------------------------------------
|
||||||
| Authentication Pages [French(fr)]
|
| Authentication Pages [French(fr)]
|
||||||
| 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 French. You are free to change them to anything you want to
|
| some words in view to French. 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.
|
||||||
@@ -35,18 +35,18 @@ return [
|
|||||||
'required-error' => 'Merci de renseigner les champs obligatoires',
|
'required-error' => 'Merci de renseigner les champs obligatoires',
|
||||||
'invalid' => 'Identifiant utilisateur ou mot de passe incorrect',
|
'invalid' => 'Identifiant utilisateur ou mot de passe incorrect',
|
||||||
'sorry_something_went_wrong' => 'Désolé, un problème est survenu',
|
'sorry_something_went_wrong' => 'Désolé, un problème est survenu',
|
||||||
'were_working_on_it_and_well_get_it_fixed_as_soon_as_we_can' => "Nous travaillons au problème et nous allons corriger dès que possible.",
|
'were_working_on_it_and_well_get_it_fixed_as_soon_as_we_can' => 'Nous travaillons au problème et nous allons corriger dès que possible.',
|
||||||
'we_are_sorry_but_the_page_you_are_looking_for_can_not_be_found' => 'Nous sommes désolés, mais la page que vous recherchez est inconnue.',
|
'we_are_sorry_but_the_page_you_are_looking_for_can_not_be_found' => 'Nous sommes désolés, mais la page que vous recherchez est inconnue.',
|
||||||
'go_back' => 'Retour',
|
'go_back' => 'Retour',
|
||||||
'the_board_is_offline' => 'Le suivi est hors ligne',
|
'the_board_is_offline' => 'Le suivi est hors ligne',
|
||||||
'error_establishing_connection_to_database' => 'Erreur de connexion à la base de données',
|
'error_establishing_connection_to_database' => 'Erreur de connexion à la base de données',
|
||||||
'unauthorized_access' => 'Accès non autorisé',
|
'unauthorized_access' => 'Accès non autorisé',
|
||||||
'not-autherised' => 'Vous n\'êtes pas autorisé',
|
'not-autherised' => 'Vous n\'êtes pas autorisé',
|
||||||
'otp-not-matched' => 'Oops! Le code OTP que vous avez saisi ne correspond pas avec celui que nous vous avons envoyé.',
|
'otp-not-matched' => 'Oops! Le code OTP que vous avez saisi ne correspond pas avec celui que nous vous avons envoyé.',
|
||||||
'otp-invalid' => 'Le code OTP doit avoir 6 numéros.',
|
'otp-invalid' => 'Le code OTP doit avoir 6 numéros.',
|
||||||
'otp-input-title' => 'Saisir 6 numéro pour le code OTP.',
|
'otp-input-title' => 'Saisir 6 numéro pour le code OTP.',
|
||||||
'otp-expired' => 'Votre code OTP a été périmé.<br/> Cliquer pour "Renvoyer un code OTP" et recevoir un nouveau code OTP par téléphone.',
|
'otp-expired' => 'Votre code OTP a été périmé.<br/> Cliquer pour "Renvoyer un code OTP" et recevoir un nouveau code OTP par téléphone.',
|
||||||
'resend-otp-title' => 'Clique ici pour renvoyer un code OTP',
|
'resend-otp-title' => 'Clique ici pour renvoyer un code OTP',
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| Login Page
|
| Login Page
|
||||||
@@ -63,50 +63,50 @@ return [
|
|||||||
'theirisproblem' => 'Il y a eu un problème avec votre saisie',
|
'theirisproblem' => 'Il y a eu un problème avec votre saisie',
|
||||||
'login' => 'Identifiant',
|
'login' => 'Identifiant',
|
||||||
|
|
||||||
'e-mail' => 'Email',
|
'e-mail' => 'Email',
|
||||||
'reg_new_member' => 'Inscrivez-vous',
|
'reg_new_member' => 'Inscrivez-vous',
|
||||||
'this_account_is_currently_inactive' => 'Ce compte est actuellement inactif!',
|
'this_account_is_currently_inactive' => 'Ce compte est actuellement inactif!',
|
||||||
'not-registered' => 'Email/identifiant n\'est pas enregistré',
|
'not-registered' => 'Email/identifiant n\'est pas enregistré',
|
||||||
'verify' => 'Verification',
|
'verify' => 'Verification',
|
||||||
'enter-otp' => 'Entrer code OTP',
|
'enter-otp' => 'Entrer code OTP',
|
||||||
'did-not-recive-code' => 'Vous n\'avez pas reçu votre code?',
|
'did-not-recive-code' => 'Vous n\'avez pas reçu votre code?',
|
||||||
'resend_otp' => 'Renvoyer code OTP',
|
'resend_otp' => 'Renvoyer code OTP',
|
||||||
'verify-screen-msg' => 'Votre compte est actuellement inactif.<br/>Pour activer votre compte, merci de saisir le code OTP que nous vous avons envotyé',
|
'verify-screen-msg' => 'Votre compte est actuellement inactif.<br/>Pour activer votre compte, merci de saisir le code OTP que nous vous avons envotyé',
|
||||||
'otp-sent' => 'Nous vous avons envoyé un code OTP à voter mobile.',
|
'otp-sent' => 'Nous vous avons envoyé un code OTP à voter mobile.',
|
||||||
'verify-number' => 'Verifier les chiffres',
|
'verify-number' => 'Verifier les chiffres',
|
||||||
'get-verify-message' => 'Entrer le code OTP que nous vous avons envoyé à votre nouveau numéro.',
|
'get-verify-message' => 'Entrer le code OTP que nous vous avons envoyé à votre nouveau numéro.',
|
||||||
'number-verification-sussessfull' => 'Votre numéro a été vérifié avec succès, merci d\'attendre la mise à jour de votre profile.',
|
'number-verification-sussessfull' => 'Votre numéro a été vérifié avec succès, merci d\'attendre la mise à jour de votre profile.',
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| Register Page
|
| Register Page
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
*/
|
*/
|
||||||
'registration' => 'Inscription',
|
'registration' => 'Inscription',
|
||||||
'full_name' => 'Nom complet',
|
'full_name' => 'Nom complet',
|
||||||
'firstname' => 'Prénom',
|
'firstname' => 'Prénom',
|
||||||
'lastname' => 'Nom',
|
'lastname' => 'Nom',
|
||||||
'profilepicture' => 'Photo de profil',
|
'profilepicture' => 'Photo de profil',
|
||||||
'oldpassword' => 'Ancien mot de passe',
|
'oldpassword' => 'Ancien mot de passe',
|
||||||
'newpassword' => 'Nouveau mot de passe',
|
'newpassword' => 'Nouveau mot de passe',
|
||||||
'retype_password' => 'Retapez le mot de passe',
|
'retype_password' => 'Retapez le mot de passe',
|
||||||
'i_agree_to_the' => 'J\'accepte les',
|
'i_agree_to_the' => 'J\'accepte les',
|
||||||
'terms' => 'termes',
|
'terms' => 'termes',
|
||||||
'register' => 'S\'Inscrir',
|
'register' => 'S\'Inscrir',
|
||||||
'i_already_have_a_membership' => 'Je suis déjà inscrit',
|
'i_already_have_a_membership' => 'Je suis déjà inscrit',
|
||||||
'see-profile1' => 'Cliquez ici pour voir le profil de',
|
'see-profile1' => 'Cliquez ici pour voir le profil de',
|
||||||
'see-profile2' => 'Afficher le profile',
|
'see-profile2' => 'Afficher le profile',
|
||||||
'activate_your_account_click_on_Link_that_send_to_your_mail' => 'Activez votre compte ! Cliquez sur le lien envoyer dans votre messagerie',
|
'activate_your_account_click_on_Link_that_send_to_your_mail' => 'Activez votre compte ! Cliquez sur le lien envoyer dans votre messagerie',
|
||||||
'activate_your_account_click_on_Link_that_send_to_your_mail_and_moble' => 'Activez votre compte ! Cliquez sur le lien envoyer dans votre messagerie ou connectez vous à votre compte et saisissez le code OTP code que nous vous avons envoyé à votre mobile',
|
'activate_your_account_click_on_Link_that_send_to_your_mail_and_moble' => 'Activez votre compte ! Cliquez sur le lien envoyer dans votre messagerie ou connectez vous à votre compte et saisissez le code OTP code que nous vous avons envoyé à votre mobile',
|
||||||
'activate_your_account_click_on_Link_that_send_to_your_mail_sms_plugin_inactive_or_not_setup' => 'Compte créé, Veuillez contacter l\'administrateur du système car nous n\'avons pas pu envoyer le code OTP à votre mobile et envoyez un email à votre adresse.',
|
'activate_your_account_click_on_Link_that_send_to_your_mail_sms_plugin_inactive_or_not_setup' => 'Compte créé, Veuillez contacter l\'administrateur du système car nous n\'avons pas pu envoyer le code OTP à votre mobile et envoyez un email à votre adresse.',
|
||||||
'this_field_do_not_match_our_records' => 'Ce champ ne correspondent pas à nos enregistrements',
|
'this_field_do_not_match_our_records' => 'Ce champ ne correspondent pas à nos enregistrements',
|
||||||
'we_have_e-mailed_your_password_reset_link' => 'Nous avons envoyé le lien de réinitialisation de mot de passe!',
|
'we_have_e-mailed_your_password_reset_link' => 'Nous avons envoyé le lien de réinitialisation de mot de passe!',
|
||||||
"we_can't_find_a_user_with_that_e-mail_address" => "Nous ne pouvons pas trouver un utilisateur avec cette adresse email",
|
"we_can't_find_a_user_with_that_e-mail_address" => 'Nous ne pouvons pas trouver un utilisateur avec cette adresse email',
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| Reset Password Page
|
| Reset Password Page
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
*/
|
*/
|
||||||
'reset_password' => 'Réinitialiser le mot de passe',
|
'reset_password' => 'Réinitialiser le mot de passe',
|
||||||
'password-reset-successfully' => 'Votre mot de passe a été réinitialisé. Connectez vous à votre compte avec le nouveau mot de passe',
|
'password-reset-successfully' => 'Votre mot de passe a été réinitialisé. Connectez vous à votre compte avec le nouveau mot de passe',
|
||||||
'password-can-not-reset' => 'Nous n\'avons pas réinitialisé votre mot de passe, Merci de ré-essayer plus tard.',
|
'password-can-not-reset' => 'Nous n\'avons pas réinitialisé votre mot de passe, Merci de ré-essayer plus tard.',
|
||||||
/*
|
/*
|
||||||
@@ -143,7 +143,7 @@ return [
|
|||||||
'create_email' => 'Créer un Email',
|
'create_email' => 'Créer un Email',
|
||||||
'email_address' => 'Adresse Email',
|
'email_address' => 'Adresse Email',
|
||||||
'email_name' => 'Nom Email',
|
'email_name' => 'Nom Email',
|
||||||
'email_to' => 'Email à',
|
'email_to' => 'Email à',
|
||||||
'help_topic' => 'Thème de support',
|
'help_topic' => 'Thème de support',
|
||||||
'auto_response' => 'Réponse automatique',
|
'auto_response' => 'Réponse automatique',
|
||||||
'host_name' => 'Nom d\'hôte',
|
'host_name' => 'Nom d\'hôte',
|
||||||
@@ -215,7 +215,7 @@ return [
|
|||||||
'Assign ticket' => 'Ticket assigné à un agent',
|
'Assign ticket' => 'Ticket assigné à un agent',
|
||||||
'Create ticket' => 'Email envoyé au client pour la création du ticket réussi',
|
'Create ticket' => 'Email envoyé au client pour la création du ticket réussi',
|
||||||
'Check ticket' => 'si un client veut vérifier son ticket via le portail client alors un lien lui sera envoyé. Ce lien permet au client de voir les détails de son ticket, sans se connecter au système',
|
'Check ticket' => 'si un client veut vérifier son ticket via le portail client alors un lien lui sera envoyé. Ce lien permet au client de voir les détails de son ticket, sans se connecter au système',
|
||||||
'Ticket reply agent' => 'Une notification est envoyée à l\'email de l\'agent une fois que le client répond au ticket',
|
'Ticket reply agent' => 'Une notification est envoyée à l\'email de l\'agent une fois que le client répond au ticket',
|
||||||
'Registration notification' => 'Le mot de passe et le login sont envoyés par email lors de l\'inscription',
|
'Registration notification' => 'Le mot de passe et le login sont envoyés par email lors de l\'inscription',
|
||||||
'Reset password' => 'Email avec le lien de réinitialisation du mot de passe',
|
'Reset password' => 'Email avec le lien de réinitialisation du mot de passe',
|
||||||
'Error report' => 'Etat des erreurs',
|
'Error report' => 'Etat des erreurs',
|
||||||
@@ -355,7 +355,7 @@ return [
|
|||||||
'cron_notification' => 'Activer la notification cron',
|
'cron_notification' => 'Activer la notification cron',
|
||||||
'cron' => 'Ordonnancement de tâches informatiques',
|
'cron' => 'Ordonnancement de tâches informatiques',
|
||||||
'cron-jobs' => 'Tâches Cron',
|
'cron-jobs' => 'Tâches Cron',
|
||||||
'crone-url-message' => "Voici les URL des tâches du planificateur(cron job) de Faveo de votre système.",
|
'crone-url-message' => 'Voici les URL des tâches du planificateur(cron job) de Faveo de votre système.',
|
||||||
'clipboard-copy-message' => 'Copier dans le presse-papier',
|
'clipboard-copy-message' => 'Copier dans le presse-papier',
|
||||||
'click' => 'Cliquez ici',
|
'click' => 'Cliquez ici',
|
||||||
'check-cron-set' => 'Pour vérifier comment paramétrer les tâches cron sur votre serveur.',
|
'check-cron-set' => 'Pour vérifier comment paramétrer les tâches cron sur votre serveur.',
|
||||||
@@ -890,10 +890,9 @@ return [
|
|||||||
'there_are_agents_assigned_to_this_group_please_unassign_them_from_this_group_to_delete' => 'Il ya des agents assignés à ce groupe. Merci de les retirer de ce groupe pour pouvoir le supprimer',
|
'there_are_agents_assigned_to_this_group_please_unassign_them_from_this_group_to_delete' => 'Il ya des agents assignés à ce groupe. Merci de les retirer de ce groupe pour pouvoir le supprimer',
|
||||||
'group_cannot_delete' => 'Le groupe ne peut pas être supprimé',
|
'group_cannot_delete' => 'Le groupe ne peut pas être supprimé',
|
||||||
'group_deleted_successfully' => 'Groupe supprimé avec succès',
|
'group_deleted_successfully' => 'Groupe supprimé avec succès',
|
||||||
'group_cannot_delete' => 'Le groupe ne peut être supprimé',
|
'group_cannot_delete' => 'Le groupe ne peut être supprimé',
|
||||||
'failed_to_load_the_page' => 'Echec du chargement de la page',
|
'failed_to_load_the_page' => 'Echec du chargement de la page',
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| SMTP Page
|
| SMTP Page
|
||||||
@@ -968,8 +967,6 @@ return [
|
|||||||
'reply_content_is_a_required_field' => 'Le contenu de la réponse est un champ obligatoire',
|
'reply_content_is_a_required_field' => 'Le contenu de la réponse est un champ obligatoire',
|
||||||
'internal_content_is_a_required_field' => 'Le contenu interne est un champ obligatoire',
|
'internal_content_is_a_required_field' => 'Le contenu interne est un champ obligatoire',
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|-----------------------------------------------
|
|-----------------------------------------------
|
||||||
| Profile
|
| Profile
|
||||||
@@ -1268,7 +1265,6 @@ return [
|
|||||||
'manage_status' => 'Gérer statut',
|
'manage_status' => 'Gérer statut',
|
||||||
'notifications' => 'Notifications',
|
'notifications' => 'Notifications',
|
||||||
|
|
||||||
|
|
||||||
'auto_close_workflow' => 'Fermeture automatique du Workflow',
|
'auto_close_workflow' => 'Fermeture automatique du Workflow',
|
||||||
'close_ticket_workflow_settings' => 'Fermer les paramètres du Workflow de ticket',
|
'close_ticket_workflow_settings' => 'Fermer les paramètres du Workflow de ticket',
|
||||||
'successfully_saved_your_settings' => 'Paramètres enregistrés avec succès',
|
'successfully_saved_your_settings' => 'Paramètres enregistrés avec succès',
|
||||||
@@ -1551,27 +1547,27 @@ return [
|
|||||||
* User Module
|
* User Module
|
||||||
* --------------------------------------------------------------------------------------------
|
* --------------------------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
'agent_report' => 'Rapport Agent',
|
'agent_report' => 'Rapport Agent',
|
||||||
'assign_tickets' => 'Assigner tickets',
|
'assign_tickets' => 'Assigner tickets',
|
||||||
'delete_agent' => 'Supprimer agent',
|
'delete_agent' => 'Supprimer agent',
|
||||||
'delete_user' => 'Supprimer utilisateur',
|
'delete_user' => 'Supprimer utilisateur',
|
||||||
'confirm_deletion' => 'Confirmer suppression',
|
'confirm_deletion' => 'Confirmer suppression',
|
||||||
'delete_all_content' => 'Supprimer tous les éléments',
|
'delete_all_content' => 'Supprimer tous les éléments',
|
||||||
'agent_profile' => 'Profile Agent',
|
'agent_profile' => 'Profile Agent',
|
||||||
'change_role_to_admin' => 'Changer role pour administrateur',
|
'change_role_to_admin' => 'Changer role pour administrateur',
|
||||||
'change_role_to_user' => 'Changer role pour utilisateur',
|
'change_role_to_user' => 'Changer role pour utilisateur',
|
||||||
'change_role_to_agent' => 'Changer role pour agent',
|
'change_role_to_agent' => 'Changer role pour agent',
|
||||||
'change_password' => 'Changer mot de passe',
|
'change_password' => 'Changer mot de passe',
|
||||||
'role_change' => 'Changement de rôle',
|
'role_change' => 'Changement de rôle',
|
||||||
'generateur de mot de passe' => 'Password generator',
|
'generateur de mot de passe' => 'Password generator',
|
||||||
'depertment' => 'Departement',
|
'depertment' => 'Departement',
|
||||||
'duetoday' => 'Prévu aujourd\'hui',
|
'duetoday' => 'Prévu aujourd\'hui',
|
||||||
'today-due_tickets' => 'Tickets prévus aujourd\'hui',
|
'today-due_tickets' => 'Tickets prévus aujourd\'hui',
|
||||||
'password_change_successfully' => 'Mot de passe changé avec succès',
|
'password_change_successfully' => 'Mot de passe changé avec succès',
|
||||||
'role_change_successfully' => 'Role changé avec succès',
|
'role_change_successfully' => 'Role changé avec succès',
|
||||||
'user_delete_successfully' => 'Utilisateur supprimé avec succès',
|
'user_delete_successfully' => 'Utilisateur supprimé avec succès',
|
||||||
'agent_delete_successfully' => 'Agent supprimé avec succès',
|
'agent_delete_successfully' => 'Agent supprimé avec succès',
|
||||||
'select_another_agent' => 'Selectionner un autre agent',
|
'select_another_agent' => 'Selectionner un autre agent',
|
||||||
'agent_delete_successfully_and_ticket_assign_to_another_agent' => 'Agent supprimé avec succès et ticket assigné à un autre agent',
|
'agent_delete_successfully_and_ticket_assign_to_another_agent' => 'Agent supprimé avec succès et ticket assigné à un autre agent',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
|--------------------------------------------------------------------------------
|
|--------------------------------------------------------------------------------
|
||||||
| Added by :
|
| Added by :
|
||||||
| translated : [NO/YES]
|
| translated : [NO/YES]
|
||||||
| Added on :
|
| Added on :
|
||||||
*/
|
*/
|
||||||
|
|
||||||
return [
|
return [
|
||||||
@@ -83,26 +83,26 @@ return [
|
|||||||
| Register Page
|
| Register Page
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
*/
|
*/
|
||||||
'registration' => 'Registratie',
|
'registration' => 'Registratie',
|
||||||
'full_name' => 'Volledige naam',
|
'full_name' => 'Volledige naam',
|
||||||
'firstname' => 'Voornaam',
|
'firstname' => 'Voornaam',
|
||||||
'lastname' => 'Achternaam',
|
'lastname' => 'Achternaam',
|
||||||
'profilepicture' => 'Profielfoto',
|
'profilepicture' => 'Profielfoto',
|
||||||
'oldpassword' => 'Oude wachtwoord',
|
'oldpassword' => 'Oude wachtwoord',
|
||||||
'newpassword' => 'Nieuwe wachtwoord',
|
'newpassword' => 'Nieuwe wachtwoord',
|
||||||
'retype_password' => 'Herhaal wachtwoord',
|
'retype_password' => 'Herhaal wachtwoord',
|
||||||
'i_agree_to_the' => 'Ik ga akkoord met de',
|
'i_agree_to_the' => 'Ik ga akkoord met de',
|
||||||
'terms' => 'algemene voorwaarden',
|
'terms' => 'algemene voorwaarden',
|
||||||
'register' => 'Registreren',
|
'register' => 'Registreren',
|
||||||
'i_already_have_a_membership' => 'Ik heb al een profiel',
|
'i_already_have_a_membership' => 'Ik heb al een profiel',
|
||||||
'see-profile1' => 'Klik hier om dit te bekijken ',
|
'see-profile1' => 'Klik hier om dit te bekijken ',
|
||||||
'see-profile2' => 's profiel',
|
'see-profile2' => 's profiel',
|
||||||
'activate_your_account_click_on_Link_that_send_to_your_mail' => 'Activeer je account ! Klik op de link welke we naar je e-mailadres hebben gestuurd',
|
'activate_your_account_click_on_Link_that_send_to_your_mail' => 'Activeer je account ! Klik op de link welke we naar je e-mailadres hebben gestuurd',
|
||||||
'activate_your_account_click_on_Link_that_send_to_your_mail_and_moble' => 'Activeer je account ! Klik op de link welke we naar je e-mailadres hebben gestuur of login op je account en voer de OTP code in welke we naar je mobiele nummer hebben gestuurd.',
|
'activate_your_account_click_on_Link_that_send_to_your_mail_and_moble' => 'Activeer je account ! Klik op de link welke we naar je e-mailadres hebben gestuur of login op je account en voer de OTP code in welke we naar je mobiele nummer hebben gestuurd.',
|
||||||
'activate_your_account_click_on_Link_that_send_to_your_mail_sms_plugin_inactive_or_not_setup' => 'Account aangemaakt. Neem contact op met de systeembeheer want we konden geen OTP code naar je mobiele nummer verzenden, ook konden we geen e-mail versturen naar je e-mailadres.',
|
'activate_your_account_click_on_Link_that_send_to_your_mail_sms_plugin_inactive_or_not_setup' => 'Account aangemaakt. Neem contact op met de systeembeheer want we konden geen OTP code naar je mobiele nummer verzenden, ook konden we geen e-mail versturen naar je e-mailadres.',
|
||||||
'this_field_do_not_match_our_records' => 'Dit veld komt niet overeen met onze gegevens.',
|
'this_field_do_not_match_our_records' => 'Dit veld komt niet overeen met onze gegevens.',
|
||||||
'we_have_e-mailed_your_password_reset_link' => 'We hebben een link verstuurd om je wachtwoord te resetten!',
|
'we_have_e-mailed_your_password_reset_link' => 'We hebben een link verstuurd om je wachtwoord te resetten!',
|
||||||
"we_can't_find_a_user_with_that_e-mail_address" => 'We kunnen geen gebruiker met dat e-mailadres vinden.',
|
"we_can't_find_a_user_with_that_e-mail_address" => 'We kunnen geen gebruiker met dat e-mailadres vinden.',
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| Reset Password Page
|
| Reset Password Page
|
||||||
@@ -121,7 +121,7 @@ return [
|
|||||||
'send_password_reset_link' => 'Stuur wachtwoord reset link',
|
'send_password_reset_link' => 'Stuur wachtwoord reset link',
|
||||||
'enter_email_to_reset_password' => 'Voer een e-mailadres of mobiel nummer in om je wachtwoord te resetten',
|
'enter_email_to_reset_password' => 'Voer een e-mailadres of mobiel nummer in om je wachtwoord te resetten',
|
||||||
'link' => 'Link',
|
'link' => 'Link',
|
||||||
'email_or_mobile' => 'E-mailadres of mobiele telefoonnummer',
|
'email_or_mobile' => 'E-mailadres of mobiele telefoonnummer',
|
||||||
/*
|
/*
|
||||||
|----------------------------------------------------------------------------------------
|
|----------------------------------------------------------------------------------------
|
||||||
| Emails Pages [English(en)]
|
| Emails Pages [English(en)]
|
||||||
@@ -539,8 +539,8 @@ return [
|
|||||||
'plugin-info' => 'Ben je een programmeur? We moedigen je aan om je eigen plugins te schrijven en deze beschikbaar te maken voor de community.',
|
'plugin-info' => 'Ben je een programmeur? We moedigen je aan om je eigen plugins te schrijven en deze beschikbaar te maken voor de community.',
|
||||||
'plugin-info-pro' => 'Om de plugins te bekijken welke beschikbaar zijn bij de PRO versie van Faveo;',
|
'plugin-info-pro' => 'Om de plugins te bekijken welke beschikbaar zijn bij de PRO versie van Faveo;',
|
||||||
'click-here' => 'Klik hier',
|
'click-here' => 'Klik hier',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|----------------------------------------------------------------------------------------
|
|----------------------------------------------------------------------------------------
|
||||||
| Manage Pages [English(en)]
|
| Manage Pages [English(en)]
|
||||||
|----------------------------------------------------------------------------------------
|
|----------------------------------------------------------------------------------------
|
||||||
@@ -686,7 +686,7 @@ return [
|
|||||||
'are_you_sure_you_want_to_delete' => 'Weet je zeker dat je dit wil verwijderen?',
|
'are_you_sure_you_want_to_delete' => 'Weet je zeker dat je dit wil verwijderen?',
|
||||||
'close' => 'Sluiten',
|
'close' => 'Sluiten',
|
||||||
'instructions' => 'Instructies',
|
'instructions' => 'Instructies',
|
||||||
'instructions_on_creating_form' => "Selecteer hieronder welk soort veld je wil toevoegen. Vergeet niet om de veldopties in te stellen en scheidt de waarden met een komma. Als je klaar bent met het maken van het formulier kun je deze opslaan door te kiezen voor: Formulier opslaan",
|
'instructions_on_creating_form' => 'Selecteer hieronder welk soort veld je wil toevoegen. Vergeet niet om de veldopties in te stellen en scheidt de waarden met een komma. Als je klaar bent met het maken van het formulier kun je deze opslaan door te kiezen voor: Formulier opslaan',
|
||||||
'form_properties' => 'Eigenschappen formulier',
|
'form_properties' => 'Eigenschappen formulier',
|
||||||
'adding_fields' => 'Velden toevoegen',
|
'adding_fields' => 'Velden toevoegen',
|
||||||
'click_add_fields_button_to_add_fields' => "Klik op de knop <b>'Velden toevoegen'</b> om een veld toe te voegen",
|
'click_add_fields_button_to_add_fields' => "Klik op de knop <b>'Velden toevoegen'</b> om een veld toe te voegen",
|
||||||
@@ -1062,7 +1062,7 @@ return [
|
|||||||
'please_select_an_organization' => 'Selecteer een organisatie',
|
'please_select_an_organization' => 'Selecteer een organisatie',
|
||||||
'please_select_an_user' => 'Selecteer een gebruiker',
|
'please_select_an_user' => 'Selecteer een gebruiker',
|
||||||
'organization_profile' => 'Organisatie profiel',
|
'organization_profile' => 'Organisatie profiel',
|
||||||
'organization-s_head' => "Organisatie directeur",
|
'organization-s_head' => 'Organisatie directeur',
|
||||||
'select_department_manager' => 'Selecteer afdelingsmanager',
|
'select_department_manager' => 'Selecteer afdelingsmanager',
|
||||||
'select_organization_manager' => 'Selecteer organisatiemanager',
|
'select_organization_manager' => 'Selecteer organisatiemanager',
|
||||||
'users_of' => 'Gebruikers van',
|
'users_of' => 'Gebruikers van',
|
||||||
@@ -1389,7 +1389,7 @@ return [
|
|||||||
'password_updated_sucessfully' => 'Wachtwoord succesvol bijgewerkt',
|
'password_updated_sucessfully' => 'Wachtwoord succesvol bijgewerkt',
|
||||||
'password_was_not_updated_incorrect_old_password' => 'Wachtwoord niet bijgewerkt. Het oude wachtwoord klopt niet',
|
'password_was_not_updated_incorrect_old_password' => 'Wachtwoord niet bijgewerkt. Het oude wachtwoord klopt niet',
|
||||||
'there_is_no_such_ticket_number' => 'Dit ticket nummer bestaat niet',
|
'there_is_no_such_ticket_number' => 'Dit ticket nummer bestaat niet',
|
||||||
"email_didn't_match_with_ticket_number" => "E-mail adres hoort niet bij dit ticket nummer",
|
"email_didn't_match_with_ticket_number" => 'E-mail adres hoort niet bij dit ticket nummer',
|
||||||
'we_have_sent_you_a_link_by_email_please_click_on_that_link_to_view_ticket' => 'We hebben een link naar je e-mailadres gestuurd. Klik op de link in het bericht om je ticket te bekijken',
|
'we_have_sent_you_a_link_by_email_please_click_on_that_link_to_view_ticket' => 'We hebben een link naar je e-mailadres gestuurd. Klik op de link in het bericht om je ticket te bekijken',
|
||||||
'no_records_on_publish_time' => 'Geen informatie gevonden op dit tijdstip',
|
'no_records_on_publish_time' => 'Geen informatie gevonden op dit tijdstip',
|
||||||
'your_details_send_to_system' => 'Je informatie is naar het systeem verzonden',
|
'your_details_send_to_system' => 'Je informatie is naar het systeem verzonden',
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
|--------------------------------------------------------------------------------
|
|--------------------------------------------------------------------------------
|
||||||
| Added by :
|
| Added by :
|
||||||
| translated : [NO/YES]
|
| translated : [NO/YES]
|
||||||
| Added on :
|
| Added on :
|
||||||
*/
|
*/
|
||||||
return [
|
return [
|
||||||
|
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
|--------------------------------------------------------------------------------
|
|--------------------------------------------------------------------------------
|
||||||
| Added by :
|
| Added by :
|
||||||
| translated : [NO/YES]
|
| translated : [NO/YES]
|
||||||
| Added on :
|
| Added on :
|
||||||
*/
|
*/
|
||||||
return [
|
return [
|
||||||
|
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
|--------------------------------------------------------------------------------
|
|--------------------------------------------------------------------------------
|
||||||
| Added by :
|
| Added by :
|
||||||
| translated : [NO/YES]
|
| translated : [NO/YES]
|
||||||
| Added on :
|
| Added on :
|
||||||
*/
|
*/
|
||||||
return [
|
return [
|
||||||
|
|
||||||
|
@@ -12,7 +12,7 @@
|
|||||||
|--------------------------------------------------------------------------------
|
|--------------------------------------------------------------------------------
|
||||||
| Added by :
|
| Added by :
|
||||||
| translated : [NO/YES]
|
| translated : [NO/YES]
|
||||||
| Added on :
|
| Added on :
|
||||||
*/
|
*/
|
||||||
return [
|
return [
|
||||||
/*
|
/*
|
||||||
@@ -38,7 +38,7 @@ return [
|
|||||||
'required-error' => 'Preencha todos os campos obrigatórios',
|
'required-error' => 'Preencha todos os campos obrigatórios',
|
||||||
'invalid' => 'Usuário ou senha incorretos',
|
'invalid' => 'Usuário ou senha incorretos',
|
||||||
'sorry_something_went_wrong' => 'Desculpe, algo esta errado',
|
'sorry_something_went_wrong' => 'Desculpe, algo esta errado',
|
||||||
'were_working_on_it_and_well_get_it_fixed_as_soon_as_we_can' => "Estamos trabalhando para corrigir essa situação.",
|
'were_working_on_it_and_well_get_it_fixed_as_soon_as_we_can' => 'Estamos trabalhando para corrigir essa situação.',
|
||||||
'we_are_sorry_but_the_page_you_are_looking_for_can_not_be_found' => 'Desculpe, a página não pode ser encontrada.',
|
'we_are_sorry_but_the_page_you_are_looking_for_can_not_be_found' => 'Desculpe, a página não pode ser encontrada.',
|
||||||
'go_back' => 'Voltar',
|
'go_back' => 'Voltar',
|
||||||
'the_board_is_offline' => 'A página está Offline',
|
'the_board_is_offline' => 'A página está Offline',
|
||||||
@@ -83,8 +83,7 @@ return [
|
|||||||
'activate_your_account_click_on_Link_that_send_to_your_mail' => 'Ative sua conta ! Clique no link enviado para o seu e-mail',
|
'activate_your_account_click_on_Link_that_send_to_your_mail' => 'Ative sua conta ! Clique no link enviado para o seu e-mail',
|
||||||
'this_field_do_not_match_our_records' => 'Campo não correspondente.',
|
'this_field_do_not_match_our_records' => 'Campo não correspondente.',
|
||||||
'we_have_e-mailed_your_password_reset_link' => 'Enviamos um link para redefinir a senha!',
|
'we_have_e-mailed_your_password_reset_link' => 'Enviamos um link para redefinir a senha!',
|
||||||
"we_can't_find_a_user_with_that_e-mail_address" => "Nenhum usuário cadastrado com esse endereço de e-mail.",
|
"we_can't_find_a_user_with_that_e-mail_address" => 'Nenhum usuário cadastrado com esse endereço de e-mail.',
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
@@ -118,42 +117,42 @@ return [
|
|||||||
| Emails Create Page
|
| Emails Create Page
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
*/
|
*/
|
||||||
'emails' => 'E-mails',
|
'emails' => 'E-mails',
|
||||||
'incoming_emails' => 'Caixa de entrada',
|
'incoming_emails' => 'Caixa de entrada',
|
||||||
'reuired_authentication' => 'Requer autenticação',
|
'reuired_authentication' => 'Requer autenticação',
|
||||||
'fetching_email_via_imap' => 'Buscando e-mail via IMAP',
|
'fetching_email_via_imap' => 'Buscando e-mail via IMAP',
|
||||||
'create_email' => 'Criar E-mail',
|
'create_email' => 'Criar E-mail',
|
||||||
'email_address' => 'Endereço de E-mail',
|
'email_address' => 'Endereço de E-mail',
|
||||||
'email_name' => 'Nome de E-mail',
|
'email_name' => 'Nome de E-mail',
|
||||||
'help_topic' => 'Tópico de ajuda',
|
'help_topic' => 'Tópico de ajuda',
|
||||||
'auto_response' => 'Resposta automática',
|
'auto_response' => 'Resposta automática',
|
||||||
'host_name' => 'Nome do Host',
|
'host_name' => 'Nome do Host',
|
||||||
'port_number' => 'Número da Porta',
|
'port_number' => 'Número da Porta',
|
||||||
'mail_box_protocol' => 'Protocolo de Caixa de E-mail',
|
'mail_box_protocol' => 'Protocolo de Caixa de E-mail',
|
||||||
'authentication_required' => 'Requer autenticação',
|
'authentication_required' => 'Requer autenticação',
|
||||||
'yes' => 'Sim',
|
'yes' => 'Sim',
|
||||||
'no' => 'Não',
|
'no' => 'Não',
|
||||||
'header_spoofing' => 'Mascarar Cabeçalho',
|
'header_spoofing' => 'Mascarar Cabeçalho',
|
||||||
'allow_for_this_email' => 'Permitir este E-mail',
|
'allow_for_this_email' => 'Permitir este E-mail',
|
||||||
'imap_config' => 'Configuração IMAP',
|
'imap_config' => 'Configuração IMAP',
|
||||||
'email_information_and_settings' => 'Informações e configurações de E-mail',
|
'email_information_and_settings' => 'Informações e configurações de E-mail',
|
||||||
'incoming_email_information' => 'Informações de E-mails recebidos',
|
'incoming_email_information' => 'Informações de E-mails recebidos',
|
||||||
'outgoing_email_information' => 'Informações de E-mails enviados',
|
'outgoing_email_information' => 'Informações de E-mails enviados',
|
||||||
'new_ticket_settings' => 'Configurações de novos tickets',
|
'new_ticket_settings' => 'Configurações de novos tickets',
|
||||||
'protocol' => 'Protocolo',
|
'protocol' => 'Protocolo',
|
||||||
'fetching_protocol' => 'Protocolo de busca',
|
'fetching_protocol' => 'Protocolo de busca',
|
||||||
'transfer_protocol' => 'Protocolo de transferência',
|
'transfer_protocol' => 'Protocolo de transferência',
|
||||||
'from_name' => 'Destinatário',
|
'from_name' => 'Destinatário',
|
||||||
'add_an_email' => 'Novo E-mail',
|
'add_an_email' => 'Novo E-mail',
|
||||||
'edit_an_email' => 'Editar E-mail',
|
'edit_an_email' => 'Editar E-mail',
|
||||||
'disable_for_this_email_address' => 'Desabilitado para o endereço de E-mail',
|
'disable_for_this_email_address' => 'Desabilitado para o endereço de E-mail',
|
||||||
'validate_certificates_from_tls_or_ssl_server' => 'Validar Certificados do servidor TLS/SSL',
|
'validate_certificates_from_tls_or_ssl_server' => 'Validar Certificados do servidor TLS/SSL',
|
||||||
'authentication' => 'Autenticação',
|
'authentication' => 'Autenticação',
|
||||||
'incoming_email_connection_failed_please_check_email_credentials_or_imap_settings' => 'Conexão a caixa de entrada falhou! Verifique as credencias de E-mail ou as configurações IMAP',
|
'incoming_email_connection_failed_please_check_email_credentials_or_imap_settings' => 'Conexão a caixa de entrada falhou! Verifique as credencias de E-mail ou as configurações IMAP',
|
||||||
'outgoing_email_connection_failed' => 'Conexão a caixa de saida falhou',
|
'outgoing_email_connection_failed' => 'Conexão a caixa de saida falhou',
|
||||||
'you_cannot_delete_system_default_email' => 'Não é possível excluir o E-mail padrão do sistema',
|
'you_cannot_delete_system_default_email' => 'Não é possível excluir o E-mail padrão do sistema',
|
||||||
'email_deleted_sucessfully' => 'E-mail deletado com sucesso',
|
'email_deleted_sucessfully' => 'E-mail deletado com sucesso',
|
||||||
'email_can_not_delete' => 'E-mail não pode ser deletado ',
|
'email_can_not_delete' => 'E-mail não pode ser deletado ',
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| Ban Emails Create Page
|
| Ban Emails Create Page
|
||||||
@@ -322,7 +321,7 @@ return [
|
|||||||
'cron_notification' => 'Ativar notificação cron',
|
'cron_notification' => 'Ativar notificação cron',
|
||||||
'cron' => 'Agenda de tarefas',
|
'cron' => 'Agenda de tarefas',
|
||||||
'cron-jobs' => 'Tarefas Cron',
|
'cron-jobs' => 'Tarefas Cron',
|
||||||
'crone-url-message' => "Estas são as agenda de tarefas para o seu sistema.",
|
'crone-url-message' => 'Estas são as agenda de tarefas para o seu sistema.',
|
||||||
'clipboard-copy-message' => 'Copiado para área de transferência.',
|
'clipboard-copy-message' => 'Copiado para área de transferência.',
|
||||||
'click' => 'Clique aqui',
|
'click' => 'Clique aqui',
|
||||||
'check-cron-set' => 'Pode verificar como criar agenda de tarefas em seu servidor.',
|
'check-cron-set' => 'Pode verificar como criar agenda de tarefas em seu servidor.',
|
||||||
@@ -444,27 +443,27 @@ return [
|
|||||||
|------------------------------------------------
|
|------------------------------------------------
|
||||||
*/
|
*/
|
||||||
'language-settings' => 'Configurações de linguagem',
|
'language-settings' => 'Configurações de linguagem',
|
||||||
'iso-code' => 'ISO-CODE',
|
'iso-code' => 'ISO-CODE',
|
||||||
'download' => 'Download',
|
'download' => 'Download',
|
||||||
'upload_file' => 'Upload de arquivos',
|
'upload_file' => 'Upload de arquivos',
|
||||||
'enter_iso-code' => 'Informe o iso-code',
|
'enter_iso-code' => 'Informe o iso-code',
|
||||||
'eg.' => 'Exemplo',
|
'eg.' => 'Exemplo',
|
||||||
'for' => 'Para',
|
'for' => 'Para',
|
||||||
'english' => 'Inglês',
|
'english' => 'Inglês',
|
||||||
'language-name' => 'Nome da linguagem',
|
'language-name' => 'Nome da linguagem',
|
||||||
'file' => 'Arquivo',
|
'file' => 'Arquivo',
|
||||||
'read-more' => 'Leia mais.',
|
'read-more' => 'Leia mais.',
|
||||||
'enable_lang' => 'Ativar.',
|
'enable_lang' => 'Ativar.',
|
||||||
'add-lang-package' => 'Adicionar novo pacote de linguagem',
|
'add-lang-package' => 'Adicionar novo pacote de linguagem',
|
||||||
'package_exist' => 'O pacote já existe.',
|
'package_exist' => 'O pacote já existe.',
|
||||||
'iso-code-error' => 'Iso-code esta errado. Informe um iso-code correto.',
|
'iso-code-error' => 'Iso-code esta errado. Informe um iso-code correto.',
|
||||||
'zipp-error' => 'Erro no arquivo Zip. Ele deve conter apenas arquivos php.',
|
'zipp-error' => 'Erro no arquivo Zip. Ele deve conter apenas arquivos php.',
|
||||||
'upload-success' => 'Carregado com sucesso.',
|
'upload-success' => 'Carregado com sucesso.',
|
||||||
'file-error' => 'Erro no arquivo ou arquivo inválido.',
|
'file-error' => 'Erro no arquivo ou arquivo inválido.',
|
||||||
'delete-success' => 'Pacote de linguagem deletado com sucesso.',
|
'delete-success' => 'Pacote de linguagem deletado com sucesso.',
|
||||||
'lang-doesnot-exist' => 'Pacote de linguagem não existe.',
|
'lang-doesnot-exist' => 'Pacote de linguagem não existe.',
|
||||||
'active-lang-error' => 'Pacote de linguagem não pode ser excluído quando esta ativo.',
|
'active-lang-error' => 'Pacote de linguagem não pode ser excluído quando esta ativo.',
|
||||||
'language-error' => 'Pacote de linguagem não encontrado.',
|
'language-error' => 'Pacote de linguagem não encontrado.',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
@@ -537,7 +536,7 @@ return [
|
|||||||
'make-default-helptopic' => 'Definir tópico de ajuda como padrão',
|
'make-default-helptopic' => 'Definir tópico de ajuda como padrão',
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| SLA plan Index Page
|
| SLA plan Index Page
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
*/
|
*/
|
||||||
'sla_plans' => 'SLA Plans',
|
'sla_plans' => 'SLA Plans',
|
||||||
@@ -546,7 +545,7 @@ return [
|
|||||||
'added_date' => 'Added Date',
|
'added_date' => 'Added Date',
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| SLA plan Create Page
|
| SLA plan Create Page
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
*/
|
*/
|
||||||
'transient' => 'Transient',
|
'transient' => 'Transient',
|
||||||
@@ -849,10 +848,9 @@ return [
|
|||||||
'group_cannot_delete' => 'Grupo não pode ser deletado',
|
'group_cannot_delete' => 'Grupo não pode ser deletado',
|
||||||
'failed_to_load_the_page' => 'Falha ao carregar a página',
|
'failed_to_load_the_page' => 'Falha ao carregar a página',
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
| SMTP Page
|
| SMTP Page
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
*/
|
*/
|
||||||
'driver' => 'Driver',
|
'driver' => 'Driver',
|
||||||
@@ -922,9 +920,6 @@ return [
|
|||||||
'tickets_have_been_closed' => 'Os tickets selecionados foram fechados.',
|
'tickets_have_been_closed' => 'Os tickets selecionados foram fechados.',
|
||||||
'tickets_have_been_opened' => 'Os tickets selecionados foram abertos.',
|
'tickets_have_been_opened' => 'Os tickets selecionados foram abertos.',
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|-----------------------------------------------
|
|-----------------------------------------------
|
||||||
| Profile
|
| Profile
|
||||||
@@ -969,7 +964,7 @@ return [
|
|||||||
'user' => 'Usuário',
|
'user' => 'Usuário',
|
||||||
'users' => 'Usuários',
|
'users' => 'Usuários',
|
||||||
'create_user' => 'Criar usuário',
|
'create_user' => 'Criar usuário',
|
||||||
'edit_user' => 'Editar usuário',
|
'edit_user' => 'Editar usuário',
|
||||||
'full_name' => 'Nome completo',
|
'full_name' => 'Nome completo',
|
||||||
'mobile' => 'Mobile',
|
'mobile' => 'Mobile',
|
||||||
'last_login' => 'Último login',
|
'last_login' => 'Último login',
|
||||||
@@ -1001,7 +996,7 @@ return [
|
|||||||
'please_select_an_organization' => 'Selecione uma organização por favor',
|
'please_select_an_organization' => 'Selecione uma organização por favor',
|
||||||
'please_select_an_user' => 'Selecione um usuário por favor',
|
'please_select_an_user' => 'Selecione um usuário por favor',
|
||||||
'organization_profile' => 'Perfil de organização',
|
'organization_profile' => 'Perfil de organização',
|
||||||
'organization-s_head' => "Organização mestre",
|
'organization-s_head' => 'Organização mestre',
|
||||||
'select_department_manager' => 'Selecione o gerente de departamento',
|
'select_department_manager' => 'Selecione o gerente de departamento',
|
||||||
'users_of' => 'Usuário do',
|
'users_of' => 'Usuário do',
|
||||||
'organization_created_successfully' => 'Organização criada com sucesso',
|
'organization_created_successfully' => 'Organização criada com sucesso',
|
||||||
@@ -1219,7 +1214,6 @@ return [
|
|||||||
'manage_status' => 'Gerenciar Status',
|
'manage_status' => 'Gerenciar Status',
|
||||||
'notifications' => 'Notificações',
|
'notifications' => 'Notificações',
|
||||||
|
|
||||||
|
|
||||||
'auto_close_workflow' => 'Finalizar automaticamente Workflow',
|
'auto_close_workflow' => 'Finalizar automaticamente Workflow',
|
||||||
'close_ticket_workflow_settings' => 'Fechar configurações do workflow',
|
'close_ticket_workflow_settings' => 'Fechar configurações do workflow',
|
||||||
'successfully_saved_your_settings' => 'Configurações salvas com sucesso.',
|
'successfully_saved_your_settings' => 'Configurações salvas com sucesso.',
|
||||||
@@ -1333,7 +1327,7 @@ return [
|
|||||||
'password_updated_sucessfully' => 'Senha atualizada com sucesso',
|
'password_updated_sucessfully' => 'Senha atualizada com sucesso',
|
||||||
'password_was_not_updated_incorrect_old_password' => 'A senha não foi atualizada. Senha antiga incorreta',
|
'password_was_not_updated_incorrect_old_password' => 'A senha não foi atualizada. Senha antiga incorreta',
|
||||||
'there_is_no_such_ticket_number' => 'Não existe nenhum ticket com este número',
|
'there_is_no_such_ticket_number' => 'Não existe nenhum ticket com este número',
|
||||||
"email_didn't_match_with_ticket_number" => "E-mail não corresponde com o número do ticket",
|
"email_didn't_match_with_ticket_number" => 'E-mail não corresponde com o número do ticket',
|
||||||
'we_have_sent_you_a_link_by_email_please_click_on_that_link_to_view_ticket' => 'Enviamos-lhe um link por e-mail. Por favor, clique no link para ver o ticket',
|
'we_have_sent_you_a_link_by_email_please_click_on_that_link_to_view_ticket' => 'Enviamos-lhe um link por e-mail. Por favor, clique no link para ver o ticket',
|
||||||
'no_records_on_publish_time' => 'Não há registros neste período',
|
'no_records_on_publish_time' => 'Não há registros neste período',
|
||||||
'your_details_send_to_system' => 'Enviar seus dados para o sistema',
|
'your_details_send_to_system' => 'Enviar seus dados para o sistema',
|
||||||
@@ -1349,7 +1343,7 @@ return [
|
|||||||
'failed_to_send_email_contact_administrator' => 'Envio de email falhou. Entre em contato com administrador do sistema',
|
'failed_to_send_email_contact_administrator' => 'Envio de email falhou. Entre em contato com administrador do sistema',
|
||||||
/*
|
/*
|
||||||
* |---------------------------------------------------------------------------------------
|
* |---------------------------------------------------------------------------------------
|
||||||
|Api settings
|
|Api settings
|
||||||
* |----------------------------------------------------------------------------------
|
* |----------------------------------------------------------------------------------
|
||||||
* |The following lanuage line used to get english traslation of api settings in admin panel
|
* |The following lanuage line used to get english traslation of api settings in admin panel
|
||||||
* |
|
* |
|
||||||
@@ -1387,5 +1381,5 @@ return [
|
|||||||
'that_email_is not_available_in_this_system' => 'Esse e-mail não está disponível neste sistema',
|
'that_email_is not_available_in_this_system' => 'Esse e-mail não está disponível neste sistema',
|
||||||
'use_subject' => 'Use Assunto',
|
'use_subject' => 'Use Assunto',
|
||||||
'reopen' => 'Reabrir',
|
'reopen' => 'Reabrir',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
|--------------------------------------------------------------------------------
|
|--------------------------------------------------------------------------------
|
||||||
| Added by :
|
| Added by :
|
||||||
| translated : [NO/YES]
|
| translated : [NO/YES]
|
||||||
| Added on :
|
| Added on :
|
||||||
*/
|
*/
|
||||||
return [
|
return [
|
||||||
|
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
|--------------------------------------------------------------------------------
|
|--------------------------------------------------------------------------------
|
||||||
| Added by :
|
| Added by :
|
||||||
| translated : [NO/YES]
|
| translated : [NO/YES]
|
||||||
| Added on :
|
| Added on :
|
||||||
*/
|
*/
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
|--------------------------------------------------------------------------------
|
|--------------------------------------------------------------------------------
|
||||||
| Added by :
|
| Added by :
|
||||||
| translated : [NO/YES]
|
| translated : [NO/YES]
|
||||||
| Added on :
|
| Added on :
|
||||||
*/
|
*/
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
Reference in New Issue
Block a user