buttons.php
1.47 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
return [
/*
|--------------------------------------------------------------------------
| Buttons Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used in buttons throughout the system.
| Regardless where it is placed, a button can be listed here so it is easily
| found in a intuitive way.
|
*/
'backend' => [
'access' => [
'users' => [
'activate' => 'Activate',
'change_password' => 'パスワードの変更',
'deactivate' => 'Deactivate',
'delete_permanently' => 'Delete Permanently',
'login_as' => 'Login As :user',
'resend_email' => '再確認メール',
'restore_user' => 'ユーザーの復元',
'unconfirm' => 'Un-confirm',
'unlink' => 'Unlink',
],
],
],
'emails' => [
'auth' => [
'confirm_account' => 'アカウントの確認',
'reset_password' => 'パスワードのリセット',
],
],
'general' => [
'cancel' => 'キャンセル',
'crud' => [
'create' => '作成',
'delete' => '削除',
'edit' => '編集',
'update' => '更新',
'view' => '表示',
],
'save' => '保存',
'view' => '表示',
],
];