mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 09:20:16 +01:00
TranslatableString in ProgressDialog
This commit is contained in:
@@ -77,7 +77,7 @@ int ProjectFSCK(
|
||||
wxEmptyString, // All files
|
||||
true, false,
|
||||
dm.NumBlockFiles(), // rough guess of how many BlockFiles will be found/processed, for progress
|
||||
_("Inspecting project file data"));
|
||||
XO("Inspecting project file data"));
|
||||
|
||||
//
|
||||
// MISSING ALIASED AUDIO FILES
|
||||
@@ -360,9 +360,9 @@ other projects. \
|
||||
if ((nResult != FSCKstatus_CLOSE_REQ) && !ODManager::HasLoadedODFlag())
|
||||
{
|
||||
// Remove any empty directories.
|
||||
ProgressDialog pProgress
|
||||
(_("Progress"),
|
||||
_("Cleaning up unused directories in project data"));
|
||||
ProgressDialog pProgress(
|
||||
XO("Progress"),
|
||||
XO("Cleaning up unused directories in project data"));
|
||||
// nDirCount is for updating pProgress. +1 because we may DELETE dirPath.
|
||||
int nDirCount = DirManager::RecursivelyCountSubdirs(dirPath) + 1;
|
||||
DirManager::RecursivelyRemoveEmptyDirs(dirPath, nDirCount, &pProgress);
|
||||
|
||||
Reference in New Issue
Block a user