Skip to content

Commit

Permalink
Improved dialog text for new channels
Browse files Browse the repository at this point in the history
In mythtv-setup, when new channels are found there is a popup message.
This message is now "Found %n new %1 channel(s).".
Previously there was also "non-conflicting" mentioned.
This was not very clear as at this stage in the scanning process
the only thing that is checked is that the service id's of the
new channels are unique within the video source; the channel
numbers are not yet known.
In mythtv-setup, the terms "conflicting" and "non-conflicting"
generally refer to channel numbers.
  • Loading branch information
kmdewaal committed Jul 22, 2019
1 parent 62d8500 commit 75d87e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/channelscan/channelimporter.cpp
Expand Up @@ -320,7 +320,7 @@ void ChannelImporter::InsertChannels(
if (new_chan)
{
//: %n is the number of channels, %1 is the type of channel
QString msg = tr("Found %n new non-conflicting %1 channel(s).",
QString msg = tr("Found %n new %1 channel(s).",
"", new_chan).arg(toString(type));

InsertAction action = QueryUserInsert(msg);
Expand Down

0 comments on commit 75d87e4

Please sign in to comment.