37 lines
961 B
PHP
Executable File
37 lines
961 B
PHP
Executable File
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => '耗材不存在。',
|
|
|
|
'create' => array(
|
|
'error' => '耗材未被创建,请重试。',
|
|
'success' => '耗材创建成功。'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => '耗材未被更新,请重试。',
|
|
'success' => '耗材更新成功。'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => 'Are you sure you wish to delete this consumable?',
|
|
'error' => '删除耗材失败,请重试',
|
|
'success' => 'The consumable was deleted successfully.'
|
|
),
|
|
|
|
'checkout' => array(
|
|
'error' => '耗材领取失败,请重试',
|
|
'success' => '耗材领取成功',
|
|
'user_does_not_exist' => '无效用户,请重试。'
|
|
),
|
|
|
|
'checkin' => array(
|
|
'error' => '耗材登记失败,请重试',
|
|
'success' => '耗材登记成功',
|
|
'user_does_not_exist' => '无效用户,请重试。'
|
|
)
|
|
|
|
|
|
);
|