mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -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>
28 lines
985 B
PHP
28 lines
985 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
'does_not_exist' => '供應商不存在',
|
|
|
|
|
|
'create' => array(
|
|
'error' => '新增供應商失敗,請重試',
|
|
'success' => '新增供應商成功。'
|
|
),
|
|
|
|
'update' => array(
|
|
'error' => '更新供應商失敗,請重試',
|
|
'success' => '更新供應商成功。'
|
|
),
|
|
|
|
'delete' => array(
|
|
'confirm' => '您確定要刪除此供應商嗎?',
|
|
'error' => '刪除供應商失敗,請重試',
|
|
'success' => '刪除供應商成功。',
|
|
'assoc_assets' => '至少還有 :asset_count 個樣板與此供應商關聯,目前不能被刪除,請檢查後重試。 ',
|
|
'assoc_licenses' => '至少還有 :licenses_count 個授權與此供應商關聯,目前不能被刪除,請檢查後重試。 ',
|
|
'assoc_maintenances' => '至少還有 :asset_maintenances_count 個資產維護與此供應商關聯,目前不能被刪除,請檢查後重試。 ',
|
|
)
|
|
|
|
);
|