Skip to content

Commit

Permalink
bestsource: Fix switched 'audio' and 'video' strings
Browse files Browse the repository at this point in the history
  • Loading branch information
arch1t3cht committed Apr 18, 2024
1 parent 900876c commit 3931407
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bestsource_common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3931407

Please sign in to comment.