2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return array(
|
|
|
|
|
2016-10-04 12:23:02 -07:00
|
|
|
'does_not_exist' => '組件不存在',
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
'create' => array(
|
2016-10-04 12:23:02 -07:00
|
|
|
'error' => '新增組件失敗,請重試。',
|
|
|
|
'success' => '新增組件成功。'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'update' => array(
|
2016-10-04 12:23:02 -07:00
|
|
|
'error' => '更新組件失敗,請重試。',
|
|
|
|
'success' => '更新組件成功。'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'delete' => array(
|
2016-10-04 12:23:02 -07:00
|
|
|
'confirm' => '您確定要刪除此組件嗎?',
|
|
|
|
'error' => '刪除組件時發生問題。請再試一次。',
|
|
|
|
'success' => '刪除組件成功。'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'checkout' => array(
|
2016-10-04 12:23:02 -07:00
|
|
|
'error' => '組件借出失敗。請再試一次。',
|
|
|
|
'success' => '借出組件成功。',
|
|
|
|
'user_does_not_exist' => '使用者不正確。請再試一次。'
|
2016-03-25 01:18:05 -07:00
|
|
|
),
|
|
|
|
|
|
|
|
'checkin' => array(
|
2016-10-04 12:23:02 -07:00
|
|
|
'error' => '組件繳回失敗。請再試一次。',
|
|
|
|
'success' => '繳回組件成功。',
|
|
|
|
'user_does_not_exist' => '使用者不正確。請再試一次。'
|
2016-03-25 01:18:05 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
);
|