From 0cd19e64d4d255e45233255478ca3a0bd5c439ae Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 14 Oct 2025 17:17:48 +0800 Subject: feat: add internationalization support and new command-line tools - Add locale support with English and Chinese translations - Introduce new jv and jvv command-line tools - Replace jvc.rs with improved command structure - Add utility modules for language selection and markdown coloring - Update configuration and dependencies --- src/bin/jv.rs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/bin/jv.rs (limited to 'src/bin/jv.rs') diff --git a/src/bin/jv.rs b/src/bin/jv.rs new file mode 100644 index 0000000..f7ab768 --- /dev/null +++ b/src/bin/jv.rs @@ -0,0 +1,5 @@ +// Import i18n files +rust_i18n::i18n!("locales", fallback = "en"); + +#[tokio::main] +async fn main() {} -- cgit