mirror of
https://github.com/YuzuZensai/Termix.git
synced 2026-09-13 10:49:03 +00:00
* Add comprehensive Chinese internationalization support - Implemented i18n framework with react-i18next for multi-language support - Added Chinese (zh) and English (en) translation files with comprehensive coverage - Localized Admin interface, authentication flows, and error messages - Translated FileManager operations and UI elements - Updated HomepageAuth component with localized authentication messages - Localized LeftSidebar navigation and host management - Added language switcher component (shown after login only) - Configured default language as English with Chinese as secondary option - Localized TOTPSetup two-factor authentication interface - Updated Docker build to include translation files - Achieved 95%+ UI localization coverage across core components Co-Authored-By: Claude <noreply@anthropic.com> * Extend Chinese localization coverage to Host Manager components - Added comprehensive translations for HostManagerHostViewer component - Localized all host management UI text including import/export features - Translated error messages and confirmation dialogs for host operations - Added translations for HostManagerHostEditor validation messages - Localized connection details, organization settings, and form labels - Fixed syntax error in FileManagerOperations component - Achieved near-complete localization of SSH host management interface - Updated placeholders and tooltips for better user guidance Co-Authored-By: Claude <noreply@anthropic.com> * Complete comprehensive Chinese localization for Termix - Added full localization support for Tunnel components (connected/disconnected states, retry messages) - Localized all tunnel status messages and connection errors - Added translations for port forwarding UI elements - Verified Server, TopNavbar, and Tab components already have complete i18n support - Achieved 99%+ localization coverage across entire application - All core UI components now fully support Chinese and English languages This completes the comprehensive internationalization effort for the Termix SSH management platform. Co-Authored-By: Claude <noreply@anthropic.com> * Localize additional Host Manager components and authentication settings - Added translations for all authentication options (Password, Key, SSH Private Key) - Localized form labels in HostManagerHostEditor (Pin Connection, Enable Terminal/Tunnel/FileManager) - Translated Upload/Update Key button states - Localized Host Viewer and Add/Edit Host tab labels - Added Chinese translations for all host management settings - Fixed duplicate translation keys in JSON files Co-Authored-By: Claude <noreply@anthropic.com> * Extend localization coverage to UI components and common strings - Added comprehensive common translations (online/offline, success/error, etc.) - Localized status indicator component with all status states - Updated FileManagerLeftSidebar toast messages for rename/delete operations - Added translations for UI elements (close, toggle sidebar, etc.) - Expanded placeholder translations for form inputs - Added Chinese translations for all new common strings - Improved consistency across component status messages Co-Authored-By: Claude <noreply@anthropic.com> * Complete Chinese localization for remaining UI components - Add comprehensive Chinese translations for Host Manager component - Translate all form labels, buttons, and descriptions - Add translations for SSH configuration warnings and instructions - Localize tunnel connection settings and port forwarding options - Localize SSH Tools panel - Translate key recording functionality - Add translations for settings and configuration options - Translate homepage welcome messages and navigation elements - Add Chinese translations for login success messages - Localize "Updates & Releases" section title - Translate sidebar "Host Manager" button - Fix translation key display issues - Remove duplicate translation keys in both language files - Ensure all components properly reference translation keys - Fix hosts.tunnelConnections key mapping This completes the full Chinese localization of the Termix application, achieving near 100% UI translation coverage while maintaining English as the default language. * Complete final Chinese localization for Host Manager tunnel configuration - Add Chinese translations for authentication UI elements - Translate "Authentication", "Password", and "Key" tab labels - Localize SSH private key and key password fields - Add translations for key type selector - Localize tunnel connection configuration descriptions - Translate retry attempts and retry interval descriptions - Add dynamic tunnel forwarding description with port parameters - Localize endpoint SSH configuration labels - Fix missing translation keys - Add "upload" translation for file upload button - Ensure all FormLabel and FormDescription elements use translation keys This completes the comprehensive Chinese localization of the entire Termix application, achieving 100% UI translation coverage. * Fix OIDC errors for "Failed to get user information" * Fix OIDC errors for "Failed to get user information" * Fix spelling error * Fix PR feedback: Improve Profile section translations and UX - Fixed password reset translations in Profile section - Moved language selector from TopNavbar to Profile page - Added profile.selectPreferredLanguage translation key - Improved user experience for language preferences * Migrate everything to alert system, update user.ts for OIDC updates. * Update env * Fix OIDC errors for "Failed to get user information" * Fix OIDC errors for "Failed to get user information" * Fix spelling error * Migrate everything to alert system, update user.ts for OIDC updates. * Translation update * Translation update * Translation update * Translate tunnels * Comment update * Update build workflow naming * Add more translations, fix user delete failing * Fix config editor erorrs causing user delete failure --------- Co-authored-by: ZacharyZcR <PayasoNorahC@protonmail.com> Co-authored-by: Claude <noreply@anthropic.com>
172 lines
6.4 KiB
TypeScript
172 lines
6.4 KiB
TypeScript
import React, {useEffect, useState} from "react";
|
|
import {Alert, AlertDescription, AlertTitle} from "@/components/ui/alert.tsx";
|
|
import {Button} from "@/components/ui/button.tsx";
|
|
import {Separator} from "@/components/ui/separator.tsx";
|
|
import { getReleasesRSS, getVersionInfo } from "@/ui/main-axios.ts";
|
|
import {useTranslation} from "react-i18next";
|
|
|
|
interface HomepageUpdateLogProps extends React.ComponentProps<"div"> {
|
|
loggedIn: boolean;
|
|
}
|
|
|
|
interface ReleaseItem {
|
|
id: number;
|
|
title: string;
|
|
description: string;
|
|
link: string;
|
|
pubDate: string;
|
|
version: string;
|
|
isPrerelease: boolean;
|
|
isDraft: boolean;
|
|
assets: Array<{
|
|
name: string;
|
|
size: number;
|
|
download_count: number;
|
|
download_url: string;
|
|
}>;
|
|
}
|
|
|
|
interface RSSResponse {
|
|
feed: {
|
|
title: string;
|
|
description: string;
|
|
link: string;
|
|
updated: string;
|
|
};
|
|
items: ReleaseItem[];
|
|
total_count: number;
|
|
cached: boolean;
|
|
cache_age?: number;
|
|
}
|
|
|
|
interface VersionResponse {
|
|
status: 'up_to_date' | 'requires_update';
|
|
version: string;
|
|
latest_release: {
|
|
name: string;
|
|
published_at: string;
|
|
html_url: string;
|
|
};
|
|
cached: boolean;
|
|
cache_age?: number;
|
|
}
|
|
|
|
export function HomepageUpdateLog({loggedIn}: HomepageUpdateLogProps) {
|
|
const {t} = useTranslation();
|
|
const [releases, setReleases] = useState<RSSResponse | null>(null);
|
|
const [versionInfo, setVersionInfo] = useState<VersionResponse | null>(null);
|
|
const [loading, setLoading] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
if (loggedIn) {
|
|
setLoading(true);
|
|
Promise.all([
|
|
getReleasesRSS(100),
|
|
getVersionInfo()
|
|
])
|
|
.then(([releasesRes, versionRes]) => {
|
|
setReleases(releasesRes);
|
|
setVersionInfo(versionRes);
|
|
setError(null);
|
|
})
|
|
.catch(err => {
|
|
setError(t('common.failedToFetchUpdateInfo'));
|
|
})
|
|
.finally(() => setLoading(false));
|
|
}
|
|
}, [loggedIn]);
|
|
|
|
if (!loggedIn) {
|
|
return null;
|
|
}
|
|
|
|
const formatDescription = (description: string) => {
|
|
const firstLine = description.split('\n')[0];
|
|
return firstLine
|
|
.replace(/[#*`]/g, '')
|
|
.replace(/\s+/g, ' ')
|
|
.trim();
|
|
};
|
|
|
|
return (
|
|
<div className="w-[400px] h-[600px] flex flex-col border-2 border-[#303032] rounded-lg bg-[#18181b] p-4 shadow-lg">
|
|
<div>
|
|
<h3 className="text-lg font-bold mb-3 text-white">{t('common.updatesAndReleases')}</h3>
|
|
|
|
<Separator className="p-0.25 mt-3 mb-3 bg-[#303032]"/>
|
|
|
|
{versionInfo && versionInfo.status === 'requires_update' && (
|
|
<Alert className="bg-[#0e0e10] border-[#303032] text-white">
|
|
<AlertTitle className="text-white">{t('common.updateAvailable')}</AlertTitle>
|
|
<AlertDescription className="text-gray-300">
|
|
{t('common.newVersionAvailable', { version: versionInfo.version })}
|
|
</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
</div>
|
|
|
|
{versionInfo && versionInfo.status === 'requires_update' && (
|
|
<Separator className="p-0.25 mt-3 mb-3 bg-[#303032]"/>
|
|
)}
|
|
|
|
<div className="flex-1 overflow-y-auto space-y-3 pr-2">
|
|
{loading && (
|
|
<div className="flex items-center justify-center h-32">
|
|
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-blue-500"></div>
|
|
</div>
|
|
)}
|
|
|
|
{error && (
|
|
<Alert variant="destructive" className="bg-red-900/20 border-red-500 text-red-300">
|
|
<AlertTitle className="text-red-300">{t('common.error')}</AlertTitle>
|
|
<AlertDescription className="text-red-300">{error}</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
|
|
{releases?.items.map((release) => (
|
|
<div
|
|
key={release.id}
|
|
className="border border-[#303032] rounded-lg p-3 hover:bg-[#0e0e10] transition-colors cursor-pointer bg-[#0e0e10]/50"
|
|
onClick={() => window.open(release.link, '_blank')}
|
|
>
|
|
<div className="flex items-start justify-between mb-2">
|
|
<h4 className="font-semibold text-sm leading-tight flex-1 text-white">
|
|
{release.title}
|
|
</h4>
|
|
{release.isPrerelease && (
|
|
<span
|
|
className="text-xs bg-yellow-600 text-yellow-100 px-2 py-1 rounded ml-2 flex-shrink-0 font-medium">
|
|
{t('common.preRelease')}
|
|
</span>
|
|
)}
|
|
</div>
|
|
|
|
<p className="text-xs text-gray-300 mb-2 leading-relaxed">
|
|
{formatDescription(release.description)}
|
|
</p>
|
|
|
|
<div className="flex items-center text-xs text-gray-400">
|
|
<span>{new Date(release.pubDate).toLocaleDateString()}</span>
|
|
{release.assets.length > 0 && (
|
|
<>
|
|
<span className="mx-2">•</span>
|
|
<span>{release.assets.length} asset{release.assets.length !== 1 ? 's' : ''}</span>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
))}
|
|
|
|
{releases && releases.items.length === 0 && !loading && (
|
|
<Alert className="bg-[#0e0e10] border-[#303032] text-gray-300">
|
|
<AlertTitle className="text-gray-300">{t('common.noReleases')}</AlertTitle>
|
|
<AlertDescription className="text-gray-400">
|
|
{t('common.noReleasesFound')}
|
|
</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
} |