Files
knowledge_base/src/lang/zh-TW/messages.php
Yutaka Kurosaki 5519c311ad feat: Show last modified by user on document viewer
- Display updater name next to update time
- Fall back to creator if no updater is set
- Add modified_by translation for all 8 languages
2025-11-29 12:12:17 +09:00

141 lines
5.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
return [
// Navigation
'nav' => [
'dashboard' => '儀表板',
'knowledge_base' => '知識庫',
'profile' => '個人資料',
'user_management' => '使用者管理',
'logout' => '登出',
'login' => '登入',
'register' => '註冊',
],
// Documents
'documents' => [
'title' => '文件',
'new_document' => '新增文件',
'edit_document' => '編輯文件',
'edit' => '編輯',
'delete' => '刪除',
'save' => '儲存',
'cancel' => '取消',
'created_by' => '建立者',
'modified_by' => '修改者:',
'updated' => '更新時間',
'path' => '路徑',
'last_modified' => '最後修改',
'no_documents' => '找不到文件',
'search_placeholder' => '搜尋文件...',
'create_success' => '文件建立成功!',
'update_success' => '文件更新成功!',
'delete_success' => '文件刪除成功!',
'delete_confirm' => '確定要刪除此文件嗎?',
'linked_references' => '連結參照',
'title_label' => '標題',
'title_placeholder' => '文件標題例如Laravel/Livewire/Components',
'title_hint' => '提示:在標題中使用斜線(/)可自動將文件組織到資料夾中',
'content_label' => '內容',
'content_placeholder' => '在此輸入Markdown內容...',
'saving' => '儲存中...',
],
// Quick Switcher
'quick_switcher' => [
'title' => '快速切換',
'placeholder' => '搜尋文件...',
'no_results' => '找不到文件',
'navigate' => '導覽',
'select' => '選擇',
'close' => '關閉',
],
// Admin
'admin' => [
'user_management' => '使用者管理',
'new_user' => '新增使用者',
'edit_user' => '編輯使用者',
'create_user' => '建立使用者',
'users' => '使用者',
'name' => '姓名',
'email' => '電子郵件',
'password' => '密碼',
'password_confirmation' => '確認密碼',
'password_hint' => '留空以保持目前密碼。',
'role' => '角色',
'admin' => '管理員',
'user' => '一般使用者',
'grant_admin' => '授予管理員權限',
'created_at' => '建立日期',
'actions' => '操作',
'edit' => '編輯',
'delete' => '刪除',
'no_users' => '找不到使用者。',
'create_success' => '使用者建立成功。',
'update_success' => '使用者更新成功。',
'delete_success' => '使用者刪除成功。',
'cannot_delete_self' => '您無法刪除自己。',
'self_admin_warning' => '移除您自己的管理員權限將使您無法存取管理面板。',
],
// Settings
'settings' => [
'language' => '語言',
'select_language' => '選擇語言',
'language_updated' => '語言更新成功。',
],
// Common
'common' => [
'save' => '儲存',
'cancel' => '取消',
'delete' => '刪除',
'edit' => '編輯',
'create' => '建立',
'update' => '更新',
'back' => '返回',
'confirm' => '確認',
'yes' => '是',
'no' => '否',
'loading' => '載入中...',
'error' => '錯誤',
'success' => '成功',
],
// Auth
'auth' => [
'login' => '登入',
'register' => '註冊',
'email' => '電子郵件',
'password' => '密碼',
'remember_me' => '記住我',
'forgot_password' => '忘記密碼?',
'confirm_password' => '確認密碼',
'already_registered' => '已有帳號?',
],
// Profile
'profile' => [
'title' => '個人資料',
'information' => '個人資料資訊',
'information_description' => '更新您的帳戶個人資料資訊和電子郵件地址。',
'name' => '姓名',
'email' => '電子郵件',
'email_unverified' => '您的電子郵件地址尚未驗證。',
'resend_verification' => '點擊此處重新發送驗證郵件。',
'verification_sent' => '新的驗證連結已發送到您的電子郵件地址。',
'saved' => '已儲存。',
'update_password' => '更新密碼',
'update_password_description' => '確保您的帳戶使用長隨機密碼以保持安全。',
'current_password' => '目前密碼',
'new_password' => '新密碼',
'confirm_password' => '確認密碼',
'delete_account' => '刪除帳戶',
'delete_account_description' => '帳戶刪除後,所有資源和資料將被永久刪除。刪除帳戶前,請下載您想保留的任何資料或資訊。',
'delete_account_confirm' => '您確定要刪除您的帳戶嗎?',
'delete_account_confirm_description' => '帳戶刪除後,所有資源和資料將被永久刪除。請輸入您的密碼以確認您要永久刪除您的帳戶。',
],
];