Ticket #10352: mytharchive-cons.diff

File mytharchive-cons.diff, 3.2 KB (added by Nick Morrott <knowledgejunkie@…>, 12 years ago)
  • mythplugins/mytharchive/mytharchive/archiveutil.cpp

    diff --git mythplugins/mytharchive/mytharchive/archiveutil.cpp mythplugins/mytharchive/mytharchive/archiveutil.cpp
    index f3af594..dc50c67 100644
    struct ArchiveDestination ArchiveDestinations[] = 
    3232{
    3333    {AD_DVD_SL,
    3434     QT_TRANSLATE_NOOP("SelectDestination", "Single Layer DVD"),
    35      QT_TRANSLATE_NOOP("SelectDestination", "Single Layer DVD (4482Mb)"),
     35     QT_TRANSLATE_NOOP("SelectDestination", "Single Layer DVD (4,482 MB)"),
    3636     4482*1024},
    3737    {AD_DVD_DL,
    3838     QT_TRANSLATE_NOOP("SelectDestination", "Dual Layer DVD"),
    39      QT_TRANSLATE_NOOP("SelectDestination", "Dual Layer DVD (8964Mb)"),
     39     QT_TRANSLATE_NOOP("SelectDestination", "Dual Layer DVD (8,964 MB)"),
    4040     8964*1024},
    4141    {AD_DVD_RW,
    4242     QT_TRANSLATE_NOOP("SelectDestination", "DVD +/- RW"),
  • mythplugins/mytharchive/mytharchive/importnative.cpp

    diff --git mythplugins/mytharchive/mytharchive/importnative.cpp mythplugins/mytharchive/mytharchive/importnative.cpp
    index 94bcfc2..c851b4c 100644
    void ImportNative::finishedPressed() 
    427427{
    428428    if (m_details.chanID != "N/A" && m_localChanID_text->GetText() == "")
    429429    {
    430         ShowOkPopup(tr("You need to select a valid chanID!"));
     430        ShowOkPopup(tr("You need to select a valid ChanID!"));
    431431        return;
    432432    }
    433433
    void ImportNative::searchChanNo() 
    618618    fillSearchList("channum");
    619619
    620620    s = m_chanNo_text->GetText();
    621     showList(tr("Select a ChanNo"), s, SLOT(gotChanNo(QString)));
     621    showList(tr("Select a ChanNum"), s, SLOT(gotChanNo(QString)));
    622622}
    623623
    624624void ImportNative::gotChanNo(QString value)
  • mythplugins/mytharchive/mytharchive/main.cpp

    diff --git mythplugins/mytharchive/mytharchive/main.cpp mythplugins/mytharchive/mytharchive/main.cpp
    index af7da2b..4cec7d4 100644
    static int runMenu(QString which_menu) 
    297297static void initKeys(void)
    298298{
    299299    REG_KEY("Archive", "TOGGLECUT", QT_TRANSLATE_NOOP("MythControls",
    300         "Toggle use cut list state for selected program"), "C");
     300        "Toggle use cutlist state for selected program"), "C");
    301301
    302302    REG_JUMP(QT_TRANSLATE_NOOP("MythControls", "Create DVD"),
    303303        "", "", runCreateDVD);
  • mythplugins/mytharchive/mytharchive/mythburn.cpp

    diff --git mythplugins/mytharchive/mytharchive/mythburn.cpp mythplugins/mytharchive/mytharchive/mythburn.cpp
    index c2ca926..904c2b9 100644
    void MythBurn::toggleUseCutlist(void) 
    352352    }
    353353    else
    354354    {
    355         item->SetText(tr("No Cut List"), "cutlist");
     355        item->SetText(tr("No Cutlist"), "cutlist");
    356356        item->DisplayState("none", "cutliststatus");
    357357    }
    358358    recalcItemSize(a);
    void MythBurn::updateArchiveList(void) 
    476476            }
    477477            else
    478478            {
    479                 item->SetText(tr("No Cut List"), "cutlist");
     479                item->SetText(tr("No Cutlist"), "cutlist");
    480480                item->DisplayState("none", "cutliststatus");
    481481            }
    482482            item->SetText(tr("Encoder: ") + a->encoderProfile->name, "profile");