Ticket #13286: fixTranslations_v30.patch

File fixTranslations_v30.patch, 5.6 KB (added by Britney Fransen, 7 years ago)
  • mythtv/programs/mythfrontend/audiogeneralsettings.h

    diff --git a/mythtv/programs/mythfrontend/audiogeneralsettings.h b/mythtv/programs/mythfrontend/audiogeneralsettings.h
    index 79aa41dd8d..46421a84c2 100644
    a b class AudioTest;  
    1919
    2020class AudioConfigScreen : public StandardSettingDialog
    2121{
     22    Q_OBJECT
     23
    2224  public:
    2325    AudioConfigScreen(MythScreenStack *parent, const char *name,
    2426                      GroupSetting *groupSetting);
  • mythtv/programs/mythfrontend/globalsettings.cpp

    diff --git a/mythtv/programs/mythfrontend/globalsettings.cpp b/mythtv/programs/mythfrontend/globalsettings.cpp
    index 4507619170..0618f9762b 100644
    a b class PlayBackScaling : public GroupSetting  
    38713871PlayBackScaling::PlayBackScaling()
    38723872    :GroupSetting()
    38733873{
    3874     setLabel(tr("Scaling"));
     3874    setLabel(PlaybackSettings::tr("Scaling"));
    38753875    addChild(m_VertScan = VertScanPercentage());
    38763876    addChild(m_YScan = YScanDisplacement());
    38773877    addChild(m_HorizScan = HorizScanPercentage());
    void PlayBackScaling::updateButton(MythUIButtonListItem *item)  
    38943894        m_HorizScan->getValue() == "0" &&
    38953895        m_YScan->getValue() == "0" &&
    38963896        m_XScan->getValue() == "0")
    3897         item->SetText(tr("No scaling"),"value");
     3897        item->SetText(PlaybackSettings::tr("No scaling"),"value");
    38983898    else
    38993899        item->SetText(QString("%1%x%2%+%3%+%4%")
    39003900                .arg(m_HorizScan->getValue())
    ChannelCheckBoxSetting::ChannelCheckBoxSetting(uint chanid,  
    43644364    m_channelId(chanid)
    43654365{
    43664366    setLabel(QString("%1 %2").arg(channum).arg(channame));
    4367     setHelpText(tr("Select/Unselect channels for this channel group"));
     4367    setHelpText(ChannelGroupSettings::tr("Select/Unselect channels for this channel group"));
    43684368}
    43694369
    43704370ChannelGroupSetting::ChannelGroupSetting(const QString &groupName,
  • mythtv/programs/mythfrontend/globalsettings.h

    diff --git a/mythtv/programs/mythfrontend/globalsettings.h b/mythtv/programs/mythfrontend/globalsettings.h
    index e069ec1cfb..8c1de7a02e 100644
    a b class PlaybackProfileConfig : public GroupSetting  
    259259
    260260class ChannelGroupSetting : public GroupSetting
    261261{
     262    Q_OBJECT
     263
    262264  public:
    263265    ChannelGroupSetting(const QString &groupName, int groupId);
    264266    virtual void Load();
  • mythtv/programs/mythtv-setup/backendsettings.cpp

    diff --git a/mythtv/programs/mythtv-setup/backendsettings.cpp b/mythtv/programs/mythtv-setup/backendsettings.cpp
    index 6de0bae49d..bf24cc4f1a 100644
    a b class IpAddressSettings : public HostCheckBoxSetting  
    126126     explicit IpAddressSettings(/*Setting* trigger*/) :
    127127         HostCheckBoxSetting("ListenOnAllIps")
    128128     {
    129          setLabel(QObject::tr("Listen on All IP Addresses"));
     129         setLabel(BackendSettings::tr("Listen on All IP Addresses"));
    130130         setValue(true);
    131          setHelpText(tr("Allow this backend to receive connections on any IP "
    132                         "Address assigned to it. Recommended for most users "
    133                         "for ease and reliability."));
     131         setHelpText(BackendSettings::tr("Allow this backend to receive "
     132                        "connections on any IP Address assigned to it. "
     133                        "Recommended for most users for ease and "
     134                        "reliability."));
    134135
    135136         localServerIP = LocalServerIP();
    136137         localServerIP6 = LocalServerIP6();
  • mythtv/i18n/translate.pro

    diff --git a/mythtv/i18n/translate.pro b/mythtv/i18n/translate.pro
    index 210d9907f1..d51ec37ee5 100644
    a b SOURCES += ../libs/libmyth/audio/*.cpp  
    1010SOURCES += ../libs/libmyth/audio/*.h
    1111SOURCES += ../libs/libmythmetadata/*.cpp
    1212SOURCES += ../libs/libmythmetadata/*.h
     13SOURCES += ../libs/libmythservicecontracts/enums/*.cpp
     14SOURCES += ../libs/libmythservicecontracts/enums/*.h
    1315SOURCES += ../libs/libmythtv/*.cpp
    1416SOURCES += ../libs/libmythtv/*.h
    1517SOURCES += ../libs/libmythtv/AirPlay/*.cpp
  • mythtv/libs/libmythtv/tv_play.cpp

    diff --git a/mythtv/libs/libmythtv/tv_play.cpp b/mythtv/libs/libmythtv/tv_play.cpp
    index ea0aa806d5..710650dc95 100644
    a b bool TV::MenuItemDisplayPlayback(const MenuItemContext &c)  
    1201812018            if (m_tvm_canupmix)
    1201912019            {
    1202012020                active = m_tvm_upmixing;
    12021                 BUTTON(actionName, tr("Auto Detect"));
     12021                BUTTON(actionName, tr("Enable Audio Upmixer"));
    1202212022            }
    1202312023        }
    1202412024        else if (actionName == "AUTODETECT_FILL")
    bool TV::MenuItemDisplayPlayback(const MenuItemContext &c)  
    1203512035        {
    1203612036            BUTTON(actionName, tr("Manual Zoom Mode"));
    1203712037        }
     12038        else if (actionName == "BOTTOMLINEMOVE")
     12039        {
     12040            BUTTON(actionName, tr("Move BottomLine off screen"));
     12041        }
     12042        else if (actionName == "BOTTOMLINESAVE")
     12043        {
     12044            BUTTON(actionName, tr("Save manual zoom for BottomLine"));
     12045        }
    1203812046        else if (actionName == "TOGGLENIGHTMODE")
    1203912047        {
    1204012048            if (m_tvm_sup != kPictureAttributeSupported_None)
    bool TV::MenuItemDisplayPlayback(const MenuItemContext &c)  
    1222212230                BUTTON2(actionName, tr("DVD Root Menu"), tr("Top menu"));
    1222312231            }
    1222412232        }
     12233        else if (actionName == "JUMPBKMRK")
     12234        {
     12235            BUTTON(actionName, tr("Jump to bookmark"));
     12236        }
    1222512237        else if (actionName == "JUMPTOPOPUPMENU")
    1222612238        {
    1222712239            if (m_tvm_isbd)