mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-08-05 14:50:11 +00:00
Add backup-related error messages and improve UI styles
- Updated English, Spanish, Russian, Simplified Chinese, and Traditional Chinese locale files to include new error messages related to backup and restore processes. - Added prefix and suffix strings for the "cached empty" message to enhance clarity in user prompts. - Enhanced the management CSS with new styles for the backup browser refresh prompt to improve layout and user experience.
This commit is contained in:
@@ -224,6 +224,8 @@ const zhTW: Record<string, string> = {
|
||||
"txt_backup_restore_progress_remote_finalize_detail": "服務器正在執行最終校驗,校驗通過後會把已驗證的數據切換為正式數據。",
|
||||
"txt_backup_remote_loading": "正在讀取遠端備份...",
|
||||
"txt_backup_remote_cached_empty": "點擊“刷新”後讀取",
|
||||
"txt_backup_remote_cached_empty_prefix": "點擊",
|
||||
"txt_backup_remote_cached_empty_suffix": "後讀取",
|
||||
"txt_backup_remote_empty": "這個目錄下還沒有備份文件",
|
||||
"txt_backup_remote_folder": "文件夾",
|
||||
"txt_backup_remote_unknown_time": "未知時間",
|
||||
@@ -247,6 +249,74 @@ const zhTW: Record<string, string> = {
|
||||
"txt_backup_remote_run_invalid_response": "遠端備份執行響應無效",
|
||||
"txt_backup_settings_invalid_response": "備份設置響應無效",
|
||||
"txt_backup_import_invalid_response": "備份還原響應無效",
|
||||
"txt_backup_error_another_backup_or_restore_running": "已有備份或還原任務正在執行。",
|
||||
"txt_backup_error_another_backup_running": "已有備份任務正在執行。",
|
||||
"txt_backup_error_archive_upload_failed": "備份壓縮包上傳失敗。",
|
||||
"txt_backup_error_archive_upload_verification_failed_attempts": "備份上傳校驗在 {count} 次嘗試後仍失敗:{reason}",
|
||||
"txt_backup_error_attachment_blob_invalid": "備份附件對象無效。",
|
||||
"txt_backup_error_attachment_blob_required": "缺少備份附件對象。",
|
||||
"txt_backup_error_attachment_blob_not_found": "未找到備份附件對象。",
|
||||
"txt_backup_error_attachment_download_failed": "備份附件下載失敗。",
|
||||
"txt_backup_error_destination_invalid": "備份地點無效。",
|
||||
"txt_backup_error_destination_limit": "最多只能保存 {count} 個備份地點。",
|
||||
"txt_backup_error_destination_not_found": "未找到備份地點。",
|
||||
"txt_backup_error_destination_ids_unique": "備份地點 ID 不能重複。",
|
||||
"txt_backup_error_destination_type_invalid": "備份地點類型無效。",
|
||||
"txt_backup_error_destination_type_unsupported": "不支持的備份地點類型。",
|
||||
"txt_backup_error_destinations_invalid": "備份地點列表無效。",
|
||||
"txt_backup_error_export_payload_invalid": "備份導出請求無效。",
|
||||
"txt_backup_error_file_checksum_mismatch": "備份文件校驗值與文件名不一致。",
|
||||
"txt_backup_error_file_required": "請選擇備份文件。",
|
||||
"txt_backup_error_interval_hours_range": "備份間隔必須在 1 到 99 小時之間。",
|
||||
"txt_backup_error_multipart_required": "上傳請求必須使用 multipart/form-data。",
|
||||
"txt_backup_error_read_backup_file_failed": "無法讀取備份文件。",
|
||||
"txt_backup_error_remote_attachment_batch_download_failed_status": "遠端附件批量下載失敗:HTTP {status}。",
|
||||
"txt_backup_error_remote_attachment_download_failed_status": "遠端附件下載失敗:HTTP {status}。",
|
||||
"txt_backup_error_remote_delete_failed": "遠端備份刪除失敗。",
|
||||
"txt_backup_error_remote_download_failed": "遠端備份下載失敗。",
|
||||
"txt_backup_error_remote_download_payload_invalid": "遠端備份下載請求無效。",
|
||||
"txt_backup_error_remote_integrity_failed": "遠端備份完整性檢查失敗。",
|
||||
"txt_backup_error_remote_listing_failed": "遠端備份列表讀取失敗。",
|
||||
"txt_backup_error_remote_path_invalid": "遠端備份路徑無效。",
|
||||
"txt_backup_error_remote_restore_payload_invalid": "遠端還原請求無效。",
|
||||
"txt_backup_error_remote_zip_checksum_failed": "遠端備份 ZIP 校驗失敗。",
|
||||
"txt_backup_error_remote_zip_size_failed": "遠端備份 ZIP 大小校驗失敗。",
|
||||
"txt_backup_error_retention_count_range": "備份保留數量必須在 1 到 1000 之間。",
|
||||
"txt_backup_error_run_failed": "備份執行失敗。",
|
||||
"txt_backup_error_run_payload_invalid": "備份執行請求無效。",
|
||||
"txt_backup_error_run_response_invalid": "備份執行響應無效。",
|
||||
"txt_backup_error_s3_access_key_required": "請填寫 S3 存取 ID。",
|
||||
"txt_backup_error_s3_bucket_required": "請填寫 S3 儲存桶名稱。",
|
||||
"txt_backup_error_s3_delete_failed_status": "S3 刪除失敗:HTTP {status}。",
|
||||
"txt_backup_error_s3_download_failed_status": "S3 下載失敗:HTTP {status}。",
|
||||
"txt_backup_error_s3_endpoint_required": "請填寫 S3 端點 URL。",
|
||||
"txt_backup_error_s3_endpoint_protocol": "S3 端點 URL 必須以 http:// 或 https:// 開頭。",
|
||||
"txt_backup_error_s3_existence_check_failed_status": "S3 文件存在性檢查失敗:HTTP {status}。",
|
||||
"txt_backup_error_s3_listing_failed_status": "S3 列表讀取失敗:HTTP {status}。",
|
||||
"txt_backup_error_s3_secret_key_required": "請填寫 S3 存取密碼。",
|
||||
"txt_backup_error_s3_upload_failed_status": "S3 上傳失敗:HTTP {status}。",
|
||||
"txt_backup_error_select_backup_file": "請選擇備份文件。",
|
||||
"txt_backup_error_select_backup_zip_file": "請選擇備份 ZIP 文件。",
|
||||
"txt_backup_error_settings_envelope_invalid": "備份設置加密封裝無效。",
|
||||
"txt_backup_error_settings_invalid": "備份設置無效。",
|
||||
"txt_backup_error_settings_load_failed": "無法加載備份設置。",
|
||||
"txt_backup_error_settings_need_reactivation": "還原後需要管理員重新激活備份設置。",
|
||||
"txt_backup_error_settings_payload_invalid": "備份設置請求無效。",
|
||||
"txt_backup_error_settings_repair_payload_invalid": "備份設置修復請求無效。",
|
||||
"txt_backup_error_settings_repair_state_load_failed": "無法加載備份設置修復狀態。",
|
||||
"txt_backup_error_start_time_format": "備份開始時間必須是 HH:mm 格式。",
|
||||
"txt_backup_error_timezone_invalid": "備份時區無效。",
|
||||
"txt_backup_error_webdav_delete_failed_status": "WebDAV 刪除失敗:HTTP {status}。",
|
||||
"txt_backup_error_webdav_directory_creation_failed_status": "WebDAV 目錄創建失敗:HTTP {status}。",
|
||||
"txt_backup_error_webdav_download_failed_status": "WebDAV 下載失敗:HTTP {status}。",
|
||||
"txt_backup_error_webdav_existence_check_failed_status": "WebDAV 文件存在性檢查失敗:HTTP {status}。",
|
||||
"txt_backup_error_webdav_listing_failed_status": "WebDAV 列表讀取失敗:HTTP {status}。",
|
||||
"txt_backup_error_webdav_password_required": "請填寫 WebDAV 密碼。",
|
||||
"txt_backup_error_webdav_path_too_deep": "WebDAV 遠端備份路徑過深,無法安全分批處理附件。",
|
||||
"txt_backup_error_webdav_upload_failed_status": "WebDAV 上傳失敗:HTTP {status}。",
|
||||
"txt_backup_error_webdav_url_required": "請填寫 WebDAV 服務地址。",
|
||||
"txt_backup_error_webdav_url_protocol": "WebDAV 服務地址必須以 http:// 或 https:// 開頭。",
|
||||
"txt_backup_error_webdav_username_required": "請填寫 WebDAV 用戶名。",
|
||||
"txt_backup_destination": "備份地點",
|
||||
"txt_backup_protocol_webdav": "WebDAV",
|
||||
"txt_backup_protocol_s3": "S3",
|
||||
@@ -522,16 +592,21 @@ const zhTW: Record<string, string> = {
|
||||
"txt_server_error_account_disabled": "帳號已被禁用",
|
||||
"txt_server_error_client_credentials_incorrect": "客戶端 ID 或客戶端密鑰不正確,請重試",
|
||||
"txt_server_error_client_ip_required": "無法獲取客戶端 IP",
|
||||
"txt_server_error_forbidden": "你沒有權限執行此操作。",
|
||||
"txt_server_error_email_already_registered": "該郵箱已註冊",
|
||||
"txt_server_error_email_password_required": "郵箱和密碼不能為空",
|
||||
"txt_server_error_email_required": "郵箱不能為空",
|
||||
"txt_server_error_invalid_password": "密碼無效。",
|
||||
"txt_server_error_invalid_refresh_token": "登入狀態已失效,請重新登入",
|
||||
"txt_server_error_invalid_user_verification_token": "用戶驗證令牌無效。",
|
||||
"txt_server_error_invalid_request_payload": "請求內容無效",
|
||||
"txt_server_error_invite_invalid_or_expired": "邀請碼無效或已過期",
|
||||
"txt_server_error_invite_required": "邀請碼不能為空",
|
||||
"txt_server_error_jwt_secret_default": "JWT_SECRET 正在使用默認示例值,請修改後再繼續",
|
||||
"txt_server_error_jwt_secret_missing": "JWT_SECRET 未設置",
|
||||
"txt_server_error_jwt_secret_too_short": "JWT_SECRET 至少需要 32 個字符",
|
||||
"txt_server_error_master_password_hash_required": "需要驗證主密碼。",
|
||||
"txt_server_error_master_password_or_verification_required": "需要主密碼或用戶驗證令牌。",
|
||||
"txt_server_error_parameter_error": "請求參數錯誤",
|
||||
"txt_server_error_refresh_token_required": "登入狀態缺失,請重新登入",
|
||||
"txt_server_error_registration_retry": "註冊暫時不可用,請重試一次",
|
||||
|
||||
Reference in New Issue
Block a user