From 0c057ebddb1b28780a1d70bbc9f6d6d48a25f554 Mon Sep 17 00:00:00 2001 From: arch1t3cht Date: Sun, 23 Apr 2023 15:39:11 +0200 Subject: [PATCH] bestsource: Unify some messages with ffms2's --- src/audio_provider_bestsource.cpp | 2 +- src/video_provider_bestsource.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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++) {