Fix inconsistencies on new translated strings (#10310)

* Unmark string that don't need to be translated

* Spellcheck

* Fix calibration strings consistency
This commit is contained in:
Alexandre Folle de Menezes
2025-08-09 12:52:48 -03:00
committed by GitHub
parent 255d7153f4
commit 4cab501f14
29 changed files with 397 additions and 655 deletions

View File

@@ -36,7 +36,7 @@ bool is_pa_params_valid(const Calib_Params& params)
{
if (params.start < MIN_PA_K_VALUE || params.end > MAX_PA_K_VALUE || params.step < EPSILON || params.end < params.start + params.step) {
MessageDialog msg_dlg(nullptr,
wxString::Format(_L("Please input valid values:\nStart value: >= %.1f\nEnd value: <= %.1f\nEnd value: > Start value\nValue step: >= %.3f)"), MIN_PA_K_VALUE, MAX_PA_K_VALUE, MIN_PA_K_VALUE_STEP),
wxString::Format(_L("Please input valid values:\nStart value: >= %.1f\nEnd value: <= %.1f\nEnd value: > Start value\nValue step: >= %.3f"), MIN_PA_K_VALUE, MAX_PA_K_VALUE, MIN_PA_K_VALUE_STEP),
wxEmptyString, wxICON_WARNING | wxOK);
msg_dlg.ShowModal();
return false;