Add multi-language description for Korean Domestic + Export Customs

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 <noreply@anthropic.com>
This commit is contained in:
AutonetSellCar Deploy
2025-12-31 20:27:59 +09:00
parent 2a8e32f427
commit 612425a6c2

View File

@@ -346,10 +346,21 @@ export default function CostPage() {
<span className="text-gray-600">{t.vehiclePrice}</span>
<span className="font-medium">{language === 'ko' ? '차량가격' : 'Vehicle Price'}</span>
</div>
<div className="flex justify-between items-center py-2 border-b">
<div className="py-2 border-b">
<div className="flex justify-between items-center">
<span className="text-gray-600">{t.koreanDomesticCost}</span>
<span className="font-medium text-primary-600">{formatLocalCurrency(settings.domestic_export_customs_krw)}</span>
</div>
<p className="text-xs text-gray-500 mt-1">
{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.'}
</p>
</div>
<div className="flex justify-between items-center py-2 border-b">
<span className="text-gray-600">{t.koreanMargin}</span>
<span className="font-medium text-primary-600">{KOREAN_FEE_PERCENT}%</span>
@@ -636,10 +647,21 @@ export default function CostPage() {
<span className="text-gray-600">{t.vehiclePrice}</span>
<span className="font-medium">{formatLocalCurrency(costs.vehiclePrice)}</span>
</div>
<div className="flex justify-between items-center py-2">
<div className="py-2">
<div className="flex justify-between items-center">
<span className="text-gray-600">{t.koreanDomesticCost}</span>
<span className="font-medium">{formatLocalCurrency(costs.domesticCost)}</span>
</div>
<p className="text-xs text-gray-500 mt-1">
{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.'}
</p>
</div>
<div className="flex justify-between items-center py-2">
<span className="text-gray-600">{t.koreanMargin}</span>
<span className="font-medium">{formatLocalCurrency(costs.koreanFee)}</span>