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__.'/../../');
|
||||
}
|
||||
|
||||
|
||||
$view_path = app_path().DIRECTORY_SEPARATOR.'FaveoLog'.DIRECTORY_SEPARATOR.'views';
|
||||
$this->loadViewsFrom($view_path, 'log');
|
||||
|
||||
|
@@ -276,7 +276,6 @@ class AgentController extends Controller
|
||||
$user->id;
|
||||
$user->delete();
|
||||
throw new \Exception($error);
|
||||
|
||||
return redirect('agents')->with('success', Lang::get('lang.agent_deleted_sucessfully'));
|
||||
} catch (\Exception $e) {
|
||||
return redirect('agents')->with('fails', $error);
|
||||
|
@@ -639,7 +639,8 @@ class EmailsController extends Controller
|
||||
$controller->fetch($email);
|
||||
}
|
||||
|
||||
public function checkMail($request) {
|
||||
public function checkMail($request)
|
||||
{
|
||||
$mailservice_id = $request->input('sending_protocol');
|
||||
$driver = $this->getDriver($mailservice_id);
|
||||
$username = $request->input('email_address');
|
||||
@@ -657,6 +658,7 @@ class EmailsController extends Controller
|
||||
$transport->setPassword($password);
|
||||
$mailer = \Swift_Mailer::newInstance($transport);
|
||||
$mailer->getTransport()->start();
|
||||
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
@@ -997,7 +997,6 @@ class SettingsController extends Controller
|
||||
$number .= '0';
|
||||
}
|
||||
|
||||
|
||||
if ($array_format[$i] !== '$' && $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;
|
||||
})
|
||||
|
||||
|
||||
->addColumn('active', function ($model) {
|
||||
if ($model->active == '1') {
|
||||
$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;
|
||||
})
|
||||
|
||||
|
||||
->addColumn('assign_group', function ($model) {
|
||||
$group = Groups::whereId($model->assign_group)->first();
|
||||
|
||||
|
@@ -88,7 +88,6 @@ class ReportController extends Controller
|
||||
// $help_topic = Help_topic::where('status', '=', '1')->min('id');
|
||||
}
|
||||
|
||||
|
||||
$return = '';
|
||||
$last = '';
|
||||
$j = 0;
|
||||
|
@@ -516,7 +516,6 @@ class TicketController extends Controller
|
||||
}
|
||||
$ticket_id = $request->input('ticket_ID');
|
||||
|
||||
|
||||
$tickets = Tickets::where('id', '=', $ticket_id)->first();
|
||||
$tickets->isanswered = '1';
|
||||
$tickets->save();
|
||||
@@ -598,7 +597,6 @@ class TicketController extends Controller
|
||||
// sending attachments via php mail function
|
||||
$message = '';
|
||||
|
||||
|
||||
$collaborators = Ticket_Collaborator::where('ticket_id', '=', $ticket_id)->get();
|
||||
|
||||
$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!');
|
||||
}
|
||||
|
||||
|
@@ -459,7 +459,6 @@ class UserController extends Controller
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if ($users->role == 'agent') {
|
||||
if ($delete_all == null) {
|
||||
$UserEmail = Input::get('assign_to');
|
||||
|
@@ -150,7 +150,7 @@ class AuthController extends Controller
|
||||
*/
|
||||
public function postRegister(User $user, RegisterRequest $request)
|
||||
{
|
||||
try{
|
||||
try {
|
||||
$request_array = $request->input();
|
||||
$password = Hash::make($request->input('password'));
|
||||
$user->password = $password;
|
||||
@@ -162,7 +162,7 @@ class AuthController extends Controller
|
||||
$user->email = $request->input('email');
|
||||
}
|
||||
if ($request_array['mobile'] == '') {
|
||||
$user->mobile = null;
|
||||
$user->mobile = null;
|
||||
} else {
|
||||
$user->mobile = $request->input('mobile');
|
||||
}
|
||||
@@ -188,19 +188,20 @@ class AuthController extends Controller
|
||||
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)]);
|
||||
}
|
||||
if ($settings->status == 1 || $settings->status == '1') {
|
||||
if (count($sms) > 0) {
|
||||
if ($sms->status == 1 || $sms->status == '1') {
|
||||
$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');
|
||||
}
|
||||
if ($settings->status == 1 || $settings->status == '1') {
|
||||
if (count($sms) > 0) {
|
||||
if ($sms->status == 1 || $sms->status == '1') {
|
||||
$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 {
|
||||
$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);
|
||||
} catch (\Exception $e) {
|
||||
return redirect()->back()->with('fails', $e->getMessage());
|
||||
|
@@ -11,8 +11,8 @@ use App\Model\helpdesk\Settings\Email;
|
||||
use App\User;
|
||||
use Auth;
|
||||
use Exception;
|
||||
use Mail;
|
||||
use Lang;
|
||||
use Mail;
|
||||
|
||||
class PhpMailController extends Controller
|
||||
{
|
||||
@@ -121,7 +121,6 @@ class PhpMailController extends Controller
|
||||
$email_address = $this->checkElement('email_address', $template_variables);
|
||||
$user = $this->checkElement('user', $template_variables);
|
||||
|
||||
|
||||
$status = \DB::table('settings_email')->first();
|
||||
|
||||
$template = TemplateType::where('name', '=', $template_type)->first();
|
||||
@@ -148,7 +147,6 @@ class PhpMailController extends Controller
|
||||
$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!!}'];
|
||||
|
||||
$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;
|
||||
}
|
||||
|
||||
|
||||
if ($template_type == 'ticket-reply-agent') {
|
||||
$line = '---Reply above this line--- <br/><br/>';
|
||||
$content = $line.$messagebody;
|
||||
|
@@ -137,7 +137,6 @@ class UpgradeController extends Controller
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
//Make the directory if we need to...
|
||||
if (!is_dir($update.'/'.$thisFileDir.'/')) {
|
||||
\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.');
|
||||
|
||||
|
||||
// else {
|
||||
// return redirect()->back();
|
||||
// }
|
||||
|
@@ -29,7 +29,6 @@ class MailRequest extends Request
|
||||
$email_address_rule = 'required|email|unique:emails,id,'.$id;
|
||||
}
|
||||
|
||||
|
||||
$rules = [
|
||||
'email_address' => $email_address_rule,
|
||||
'email_name' => 'required',
|
||||
|
@@ -30,7 +30,6 @@ class PriorityRequest extends Request
|
||||
{
|
||||
return [
|
||||
|
||||
|
||||
'priority' => 'required|max:10',
|
||||
'status' => 'required',
|
||||
'priority_desc' => 'required|max:255',
|
||||
@@ -39,9 +38,6 @@ class PriorityRequest extends Request
|
||||
'priority_successfully_updated' => 'priority successfully updated',
|
||||
'priority_successfully_created!!!' => 'priority successfully created',
|
||||
|
||||
|
||||
|
||||
|
||||
];
|
||||
}
|
||||
}
|
||||
|
@@ -28,34 +28,29 @@ Route::group(['middleware' => ['web']], function () {
|
||||
| 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']);
|
||||
Breadcrumbs::register('password.email', function ($breadcrumbs) {
|
||||
$breadcrumbs->parent('/');
|
||||
$breadcrumbs->push('Login', url('auth/login'));
|
||||
$breadcrumbs->push('Forgot Password', url('password/email'));
|
||||
});
|
||||
Route::get('password/email/{one?}/{two?}/{three?}/{four?}/{five?}', ['as' => 'password.email', 'uses' => 'Auth\PasswordController@getEmail']);
|
||||
Breadcrumbs::register('password.email', function ($breadcrumbs) {
|
||||
$breadcrumbs->parent('/');
|
||||
$breadcrumbs->push('Login', url('auth/login'));
|
||||
$breadcrumbs->push('Forgot Password', url('password/email'));
|
||||
});
|
||||
|
||||
|
||||
// register page
|
||||
Route::get('auth/register/{one?}/{two?}/{three?}/{four?}/{five?}',['as' => 'auth.register', 'uses' => 'Auth\AuthController@getRegister']);
|
||||
Breadcrumbs::register('auth.register', function ($breadcrumbs) {
|
||||
$breadcrumbs->parent('/');
|
||||
$breadcrumbs->push('Login', url('auth/login'));
|
||||
$breadcrumbs->push('Create Account', url('auth/register'));
|
||||
});
|
||||
|
||||
Route::get('auth/register/{one?}/{two?}/{three?}/{four?}/{five?}', ['as' => 'auth.register', 'uses' => 'Auth\AuthController@getRegister']);
|
||||
Breadcrumbs::register('auth.register', function ($breadcrumbs) {
|
||||
$breadcrumbs->parent('/');
|
||||
$breadcrumbs->push('Login', url('auth/login'));
|
||||
$breadcrumbs->push('Create Account', url('auth/register'));
|
||||
});
|
||||
|
||||
// Auth login
|
||||
Route::get('auth/login/{one?}/{two?}/{three?}/{four?}/{five?}',['as' => 'auth.login', 'uses' => 'Auth\AuthController@getLogin']);
|
||||
Breadcrumbs::register('auth.login', function ($breadcrumbs) {
|
||||
$breadcrumbs->parent('/');
|
||||
$breadcrumbs->push('Create Account', url('auth/register'));
|
||||
$breadcrumbs->push('Login', url('auth/login'));
|
||||
|
||||
});
|
||||
Route::get('auth/login/{one?}/{two?}/{three?}/{four?}/{five?}', ['as' => 'auth.login', 'uses' => 'Auth\AuthController@getLogin']);
|
||||
Breadcrumbs::register('auth.login', function ($breadcrumbs) {
|
||||
$breadcrumbs->parent('/');
|
||||
$breadcrumbs->push('Create Account', url('auth/register'));
|
||||
$breadcrumbs->push('Login', url('auth/login'));
|
||||
});
|
||||
|
||||
|
||||
|
||||
Route::get('account/activate/{token}', ['as' => 'account.activate', 'uses' => 'Auth\AuthController@accountActivate']);
|
||||
Route::get('getmail/{token}', 'Auth\AuthController@getMail');
|
||||
Route::get('verify-otp', ['as' => 'otp-verification', 'uses' => 'Auth\AuthController@getVerifyOTP']);
|
||||
@@ -1194,8 +1189,6 @@ Route::group(['middleware' => ['web']], function () {
|
||||
$api_control->ticketDetailEvent($details);
|
||||
});
|
||||
|
||||
|
||||
|
||||
Route::get('test', ['as' => 'test', 'uses' => 'Common\PushNotificationController@response']);
|
||||
|
||||
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\SerializesModels;
|
||||
|
||||
class SendEmail extends Job implements SelfHandling,ShouldQueue
|
||||
class SendEmail extends Job implements SelfHandling, ShouldQueue
|
||||
{
|
||||
use InteractsWithQueue,SerializesModels;
|
||||
|
||||
|
||||
protected $from;
|
||||
protected $to;
|
||||
protected $message;
|
||||
|
@@ -40,9 +40,9 @@ class QueueService extends Model
|
||||
public function getStatus()
|
||||
{
|
||||
$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) {
|
||||
$html = "<span style='color:green'>".Lang::get('lang.active')."</span>";
|
||||
$html = "<span style='color:green'>".Lang::get('lang.active').'</span>';
|
||||
}
|
||||
|
||||
return $html;
|
||||
@@ -52,9 +52,9 @@ class QueueService extends Model
|
||||
{
|
||||
$id = $this->attributes['id'];
|
||||
$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) {
|
||||
$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;
|
||||
|
@@ -139,7 +139,6 @@ return [
|
||||
* Laravel Framework Service Providers...
|
||||
*/
|
||||
|
||||
|
||||
'Illuminate\Auth\AuthServiceProvider',
|
||||
'Illuminate\Bus\BusServiceProvider',
|
||||
'Illuminate\Cache\CacheServiceProvider',
|
||||
@@ -186,8 +185,6 @@ return [
|
||||
Laravel\Socialite\SocialiteServiceProvider::class,
|
||||
App\FaveoLog\LaravelLogViewerServiceProvider::class,
|
||||
|
||||
|
||||
|
||||
],
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@@ -36,7 +36,6 @@ return [
|
||||
'image/gif',
|
||||
],
|
||||
|
||||
|
||||
// valid file mimetypes (only when '/laravel-filemanager?type=Files')
|
||||
'valid_file_mimetypes' => [
|
||||
'image/jpeg',
|
||||
|
@@ -62,5 +62,4 @@ return [
|
||||
'redirect' => '', //'http://localhost/FaveoVersions/faveo-helpdesk/public/social/login/bitbucket', //redirect
|
||||
],
|
||||
|
||||
|
||||
];
|
||||
|
@@ -1985,11 +1985,8 @@ class DatabaseSeeder extends Seeder
|
||||
'numcode' => '716',
|
||||
'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']);
|
||||
|
||||
|
||||
TemplateSet::create(['id' => '1', 'name' => 'default', 'active' => '1']);
|
||||
|
||||
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' => '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' => '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']);
|
||||
@@ -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' => '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
|
||||
*/
|
||||
@@ -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' => '2', 'name' => 'Reply Rating', 'display_order' => '1', 'allow_modification' => '1', 'rating_scale' => '5', 'rating_area' => 'Comment Area']);
|
||||
|
||||
|
||||
Limit_Login::create(['id' => '1']);
|
||||
}
|
||||
}
|
||||
|
@@ -948,8 +948,6 @@ return [
|
||||
'reply_content_is_a_required_field' => 'Reply content is a required field',
|
||||
'internal_content_is_a_required_field' => 'Internal content is a required field',
|
||||
|
||||
|
||||
|
||||
/*
|
||||
|-----------------------------------------------
|
||||
| Profile
|
||||
@@ -1248,7 +1246,6 @@ return [
|
||||
'manage_status' => 'Manage status',
|
||||
'notifications' => 'Notifications',
|
||||
|
||||
|
||||
'auto_close_workflow' => 'Auto-close workflow',
|
||||
'close_ticket_workflow_settings' => 'Close ticket workflow settings',
|
||||
'successfully_saved_your_settings' => 'Successfully saved your settings',
|
||||
@@ -1547,10 +1544,10 @@ return [
|
||||
'select_another_agent' => 'Select another agent',
|
||||
'agent_delete_successfully_and_ticket_assign_to_another_agent' => 'Agent deleted successfully and ticket assigned to another agent',
|
||||
//login,registration
|
||||
'enter_your_email_here'=>'Enter your email here',
|
||||
'enter_your_email_here'=> 'Enter your email here',
|
||||
|
||||
/*********** 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.',
|
||||
|
||||
];
|
||||
|
@@ -11,12 +11,12 @@
|
||||
|--------------------------------------------------------------------------------
|
||||
| Added by :
|
||||
| translated : [NO/YES]
|
||||
| Added on :
|
||||
| Added on :
|
||||
*/
|
||||
return [
|
||||
/*
|
||||
|----------------------------------------------------------------------------------------
|
||||
| Authentication Pages [French(fr)]
|
||||
| Authentication Pages [French(fr)]
|
||||
| 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
|
||||
| customize your views to better match your application.
|
||||
@@ -35,18 +35,18 @@ return [
|
||||
'required-error' => 'Merci de renseigner les champs obligatoires',
|
||||
'invalid' => 'Identifiant utilisateur ou mot de passe incorrect',
|
||||
'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.',
|
||||
'go_back' => 'Retour',
|
||||
'the_board_is_offline' => 'Le suivi est hors ligne',
|
||||
'error_establishing_connection_to_database' => 'Erreur de connexion à la base de données',
|
||||
'unauthorized_access' => 'Accès non 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-invalid' => 'Le code OTP doit avoir 6 numéros.',
|
||||
'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.',
|
||||
'resend-otp-title' => 'Clique ici pour renvoyer un code OTP',
|
||||
'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-invalid' => 'Le code OTP doit avoir 6 numéros.',
|
||||
'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.',
|
||||
'resend-otp-title' => 'Clique ici pour renvoyer un code OTP',
|
||||
/*
|
||||
|--------------------------------------
|
||||
| Login Page
|
||||
@@ -63,50 +63,50 @@ return [
|
||||
'theirisproblem' => 'Il y a eu un problème avec votre saisie',
|
||||
'login' => 'Identifiant',
|
||||
|
||||
'e-mail' => 'Email',
|
||||
'reg_new_member' => 'Inscrivez-vous',
|
||||
'e-mail' => 'Email',
|
||||
'reg_new_member' => 'Inscrivez-vous',
|
||||
'this_account_is_currently_inactive' => 'Ce compte est actuellement inactif!',
|
||||
'not-registered' => 'Email/identifiant n\'est pas enregistré',
|
||||
'verify' => 'Verification',
|
||||
'enter-otp' => 'Entrer code OTP',
|
||||
'did-not-recive-code' => 'Vous n\'avez pas reçu votre code?',
|
||||
'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é',
|
||||
'otp-sent' => 'Nous vous avons envoyé un code OTP à voter mobile.',
|
||||
'verify-number' => 'Verifier les chiffres',
|
||||
'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.',
|
||||
'not-registered' => 'Email/identifiant n\'est pas enregistré',
|
||||
'verify' => 'Verification',
|
||||
'enter-otp' => 'Entrer code OTP',
|
||||
'did-not-recive-code' => 'Vous n\'avez pas reçu votre code?',
|
||||
'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é',
|
||||
'otp-sent' => 'Nous vous avons envoyé un code OTP à voter mobile.',
|
||||
'verify-number' => 'Verifier les chiffres',
|
||||
'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.',
|
||||
/*
|
||||
|--------------------------------------
|
||||
| Register Page
|
||||
|--------------------------------------
|
||||
*/
|
||||
'registration' => 'Inscription',
|
||||
'full_name' => 'Nom complet',
|
||||
'firstname' => 'Prénom',
|
||||
'lastname' => 'Nom',
|
||||
'profilepicture' => 'Photo de profil',
|
||||
'oldpassword' => 'Ancien mot de passe',
|
||||
'newpassword' => 'Nouveau mot de passe',
|
||||
'retype_password' => 'Retapez le mot de passe',
|
||||
'i_agree_to_the' => 'J\'accepte les',
|
||||
'terms' => 'termes',
|
||||
'register' => 'S\'Inscrir',
|
||||
'i_already_have_a_membership' => 'Je suis déjà inscrit',
|
||||
'see-profile1' => 'Cliquez ici pour voir le profil de',
|
||||
'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',
|
||||
'registration' => 'Inscription',
|
||||
'full_name' => 'Nom complet',
|
||||
'firstname' => 'Prénom',
|
||||
'lastname' => 'Nom',
|
||||
'profilepicture' => 'Photo de profil',
|
||||
'oldpassword' => 'Ancien mot de passe',
|
||||
'newpassword' => 'Nouveau mot de passe',
|
||||
'retype_password' => 'Retapez le mot de passe',
|
||||
'i_agree_to_the' => 'J\'accepte les',
|
||||
'terms' => 'termes',
|
||||
'register' => 'S\'Inscrir',
|
||||
'i_already_have_a_membership' => 'Je suis déjà inscrit',
|
||||
'see-profile1' => 'Cliquez ici pour voir le profil de',
|
||||
'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_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.',
|
||||
'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_can't_find_a_user_with_that_e-mail_address" => "Nous ne pouvons pas trouver un utilisateur avec cette adresse email",
|
||||
'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_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' => '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-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',
|
||||
'email_address' => 'Adresse Email',
|
||||
'email_name' => 'Nom Email',
|
||||
'email_to' => 'Email à',
|
||||
'email_to' => 'Email à',
|
||||
'help_topic' => 'Thème de support',
|
||||
'auto_response' => 'Réponse automatique',
|
||||
'host_name' => 'Nom d\'hôte',
|
||||
@@ -215,7 +215,7 @@ return [
|
||||
'Assign ticket' => 'Ticket assigné à un agent',
|
||||
'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',
|
||||
'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',
|
||||
'Reset password' => 'Email avec le lien de réinitialisation du mot de passe',
|
||||
'Error report' => 'Etat des erreurs',
|
||||
@@ -355,7 +355,7 @@ return [
|
||||
'cron_notification' => 'Activer la notification cron',
|
||||
'cron' => 'Ordonnancement de tâches informatiques',
|
||||
'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',
|
||||
'click' => 'Cliquez ici',
|
||||
'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',
|
||||
'group_cannot_delete' => 'Le groupe ne peut pas être supprimé',
|
||||
'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',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------
|
||||
| SMTP Page
|
||||
@@ -968,8 +967,6 @@ return [
|
||||
'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',
|
||||
|
||||
|
||||
|
||||
/*
|
||||
|-----------------------------------------------
|
||||
| Profile
|
||||
@@ -1268,7 +1265,6 @@ return [
|
||||
'manage_status' => 'Gérer statut',
|
||||
'notifications' => 'Notifications',
|
||||
|
||||
|
||||
'auto_close_workflow' => 'Fermeture automatique du Workflow',
|
||||
'close_ticket_workflow_settings' => 'Fermer les paramètres du Workflow de ticket',
|
||||
'successfully_saved_your_settings' => 'Paramètres enregistrés avec succès',
|
||||
@@ -1551,27 +1547,27 @@ return [
|
||||
* User Module
|
||||
* --------------------------------------------------------------------------------------------
|
||||
*/
|
||||
'agent_report' => 'Rapport Agent',
|
||||
'assign_tickets' => 'Assigner tickets',
|
||||
'delete_agent' => 'Supprimer agent',
|
||||
'delete_user' => 'Supprimer utilisateur',
|
||||
'confirm_deletion' => 'Confirmer suppression',
|
||||
'delete_all_content' => 'Supprimer tous les éléments',
|
||||
'agent_profile' => 'Profile Agent',
|
||||
'change_role_to_admin' => 'Changer role pour administrateur',
|
||||
'change_role_to_user' => 'Changer role pour utilisateur',
|
||||
'change_role_to_agent' => 'Changer role pour agent',
|
||||
'change_password' => 'Changer mot de passe',
|
||||
'role_change' => 'Changement de rôle',
|
||||
'agent_report' => 'Rapport Agent',
|
||||
'assign_tickets' => 'Assigner tickets',
|
||||
'delete_agent' => 'Supprimer agent',
|
||||
'delete_user' => 'Supprimer utilisateur',
|
||||
'confirm_deletion' => 'Confirmer suppression',
|
||||
'delete_all_content' => 'Supprimer tous les éléments',
|
||||
'agent_profile' => 'Profile Agent',
|
||||
'change_role_to_admin' => 'Changer role pour administrateur',
|
||||
'change_role_to_user' => 'Changer role pour utilisateur',
|
||||
'change_role_to_agent' => 'Changer role pour agent',
|
||||
'change_password' => 'Changer mot de passe',
|
||||
'role_change' => 'Changement de rôle',
|
||||
'generateur de mot de passe' => 'Password generator',
|
||||
'depertment' => 'Departement',
|
||||
'duetoday' => 'Prévu aujourd\'hui',
|
||||
'today-due_tickets' => 'Tickets prévus aujourd\'hui',
|
||||
'password_change_successfully' => 'Mot de passe changé avec succès',
|
||||
'role_change_successfully' => 'Role changé avec succès',
|
||||
'user_delete_successfully' => 'Utilisateur supprimé avec succès',
|
||||
'agent_delete_successfully' => 'Agent supprimé avec succès',
|
||||
'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',
|
||||
'depertment' => 'Departement',
|
||||
'duetoday' => 'Prévu aujourd\'hui',
|
||||
'today-due_tickets' => 'Tickets prévus aujourd\'hui',
|
||||
'password_change_successfully' => 'Mot de passe changé avec succès',
|
||||
'role_change_successfully' => 'Role changé avec succès',
|
||||
'user_delete_successfully' => 'Utilisateur supprimé avec succès',
|
||||
'agent_delete_successfully' => 'Agent supprimé avec succès',
|
||||
'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',
|
||||
|
||||
];
|
||||
|
@@ -11,7 +11,7 @@
|
||||
|--------------------------------------------------------------------------------
|
||||
| Added by :
|
||||
| translated : [NO/YES]
|
||||
| Added on :
|
||||
| Added on :
|
||||
*/
|
||||
|
||||
return [
|
||||
@@ -83,26 +83,26 @@ return [
|
||||
| Register Page
|
||||
|--------------------------------------
|
||||
*/
|
||||
'registration' => 'Registratie',
|
||||
'full_name' => 'Volledige naam',
|
||||
'firstname' => 'Voornaam',
|
||||
'lastname' => 'Achternaam',
|
||||
'profilepicture' => 'Profielfoto',
|
||||
'oldpassword' => 'Oude wachtwoord',
|
||||
'newpassword' => 'Nieuwe wachtwoord',
|
||||
'retype_password' => 'Herhaal wachtwoord',
|
||||
'i_agree_to_the' => 'Ik ga akkoord met de',
|
||||
'terms' => 'algemene voorwaarden',
|
||||
'register' => 'Registreren',
|
||||
'i_already_have_a_membership' => 'Ik heb al een profiel',
|
||||
'see-profile1' => 'Klik hier om dit te bekijken ',
|
||||
'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_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.',
|
||||
'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_can't_find_a_user_with_that_e-mail_address" => 'We kunnen geen gebruiker met dat e-mailadres vinden.',
|
||||
'registration' => 'Registratie',
|
||||
'full_name' => 'Volledige naam',
|
||||
'firstname' => 'Voornaam',
|
||||
'lastname' => 'Achternaam',
|
||||
'profilepicture' => 'Profielfoto',
|
||||
'oldpassword' => 'Oude wachtwoord',
|
||||
'newpassword' => 'Nieuwe wachtwoord',
|
||||
'retype_password' => 'Herhaal wachtwoord',
|
||||
'i_agree_to_the' => 'Ik ga akkoord met de',
|
||||
'terms' => 'algemene voorwaarden',
|
||||
'register' => 'Registreren',
|
||||
'i_already_have_a_membership' => 'Ik heb al een profiel',
|
||||
'see-profile1' => 'Klik hier om dit te bekijken ',
|
||||
'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_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.',
|
||||
'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_can't_find_a_user_with_that_e-mail_address" => 'We kunnen geen gebruiker met dat e-mailadres vinden.',
|
||||
/*
|
||||
|--------------------------------------
|
||||
| Reset Password Page
|
||||
@@ -121,7 +121,7 @@ return [
|
||||
'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',
|
||||
'link' => 'Link',
|
||||
'email_or_mobile' => 'E-mailadres of mobiele telefoonnummer',
|
||||
'email_or_mobile' => 'E-mailadres of mobiele telefoonnummer',
|
||||
/*
|
||||
|----------------------------------------------------------------------------------------
|
||||
| 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-pro' => 'Om de plugins te bekijken welke beschikbaar zijn bij de PRO versie van Faveo;',
|
||||
'click-here' => 'Klik hier',
|
||||
|
||||
/*
|
||||
|
||||
/*
|
||||
|----------------------------------------------------------------------------------------
|
||||
| Manage Pages [English(en)]
|
||||
|----------------------------------------------------------------------------------------
|
||||
@@ -686,7 +686,7 @@ return [
|
||||
'are_you_sure_you_want_to_delete' => 'Weet je zeker dat je dit wil verwijderen?',
|
||||
'close' => 'Sluiten',
|
||||
'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',
|
||||
'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",
|
||||
@@ -1062,7 +1062,7 @@ return [
|
||||
'please_select_an_organization' => 'Selecteer een organisatie',
|
||||
'please_select_an_user' => 'Selecteer een gebruiker',
|
||||
'organization_profile' => 'Organisatie profiel',
|
||||
'organization-s_head' => "Organisatie directeur",
|
||||
'organization-s_head' => 'Organisatie directeur',
|
||||
'select_department_manager' => 'Selecteer afdelingsmanager',
|
||||
'select_organization_manager' => 'Selecteer organisatiemanager',
|
||||
'users_of' => 'Gebruikers van',
|
||||
@@ -1389,7 +1389,7 @@ return [
|
||||
'password_updated_sucessfully' => 'Wachtwoord succesvol bijgewerkt',
|
||||
'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',
|
||||
"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',
|
||||
'no_records_on_publish_time' => 'Geen informatie gevonden op dit tijdstip',
|
||||
'your_details_send_to_system' => 'Je informatie is naar het systeem verzonden',
|
||||
|
@@ -11,7 +11,7 @@
|
||||
|--------------------------------------------------------------------------------
|
||||
| Added by :
|
||||
| translated : [NO/YES]
|
||||
| Added on :
|
||||
| Added on :
|
||||
*/
|
||||
return [
|
||||
|
||||
|
@@ -11,7 +11,7 @@
|
||||
|--------------------------------------------------------------------------------
|
||||
| Added by :
|
||||
| translated : [NO/YES]
|
||||
| Added on :
|
||||
| Added on :
|
||||
*/
|
||||
return [
|
||||
|
||||
|
@@ -11,7 +11,7 @@
|
||||
|--------------------------------------------------------------------------------
|
||||
| Added by :
|
||||
| translated : [NO/YES]
|
||||
| Added on :
|
||||
| Added on :
|
||||
*/
|
||||
return [
|
||||
|
||||
|
@@ -12,7 +12,7 @@
|
||||
|--------------------------------------------------------------------------------
|
||||
| Added by :
|
||||
| translated : [NO/YES]
|
||||
| Added on :
|
||||
| Added on :
|
||||
*/
|
||||
return [
|
||||
/*
|
||||
@@ -38,7 +38,7 @@ return [
|
||||
'required-error' => 'Preencha todos os campos obrigatórios',
|
||||
'invalid' => 'Usuário ou senha incorretos',
|
||||
'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.',
|
||||
'go_back' => 'Voltar',
|
||||
'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',
|
||||
'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_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' => 'E-mails',
|
||||
'incoming_emails' => 'Caixa de entrada',
|
||||
'reuired_authentication' => 'Requer autenticação',
|
||||
'fetching_email_via_imap' => 'Buscando e-mail via IMAP',
|
||||
'create_email' => 'Criar E-mail',
|
||||
'email_address' => 'Endereço de E-mail',
|
||||
'email_name' => 'Nome de E-mail',
|
||||
'help_topic' => 'Tópico de ajuda',
|
||||
'auto_response' => 'Resposta automática',
|
||||
'host_name' => 'Nome do Host',
|
||||
'port_number' => 'Número da Porta',
|
||||
'mail_box_protocol' => 'Protocolo de Caixa de E-mail',
|
||||
'authentication_required' => 'Requer autenticação',
|
||||
'yes' => 'Sim',
|
||||
'no' => 'Não',
|
||||
'header_spoofing' => 'Mascarar Cabeçalho',
|
||||
'allow_for_this_email' => 'Permitir este E-mail',
|
||||
'imap_config' => 'Configuração IMAP',
|
||||
'email_information_and_settings' => 'Informações e configurações de E-mail',
|
||||
'incoming_email_information' => 'Informações de E-mails recebidos',
|
||||
'outgoing_email_information' => 'Informações de E-mails enviados',
|
||||
'new_ticket_settings' => 'Configurações de novos tickets',
|
||||
'protocol' => 'Protocolo',
|
||||
'fetching_protocol' => 'Protocolo de busca',
|
||||
'transfer_protocol' => 'Protocolo de transferência',
|
||||
'from_name' => 'Destinatário',
|
||||
'add_an_email' => 'Novo E-mail',
|
||||
'edit_an_email' => 'Editar 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',
|
||||
'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',
|
||||
'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',
|
||||
'email_deleted_sucessfully' => 'E-mail deletado com sucesso',
|
||||
'email_can_not_delete' => 'E-mail não pode ser deletado ',
|
||||
'emails' => 'E-mails',
|
||||
'incoming_emails' => 'Caixa de entrada',
|
||||
'reuired_authentication' => 'Requer autenticação',
|
||||
'fetching_email_via_imap' => 'Buscando e-mail via IMAP',
|
||||
'create_email' => 'Criar E-mail',
|
||||
'email_address' => 'Endereço de E-mail',
|
||||
'email_name' => 'Nome de E-mail',
|
||||
'help_topic' => 'Tópico de ajuda',
|
||||
'auto_response' => 'Resposta automática',
|
||||
'host_name' => 'Nome do Host',
|
||||
'port_number' => 'Número da Porta',
|
||||
'mail_box_protocol' => 'Protocolo de Caixa de E-mail',
|
||||
'authentication_required' => 'Requer autenticação',
|
||||
'yes' => 'Sim',
|
||||
'no' => 'Não',
|
||||
'header_spoofing' => 'Mascarar Cabeçalho',
|
||||
'allow_for_this_email' => 'Permitir este E-mail',
|
||||
'imap_config' => 'Configuração IMAP',
|
||||
'email_information_and_settings' => 'Informações e configurações de E-mail',
|
||||
'incoming_email_information' => 'Informações de E-mails recebidos',
|
||||
'outgoing_email_information' => 'Informações de E-mails enviados',
|
||||
'new_ticket_settings' => 'Configurações de novos tickets',
|
||||
'protocol' => 'Protocolo',
|
||||
'fetching_protocol' => 'Protocolo de busca',
|
||||
'transfer_protocol' => 'Protocolo de transferência',
|
||||
'from_name' => 'Destinatário',
|
||||
'add_an_email' => 'Novo E-mail',
|
||||
'edit_an_email' => 'Editar 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',
|
||||
'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',
|
||||
'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',
|
||||
'email_deleted_sucessfully' => 'E-mail deletado com sucesso',
|
||||
'email_can_not_delete' => 'E-mail não pode ser deletado ',
|
||||
/*
|
||||
|--------------------------------------
|
||||
| Ban Emails Create Page
|
||||
@@ -322,7 +321,7 @@ return [
|
||||
'cron_notification' => 'Ativar notificação cron',
|
||||
'cron' => 'Agenda de tarefas',
|
||||
'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.',
|
||||
'click' => 'Clique aqui',
|
||||
'check-cron-set' => 'Pode verificar como criar agenda de tarefas em seu servidor.',
|
||||
@@ -444,27 +443,27 @@ return [
|
||||
|------------------------------------------------
|
||||
*/
|
||||
'language-settings' => 'Configurações de linguagem',
|
||||
'iso-code' => 'ISO-CODE',
|
||||
'download' => 'Download',
|
||||
'upload_file' => 'Upload de arquivos',
|
||||
'enter_iso-code' => 'Informe o iso-code',
|
||||
'eg.' => 'Exemplo',
|
||||
'for' => 'Para',
|
||||
'english' => 'Inglês',
|
||||
'language-name' => 'Nome da linguagem',
|
||||
'file' => 'Arquivo',
|
||||
'read-more' => 'Leia mais.',
|
||||
'enable_lang' => 'Ativar.',
|
||||
'add-lang-package' => 'Adicionar novo pacote de linguagem',
|
||||
'package_exist' => 'O pacote já existe.',
|
||||
'iso-code-error' => 'Iso-code esta errado. Informe um iso-code correto.',
|
||||
'zipp-error' => 'Erro no arquivo Zip. Ele deve conter apenas arquivos php.',
|
||||
'upload-success' => 'Carregado com sucesso.',
|
||||
'file-error' => 'Erro no arquivo ou arquivo inválido.',
|
||||
'delete-success' => 'Pacote de linguagem deletado com sucesso.',
|
||||
'lang-doesnot-exist' => 'Pacote de linguagem não existe.',
|
||||
'active-lang-error' => 'Pacote de linguagem não pode ser excluído quando esta ativo.',
|
||||
'language-error' => 'Pacote de linguagem não encontrado.',
|
||||
'iso-code' => 'ISO-CODE',
|
||||
'download' => 'Download',
|
||||
'upload_file' => 'Upload de arquivos',
|
||||
'enter_iso-code' => 'Informe o iso-code',
|
||||
'eg.' => 'Exemplo',
|
||||
'for' => 'Para',
|
||||
'english' => 'Inglês',
|
||||
'language-name' => 'Nome da linguagem',
|
||||
'file' => 'Arquivo',
|
||||
'read-more' => 'Leia mais.',
|
||||
'enable_lang' => 'Ativar.',
|
||||
'add-lang-package' => 'Adicionar novo pacote de linguagem',
|
||||
'package_exist' => 'O pacote já existe.',
|
||||
'iso-code-error' => 'Iso-code esta errado. Informe um iso-code correto.',
|
||||
'zipp-error' => 'Erro no arquivo Zip. Ele deve conter apenas arquivos php.',
|
||||
'upload-success' => 'Carregado com sucesso.',
|
||||
'file-error' => 'Erro no arquivo ou arquivo inválido.',
|
||||
'delete-success' => 'Pacote de linguagem deletado com sucesso.',
|
||||
'lang-doesnot-exist' => 'Pacote de linguagem não existe.',
|
||||
'active-lang-error' => 'Pacote de linguagem não pode ser excluído quando esta ativo.',
|
||||
'language-error' => 'Pacote de linguagem não encontrado.',
|
||||
|
||||
/*
|
||||
|--------------------------------------
|
||||
@@ -537,7 +536,7 @@ return [
|
||||
'make-default-helptopic' => 'Definir tópico de ajuda como padrão',
|
||||
/*
|
||||
|--------------------------------------
|
||||
| SLA plan Index Page
|
||||
| SLA plan Index Page
|
||||
|--------------------------------------
|
||||
*/
|
||||
'sla_plans' => 'SLA Plans',
|
||||
@@ -546,7 +545,7 @@ return [
|
||||
'added_date' => 'Added Date',
|
||||
/*
|
||||
|--------------------------------------
|
||||
| SLA plan Create Page
|
||||
| SLA plan Create Page
|
||||
|--------------------------------------
|
||||
*/
|
||||
'transient' => 'Transient',
|
||||
@@ -849,10 +848,9 @@ return [
|
||||
'group_cannot_delete' => 'Grupo não pode ser deletado',
|
||||
'failed_to_load_the_page' => 'Falha ao carregar a página',
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------
|
||||
| SMTP Page
|
||||
| SMTP Page
|
||||
|--------------------------------------
|
||||
*/
|
||||
'driver' => 'Driver',
|
||||
@@ -922,9 +920,6 @@ return [
|
||||
'tickets_have_been_closed' => 'Os tickets selecionados foram fechados.',
|
||||
'tickets_have_been_opened' => 'Os tickets selecionados foram abertos.',
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
|-----------------------------------------------
|
||||
| Profile
|
||||
@@ -969,7 +964,7 @@ return [
|
||||
'user' => 'Usuário',
|
||||
'users' => 'Usuários',
|
||||
'create_user' => 'Criar usuário',
|
||||
'edit_user' => 'Editar usuário',
|
||||
'edit_user' => 'Editar usuário',
|
||||
'full_name' => 'Nome completo',
|
||||
'mobile' => 'Mobile',
|
||||
'last_login' => 'Último login',
|
||||
@@ -1001,7 +996,7 @@ return [
|
||||
'please_select_an_organization' => 'Selecione uma organização por favor',
|
||||
'please_select_an_user' => 'Selecione um usuário por favor',
|
||||
'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',
|
||||
'users_of' => 'Usuário do',
|
||||
'organization_created_successfully' => 'Organização criada com sucesso',
|
||||
@@ -1219,7 +1214,6 @@ return [
|
||||
'manage_status' => 'Gerenciar Status',
|
||||
'notifications' => 'Notificações',
|
||||
|
||||
|
||||
'auto_close_workflow' => 'Finalizar automaticamente Workflow',
|
||||
'close_ticket_workflow_settings' => 'Fechar configurações do workflow',
|
||||
'successfully_saved_your_settings' => 'Configurações salvas com sucesso.',
|
||||
@@ -1333,7 +1327,7 @@ return [
|
||||
'password_updated_sucessfully' => 'Senha atualizada com sucesso',
|
||||
'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',
|
||||
"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',
|
||||
'no_records_on_publish_time' => 'Não há registros neste período',
|
||||
'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',
|
||||
/*
|
||||
* |---------------------------------------------------------------------------------------
|
||||
|Api settings
|
||||
|Api settings
|
||||
* |----------------------------------------------------------------------------------
|
||||
* |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',
|
||||
'use_subject' => 'Use Assunto',
|
||||
'reopen' => 'Reabrir',
|
||||
|
||||
|
||||
];
|
||||
|
@@ -11,7 +11,7 @@
|
||||
|--------------------------------------------------------------------------------
|
||||
| Added by :
|
||||
| translated : [NO/YES]
|
||||
| Added on :
|
||||
| Added on :
|
||||
*/
|
||||
return [
|
||||
|
||||
|
@@ -11,7 +11,7 @@
|
||||
|--------------------------------------------------------------------------------
|
||||
| Added by :
|
||||
| translated : [NO/YES]
|
||||
| Added on :
|
||||
| Added on :
|
||||
*/
|
||||
|
||||
return [
|
||||
|
@@ -11,7 +11,7 @@
|
||||
|--------------------------------------------------------------------------------
|
||||
| Added by :
|
||||
| translated : [NO/YES]
|
||||
| Added on :
|
||||
| Added on :
|
||||
*/
|
||||
|
||||
return [
|
||||
|
Reference in New Issue
Block a user