fix translations

This commit is contained in:
SpikeHD 2022-05-03 01:26:26 -07:00
parent c7fd5c640f
commit ac334d4168
4 changed files with 7 additions and 6 deletions

View File

@ -71,9 +71,9 @@
"downloadStable": "Download Grasscutter Stable Build", "downloadStable": "Download Grasscutter Stable Build",
"stableSubtitle": "Install Grasscutter stable branch. This build usually has less bugs, but also less features.", "stableSubtitle": "Install Grasscutter stable branch. This build usually has less bugs, but also less features.",
"downloadDev": "Download Grasscutter Development Build", "downloadDev": "Download Grasscutter Development Build",
"downloadSubtitle": "Install Grasscutter development branch. This build sometimes has bugs, and is frequently updated. Use at your own risk.", "devSubtitle": "Install Grasscutter development branch. This build sometimes has bugs, and is frequently updated. Use at your own risk.",
"downloadResources": "Download Grasscutter Resources", "downloadResources": "Download Grasscutter Resources",
"devSubtitle": "Downloads Grasscutter resources into the currently set Grasscutter folder. This should be done unless you plan on getting resources externally.", "resourceSubtitle": "Downloads Grasscutter resources into the currently set Grasscutter folder. This should be done unless you plan on getting resources externally.",
"gcScriptRunning": "Running...", "gcScriptRunning": "Running...",
"stableInstall": "Download", "stableInstall": "Download",

View File

@ -71,9 +71,9 @@
"downloadStable": "安裝 Stable 構建", "downloadStable": "安裝 Stable 構建",
"stableSubtitle": "安裝 Stable 分支. 此構建通常具有較少的錯誤,但功能也很少。", "stableSubtitle": "安裝 Stable 分支. 此構建通常具有較少的錯誤,但功能也很少。",
"downloadDev": "安裝 Development 構建", "downloadDev": "安裝 Development 構建",
"downloadSubtitle": "安裝 Development 分支. 此版本有時存在錯誤,並且經常更新。 使用此版本風險自負。", "devSubtitle": "安裝 Development 分支. 此版本有時存在錯誤,並且經常更新。 使用此版本風險自負。",
"downloadResources": "下載 resources 資料夾", "downloadResources": "下載 resources 資料夾",
"devSubtitle": "將 resources 安裝在目前設置的 Grasscutter 資料夾中。 除非您計劃從外部獲取resources否則應該這樣做。", "resourceSubtitle": "將 resources 安裝在目前設置的 Grasscutter 資料夾中。 除非您計劃從外部獲取resources否則應該這樣做。",
"gcScriptRunning": "執行中...", "gcScriptRunning": "執行中...",
"stableInstall": "安裝", "stableInstall": "安裝",

View File

@ -161,7 +161,7 @@
<span class="downloadLabel" id="downloadResources">Download Grasscutter Resources</span> <span class="downloadLabel" id="downloadResources">Download Grasscutter Resources</span>
<button class="smolBtn" onclick="downloadGC('development')" id="resourceInstall">Download</button> <button class="smolBtn" onclick="downloadGC('development')" id="resourceInstall">Download</button>
</div> </div>
<span class="downloadSubtitle" id="devSubtitle"> <span class="downloadSubtitle" id="resourceSubtitle">
Downloads Grasscutter resources into the currently set Grasscutter folder. This should be done unless you plan on getting resources externally. Downloads Grasscutter resources into the currently set Grasscutter folder. This should be done unless you plan on getting resources externally.
</span> </span>
</div> </div>

View File

@ -99,8 +99,9 @@ async function doTranslation() {
set('downloadStable', 'downloadStable') set('downloadStable', 'downloadStable')
set('stableSubtitle', 'stableSubtitle') set('stableSubtitle', 'stableSubtitle')
set('downloadDev', 'downloadDev') set('downloadDev', 'downloadDev')
set('devSubtitle', 'downloadSubtitle') set('devSubtitle', 'devSubtitle')
set('downloadResources', 'downloadResources') set('downloadResources', 'downloadResources')
set('resourceSubtitle', 'resourceSubtitle')
set('stableInstall', 'stableInstall') set('stableInstall', 'stableInstall')
set('devInstall', 'devInstall') set('devInstall', 'devInstall')