Blame view

resources/lang/en-GB/messages.php 1.35 KB
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  <?php
  
  return [
  
      'success' => [
          'added'             => ':type added!',
          'updated'           => ':type updated!',
          'deleted'           => ':type deleted!',
          'duplicated'        => ':type duplicated!',
          'imported'          => ':type imported!',
          'enabled'           => ':type enabled!',
          'disabled'          => ':type disabled!',
      ],
      'error' => [
          'over_payment'      => 'Error: Payment not added! Amount passes the total. You don\'t should max add amount: :amount',
          'not_user_company'  => 'Error: You are not allowed to manage this company!',
          'customer'          => 'Error: User not created! :name already uses this email address.',
          'no_file'           => 'Error: No file selected!',
          'last_category'     => 'Error: Can not delete the last :type category!',
          'invalid_token'     => 'Error: The token entered is invalid!',
          'import_column'     => 'Error: :message Sheet name: :sheet. Line number: :line.',
          'import_sheet'      => 'Error: Sheet name is not valid. Please, check the sample file.',
      ],
      'warning' => [
          'deleted'           => 'Warning: You are not allowed to delete <b>:name</b> because it has :text related.',
          'disabled'          => 'Warning: You are not allowed to disable <b>:name</b> because it has :text related.',
      ],
  
  ];