1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Don't internationalize logged strings; -29 macro _ calls

This commit is contained in:
Paul Licameli
2020-05-23 07:27:36 -04:00
parent db690d94f7
commit 63c49db0ce
7 changed files with 29 additions and 29 deletions

View File

@@ -168,7 +168,7 @@ XO("Project check of \"%s\" folder \
++iter;
}
if ((action == 2) && bAutoRecoverMode)
wxLogWarning(_(" Project check replaced missing aliased file(s) with silence."));
wxLogWarning(wxT(" Project check replaced missing aliased file(s) with silence."));
}
}
@@ -240,7 +240,7 @@ XO("Project check of \"%s\" folder \
++iter;
}
if ((action == 0) && bAutoRecoverMode)
wxLogWarning(_(" Project check regenerated missing alias summary file(s)."));
wxLogWarning(wxT(" Project check regenerated missing alias summary file(s)."));
}
}
@@ -316,7 +316,7 @@ XO("Project check of \"%s\" folder \
++iter;
}
if ((action == 2) && bAutoRecoverMode)
wxLogWarning(_(" Project check replaced missing audio data block file(s) with silence."));
wxLogWarning(wxT(" Project check replaced missing audio data block file(s) with silence."));
}
}
@@ -332,7 +332,7 @@ XO("Project check of \"%s\" folder \
// They will be deleted when project is saved the first time.
if (bAutoRecoverMode)
{
wxLogWarning(_(" Project check ignored orphan block file(s). They will be deleted when project is saved."));
wxLogWarning(wxT(" Project check ignored orphan block file(s). They will be deleted when project is saved."));
action = 1;
}
else
@@ -391,7 +391,7 @@ other projects. \
!missingAUHash.empty() ||
!orphanFilePathArray.empty())
{
wxLogWarning(_("Project check found file inconsistencies inspecting the loaded project data."));
wxLogWarning(wxT("Project check found file inconsistencies inspecting the loaded project data."));
wxLog::FlushActive(); // Flush is modal and will clear the log (both desired).
// In auto-recover mode, we didn't do any ShowMultiDialog calls above, so put up an alert.