Issues (3884)

Security Analysis    not enabled

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

resources/lang/ru/lang.php (3 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
return [
4
    /*
5
      |----------------------------------------------------------------------------------------
6
      | Authentication Pages [English(en)]
7
      |----------------------------------------------------------------------------------------
8
      |
9
      | The following language lines are used in all authentication related issues to translate
10
      | some words in view to English. You are free to change them to anything you want to
11
      | customize your views to better match your application.
12
      |
13
     */
14
15
    /*
16
      |--------------------------------------
17
      |   Error
18
      |--------------------------------------
19
     */
20
    'success' => 'Success',
21
    'fails'   => 'Fails',
22
    'alert'   => 'Alert',
23
    /*
24
      |--------------------------------------
25
      |   Login Page
26
      |--------------------------------------
27
     */
28
    'Login_to_start_your_session' => 'Авторизуйтесь, чтобы начать сеанс',
29
    'login'                       => 'Login',
30
    'remember'                    => 'Запомнить меня',
31
    'signmein'                    => 'Запишите меня в',
32
    'iforgot'                     => 'Я забыл свой пароль',
33
    'email_address'               => 'E-Mail Address',
34
    'password'                    => 'Пароль',
35
    'woops'                       => 'Whoops!',
36
    'theirisproblem'              => 'There were some problems with your input.',
37
    'login'                       => 'Login',
38
    'e-mail'                      => 'E-mail',
39
    'reg_new_member'              => 'Register a new membership',
40
    /*
41
      |--------------------------------------
42
      |   Register Page
43
      |--------------------------------------
44
     */
45
    'registration'                => 'Регистрация',
46
    'full_name'                   => 'Полное имя',
47
    'firstname'                   => 'Имя',
48
    'lastname'                    => 'Фамилия',
49
    'profilepicture'              => 'Аватар профиля',
50
    'oldpassword'                 => 'Старый пароль',
51
    'newpassword'                 => 'Новый пароль',
52
    'retype_password'             => 'Повторите пароль',
53
    'i_agree_to_the'              => 'Я согласен с',
54
    'terms'                       => 'условия',
55
    'register'                    => 'Регистрация',
56
    'i_already_have_a_membership' => 'У меня уже есть членство',
57
    /*
58
      |--------------------------------------
59
      |   Reset Password Page
60
      |--------------------------------------
61
     */
62
    'reset_password' => 'Reset Password',
63
    /*
64
      |--------------------------------------
65
      |   Forgot Password Page
66
      |--------------------------------------
67
     */
68
    'i_know_my_password'            => 'I know my password',
69
    'recover_passord'               => 'Recover Password',
70
    'send_password_reset_link'      => 'Send pasword Reset Link',
71
    'enter_email_to_reset_password' => 'Enter E-mail to reset password',
72
    'link'                          => 'Link',
73
    /*
74
      |----------------------------------------------------------------------------------------
75
      | Emails Pages [English(en)]
76
      |----------------------------------------------------------------------------------------
77
      |
78
      | The following language lines are used in all Emails related issues to translate
79
      | some words in view to English. You are free to change them to anything you want to
80
      | customize your views to better match your application.
81
      |
82
     */
83
    'admin_panel' => 'Админ панель',
84
    /*
85
      |--------------------------------------
86
      |  Emails Create Page
87
      |--------------------------------------
88
     */
89
    'emails'                  => 'Emails',
90
    'incoming_emails'         => 'Входящие Emails',
91
    'reuired_authentication'  => 'Reuired Authentication',
92
    'fetching_email_via_imap' => 'Fetching Email via IMAP',
93
    'create_email'            => 'Создать Email',
94
    'email_address'           => 'Email Address',
95
    'email_name'              => 'Email Name',
96
    'help_topic'              => 'Help Topic',
97
    'auto_response'           => 'Автоматический Ответ',
98
    'host_name'               => 'Host Name',
99
    'port_number'             => 'Port Number',
100
    'mail_box_protocol'       => 'Mail Box Protocol',
101
    'authentication_required' => 'Authentication Required',
102
    'yes'                     => 'Да',
103
    'no'                      => 'Нет',
104
    'header_spoofing'         => 'Header Spoofing',
105
    'allow_for_this_email'    => 'Allow For This Email',
106
    'imap_config'             => 'IMAP Configuration',
107
    /*
108
      |--------------------------------------
109
      |  Ban Emails Create Page
110
      |--------------------------------------
111
     */
112
    'ban_lists'  => 'Лист запретов',
113
    'ban_email'  => 'Запрет Email',
114
    'banlists'   => 'Листы запретов',
115
    'ban_status' => 'Статус запретов',
116
    /*
117
      |--------------------------------------
118
      |  Templates Index Page
119
      |--------------------------------------
120
     */
121
    'templates'       => 'Шаблоны',
122
    'template_set'    => 'Template Sets',
123
    'create_template' => 'Создать шаблон',
124
    'edit_template'   => 'Редактировать шаблон',
125
    'in_use'          => 'In Use',
126
    //Template Description
127
    'Create ticket agent'       => 'Notification email that is sent to Agent & Admin when ticket is created',
128
    'Assign ticket'             => 'Ticket assigned to an agent',
129
    'Create ticket'             => 'Mail sent to client for ticket creation successful message',
130
    'Check ticket'              => 'if a client wants to check ticket via customer portal then a link will be sent to client. this link is for the client to view ticket details with ticket no, without logging in to system',
131
    'Ticket reply agent'        => 'A notification is sent to agent email once client replies to the ticket',
132
    'Registration notification' => 'Password and username is sent on email on first registration',
133
    'Reset password'            => 'Email with Password reset link',
134
    'Error report'              => 'Error report',
135
    'Ticket creation'           => 'First notification sent by the system about the ticket creation to the client',
136
    'Ticket reply'              => 'A reply made by the agent on a ticket, email notification is sent  to client and collaborators',
137
    'Close ticket'              => 'Mail sent to client on closing a ticket',
138
    'Create ticket by agent'    => 'An agent creates a ticket for the client in the name of client',
139
    /*
140
      |--------------------------------------
141
      |  Templates Create Page
142
      |--------------------------------------
143
     */
144
    'template_set_to_clone' => 'Template set to clone',
145
    'language'              => 'Язык',
146
    /*
147
      |--------------------------------------
148
      |  Diagnostics Page
149
      |--------------------------------------
150
     */
151
    'diagnostics' => 'Диагностика',
152
    'from'        => 'From',
153
    'to'          => 'To',
154
    'subject'     => 'Subject',
155
    'message'     => 'Сообщение',
156
    'send'        => 'Послать',
157
    /*
158
      |----------------------------------------------------------------------------------------
159
      | Settings Pages [English(en)]
160
      |----------------------------------------------------------------------------------------
161
      |
162
      | The following language lines are used in all Setting related issues to translate
163
      | some words in view to English. You are free to change them to anything you want to
164
      | customize your views to better match your application.
165
      |
166
     */
167
168
    /*
169
      |--------------------------------------
170
      |   Company Settings Page
171
      |--------------------------------------
172
     */
173
    'company' => 'Компания',
174
    'website' => 'Website',
175
    'phone'   => 'Телефон',
176
    'address' => 'Адрес',
177
    'landing' => 'Landing страница',
178
    'offline' => 'Offline страница',
179
    'thank'   => 'Благодарственная страница',
180
    'logo'    => 'Логотип',
181
    'save'    => 'Сохранить',
182
    /*
183
      |--------------------------------------
184
      |   System Settings Page
185
      |--------------------------------------
186
     */
187
    'system'             => 'Система',
188
    'online'             => 'Online',
189
    'offline'            => 'Offline',
190
    'name/title'         => 'Name/Title',
191
    'pagesize'           => 'Размер страницы',
192
    'url'                => 'URL',
193
    'default_department' => 'Default Department',
194
    'loglevel'           => 'Log Level',
195
    'purglog'            => 'Purge Logs',
196
    'nameformat'         => 'Name Formatting',
197
    'timeformat'         => 'Time Format',
198
    'date'               => 'Дата',
199
    'dateformat'         => 'Формат даты',
200
    'date_time'          => 'Формат даты и времени',
201
    'day_date_time'      => 'Day,Date And Time Format',
202
    'timezone'           => 'Временная зона',
203
    /*
204
      |--------------------------------------
205
      |   Email Settings Page
206
      |--------------------------------------
207
     */
208
    'email'                               => 'Email',
209
    'default_template'                    => 'Default Template Set:',
210
    'default_system_email'                => 'Система Электронной Почты по умолчанию :',
211
    'default_alert_email'                 => 'Default Alert Email:',
212
    'admin_email'                         => 'E-mail Администратора:',
213
    'email_fetch'                         => 'Email Fetching:',
214
    'enable'                              => 'Включить',
215
    'default_MTA'                         => 'Default MTA',
216
    'fetch_auto-corn'                     => 'Выборка по авто-хрон',
217
    'strip_quoted_reply'                  => 'Процитировал Ответ',
218
    'reply_separator'                     => 'Reply Separator Tag',
219
    'accept_all_email'                    => 'Принимаем Все Письма',
220
    'accept_email_unknown'                => 'Принимать почту от неизвестных пользователей',
221
    'accept_email_collab'                 => 'Принимать почту соавторов',
222
    'automatically_and_collab_from_email' => 'Automatically add collaborators from email fields',
223
    'default_alert_email'                 => 'Default Alert Email',
224
    'attachments'                         => 'Вложения',
225
    'email_attahment_user'                => 'Email attachments to the user',
226
    'cron_notification'                   => 'Включить уведомления хрон',
227
    /*
228
      |--------------------------------------
229
      |   Ticket Settings Page
230
      |--------------------------------------
231
     */
232
    'ticket'                             => 'Заявка',
233
    'default_ticket_number_format'       => 'Формат номера заявки по умолчанию',
234
    'default_ticket_number_sequence'     => 'Последовательность номера заявки по умолчанию',
235
    'default_status'                     => 'Статус по умолчанию',
236
    'default_priority'                   => 'Приоритет по умолчанию',
237
    'default_sla'                        => '(SLA) время реакции по умолчанию',
238
    'default_help_topic'                 => 'Справки помощи по умолчанию ',
239
    'maximum_open_tickets'               => 'Максимум открытых заявок',
240
    'agent_collision_avoidance_duration' => 'Agent Collision Avoidance Duration',
241
    'human_verification'                 => 'Human Verification',
242
    'claim_on_response'                  => 'Претензия на ответ',
243
    'assigned_tickets'                   => 'Назначеные заявки',
244
    'answered_tickets'                   => 'Answered Tickets',
245
    'agent_identity_masking'             => 'Agent Identity Masking',
246
    'enable_HTML_ticket_thread'          => 'Включить HTML в заявках',
247
    'allow_client_updates'               => 'Разрешить обновления Клиента',
248
    /*
249
      |--------------------------------------
250
      |   Access Settings Page
251
      |--------------------------------------
252
     */
253
    'access'                                           => 'Access',
254
    'expiration_policy'                                => 'Политика истечения срока действия паролей',
255
    'allow_password_resets'                            => 'Разрешить сброс пароля',
256
    'reset_token_expiration'                           => 'Reset Token Expiration',
257
    'agent_session_timeout'                            => 'Таймаут сессии Агента',
258
    'bind_agent_session_IP'                            => 'Привязать сессию Агента к IP',
259
    'registration_required'                            => 'Требуется регистрация',
260
    'require_registration_and_login_to_create_tickets' => 'Требуется регистрация или войдите со своим логином для открытия заявки',
261
    'registration_method'                              => 'Метод регистрации',
262
    'user_session_timeout'                             => 'Тайм-Аут Сессии Пользователя',
263
    'client_quick_access'                              => 'Клиент быстрого доступа',
264
    /*
265
      |--------------------------------------
266
      |   Auto-Response Settings Page
267
      |--------------------------------------
268
     */
269
    'auto_responce'                 => 'Автоответчик',
270
    'new_ticket'                    => 'Новая заявка',
271
    'new_ticket_by_agent'           => 'Новая заявка Агента',
272
    'new_message'                   => 'Новое сообщение',
273
    'submitter'                     => 'Submitter : ',
274
    'send_receipt_confirmation'     => 'Отправьте подтверждение о получении',
275
    'participants'                  => 'Участники : ',
276
    'send_new_activity_notice'      => 'Отправить новое уведомление об активности',
277
    'overlimit_notice'              => 'Overlimit Notice',
278
    'email_attachments_to_the_user' => 'Email attachments to the user',
279
    /*
280
      |--------------------------------------
281
      |   Оповещения И Уведомления Настройки Страницы
282
      |--------------------------------------
283
     */
284
    'disable'                                               => 'Отключить',
285
    'admin_email_2'                                         => 'Почта администратора',
286
    'alert_notices'                                         => 'Предупреждения и напоминания',
287
    'new_ticket_alert'                                      => 'Новая заявка предупреждения',
288
    'department_manager'                                    => 'Менеджер Отдела',
289
    'department_members'                                    => 'Члены отделов',
290
    'organization_account_manager'                          => 'Organization Account Manager',
291
    'new_message_alert'                                     => 'New Message Alert',
292
    'last_respondent'                                       => 'Last Respondent',
293
    'assigned_agent_team'                                   => 'Assigned Agent / Team',
294
    'new_internal_note_alert'                               => 'New Internal Note Alert',
295
    'ticket_assignment_alert'                               => 'Заявка оповещения предупреждения',
296
    'team_lead'                                             => 'Team Lead',
297
    'team_members'                                          => 'Члены Команды',
298
    'ticket_transfer_alert'                                 => 'Ticket Transfer Alert',
299
    'overdue_ticket_alert'                                  => 'Overdue Ticket Alert ',
300
    'system_alerts'                                         => 'System Alerts',
301
    'system_errors'                                         => 'System Errors',
302
    'SQL_errors'                                            => 'SQL errors',
303
    'excessive_failed_login_attempts'                       => 'Excessive failed login attempts',
304
    'system_error_reports'                                  => 'Отчет системных ошибок',
305
    'Send_app_crash_reports_to_help_Ladybird_improve_Faveo' => 'Отправлять отчеты о сбоях приложения, чтобы помочь разработчику улучшить Faveo',
306
    /*
307
      |------------------------------------------------
308
      |Language page
309
      |------------------------------------------------
310
     */
311
    'default'            => 'default',
312
    'iso-code'           => 'ISO-CODE',
313
    'download'           => 'Downlaod',
314
    'upload_file'        => 'Загрузить файл',
315
    'enter_iso-code'     => 'Enter ISO-CODE',
316
    'eg.'                => 'Example',
317
    'for'                => 'for',
318
    'english'            => 'Английский',
319
    'language-name'      => 'Наименование языка',
320
    'file'               => 'File',
321
    'read-more'          => 'Подробнее.',
322
    'enable_lang'        => 'Enable it.',
323
    'add-lang-package'   => 'Add new language package',
324
    'package_exist'      => 'Package already exists.',
325
    'iso-code-error'     => 'Error in iso-code. enter correct iso-code.',
326
    'zipp-error'         => 'Error in zip file. Zip must contian language php files only.',
327
    'upload-success'     => 'Загрузка произошла успешна.',
328
    'file-error'         => 'Error in file or invalid file.',
329
    'delete-success'     => 'Языковой пакет успешно удален.',
330
    'lang-doesnot-exist' => 'Языковой пакет не существует.',
331
    'active-lang-error'  => 'Языковой пакет не может быть удален, когда он активен.',
332
    'language-error'     => 'Языковой пакет не найден в указанной дериктории.',
333
    'lang-fallback-lang' => 'Cannot delete system\'s defualt fallback language',
334
    /*
335
      |----------------------------------------------------------------------------------------
336
      | Manage Pages [English(en)]
337
      |----------------------------------------------------------------------------------------
338
      |
339
      | The following language lines are used in all Manage related issues to translate
340
      | some words in view to English. You are free to change them to anything you want to
341
      | customize your views to better match your application.
342
      |
343
     */
344
    'manage' => 'Управление',
345
    /*
346
      |--------------------------------------
347
      |  Help Topic index Page
348
      |--------------------------------------
349
     */
350
    'help_topics'       => 'Справки',
351
    'topic'             => 'Topic',
352
    'type'              => 'Type',
353
    'priority'          => 'Приоритет',
354
    'last_updated'      => 'Последнее обновление',
355
    'create_help_topic' => 'Создать справочный материал',
356
    'action'            => 'Действие',
357
    /*
358
      |--------------------------------------
359
      |  Help Topic Create Page
360
      |--------------------------------------
361
     */
362
    'active'               => 'Активный',
363
    'disabled'             => 'Отключенный ',
364
    'public'               => 'Публичный',
365
    'private'              => 'Приватный',
366
    'parent_topic'         => 'Родителбь темы',
367
    'Custom_form'          => 'Пользовательские Формы',
368
    'SLA_plan'             => '(SLA) Время реакции',
369
    'auto_assign'          => 'Автоматическое назначение',
370
    'auto_respons'         => 'Автоответ',
371
    'ticket_number_format' => 'Формат номера заявки',
372
    'system_default'       => 'Система По Умолчанию',
373
    'custom'               => 'Custom',
374
    'internal_notes'       => 'Внутренние примечания',
375
    /*
376
      |--------------------------------------
377
      |  SLA plan Index Page
378
      |--------------------------------------
379
     */
380
    'sla_plans'    => 'SLA Plans',
381
    'create_SLA'   => 'Create a SLA',
382
    'grace_period' => 'Grace Period',
383
    'added_date'   => 'Added Date',
384
    /*
385
      |--------------------------------------
386
      |  SLA plan Create Page
387
      |--------------------------------------
388
     */
389
    'transient'            => 'Transient',
390
    'ticket_overdue_alert' => 'Ticket Overdue Alerts',
391
    /*
392
      |--------------------------------------
393
      |  Form Create Page
394
      |--------------------------------------
395
     */
396
    'title'                                 => 'Title',
397
    'instruction'                           => 'Инструкция',
398
    'label'                                 => 'Метка',
399
    'visibility'                            => 'Видимость',
400
    'variable'                              => 'Переменная',
401
    'create_form'                           => 'Создать форму',
402
    'forms'                                 => 'Формы',
403
    'form_name'                             => 'Наименование формы',
404
    'view_this_form'                        => 'Просмотреть данную форму',
405
    'delete_from'                           => 'Удалить форму',
406
    'are_you_sure_you_want_to_delete'       => 'Вы уверены, что хотите удалить',
407
    'close'                                 => 'Закрыть',
408
    'instructions'                          => 'Инструкции',
409
    'instructions_on_creating_form'         => "Select field type you want to add to the form below and click on 'Type' dropdown. Don't forget to set field options if type is select,checkbox or radio..Separate each option by a coma. After you finish creating the form, you can save the form by clicking Save Form button",
410
    'form_properties'                       => 'Свойства Формы',
411
    'adding_fields'                         => 'Добавление полей',
412
    'click_add_fields_button_to_add_fields' => "Click <b>'Add Fields'</b> button to add Fields",
413
    'add_fields'                            => 'Добавить поле',
414
    'save_form'                             => 'Сохранить Форму',
415
    'label'                                 => 'Метки',
416
    'name'                                  => 'Имя',
417
    'type'                                  => 'Тип',
418
    'values(selected_fields)'               => 'Значения(Выбранные Поля)',
419
    'required'                              => 'Требуется',
420
    'Action'                                => 'Действие',
421
    'remove'                                => 'Удалить',
422
    /*
423
      |----------------------------------------------------------------------------------------
424
      | Theme Pages [English(en)]
425
      |----------------------------------------------------------------------------------------
426
      |
427
      | The following language lines are used in all Theme related issues to translate
428
      | some words in view to English. You are free to change them to anything you want to
429
      | customize your views to better match your application.
430
      |
431
     */
432
    'themes' => 'Themes',
433
    /*
434
      |--------------------------------------
435
      |  Footer Pages
436
      |--------------------------------------
437
     */
438
    'footer'  => 'Footer',
439
    'footer1' => 'Footer1',
440
    'footer2' => 'Footer2',
441
    'footer3' => 'Footer3',
442
    'footer4' => 'Footer4',
443
    /*
444
      |----------------------------------------------------------------------------------------
445
      | Staff Pages [English(en)]
446
      |----------------------------------------------------------------------------------------
447
      |
448
      | The following language lines are used in all Staff related issues to translate
449
      | some words in view to English. You are free to change them to anything you want to
450
      | customize your views to better match your application.
451
      |
452
     */
453
    'are_you_sure' => 'Вы уверены',
454
    'staffs'       => 'Штаб',
455
    'name'         => 'Наименование',
456
    'user_name'    => 'Имя пользователя',
457
    'status'       => 'Статус',
458
    'group'        => 'Группа',
459
    'department'   => 'Отдел',
460
    'created'      => 'Создать',
461
    'lastlogin'    => 'Last Login',
462
    'createagent'  => 'Создать Агента',
463
    'delete'       => 'Удалить',
464
    'agents'       => 'Агенты',
465
    'create'       => 'Создать',
466
    'edit'         => 'Редактировать',
467
    'departments'  => 'Отделы',
468
    'groups'       => 'Группы',
469
    /*
470
      |--------------------------------------
471
      |  Staff Create Page
472
      |--------------------------------------
473
     */
474
    'create_agent'           => 'Создать агента',
475
    'first_name'             => 'Имя',
476
    'last_name'              => 'Фамилия',
477
    'mobile_number'          => 'Мобильный номер телефона',
478
    'agent_signature'        => 'Подпись Агента',
479
    'account_status_setting' => 'Account Status & Setting',
480
    'account_type'           => 'Account Type',
481
    'admin'                  => 'Администратор',
482
    'agent'                  => 'Агент',
483
    'account_status'         => 'Account Status',
484
    'locked'                 => 'Закрыт',
485
    'assigned_group'         => 'Assigned Group',
486
    'primary_department'     => 'Primary Department',
487
    'agent_time_zone'        => 'Agent Time Zone',
488
    'day_light_saving'       => 'Day Light Saving',
489
    'limit_access'           => 'Limit Access',
490
    'directory_listing'      => 'Directory Listing',
491
    'vocation_mode'          => 'Vocation Mode',
492
    'assigned_team'          => 'Assigned Team',
493
    /*
494
      |--------------------------------------
495
      |  Department Create Page
496
      |--------------------------------------
497
     */
498
    'create_department'                                => 'Создать отдел',
499
    'manager'                                          => 'Менеджер',
500
    'ticket_assignment'                                => 'Ticket Assignment ',
501
    'restrict_ticket_assignment_to_department_members' => 'Restrict ticket assignment to department members',
502
    'outgoing_emails'                                  => 'Исходящие Письма',
503
    'outgoing_email'                                   => 'Исходящая Почта',
504
    'template_set'                                     => 'Выбор шаблона',
505
    'auto_responding_settings'                         => 'Auto-Responding Settigs',
506
    'disable_for_this_department'                      => 'Отключить данный отдел',
507
    'auto_response_email'                              => 'Auto-Response Email',
508
    'recipient'                                        => 'Получатель',
509
    'group_access'                                     => 'Group Access',
510
    'department_signature'                             => 'Department Signature',
511
    /*
512
      |--------------------------------------
513
      |  Team Create Page
514
      |--------------------------------------
515
     */
516
    'create_team'           => 'Создать команду',
517
    'team_lead'             => 'Team Lead',
518
    'assignment_alert'      => 'Assignment Alert',
519
    'disable_for_this_team' => 'Disable for this team',
520
    'teams'                 => 'Команды',
521
    /*
522
      |--------------------------------------
523
      |  Group Create Page
524
      |--------------------------------------
525
     */
526
    'create_group'         => 'Create Group',
527
    'goups'                => 'Goups',
528
    'can_create_ticket'    => 'Можете создать заявку',
529
    'can_edit_ticket'      => 'Можете редактировать заявку',
530
    'can_post_ticket'      => 'Can post Ticket',
531
    'can_close_ticket'     => 'Можеье закрыть заявку ',
532
    'can_assign_ticket'    => 'Можете назначить заявку',
533
    'can_transfer_ticket'  => 'Можете передать заявку',
534
    'can_delete_ticket'    => 'Можете удалить заявку',
535
    'can_ban_emails'       => 'Может запретить e-mails',
536
    'can_manage_premade'   => 'Can Manage premade',
537
    'can_manage_FAQ'       => 'Можете управлять FAQ',
538
    'can_view_agent_stats' => 'Можете посмотреть статистику агента',
539
    'department_access'    => 'Отдел Доступа ',
540
    'admin_notes'          => 'Примечания Администратора',
541
    'group_members'        => 'Члены Группы',
542
    'group_name'           => 'Наименование Группы',
543
    /*
544
      |--------------------------------------
545
      |  SMTP Page
546
      |--------------------------------------
547
     */
548
    'driver'     => 'Driver',
549
    'smtp'       => 'SMTP',
550
    'host'       => 'Host',
551
    'port'       => 'Port',
552
    'encryption' => 'Encryption',
553
    /*
554
      |----------------------------------------------------------------------------------------
555
      | Agent Panel [English(en)]
556
      |----------------------------------------------------------------------------------------
557
      |
558
      | The following language lines are used in all Agent Panel related issues to translate
559
      | some words in view to English. You are free to change them to anything you want to
560
      | customize your views to better match your application.
561
      |
562
     */
563
    'agent_panel'       => 'Панель агента',
564
    'profile'           => 'Профиль',
565
    'change_password'   => 'Изменить пароль',
566
    'sign_out'          => 'Выйти',
567
    'Tickets'           => 'ЗАЯВКИ',
568
    'inbox'             => 'Входящие',
569
    'my_tickets'        => 'Мои заявки',
570
    'unassigned'        => 'Неназначенные',
571
    'trash'             => 'Корзина',
572
    'Updates'           => 'ОБНОВЛЕНИЯ',
573
    'no_new_updates'    => 'Нет новых обновлений',
574
    'check_for_updates' => 'Проверить обновления',
575
    'open'              => 'Открыть',
576
    'inprogress'        => 'Inprogress',
577
    'closed'            => 'Закрыто',
578
    'Departments'       => 'ОТДЕЛЫ',
579
    'tools'             => 'Настройки',
580
    'canned'            => 'Canned',
581
    'knowledge_base'    => 'База знаний',
582
    'loading'           => 'Загрузить',
583
    'ratings'           => 'Оценки',
584
    'please_rate'       => 'Оцените пожалуйста,:',
585
    'ticket_ratings'    => 'Оцените заявку',
586
    /*
587
      |-----------------------------------------------
588
      |  Profile
589
      |-----------------------------------------------
590
     */
591
    'user_information'    => 'Информация о пользователе',
592
    'time_zone'           => 'Временная зона',
593
    'phone_number'        => 'Телефонный номер',
594
    'contact_information' => 'Контактная информацмя',
595
    /*
596
      |-----------------------------------------------
597
      |  Dashboard
598
      |-----------------------------------------------
599
     */
600
    'dashboard'  => 'Приборная панель',
601
    'line_chart' => 'Линейная диаграмма',
602
    'statistics' => 'Статистика',
603
    'opened'     => 'Открыты',
604
    'resolved'   => 'Исполнено',
605
    'closed'     => 'Закрыты',
606
    'deleted'    => 'Удалена',
607
    /*
608
      |------------------------------------------------
609
      |User Page
610
      |------------------------------------------------
611
     */
612
    'user_directory'  => 'Папка пользователя',
613
    'ban'             => 'Ban',
614
    'user'            => 'Пользователь',
615
    'users'           => 'Пользователи',
616
    'create_user'     => 'Создать пользователя',
617
    'full_name'       => 'Full Name',
618
    'mobile'          => 'Mobile',
619
    'last_login'      => 'Last Login',
620
    'user_profile'    => 'Профиль пользователя',
621
    'assign'          => 'Assign',
622
    'open_tickets'    => 'Открыть заявку',
623
    'closed_tickets'  => 'Закрыть заявку',
624
    'deleted_tickets' => 'Удалить заявку',
625
    /*
626
      |------------------------------------------------
627
      |Organization Page
628
      |------------------------------------------------
629
     */
630
    'organizations'                 => 'Организаций',
631
    'organization'                  => 'Организация',
632
    'create_organization'           => 'Создать организацию',
633
    'account_manager'               => 'Счет менеджера',
634
    'update'                        => 'обновить',
635
    'please_select_an_organization' => 'Пожалуйста, выберите организацию',
636
    'please_select_an_user'         => 'Пожалуйста, выберите пользователя',
637
    'organization_profile'          => 'Профиль Организации',
638
    'organization-s_head'           => 'Страница руководителя',
639
    'select_department_manager'     => 'Выберите Менеджера Отдела',
640
    'users_of'                      => 'Пользователи',
641
    /*
642
      |----------------------------------------------
643
      |  Страница заявок
644
      |----------------------------------------------
645
     */
646
    'subject'                                        => 'Сообщение',
647
    'ticket_id'                                      => 'ID заявки',
648
    'priority'                                       => 'Приоритет',
649
    'from'                                           => 'От',
650
    'last_replier'                                   => 'Last Replier',
651
    'assigned_to'                                    => 'Назначенные',
652
    'last_activity'                                  => 'Последняя активность',
653
    'answered'                                       => 'Ответил',
654
    'assigned'                                       => 'Назначены',
655
    'create_ticket'                                  => 'Создать заявку',
656
    'tickets'                                        => 'Заявки',
657
    'open'                                           => 'Открыть',
658
    'Ticket_Information'                             => 'ИНФОРМАЦИЯ О ЗАЯВКАХ',
659
    'Ticket_Id'                                      => 'ID ЗАЯВКИ',
660
    'User'                                           => 'ПОЛЬЗОВАТЕЛЬ',
661
    'Unassigned'                                     => 'НЕНАЗНАЧЕННЫЕ',
662
    'generate_pdf'                                   => 'PDF создать',
663
    'change_status'                                  => 'Изменить статус',
664
    'more'                                           => 'Больше',
665
    'delete_ticket'                                  => 'Удалить заявку',
666
    'emergency'                                      => 'Чрезвычайный',
667
    'high'                                           => 'Высокий',
668
    'medium'                                         => 'Средний',
669
    'low'                                            => 'Низкий',
670
    'sla_plan'                                       => 'SLA Plan',
671
    'created_date'                                   => 'Дата создания',
672
    'due_date'                                       => 'Срок',
673
    'last_response'                                  => 'Последний Ответ',
674
    'source'                                         => 'Источник',
675
    'last_message'                                   => 'Последнее сообщение',
676
    'reply'                                          => 'Повтор',
677
    'response'                                       => 'Ответ',
678
    'reply_content'                                  => 'Ответное сообщение',
679
    'attachment'                                     => 'Вложение',
680
    'internal_note'                                  => 'Внутреннее Примечание',
681
    'this_ticket_is_under_banned_user'               => 'This ticket is under banned user',
682
    'ticket_source'                                  => 'Источник заявки',
683
    'are_you_sure_to_ban'                            => 'Are you sure to ban',
684
    'whome_do_you_want_to_assign_ticket'             => 'Whome do you want to assign ticket',
685
    'are_you_sure_you_want_to_surrender_this_ticket' => 'Are you sure you want to surrender this Ticket',
686
    'add_collaborator'                               => 'Добавить Соавтора',
687
    'search_existing_users'                          => 'Поиск существующих пользователей',
688
    'add_new_user'                                   => 'Создать нового пользователя',
689
    'search_existing_users_or_add_new_users'         => 'Поиск Пользователя или добавить нового пользователя',
690
    'search_by_email'                                => 'Поиск по электронной почте',
691
    'list_of_collaborators_of_this_ticket'           => 'Список соавторов данной заявки',
692
    'submit'                                         => 'Submit',
693
    'max'                                            => 'Max',
694
    'add_cc'                                         => 'Add CC',
695
    'recepients'                                     => 'Адресаты',
696
    'select_a_canned_response'                       => 'Выберите готовый ответ',
697
    'assign_to'                                      => 'Назначить',
698
    'detail'                                         => 'Детали',
699
    'user_details'                                   => 'Детали пользователя',
700
    'ticket_option'                                  => 'Настройки заявки',
701
    'ticket_detail'                                  => 'Детали заявки',
702
    'Assigned_To'                                    => 'НАЗНАЧЕННЫЕ',
703
    'locked-ticket'                                  => 'Предупреждение! Этот билет был занят другим пользователем и в настоящее время в процесс рассмотрения.',
704
    'access-ticket'                                  => 'Предупреждение! Этот билет был занят, вы на следующий ',
705
    'minutes'                                        => ' минут',
706
    'in_minutes'                                     => 'In minutes',
707
    /*
708
      |------------------------------------------------
709
      |Инструментальная страница
710
      |------------------------------------------------
711
     */
712
    'canned_response'        => 'Canned Response',
713
    'create_canned_response' => 'Create Canned Response',
714
    'surrender'              => 'Surrender',
715
    'view'                   => 'Просмотр',
716
    /*
717
      |-----------------------------------------------
718
      | Текст главной
719
      |-----------------------------------------------
720
     */
721
    'copyright'           => 'Copyright',
722
    'all_rights_reserved' => 'Все права защищены',
723
    'powered_by'          => 'Разработано на',
724
    /*
725
      |------------------------------------------------
726
      |Гостевая-Страница Пользователя
727
      |------------------------------------------------
728
     */
729
    'issue_summary'        => 'Issue Summary',
730
    'issue_details'        => 'Детали вопроса',
731
    'contact_informations' => 'Контактная информация',
732
    'contact_details'      => 'Contact Details',
733
    'role'                 => 'Роль',
734
    'ext'                  => 'Код города',
735
    'profile_pic'          => 'Изображение профиля',
736
    'agent_sign'           => 'Подпись Агента в сообщениях',
737
    'inactive'             => 'Inactive',
738
    'male'                 => 'Мужчина',
739
    'female'               => 'Женщина',
740
    'old_password'         => 'Старый пароль',
741
    'new_password'         => 'Новый пароль',
742
    'confirm_password'     => 'Повторите пароль',
743
    'gender'               => 'Пол',
744
    'ticket_number'        => 'Номер заявки',
745
    'content'              => 'Содержание',
746
    /*
747
      |------------------------------------------------
748
      |   Error Pages
749
      |------------------------------------------------
750
     */
751
    'not_found'                                       => 'Not Found',
752
    'oops_page_not_found'                             => 'Oops! Page not found',
753
    'we_could_not_find_the_page_you_were_looking_for' => 'We could not find the page you were looking for',
754
    'internal_server_error'                           => 'Internal server Error',
755
    'be_right_back'                                   => 'Be right back',
756
    'sorry'                                           => 'Sorry',
757
    'we_are_working_on_it'                            => 'We are working on it',
758
    'category'                                        => 'Category',
759
    'addcategory'                                     => 'Add Category',
760
    'allcategory'                                     => 'All Category',
761
    'article'                                         => 'Article',
762
    'articles'                                        => 'Articles',
763
    'addarticle'                                      => 'Add Article',
764
    'allarticle'                                      => 'All Article',
765
    'pages'                                           => 'Страница',
766
    'addpages'                                        => 'Создать страницу',
767
    'allpages'                                        => 'Все страницы',
768
    'widgets'                                         => 'Виджеты',
769
    'footer1'                                         => 'Footer 1',
770
    'footer2'                                         => 'Footer 2',
771
    'footer3'                                         => 'Footer 3',
772
    'footer4'                                         => 'Footer 4',
773
    'sidewidget1'                                     => 'Side Widget 1',
774
    'sidewidget2'                                     => 'Side Widget 2',
775
    'comments'                                        => 'Комментарии',
776
    'settings'                                        => 'Настройки',
777
    'parent'                                          => 'Родитель',
778
    'description'                                     => 'Описание',
779
    'enter_the_description'                           => 'Ввести описание',
780
    'publish'                                         => 'Опубликовать',
781
    'published'                                       => 'Опубликовано',
782
    'draft'                                           => 'Проект',
783
    'create_a_category'                               => 'Создать категорию',
784
    'add'                                             => 'создать',
785
    'social'                                          => 'Социальные',
786
    'comment'                                         => 'Комментарий',
787
    'not_published'                                   => 'Not Published',
788
    'numberofelementstodisplay'                       => 'Number of elements to display',
789
    //======================================
790
    'language'                                                                 => 'Язык',
791
    'save'                                                                     => 'Сохранить',
792
    'create'                                                                   => 'Создать',
793
    'dateformat'                                                               => 'Формат даты',
794
    'slug'                                                                     => 'Slug',
795
    'read_more'                                                                => 'Подробнее',
796
    'view_all'                                                                 => 'Смотреть все',
797
    'categories'                                                               => 'Категории',
798
    'need_more_support'                                                        => 'Нужна дополнительная поддержка',
799
    'if_you_did_not_find_an_answer_please_raise_a_ticket_describing_the_issue' => 'If you did not find an answer, please raise a ticket describing the issue',
800
    'have_a_question?_type_your_search_term_here'                              => 'Have a question? Type your search term here...',
801
    'search'                                                                   => 'Поиск',
802
    'frequently_asked_questions'                                               => 'Frequently Asked Questions',
803
    'leave_a_reply'                                                            => 'Leave a Reply',
804
    'post_message'                                                             => 'Почтовое Сообщение',
805
    /*
806
      |--------------------------------------------------------------------------------------
807
      |  Client Panel [English(en)]
808
      |--------------------------------------------------------------------------------------
809
      | The following language lines are used in all Agent Panel related issues to translate
810
      | some words in view to English. You are free to change them to anything you want to
811
      | customize your views to better match your application.
812
      |
813
     */
814
    'home'                => 'Главная',
815
    'submit_a_ticket'     => 'Отправить Заявку',
816
    'my_profile'          => 'Мой профиль',
817
    'log_out'             => 'Выйти',
818
    'forgot_password'     => 'Забыл Пароль',
819
    'create_account'      => 'Создать Учетную запись',
820
    'you_are_here'        => 'Вы здесь',
821
    'have_a_ticket'       => 'Есть заявка',
822
    'check_ticket_status' => 'Проверить состояние заявки',
823
    'choose_a_help_topic' => 'Выбрать раздел справки',
824
    'ticket_status'       => 'Статус заявки',
825
    'post_comment'        => 'Отправить Комментарий',
826
    'plugin'              => 'Плагин',
827
    'end_date'            => 'Конец Даты',
828
829
    /***********************************New Updates ******************************************/
830
    /*                              Translation reuired                                      */
831
    /*****************************************************************************************/
832
    'edit_profile'                                                                     => 'Edit profile',
833
    'you_are_here'                                                                     => 'You are here',
834
    'Send'                                                                             => 'SEND',
835
    'no_article'                                                                       => 'No article',
836
    'profile_settings'                                                                 => 'Profile settings',
837
    'please_fill_all_required_feilds'                                                  => 'Please fill all required feilds.',
838
    'successfully_replied'                                                             => 'Successfully replied',
839
    'please_fill_some_data'                                                            => 'Please fill some data!',
840
    'profile_updated_sucessfully'                                                      => 'Profile updated sucessfully',
841
    'password_updated_sucessfully'                                                     => 'Password updated sucessfully',
842
    'password_was_not_updated_incorrect_old_password'                                  => 'Password was not updated. Incorrect old password',
843
    'there_is_no_such_ticket_number'                                                   => 'There is no such ticket number',
844
    "email_didn't_match_with_ticket_number"                                            => "Email didn't match with ticket number",
845
    'we_have_sent_you_a_link_by_email_please_click_on_that_link_to_view_ticket'        => 'We have sent you a link by email. Please click on that link to view ticket',
846
    'no_records_on_publish_time'                                                       => 'No records on publish time',
847
    'your_details_send_to_system'                                                      => 'Your details send to the system',
848
    'your_details_can_not_send_to_system'                                              => 'Your details can not be sent to the system',
849
    'your_comment_posted'                                                              => 'Your comment posted',
850
    'sorry_not_processed'                                                              => 'Sorry not processed',
851
    'profile_updated_sucessfully'                                                      => 'Profile updated sucessfully',
852
    'password_was_not_updated'                                                         => 'Password was not updated',
853
    'sorry_your_ticket_token_has_expired_please_try_to_resend_the_ticket_link_request' => 'Sorry your ticket token has expired! Please try to resend the ticket link request',
854
    'sorry_you_are_not_allowed_token_expired'                                          => 'Sorry you are not allowed. Token has expired!',
855
    'thank_you_for_your_rating'                                                        => 'Thank you for your rating!',
856
    'your_ticket_has_been'                                                             => 'Your ticket has been',
857
    'failed_to_send_email_contact_administrator'                                       => 'Email sending failed. Please contact system administrator',
858
    /*
859
     * |---------------------------------------------------------------------------------------
860
     * |API settings
861
     * |----------------------------------------------------------------------------------
862
     * |The following lanuage line used to get english traslation of api settings in admin panel
863
     * |
864
     * |
865
     */
866
    'webhooks'                         => 'Webhooks',
867
    'enter_url_to_send_ticket_details' => 'Enter the URL to send the ticket details',
868
    'api'                              => 'API',
869
    'api_key'                          => 'API key',
870
    'api_key_mandatory'                => 'API key mandatory',
871
    'api_configurations'               => 'API configurations',
872
    'generate_key'                     => 'Generate key',
873
    'api_settings'                     => 'API settings',
874
    /*
875
     * -----------------------------------------------------------------------------
876
     * Error log and debugging settings
877
     * --------------------------------------------------------------------------
878
     *
879
     */
880
    'error-debug'                        => 'Error logs and debugging',
881
    'debug-options'                      => 'Debugging options',
882
    'view-logs'                          => 'View error logs',
883
    'not-authorised-error-debug'         => 'You are not authorised to access the URL',
884
    'error-debug-settings'               => 'Error and debugging settings',
885
    'debugging'                          => 'Debugging mode',
886
    'bugsnag-debugging'                  => 'Send app crash reports to help Ladybird improve Faveo',
887
    'error-debug-settings-saved-message' => 'Your error and debugging settings have been saved successfully',
888
    'error-debug-settings-error-message' => 'You have not made any change in the settings.',
889
    'error-logs'                         => 'Error logs',
890
    /* ---------------------------------------------------------------------------------------
891
     * Latest update 16-06-2016
892
     * -----------------------------------------------------------------------------------
893
     */
894
    'that_email_is not_available_in_this_system' => 'That Email is not available in this System',
895
    'use_subject'                                => 'Use Subject',
896
    'reopen'                                     => 'Reopen',
897
    'invalid_attempt'                            => 'Invalid Attempt',
898
    /* ---------------------------------------------------------------------------------------
899
     * Latest update 27-07-2016
900
     * -----------------------------------------------------------------------------------
901
     */
902
    'queue'  => 'Queue',
903
    'queues' => 'Queues',
904
    /*     * -------------------------------------------------------------------------------------------------
905
     * OTP  messages body to send to user while registering, resetting passwords
906
     * --------------------------------------------------------------------------------------------------
907
     */
908
    'hello'                   => 'Hello',
909
    'reset-link-msg'          => ",\r\nHere is the link to reset your password.\r\n",
910
    'otp-for-your'            => ",\r\nOTP for your",
911
    'account-verification-is' => 'account verification is',
912
    'extra-text'              => ".\r\nYou can login to verify your account via OTP or just click on the link we've sent to your email address.",
913
    'otp-not-sent'            => 'We faced some problem in sending OTP please try after some time.',
914
    /*     * -------------------------------------------------------------------------------------------
915
     * Ticket number settings 03-08-2016
916
     * ------------------------------------------------------------------------------------------
917
     */
918
    'format'               => 'Format',
919
    'ticket-number-format' => 'This setting is used to generate ticket numbers. Use hash signs (`#`) where digits are to be placed & dollar sign(‘$’) where characters are to be placed . Any other text in the number format will be preserved. ',
920
    'ticket-number-type'   => 'Choose a sequence from which to derive new ticket numbers. The system has a incrementing sequence and a random sequence by default',
921
    /*     * ----------------------------------------------------------------------------------------------------
922
     * Social media integration
923
     * ---------------------------------------------------------------------------------------------------------
924
     */
925
    'client_id'     => 'Client id',
926
    'client_secret' => 'Client secret',
927
    'redirect'      => 'Redirect URL',
928
    'details'       => 'Details',
929
    'social-media'  => 'Social media',
930
    /*     * ----------------------------------------------------------------------------------------------
931
     * Report
932
     * ----------------------------------------------------------------------------------------------
933
     */
934
    'report'              => 'Report',
935
    'Report'              => 'REPORT',
936
    'start_date'          => 'Start date',
937
    'end_date'            => 'End date',
938
    'select'              => 'Select',
939
    'generate'            => 'Generate',
940
    'day'                 => 'Day',
941
    'week'                => 'Week',
942
    'month'               => 'Month',
943
    'Currnet_In_Progress' => 'CURRENT IN PROGRESS',
944
    'Total_Created'       => 'TOTAL CREATED',
945
    'Total_Reopened'      => 'TOTAL REOPENED',
946
    'Total_Closed'        => 'TOTAL CLOSED',
947
    'tabular'             => 'Tabular',
948
    'reopened'            => 'Reopened',
949
    /* ---------------------------------------------------------------------------------------
950
     * Ticket Priority
951
     * -----------------------------------------------------------------------------------
952
     */
953
    'ticket_priority'                                           => 'Ticket priority',
954
    'priority'                                                  => 'Priority',
955
    'priority_desc'                                             => 'Priority description',
956
    'priority_urgency'                                          => 'Priority urgency',
957
    'priority_id'                                               => 'Priority Id',
958
    'priority_color'                                            => 'Priority color',
959
    'ispublic'                                                  => 'IsPublic',
960
    'is_default'                                                => 'By default',
961
    'create_ticket_priority'                                    => 'Create ticket priority',
962
    'agent_notes'                                               => 'Agent notes',
963
    'select_priority'                                           => 'Select priority',
964
    'normal'                                                    => 'Normal',
965
    'ispublic'                                                  => 'Visibility',
966
    'make-default-priority'                                     => 'Make default priority',
967
    'priority_successfully_created'                             => 'Priority successfully created',
968
    'priority_successfully_updated'                             => 'Priority successfully updated',
969
    'delete_successfully'                                       => 'Delete successfully',
970
    'user_priority_status'                                      => 'User priority status',
971
    'current'                                                   => 'Current:',
972
    'active_user_can_select_the_priority_while_creating_ticket' => 'Active user can select the priority while creating ticket',
973
974
    /* --------------------------------------------------------------------------------------------
975
     * Approval Updated
976
     * --------------------------------------------------------------------------------------------
977
     */
978
    'approval'             => 'Approval',
979
    'approval_tickets'     => 'Approval tickets',
980
    'approve'              => 'Approve',
981
    'approval_request'     => 'Approval request',
982
    'approvel_ticket_list' => 'Approvel ticket list',
983
984
    'approval_settings'                      => 'Approval settings',
985
    'close_all_ticket_for_approval'          => 'Close all tickets for approval',
986
    'approval_settings-created-successfully' => 'Approval settings created successfully',
987
988
    /* --------------------------------------------------------------------------------------------
989
     * Followup Updated
990
     * --------------------------------------------------------------------------------------------
991
     */
992
     'followup'              => 'Followup',
993
     'followup_tickets'      => 'Followup tickets',
994
     'followup_Notification' => 'Followup notification',
995
996
     /*
997
      *--------------------------------------------------------------------------------------------
998
      *Updated 6-9-2016
999
      *---------------------------------------------------------------------------------------
1000
      */
1001
     'not-available'  => 'Not available',
1002
     /* --------------------------------------------------------------------------------------------
1003
     * User Module
1004
     * --------------------------------------------------------------------------------------------
1005
     */
1006
     'agent_report'                                                 => 'Agent report',
1007
     'assign_tickets'                                               => 'Assign tickets',
1008
     'delete_agent'                                                 => 'Delete agent',
1009
     'delete_user'                                                  => 'Delete user',
1010
     'confirm_deletion'                                             => 'Confirm deletion',
1011
     'delete_all_content'                                           => 'Delete all content',
1012
     'agent_profile'                                                => 'Agent profile',
1013
     'change_role_to_admin'                                         => 'Change role to admin',
1014
     'change_role_to_user'                                          => 'Change role to user',
1015
     'change_role_to_agent'                                         => 'Change role to agent',
1016
     'change_password'                                              => 'Change password',
1017
     'role_change'                                                  => 'Role change',
1018
     'password_generator'                                           => 'Password generator',
1019
     'depertment'                                                   => 'Depertment',
1020
     'duetoday'                                                     => 'Due today',
1021
     'today-due_tickets'                                            => 'Today\'s due ticekts',
1022
     'password_change_successfully'                                 => 'Password changed successfully',
1023
     'role_change_successfully'                                     => 'Role changed successfully',
1024
     'user_delete_successfully'                                     => 'User deleted successfully',
1025
     'agent_delete_successfully'                                    => 'Agent deleted successfully',
1026
     'select_another_agent'                                         => 'Select another agent',
1027
     'agent_delete_successfully_and_ticket_assign_to_another_agent' => 'Agent deleted successfully and ticket assigned to another agent',
1028
     'deleted_user'                                                 => 'Deleted User',
1029
     'deleted_user_directory'                                       => 'Deleted User Directory',
1030
     'restore'                                                      => 'Restore',
1031
     'user_restore_successfully'                                    => 'User restore successfully',
1032
1033
     /*** updates 28-11-2016***/
1034
     'apply'              => 'Apply',
1035
1036
     /* updates 2-12-2016 **/
1037
     'sort-by'                      => 'Sort by',
1038
     'created-at'                   => 'Created at',
1039
     'or'                           => 'OR',
1040
     'activate'                     => 'Activate',
1041
     '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.',
1042
     'assign-ticket'                => 'Assign tickets',
1043
     'can-not-inactive-group'       => 'Can not make the group inactive as it has agents assigned in it. Please assign those agents to another group and try again.',
1044
     'internal-note-has-been-added' => 'Internal note added to the ticket',
1045
     'active-users'                 => 'Active users',
1046
     'deleted-users'                => 'Deleted users',
1047
     'view-option'                  => 'View options',
1048
     'accoutn-not-verified'         => 'User account is not verified',
1049
     'enabled'                      => 'Enabled',
1050
     'disabled'                     => 'Disabled',
1051
     'user-account-is-deleted'      => 'This user account has been deleted.',
1052
     'restore-user'                 => 'Restore user account',
1053
     'delete-account-caution-info'  => 'Please note this account may still have  open tickets in the system.',
1054
     'reply-can-not-be-empty'       => 'Reply can not be blank. Please enter your reply.',
1055
1056
     //update 18-12-2016
0 ignored issues
show
Unused Code Comprehensibility introduced by
43% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
1057
     'account-created-contact-admin-as-we-were-not-able-to-send-opt' => 'Your account has been created successfully. Please contact admin for account activation as we were not able to send you an OPT code.',
1058
1059
     //update 19-12-2016
0 ignored issues
show
Unused Code Comprehensibility introduced by
43% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
1060
     'only-agents'         => 'Agent users',
1061
     'only-users'          => 'Clients users',
1062
     'banned-users'        => 'Banned users',
1063
     'inactive-users'      => 'Inactive users',
1064
     'all-users'           => 'All users',
1065
     'search'              => 'Search...',
1066
     //update 21-12-2016
0 ignored issues
show
Unused Code Comprehensibility introduced by
43% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
1067
     'selected-user-is-already-the-owner' => 'Selected user is already the owner of this ticket.',
1068
];
1069