mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-15 09:01:12 +01:00
Substitute, don't concatenate, when composing localized strings...
... Avoid English syntax bias.
This commit is contained in:
@@ -431,7 +431,8 @@ void DependencyDialog::PopulateList()
|
||||
}
|
||||
else
|
||||
{
|
||||
mFileListCtrl->InsertItem(i, _("MISSING ") + fileName.GetFullPath());
|
||||
mFileListCtrl->InsertItem(i,
|
||||
wxString::Format( _("MISSING %s"), fileName.GetFullPath() ) );
|
||||
mHasMissingFiles = true;
|
||||
mFileListCtrl->SetItemState(i, 0, wxLIST_STATE_SELECTED); // Deselect.
|
||||
mFileListCtrl->SetItemTextColour(i, *wxRED);
|
||||
|
||||
Reference in New Issue
Block a user