Ykong
Ykong
### Verify steps - [X] 如果你可以自己 debug 并解决的话,提交 PR 吧 Is this something you can **debug and fix**? Send a pull request! Bug fixes and documentation fixes are welcome. -...
The binary generated from cross-compiling from linux to windows-gnu cannot run because it lacks the [mingw runtime](https://stackoverflow.com/questions/46728353/mingw-w64-whats-the-purpose-of-libgcc-s-seh-dll) (mingw-w64 under the linux platform). So I improved this build script so that...
my code: ```rust rust_i18n::i18n!("locales"); fn main() { rust_i18n::set_locale("zh-CN"); for _ in 0..5 { show_message(t!("ok"), t!("hello")); thread::sleep(Duration::from_secs(1)); } } fn show_message(title: impl AsRef, message: impl AsRef) { rfd::MessageDialog::new() .set_title(title.as_ref()) .set_description(message.as_ref()) .show();...