Blame view

resources/lang/zh-CN/auth.php 1.42 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
30
31
32
33
34
35
36
37
38
39
  <?php
  
  return [
  
      'profile'               => '个人资料',
      'logout'                => '退出登录',
      'login'                 => '登录',
      'login_to'              => '登录',
      'remember_me'           => '记住我',
      'forgot_password'       => '我忘记了我的密码',
      'reset_password'        => '重置密码',
      'enter_email'           => '请输入电子邮箱',
      'current_email'         => '目前电子邮箱',
      'reset'                 => '重置',
      'never'                 => '永远不要',
      
      'password' => [
          'current'           => '密码',
          'current_confirm'   => '确认密码',
          'new'               => '新的密码',
          'new_confirm'       => '确认新的密码',
      ],
      
      'error' => [
          'self_delete'       => '错误:无法删除自己!',
          'no_company'        => '错误: 你账户下没有公司,请联系管理员.',
      ],
  
      'failed'                => '账号或者密码错误',
      'disabled'              => '此账号已被停用,请联系管理员',
      'throttle'              => '尝试登录次数过多,请在 :seconds 秒后再试。',
  
      'notification' => [
          'message_1'     => '您收到此电子邮件是因为我们收到了您帐户的密码重置请求.',
          'message_2'     => '如果您未请求重置密码,则无需进一步操作.',
          'button'        => '重置密码',
      ],
  
  ];