diff --git a/i18n-config/src/main/resources/META-INF/i18n/en_us.conf b/i18n-config/src/main/resources/META-INF/i18n/en_us.conf index 5ffcea84..d2d1059d 100644 --- a/i18n-config/src/main/resources/META-INF/i18n/en_us.conf +++ b/i18n-config/src/main/resources/META-INF/i18n/en_us.conf @@ -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" } diff --git a/i18n-config/src/main/resources/META-INF/i18n/zh_cn.conf b/i18n-config/src/main/resources/META-INF/i18n/zh_cn.conf index 080c8dc3..3eab5484 100644 --- a/i18n-config/src/main/resources/META-INF/i18n/zh_cn.conf +++ b/i18n-config/src/main/resources/META-INF/i18n/zh_cn.conf @@ -90,7 +90,7 @@ comments { "Async Catcher 共有四种模式" "NONE - 保持在当前线程执行" "DISPATCH - 不阻塞地发布到主线程" - "BLOCK - 发不到主线程并等待结果" + "BLOCK - 发布到主线程并等待结果" "EXCEPTION - 抛出异常" ] async-catcher.dump.comment = "是否在 debug 日志中打印堆栈信息"