fix(malaysia): 이동이력 구분(낱개/콤보) 영문 번역 누락 수정
- malaysia.js KO_EN 사전에 구분/낱개/콤보 추가 - 구분 헤더 + 낱개/콤보 배지에 i18n 클래스 부여(영문 모드 번역 적용) - malaysia.js 캐시버전 20260622a Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -32,4 +32,4 @@
|
|||||||
<div style="display:flex;justify-content:flex-end;margin-bottom:8px;">
|
<div style="display:flex;justify-content:flex-end;margin-bottom:8px;">
|
||||||
<button type="button" id="mys-lang-toggle" class="erp-btn erp-btn-outline">ENG</button>
|
<button type="button" id="mys-lang-toggle" class="erp-btn erp-btn-outline">ENG</button>
|
||||||
</div>
|
</div>
|
||||||
<script src="/static/malaysia.js?v=20260619a"></script>
|
<script src="/static/malaysia.js?v=20260622a"></script>
|
||||||
|
|||||||
@@ -144,16 +144,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="erp-table-wrap">
|
<div class="erp-table-wrap">
|
||||||
<table class="erp-table">
|
<table class="erp-table">
|
||||||
<thead><tr><th>Date</th><th>구분</th><th>Type</th><th>Item</th><th style="text-align:right">Qty</th><th>Memo</th><th>By</th></tr></thead>
|
<thead><tr><th>Date</th><th class="i18n">구분</th><th>Type</th><th>Item</th><th style="text-align:right">Qty</th><th>Memo</th><th>By</th></tr></thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for m in movements %}
|
{% for m in movements %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ m.date_label }}</td>
|
<td>{{ m.date_label }}</td>
|
||||||
<td>
|
<td>
|
||||||
{% if m.kind == 'set' %}
|
{% if m.kind == 'set' %}
|
||||||
<span class="erp-badge" style="background:#fef3c7;color:#92400e;">콤보</span>
|
<span class="i18n erp-badge" style="background:#fef3c7;color:#92400e;">콤보</span>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span class="erp-badge" style="background:#e0e7ff;color:#3730a3;">낱개</span>
|
<span class="i18n erp-badge" style="background:#e0e7ff;color:#3730a3;">낱개</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td>{{ m.movement_type }}</td>
|
<td>{{ m.movement_type }}</td>
|
||||||
|
|||||||
@@ -62,6 +62,9 @@
|
|||||||
"낱개 상품": "Single Products",
|
"낱개 상품": "Single Products",
|
||||||
"콤보 상품": "Combo Products",
|
"콤보 상품": "Combo Products",
|
||||||
"이동 이력": "Movement History",
|
"이동 이력": "Movement History",
|
||||||
|
"구분": "Kind",
|
||||||
|
"낱개": "Single",
|
||||||
|
"콤보": "Combo",
|
||||||
"전체": "All",
|
"전체": "All",
|
||||||
"날짜해제": "Clear date",
|
"날짜해제": "Clear date",
|
||||||
"이동 이력이 없습니다.": "No movements.",
|
"이동 이력이 없습니다.": "No movements.",
|
||||||
|
|||||||
Reference in New Issue
Block a user