Apply fixes from StyleCI
This commit is contained in:

committed by
StyleCI Bot

parent
ea4314a339
commit
b2a1b7ec55
@@ -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;
|
||||||
@@ -201,6 +201,7 @@ class AuthController extends Controller
|
|||||||
} 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');
|
||||||
}
|
}
|
||||||
|
|
||||||
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,7 +1544,7 @@ 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',
|
||||||
|
@@ -35,7 +35,7 @@ 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',
|
||||||
@@ -100,7 +100,7 @@ return [
|
|||||||
'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
|
||||||
@@ -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.',
|
||||||
@@ -893,7 +893,6 @@ return [
|
|||||||
'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',
|
||||||
|
@@ -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',
|
||||||
|
@@ -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.',
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------
|
|--------------------------------------
|
||||||
@@ -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.',
|
||||||
@@ -849,7 +848,6 @@ 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
|
||||||
@@ -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
|
||||||
@@ -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',
|
||||||
|
Reference in New Issue
Block a user