Ticket #5907: mythtv-5907-use_bookmark_rather_than_saved_position_in_settings.patch

File mythtv-5907-use_bookmark_rather_than_saved_position_in_settings.patch, 1.3 KB (added by sphery <mtdean@…>, 15 years ago)

patch for settings label/help text

  • mythtv/programs/mythfrontend/globalsettings.cpp

     
    19961996static HostCheckBox *ClearSavedPosition()
    19971997{
    19981998    HostCheckBox *gc = new HostCheckBox("ClearSavedPosition");
    1999     gc->setLabel(QObject::tr("Clear Saved Position on playback"));
     1999    gc->setLabel(QObject::tr("Clear bookmark on playback"));
    20002000    gc->setValue(true);
    2001     gc->setHelpText(QObject::tr("Automatically clear saved position on a "
     2001    gc->setHelpText(QObject::tr("Automatically clear the bookmark on a "
    20022002                    "recording when the recording is played back.  If "
    20032003                    "disabled, you can mark the beginning with rewind "
    20042004                    "then save position."));
     
    20082008static HostCheckBox *AltClearSavedPosition()
    20092009{
    20102010    HostCheckBox *gc = new HostCheckBox("AltClearSavedPosition");
    2011     gc->setLabel(QObject::tr("Alternate Clear Saved Position"));
     2011    gc->setLabel(QObject::tr("Alternate clear and save bookmark"));
    20122012    gc->setValue(true);
    20132013    gc->setHelpText(QObject::tr("During playback the Select key "
    20142014                    "(Enter or Space) will alternate between \"Position "