From 612425a6c2a182c3cb6948984cb0f465c8c35bc8 Mon Sep 17 00:00:00 2001 From: AutonetSellCar Deploy Date: Wed, 31 Dec 2025 20:27:59 +0900 Subject: [PATCH] Add multi-language description for Korean Domestic + Export Customs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added description text under the domestic cost field in both the cost structure section and calculator results. Translated into Korean, English, Mongolian, and Russian. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontend/src/app/cost/page.tsx | 34 ++++++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/frontend/src/app/cost/page.tsx b/frontend/src/app/cost/page.tsx index deff97b..66792f8 100644 --- a/frontend/src/app/cost/page.tsx +++ b/frontend/src/app/cost/page.tsx @@ -346,9 +346,20 @@ export default function CostPage() { {t.vehiclePrice} {language === 'ko' ? '차량가격' : 'Vehicle Price'} -
- {t.koreanDomesticCost} - {formatLocalCurrency(settings.domestic_export_customs_krw)} +
+
+ {t.koreanDomesticCost} + {formatLocalCurrency(settings.domestic_export_customs_krw)} +
+

+ {language === 'ko' + ? '현장실사, 5~6회 비디오 실사, 20~40장 사진촬영, 도장두께측정기, 전자장비검사 포함.' + : language === 'mn' + ? 'Газар дээрх шалгалт, 5-6 удаагийн видео үзлэг, 20-40 зураг, будгийн зузаан хэмжилт, электрон тоног төхөөрөмжийн шалгалт орно.' + : language === 'ru' + ? 'Включает осмотр на месте, 5-6 видеоосмотров, 20-40 фотографий, измерение толщины краски, проверку электронного оборудования.' + : 'Includes on-site inspection, 5-6 video inspections, 20-40 photos, paint thickness measurement, electronic equipment inspection.'} +

{t.koreanMargin} @@ -636,9 +647,20 @@ export default function CostPage() { {t.vehiclePrice} {formatLocalCurrency(costs.vehiclePrice)}
-
- {t.koreanDomesticCost} - {formatLocalCurrency(costs.domesticCost)} +
+
+ {t.koreanDomesticCost} + {formatLocalCurrency(costs.domesticCost)} +
+

+ {language === 'ko' + ? '현장실사, 5~6회 비디오 실사, 20~40장 사진촬영, 도장두께측정기, 전자장비검사 포함.' + : language === 'mn' + ? 'Газар дээрх шалгалт, 5-6 удаагийн видео үзлэг, 20-40 зураг, будгийн зузаан хэмжилт, электрон тоног төхөөрөмжийн шалгалт орно.' + : language === 'ru' + ? 'Включает осмотр на месте, 5-6 видеоосмотров, 20-40 фотографий, измерение толщины краски, проверку электронного оборудования.' + : 'Includes on-site inspection, 5-6 video inspections, 20-40 photos, paint thickness measurement, electronic equipment inspection.'} +

{t.koreanMargin}