Ticket #8928: string_corrections.diff

File string_corrections.diff, 5.9 KB (added by Kenni Lund [kenni a kelu dot dk], 14 years ago)
  • mythplugins/mythweb/INSTALL

     
    184184=============
    185185
    186186As of 0.21, MythWeb contains configuration files for both Apache and Lighty.
    187 You will need to chose ONE of these files and install it in your webserver's
     187You will need to choose ONE of these files and install it in your webserver's
    188188configuration directory.  This will be explained later.
    189189
    190190The first thing you must do is find the configuration file for your chosen
  • mythtv/themes/classic/main_settings.xml

     
    1818    <button>
    1919        <type>SETTINGS_THEMECHOOSER</type>
    2020        <text>Theme Chooser</text>
    21         <description>Chose a local theme or download new ones</description>
     21        <description>Choose a local theme or download new ones</description>
    2222        <action>SETTINGS THEMECHOOSER</action>
    2323    </button>
    2424
  • mythtv/themes/DVR/main_settings.xml

     
    1818    <button>
    1919        <type>SETTINGS_THEMECHOOSER</type>
    2020        <text>Theme Chooser</text>
    21         <description>Chose a local theme or download new ones</description>
     21        <description>Choose a local theme or download new ones</description>
    2222        <action>SETTINGS THEMECHOOSER</action>
    2323    </button>
    2424
  • mythtv/themes/mediacentermenu/main_settings.xml

     
    1818    <button>
    1919        <type>SETTINGS_THEMECHOOSER</type>
    2020        <text>Theme Chooser</text>
    21         <description>Chose a local theme or download new ones</description>
     21        <description>Choose a local theme or download new ones</description>
    2222        <action>SETTINGS THEMECHOOSER</action>
    2323    </button>
    2424
  • mythtv/themes/defaultmenu/main_settings.xml

     
    1818    <button>
    1919        <type>SETTINGS_THEMECHOOSER</type>
    2020        <text>Theme Chooser</text>
    21         <description>Chose a local theme or download new ones</description>
     21        <description>Choose a local theme or download new ones</description>
    2222        <action>SETTINGS THEMECHOOSER</action>
    2323    </button>
    2424
  • mythtv/libs/libmythtv/channelscan/modulationsetting.h

     
    100100        setLabel(QObject::tr("Modulation"));
    101101        setHelpText(
    102102            QObject::tr("Modulation, QPSK, 8PSK, QAM-16") + " " +
    103             QObject::tr("Most DVB-S transponders use QPSK, DVB-S2 8PSK "
    104                         "QAM-16 is not available for DVB-S2 transports."));
     103            QObject::tr("Most DVB-S transponders use QPSK, while "
     104                        "DVB-S2 use 8PSK. QAM-16 is not available "
     105                        "for DVB-S2 transports."));
    105106    }
    106107};
    107108
  • mythtv/libs/libmythtv/channelscan/channelscanmiscsettings.h

     
    8686                        "TV - Adds A/V services only, "
    8787                        "TV+Radio - Adds all services with audio, "
    8888                        "All - Adds all services "
    89                         "(including data only serices)."));
     89                        "(including data only services)."));
    9090        addSelection(QObject::tr("TV"),       "tv", true);
    9191        addSelection(QObject::tr("TV+Radio"), "audio");
    9292        addSelection(QObject::tr("All"),      "all");
  • mythtv/libs/libmythtv/videosource.cpp

     
    10361036        ComboBoxSetting(this),
    10371037        CaptureCardDBStorage(this, parent, "audioratelimit")
    10381038    {
    1039         setLabel(QObject::tr("Audio sampling rate limit"));
     1039        setLabel(QObject::tr("Force audio sampling rate"));
    10401040        setHelpText(
    10411041            QObject::tr("If non-zero, override the audio sampling "
    10421042                        "rate in the recording profile when this card is "
  • mythtv/programs/mythfrontend/globalsettings.cpp

     
    126126        // Rescan button
    127127    TransButtonSetting *rescan = new TransButtonSetting("rescan");
    128128    rescan->setLabel(QObject::tr("Scan for audio devices"));
    129     rescan->setHelpText(QObject::tr("Scan for the available audio devices "
    130                                     "available. Custom entry will be scanned "
    131                                     "and capability entries populated."));
     129    rescan->setHelpText(QObject::tr("Scan for available audio devices. "
     130                                    "Custom entry will be scanned and "
     131                                    "capability entries populated."));
    132132    addChild(rescan);
    133133    connect(rescan, SIGNAL(pressed()), this, SLOT(AudioRescan()));
    134134