영문화완료

This commit is contained in:
ChiKyun Kim
2025-09-09 17:24:19 +09:00
parent adb66451ca
commit 02028afc27
338 changed files with 2205 additions and 79829 deletions

View File

@@ -274,7 +274,7 @@ namespace Project.Manager
if (int.TryParse(cntStr, out curCnt) == false)
{
curCnt = 2;
PUB.log.AddE("기존 사용수량 읽기 실패 카운트문자=" + cntStr + "기본값(1)으로 설정");
PUB.log.AddE("Failed to read existing usage count. Counter string=" + cntStr + ". Setting to default value(1)");
}
newCount = curCnt + newCount;
}
@@ -346,7 +346,7 @@ namespace Project.Manager
if (int.TryParse(cntStr, out curCnt) == false)
{
curCnt = 1;
PUB.log.AddE("기존 사용수량 읽기 실패 카운트문자=" + cntStr + "기본값(1)으로 설정");
PUB.log.AddE("Failed to read existing usage count. Counter string=" + cntStr + ". Setting to default value(1)");
}
retval.Add(id, curCnt);
}