From d19e5d84ee21502fd3440511d4ffb1ee1f49d3b2 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 4 Feb 2026 00:27:16 +0800 Subject: Refactor build system and implement complete renderer system - Split monolithic build.rs into modular async generators - Add renderer override system with type-safe dispatch - Implement command template macro for consistent command definitions - Add proc-macro crates for command and renderer systems - Reorganize directory structure for better separation of concerns - Update documentation to reflect new architecture --- resources/locales/jvn/en.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'resources/locales/jvn/en.yml') diff --git a/resources/locales/jvn/en.yml b/resources/locales/jvn/en.yml index ee386f2..8768e6a 100644 --- a/resources/locales/jvn/en.yml +++ b/resources/locales/jvn/en.yml @@ -28,9 +28,24 @@ process_error: An error occurred while parsing your command arguments! Please use `jv --help` to view help + renderer_override_but_request_help: | + Renderer override mode is enabled, but help output was requested. + This is not expected. + + Tips: When using `--renderer` to specify a renderer, do not use `--help`. + If you wish to suppress all output when an error occurs, use the `--no-error-logs` flag. + other: | %{error} + downcast_failed: | + Type conversion failed! + + This is usually a compilation-phase issue, not a user input error. + Please use `jv -v -C` to get detailed version traceback and contact the developers. + + github: https://github.com/JustEnoughVCS/CommandLine/ + prepare_error: io: | I/O error in preparation phase! @@ -95,3 +110,10 @@ render_error: renderer_not_found: | Renderer `%{renderer_name}` not found! + + type_mismatch: | + Render type mismatch! + This is usually a compilation-phase issue, not a user input error. + Please use `jv -v -C` to get detailed version traceback and contact the developers. + + github: https://github.com/JustEnoughVCS/CommandLine/ -- cgit