Fill en us locale

This commit is contained in:
IzzelAliz 2021-02-04 21:09:32 +08:00
parent 5605db762f
commit 955f0d3dd9
2 changed files with 33 additions and 1 deletions

View File

@ -29,6 +29,10 @@ downloader {
access-denied = "Access denied for file {0}: {1}"
}
implementer {
not-found = "Class not found {}"
error = "Error occured {}"
}
i18n {
current-not-available = "Current locale {0} is not available"
using-language = "Using locale {0} and fallback locale {1}"
@ -51,6 +55,24 @@ registry {
enchantment = "Registered {} enchantments"
potion = "Registered {} new potion effect types"
material = "Registered {} new materials with {} blocks and {} items"
entity-type = "Registered {} new entity types"
environment = "Registered {} new dimensions"
villager-profession = "Registered {} new villager professions"
biome = "Registered {} new biomes"
meta-type {
not-subclass = "{} is not a subclass of {}"
error = "{} provided itemMetaType {} is invalid: {}"
no-candidate = "{} do not found a valid constructor in prodived itemMetaType {}"
}
block-state {
not-subclass = "{} is not a subclass of {}"
error = "{} prodived itemMetaType {} is invalid {}"
no-candidate = "{} do not found a valid constructor in provided blockStateClass {}"
}
entity {
not-subclass = "{} is not a subclass of {}"
error = "{} prodived entityClass {} is invalid: {}"
}
}
comments {
@ -62,4 +84,14 @@ comments {
"Config version number, do not edit."
]
locale.comment = "Language/I18n settings"
optimization.comment = "Optimization related settings"
async-catcher.comment = [
"Async Catcher related settings"
"There are four modes, and BLOCK is recommended"
"NONE - Do nothing"
"DISPATCH - Non blocking-ly dispatch action to main thread"
"BLOCK - Run in main thread and wait for results"
"EXCEPTION - Raise an error"
]
async-catcher.dump.comment = "Dump stack trace iformation in debug.log"
}

View File

@ -90,7 +90,7 @@ comments {
"Async Catcher 共有四种模式"
"NONE - 保持在当前线程执行"
"DISPATCH - 不阻塞地发布到主线程"
"BLOCK - 发到主线程并等待结果"
"BLOCK - 发到主线程并等待结果"
"EXCEPTION - 抛出异常"
]
async-catcher.dump.comment = "是否在 debug 日志中打印堆栈信息"