9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2026-01-06 15:52:03 +00:00

数字类型语言文件

This commit is contained in:
XiaoMoMi
2025-12-30 23:03:31 +08:00
parent 9e3ea149e5
commit f9eaa0891d
4 changed files with 13 additions and 5 deletions

View File

@@ -153,6 +153,13 @@ warning.config.number.gaussian.missing_min: "<yellow>Issue found in file <arg:0>
warning.config.number.gaussian.missing_max: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'max' argument for 'gaussian' number.</yellow>"
warning.config.number.binomial.missing_extra: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'extra' argument for 'binomial' number.</yellow>"
warning.config.number.binomial.missing_probability: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'probability' argument for 'binomial' number.</yellow>"
warning.config.number.log_normal.missing_min: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'min' argument for 'log_normal' number.</yellow>"
warning.config.number.log_normal.missing_max: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'max' argument for 'log_normal' number.</yellow>"
warning.config.number.skew_normal.missing_min: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'min' argument for 'skew_normal' number.</yellow>"
warning.config.number.skew_normal.missing_max: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'max' argument for 'skew_normal' number.</yellow>"
warning.config.number.triangle.missing_min: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'min' argument for 'triangle' number.</yellow>"
warning.config.number.triangle.missing_max: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'max' argument for 'triangle' number.</yellow>"
warning.config.number.exponential.missing_lambda: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'lambda' argument for 'exponential' number.</yellow>"
warning.config.condition.all_of.missing_terms: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'terms' argument for 'all_of' condition.</yellow>"
warning.config.condition.all_of.invalid_terms_type: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' has a misconfigured 'all_of' condition, 'terms' should be a map list, current type: '<arg:2>'.</yellow>"
warning.config.condition.any_of.missing_terms: "<yellow>Issue found in file <arg:0> - The config '<arg:1>' is missing the required 'terms' argument for 'any_of' condition.</yellow>"