Update resale pricing data
This commit is contained in:
@@ -37,6 +37,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
iarc: '심의 등급',
|
||||
releaseDate: '출시일',
|
||||
suggestedPrice: '판매가',
|
||||
pricePending: '-',
|
||||
priceRange: '판매가 범위',
|
||||
pricingBasis: '가격 참고 기준',
|
||||
checkedAt: '기준일',
|
||||
@@ -63,6 +64,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
iarc: 'IARC',
|
||||
releaseDate: '配信日',
|
||||
suggestedPrice: '推奨販売価格',
|
||||
pricePending: '-',
|
||||
priceRange: '価格帯',
|
||||
pricingBasis: '価格参考基準',
|
||||
checkedAt: '確認日',
|
||||
@@ -78,7 +80,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
const currentTexts = texts[language];
|
||||
|
||||
function formatKRW(value) {
|
||||
if (typeof value !== 'number') return '';
|
||||
if (typeof value !== 'number') return currentTexts.pricePending;
|
||||
return `${value.toLocaleString('ko-KR')}원`;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user