ajout app

This commit is contained in:
2024-04-17 20:22:30 +02:00
parent cc017cfc5e
commit f9d05a2fd3
8025 changed files with 729805 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<?php
return array(
'accessory_category' => '配件類別',
'accessory_name' => '配件名稱',
'checkout' => '配件借出',
'checkin' => '配件繳回',
'create' => '新增配件',
'edit' => '編輯配件',
'eula_text' => '類別的最終使用者許可協議',
'eula_text_help' => '此欄位允許您為特定資產自定EULA最終使用者許可協議。如果您所有資產只有一個EULA最終使用者許可協議您可以勾選下方選項設為預設。',
'require_acceptance' => '需要使用者確認接受此類資產',
'no_default_eula' => '沒有找到預設EULA最終使用者許可協議。請在設定中增加一個。',
'total' => '總計',
'remaining' => '可用',
'update' => '更新配件',
'use_default_eula' => '用<a href="#" data-toggle="modal" data-target="#eulaModal">預設EULA最終使用者許可協議</a>進行替換',
'use_default_eula_disabled' => '<del>使用預設EULA最終使用者許可協議</del>沒有設定預設EULA最終使用者許可協議請在設定中新增一個。',
'clone' => '複製配件',
'delete_disabled' => '因有部分項目仍被借出,此配件尚無法刪除。',
);

View File

@ -0,0 +1,39 @@
<?php
return array(
'does_not_exist' => '配件 [:id] 不存在',
'not_found' => '沒有找到該配件',
'assoc_users' => '使用者目前已借出 :count 組配件。請在繳回配件後重試。 ',
'create' => array(
'error' => '新增配件失敗,請重試。',
'success' => '新增配件成功。'
),
'update' => array(
'error' => '更新配件失敗,請重試。',
'success' => '更新配件成功。'
),
'delete' => array(
'confirm' => '您確定要刪除此配件嗎?',
'error' => '刪除配件時發生問題。請再試一次。',
'success' => '刪除配件成功。'
),
'checkout' => array(
'error' => '配件借出失敗。請再試一次。',
'success' => '借出配件成功。',
'unavailable' => '配件不足無法借出, 檢查可用數量.',
'user_does_not_exist' => '使用者不正確。請再試一次。'
),
'checkin' => array(
'error' => '配件繳回失敗。請再試一次。',
'success' => '繳回配件成功。',
'user_does_not_exist' => '使用者不正確。請再試一次。'
)
);

View File

@ -0,0 +1,11 @@
<?php
return array(
'dl_csv' => '下載CSV檔',
'eula_text' => 'EULA',
'id' => 'ID',
'require_acceptance' => '接收',
'title' => '配件名稱',
);