-
Update Progress:
+
{t('versionUpdate.updateProgress')}
@@ -721,14 +722,14 @@ function AppContent() {
{/* Upgrade Instructions */}
{!isUpdating && !updateOutput && (
-
Manual upgrade:
+
{t('versionUpdate.manualUpgrade')}
git checkout main && git pull && npm install
- Or click "Update Now" to run the update automatically.
+ {t('versionUpdate.manualUpgradeHint')}
)}
@@ -739,7 +740,7 @@ function AppContent() {
onClick={() => setShowVersionModal(false)}
className="flex-1 px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 rounded-md transition-colors"
>
- {updateOutput ? 'Close' : 'Later'}
+ {updateOutput ? t('versionUpdate.buttons.close') : t('versionUpdate.buttons.later')}
{!updateOutput && (
<>
@@ -749,7 +750,7 @@ function AppContent() {
}}
className="flex-1 px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 bg-gray-100 dark:bg-gray-700 hover:bg-gray-200 dark:hover:bg-gray-600 rounded-md transition-colors"
>
- Copy Command
+ {t('versionUpdate.buttons.copyCommand')}
>
@@ -813,8 +814,8 @@ function AppContent() {
@@ -841,8 +842,8 @@ function AppContent() {