mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-12 00:24:07 -08:00
ddfa5776c5
This absolutely sucks. Something changed in CrowdIn or something else, which results in this push being *thousands* of files because someone somewhere decided that `return [];` was vastly inferior to `return array();` I'll try to fix it. :( FML Signed-off-by: snipe <snipe@snipe.net>
37 lines
930 B
PHP
37 lines
930 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => '耗材不存在。',
|
|
|
|
'create' => array(
|
|
'error' => '耗材未被创建,请重试。',
|
|
'success' => '耗材创建成功。'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => '耗材未被更新,请重试。',
|
|
'success' => '耗材更新成功。'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => '您确定希望删除此耗材?',
|
|
'error' => '删除耗材失败,请重试',
|
|
'success' => '成功删除此耗材。'
|
|
),
|
|
|
|
'checkout' => array(
|
|
'error' => '耗材领取失败,请重试',
|
|
'success' => '耗材领取成功',
|
|
'user_does_not_exist' => '无效用户,请重试。'
|
|
),
|
|
|
|
'checkin' => array(
|
|
'error' => '耗材登记失败,请重试',
|
|
'success' => '耗材登记成功',
|
|
'user_does_not_exist' => '无效用户,请重试。'
|
|
)
|
|
|
|
|
|
);
|