diff --git a/src/audio_provider_bestsource.cpp b/src/audio_provider_bestsource.cpp index aa1bd1904..d95eb949e 100644 --- a/src/audio_provider_bestsource.cpp +++ b/src/audio_provider_bestsource.cpp @@ -56,7 +56,7 @@ BSAudioProvider::BSAudioProvider(agi::fs::path const& filename, agi::BackgroundR { bs.SetMaxCacheSize(OPT_GET("Provider/Audio/BestSource/Max Cache Size")->GetInt() << 20); br->Run([&](agi::ProgressSink *ps) { - ps->SetTitle(from_wx(_("Exacting"))); + ps->SetTitle(from_wx(_("Indexing"))); ps->SetMessage(from_wx(_("Creating cache... This can take a while!"))); ps->SetIndeterminate(); if (bs.GetExactDuration()) { diff --git a/src/video_provider_bestsource.cpp b/src/video_provider_bestsource.cpp index 47a0b25bc..2d7c6c952 100644 --- a/src/video_provider_bestsource.cpp +++ b/src/video_provider_bestsource.cpp @@ -115,7 +115,7 @@ BSVideoProvider::BSVideoProvider(agi::fs::path const& filename, std::string cons } br->Run([&](agi::ProgressSink *ps) { - ps->SetTitle(from_wx(_("Exacting"))); + ps->SetTitle(from_wx(_("Indexing"))); ps->SetMessage(from_wx(_("Creating cache... This can take a while!"))); ps->SetIndeterminate(); if (bs.GetExactDuration()) { @@ -126,7 +126,7 @@ BSVideoProvider::BSVideoProvider(agi::fs::path const& filename, std::string cons br->Run([&](agi::ProgressSink *ps) { ps->SetTitle(from_wx(_("Scanning"))); - ps->SetMessage(from_wx(_("Finding Keyframes and Timecodes..."))); + ps->SetMessage(from_wx(_("Reading timecodes and frame/sample data"))); std::vector TimecodesVector; for (int n = 0; n < properties.NumFrames; n++) {