-
Notifications
You must be signed in to change notification settings - Fork 985
Expand file tree
/
Copy pathmessages.php
More file actions
34 lines (29 loc) · 1.03 KB
/
messages.php
File metadata and controls
34 lines (29 loc) · 1.03 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
<?php
return [
/*
|--------------------------------------------------------------------------
| Language files for Messages
|--------------------------------------------------------------------------
|
| The following language lines are the default for all packages
|
*/
'success' => [
'created' => ':Module 追加に成功しました。',
'updated' => ':Module 更新に成功しました。',
'deleted' => ':Module 削除に成功しました。',
'changed' => ':Module は :status です。',
'listed' => ':Module リスト化に成功しました。',
],
'error' => [
'create' => ':Module を作成できません。',
'update' => ':Module を更新できません。',
'delete' => ':Module を削除できません。',
],
'unprocessable' => '処理不可能です',
'areyousure' => '本気ですか?',
'type' => [
'success' => '成功',
'error' => 'エラー',
],
];