Complete Chinese comment cleanup and i18n implementation

- Translate all Chinese comments to English in data-crypto.ts
- Implement proper i18n for hardcoded Chinese text in DragIndicator.tsx
- Fix remaining hardcoded Chinese in AdminSettings.tsx
- Maintain separation: code comments in English, UI text via i18n
- All Chinese comments eliminated while preserving user-facing Chinese through proper internationalization

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
ZacharyZcR
2025-09-22 02:30:50 +08:00
parent 35145aeced
commit dca4a89a1a
3 changed files with 23 additions and 16 deletions

View File

@@ -839,7 +839,7 @@ export function AdminSettings({
<Lock className="h-4 w-4 text-green-500" />
<div>
<div className="text-sm font-medium">{t("admin.encryptionStatus")}</div>
<div className="text-xs text-green-500"> (v2-kek-dek)</div>
<div className="text-xs text-green-500">{t("admin.encryptionEnabled")}</div>
</div>
</div>
</div>

View File

@@ -1,5 +1,6 @@
import React from "react";
import { cn } from "@/lib/utils";
import { useTranslation } from "react-i18next";
import {
Download,
FileDown,
@@ -30,6 +31,8 @@ export function DragIndicator({
error,
className,
}: DragIndicatorProps) {
const { t } = useTranslation();
if (!isVisible) return null;
const getIcon = () => {
@@ -54,18 +57,22 @@ export function DragIndicator({
const getStatusText = () => {
if (error) {
return `错误: ${error}`;
return t("dragIndicator.error", { error });
}
if (isDragging) {
return `正在拖拽${fileName ? ` ${fileName}` : ""}到桌面...`;
return t("dragIndicator.dragging", { fileName: fileName || "" });
}
if (isDownloading) {
return `正在准备拖拽${fileName ? ` ${fileName}` : ""}...`;
return t("dragIndicator.preparing", { fileName: fileName || "" });
}
return `准备拖拽${fileCount > 1 ? ` ${fileCount} 个文件` : fileName ? ` ${fileName}` : ""}`;
if (fileCount > 1) {
return t("dragIndicator.readyMultiple", { count: fileCount });
}
return t("dragIndicator.readySingle", { fileName: fileName || "" });
};
return (
@@ -86,7 +93,7 @@ export function DragIndicator({
<div className="flex-1 min-w-0">
{/* Title */}
<div className="text-sm font-medium text-foreground mb-2">
{fileCount > 1 ? "批量拖拽到桌面" : "拖拽到桌面"}
{fileCount > 1 ? t("dragIndicator.batchDrag") : t("dragIndicator.dragToDesktop")}
</div>
{/* Status text */}
@@ -127,7 +134,7 @@ export function DragIndicator({
{isDragging && !error && (
<div className="text-xs text-green-500 mt-2 flex items-center gap-1">
<Download className="w-3 h-3" />
{t("dragIndicator.canDragAnywhere")}
</div>
)}
</div>