mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -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>
32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
'does_not_exist' => '狀態標籤不存在',
|
|
'assoc_assets' => '至少還有一個資產與此狀態標籤關聯,目前不能被删除,請確認後重試。 ',
|
|
|
|
'create' => [
|
|
'error' => '新增狀態標籤失敗,請重試。',
|
|
'success' => '新增狀態標籤成功。',
|
|
],
|
|
|
|
'update' => [
|
|
'error' => '更新狀態標籤失敗,請重試。',
|
|
'success' => '更新狀態標籤成功。',
|
|
],
|
|
|
|
'delete' => [
|
|
'confirm' => '您確定要刪除此狀態標籤嗎?',
|
|
'error' => '刪除狀態標籤失敗,請重試。',
|
|
'success' => '刪除狀態標籤成功。',
|
|
],
|
|
|
|
'help' => [
|
|
'undeployable' => '這些資產不能分配給任何人。',
|
|
'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of <i class="fas fa-circle text-blue"></i> <strong>Deployed</strong>.',
|
|
'archived' => '這些資產無法簽出,只會顯示在“存檔”視圖中。這有助於保留有關資產的預算/歷史目的信息,但將其保留在日常資產清單之外。',
|
|
'pending' => '這些資產不能分配給任何人,經常用於修理的物品,但預計將重新流通。',
|
|
],
|
|
|
|
];
|