bestsource: Fix switched 'audio' and 'video' strings

This commit is contained in:
arch1t3cht 2024-04-18 15:21:02 +02:00
parent 900876cc7f
commit 39314072f9
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@ std::pair<TrackSelection, bool> SelectTrack(agi::fs::path const& filename, bool
result = static_cast<TrackSelection>(TrackNumbers[0]);
} else {
int Choice = wxGetSingleChoiceIndex(
audio ? _("Multiple video tracks detected, please choose the one you wish to load:") : _("Multiple audio tracks detected, please choose the one you wish to load:"),
audio ? _("Choose video track") : _("Choose audio track"),
audio ? _("Multiple audio tracks detected, please choose the one you wish to load:") : _("Multiple video tracks detected, please choose the one you wish to load:"),
audio ? _("Choose audio track") : _("Choose video track"),
Choices);
if (Choice >= 0)