snipe-it/resources/lang/zh-TW/admin/locations/message.php
snipe ddfa5776c5 Updated language strings
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>
2022-01-13 21:27:29 -08:00

28 lines
902 B
PHP

<?php
return array(
'does_not_exist' => '地點不存在.',
'assoc_users' => '至少還有一位使用者與此位置關聯,目前不能被删除,請檢查後重試。 ',
'assoc_assets' => '至少還有一個資產與此位置關聯,目前不能被删除,請檢查後重試。 ',
'assoc_child_loc' => '至少還有一個子項目與此位置關聯,目前不能被删除,請檢查後重試。 ',
'create' => array(
'error' => '新增位置失敗,請重試。',
'success' => '新增位置成功。'
),
'update' => array(
'error' => '更新位置失敗,請重試。',
'success' => '成功更新地點.'
),
'delete' => array(
'confirm' => '您確定要刪除此位置嗎?',
'error' => '刪除位置時發生問題,請重試。',
'success' => '刪除位置成功。'
)
);