Skip to content

Commit 878d5eb

Browse files
knowledgejunkieNicolas Riendeau
authored andcommitted
String consistency updated
Thank you Nick! PS: This is essentially what you submitted with a few minor modifications on my part. Closes #10374 Signed-off-by: Nicolas Riendeau <nriendeau@mythtv.org>
1 parent 456bb42 commit 878d5eb

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

mythtv/libs/libmythtv/recordingprofile.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1013,12 +1013,12 @@ class RecordFullTSStream : public ComboBoxSetting, public CodecParamStorage
10131013
RecordFullTSStream(const RecordingProfile &parent) :
10141014
ComboBoxSetting(this), CodecParamStorage(this, parent, "recordmpts")
10151015
{
1016-
setLabel(QObject::tr("Recording Full TS"));
1016+
setLabel(QObject::tr("Record Full TS?"));
10171017

10181018
QString msg = QObject::tr(
1019-
"When set an extra files will be created for each recording "
1020-
"with the name of that recording plus .ts and a number. "
1021-
"These will represent that full contents of the transport "
1019+
"If set, extra files will be created for each recording with "
1020+
"the name of the recording followed by '.ts' and a number. "
1021+
"These extra files represent the full contents of the transport "
10221022
"stream used to generate the recording.");
10231023
setHelpText(msg);
10241024

mythtv/libs/libmythtv/videosource.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ void XMLTV_generic_config::Save()
452452
VerticalConfigurationGroup::Save();
453453
#if 0
454454
QString err_msg = QObject::tr(
455-
"You MUST run 'mythfilldatabase --manual the first time,\n "
455+
"You MUST run 'mythfilldatabase --manual' the first time,\n "
456456
"instead of just 'mythfilldatabase'.\nYour grabber does not provide "
457457
"channel numbers, so you have to set them manually.");
458458

mythtv/programs/mythfrontend/audiogeneralsettings.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ HostCheckBox *AudioConfigSettings::AC3PassThrough()
437437
gc->setLabel(QObject::tr("Dolby Digital"));
438438
gc->setValue(false);
439439
gc->setHelpText(QObject::tr("Enable if your amplifier or sound decoder "
440-
"supports AC3/Dolby Digital. You must use a digital "
440+
"supports AC-3/Dolby Digital. You must use a digital "
441441
"connection. Uncheck if using an analog connection."));
442442
return gc;
443443
}
@@ -456,10 +456,10 @@ HostCheckBox *AudioConfigSettings::DTSPassThrough()
456456
HostCheckBox *AudioConfigSettings::EAC3PassThrough()
457457
{
458458
HostCheckBox *gc = new HostCheckBox("EAC3PassThru");
459-
gc->setLabel(QObject::tr("E-AC3"));
459+
gc->setLabel(QObject::tr("E-AC-3"));
460460
gc->setValue(false);
461461
gc->setHelpText(QObject::tr("Enable if your amplifier or sound decoder "
462-
"supports E-AC3 (DD+). You must use a hdmi connection."));
462+
"supports E-AC-3 (DD+). You must use a HDMI connection."));
463463
return gc;
464464
}
465465

@@ -469,7 +469,7 @@ HostCheckBox *AudioConfigSettings::TrueHDPassThrough()
469469
gc->setLabel(QObject::tr("TrueHD"));
470470
gc->setValue(false);
471471
gc->setHelpText(QObject::tr("Enable if your amplifier or sound decoder "
472-
"supports Dolby TrueHD. You must use a hdmi connection."));
472+
"supports Dolby TrueHD. You must use a HDMI connection."));
473473
return gc;
474474
}
475475

@@ -479,7 +479,7 @@ HostCheckBox *AudioConfigSettings::DTSHDPassThrough()
479479
gc->setLabel(QObject::tr("DTS-HD"));
480480
gc->setValue(false);
481481
gc->setHelpText(QObject::tr("Enable if your amplifier or sound decoder "
482-
"supports DTS-HD. You must use a hdmi connection."));
482+
"supports DTS-HD. You must use a HDMI connection."));
483483
return gc;
484484
}
485485

@@ -1066,8 +1066,8 @@ HostCheckBox *AudioAdvancedSettings::MPCM()
10661066
gc->setLabel(QObject::tr("Stereo PCM Only"));
10671067
gc->setValue(false);
10681068
gc->setHelpText(QObject::tr("Enable if your amplifier or sound decoder "
1069-
"only supports 2 channels PCM (typically an old HDMI 1.0 "
1070-
"device). Multi-channels audio will be re-encoded to AC3 "
1069+
"only supports 2 channel PCM (typically an old HDMI 1.0 "
1070+
"device). Multichannel audio will be re-encoded to AC-3 "
10711071
"when required"));
10721072
return gc;
10731073
}
@@ -1143,7 +1143,7 @@ HostComboBox *AudioAdvancedSettings::PassThroughOutputDevice()
11431143
HostCheckBox *AudioAdvancedSettings::SPDIFRateOverride()
11441144
{
11451145
HostCheckBox *gc = new HostCheckBox("SPDIFRateOverride");
1146-
gc->setLabel(QObject::tr("SPDIF 48k rate override"));
1146+
gc->setLabel(QObject::tr("SPDIF 48kHz rate override"));
11471147
gc->setValue(false);
11481148
gc->setHelpText(QObject::tr("ALSA only. By default, let ALSA determine "
11491149
"the passthrough sampling rate. If checked "

mythtv/programs/mythfrontend/grabbersettings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ bool GrabberSettings::Create()
5252
return false;
5353
}
5454

55-
m_movieGrabberButtonList->SetHelpText(tr("Select an source to use when searching for "
55+
m_movieGrabberButtonList->SetHelpText(tr("Select a source to use when searching for "
5656
"information and artwork about movies."));
5757
m_tvGrabberButtonList->SetHelpText(tr("Select a source to use when searching for "
5858
"information and artwork about television."));

mythtv/programs/mythfrontend/setupwizard_video.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ bool VideoSetupWizard::Create()
7070
m_playbackProfileButtonList->SetHelpText( tr("Select from one of the "
7171
"preconfigured playback profiles. When "
7272
"satisfied, you can test Standard Definition "
73-
"and High Definition playback with your choice "
74-
"before moving on.") );
73+
"and High Definition playback with the selected "
74+
"profile before moving on.") );
7575
m_testSDButton->SetHelpText( tr("Test your playback settings with Standard "
76-
"definition content. (480p)") );
76+
"Definition content. (480p)") );
7777
m_testHDButton->SetHelpText( tr("Test your playback settings with High "
78-
"definition content (1080p).") );
78+
"Definition content (1080p).") );
7979
m_nextButton->SetHelpText( tr("Save these changes and move on to the "
8080
"next configuration step.") );
8181
m_prevButton->SetHelpText(tr("Return to the previous configuration step."));

0 commit comments

Comments
 (0)