1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-06 03:32:09 +01:00

Make wxLog* calls consistently not have \n at the end. Turn some wxLogWarning calls to wxLogError. Put some periods at the ends of sentences.

This commit is contained in:
v.audacity
2011-10-09 21:14:03 +00:00
parent dd47a9a5e4
commit 3a1d4334f2
6 changed files with 14 additions and 16 deletions

View File

@@ -566,7 +566,7 @@ wxFileName DirManager::MakeBlockFilePath(wxString value){
dir.AppendDir(middir);
if(!dir.DirExists() && !dir.Mkdir(0777,wxPATH_MKDIR_FULL))
wxLogSysError(_("mkdir in DirManager::MakeBlockFilePath failed.\n"));
wxLogSysError(_("mkdir in DirManager::MakeBlockFilePath failed."));
}
return dir;
}
@@ -596,7 +596,7 @@ bool DirManager::AssignFile(wxFileName &fileName,
wxString collision;
checkit.GetFirst(&collision,filespec);
wxLogWarning(_("Audacity found an orphan blockfile: %s. \nPlease consider saving and reloading the project to perform a complete project check.\n"),
wxLogWarning(_("Audacity found an orphan blockfile: %s. \nPlease consider saving and reloading the project to perform a complete project check."),
collision.c_str());
return FALSE;