Antique-localize battle briefings and camp UI

This commit is contained in:
2026-06-19 05:48:39 +09:00
parent dc3dc06eb0
commit 30ac2479c4
11 changed files with 717 additions and 540 deletions

View File

@@ -7,7 +7,7 @@ function Read-Json($RelativePath) {
if (-not (Test-Path $path)) {
throw "Missing file: $RelativePath"
}
return Get-Content $path -Raw | ConvertFrom-Json
return Get-Content $path -Raw -Encoding UTF8 | ConvertFrom-Json
}
function Has-Prop($Object, [string]$Name) {