update translations

This commit is contained in:
Roy Qu 2022-03-27 16:15:44 +08:00
parent db4ca7254e
commit 7e0e9873f6
3 changed files with 423 additions and 399 deletions

View File

@ -5,7 +5,7 @@ Red Panda C++ Version 1.0.2
- enhancement: better display current lines under column mode - enhancement: better display current lines under column mode
- change: test to use utf-8 as the default encoding (prepare to use libclang to implement parser) - change: test to use utf-8 as the default encoding (prepare to use libclang to implement parser)
- fix: auto syntax check use wrong charset, if a file in editing is not encoded with ANSI encoding - fix: auto syntax check use wrong charset, if a file in editing is not encoded with ANSI encoding
- enhancement: timeout for problem case test in - enhancement: timeout for problem case test
- enhancement: slightly reduce start up time - enhancement: slightly reduce start up time
Red Panda C++ Version 1.0.1 Red Panda C++ Version 1.0.1

File diff suppressed because it is too large Load Diff

View File

@ -3334,7 +3334,7 @@ void Settings::Executor::doLoad()
mCaseEditorFontName = stringValue("case_editor_font_name","Dejavu Sans Mono"); mCaseEditorFontName = stringValue("case_editor_font_name","Dejavu Sans Mono");
#endif #endif
mCaseEditorFontSize = intValue("case_editor_font_size",12); mCaseEditorFontSize = intValue("case_editor_font_size",12);
mCaseEditorFontOnlyMonospaced = boolValue("case_editor_font_only_monospaced",true); mCaseEditorFontOnlyMonospaced = boolValue("case_editor_font_only_monospaced",false);
mCaseTimeout = intValue("case_timeout", 1); mCaseTimeout = intValue("case_timeout", 1);
mEnableCaseTimeout = boolValue("enable_case_timeout", true); mEnableCaseTimeout = boolValue("enable_case_timeout", true);
} }