Ticket #10354: mythgame-cons.diff

File mythgame-cons.diff, 4.0 KB (added by Nick Morrott <knowledgejunkie@…>, 14 years ago)
  • mythplugins/mythgame/mythgame/gamehandler.cpp

    diff --git mythplugins/mythgame/mythgame/gamehandler.cpp mythplugins/mythgame/mythgame/gamehandler.cpp
    index c01feb9..3490b2b 100644
    void GameHandler::VerifyGameDB(GameHandler *handler)  
    508508        MythDB::DBError("GameHandler::VerifyGameDB - "
    509509                        "select", query);
    510510
    511     QString message = QObject::tr("Verifying %1 files")
     511    QString message = QObject::tr("Verifying %1 files...")
    512512                                    .arg(handler->SystemName());
    513513
    514514    CreateProgress(message);
    void GameHandler::buildFileList(QString directory, GameHandler *handler,  
    674674            m_GameMap[RomName] = GameScan(RomName,Info.filePath(),inFileSystem,
    675675                                 GameName, Info.absoluteDir().path());
    676676
    677             LOG(VB_GENERAL, LOG_INFO, LOC + QString("Found Rom : (%1) - %2")
     677            LOG(VB_GENERAL, LOG_INFO, LOC + QString("Found ROM : (%1) - %2")
    678678                    .arg(handler->SystemName()).arg(RomName));
    679679
    680680            *filecount = *filecount + 1;
    void GameHandler::processGames(GameHandler *handler)  
    699699        else
    700700        {
    701701            LOG(VB_GENERAL, LOG_ERR, LOC +
    702                 QString("Rom Path does not exist: %1")
     702                QString("ROM Path does not exist: %1")
    703703                    .arg(handler->SystemRomPath()));
    704704            return;
    705705        }
    void GameHandler::processGames(GameHandler *handler)  
    711711    {
    712712        MythScreenStack *popupStack = GetMythMainWindow()->GetStack("popup stack");
    713713
    714         QString message = QObject::tr("Scanning for %1 games")
     714        QString message = QObject::tr("Scanning for %1 games...")
    715715                                                .arg(handler->SystemName());
    716716        MythUIBusyDialog *busyDialog = new MythUIBusyDialog(message, popupStack,
    717717                                                "gamescanbusy");
  • mythplugins/mythgame/mythgame/gamescan.cpp

    diff --git mythplugins/mythgame/mythgame/gamescan.cpp mythplugins/mythgame/mythgame/gamescan.cpp
    index 7e09ec1..46dbf48 100644
    void GameScannerThread::verifyFiles()  
    6464
    6565    if (m_HasGUI)
    6666        SendProgressEvent(counter, (uint)m_dbgames.count(),
    67                           GameScanner::tr("Verifying game files"));
     67                          GameScanner::tr("Verifying game files..."));
    6868
    6969    // For every file we know about, check to see if it still exists.
    7070    for (QList<RomInfo*>::iterator p = m_dbgames.begin();
    void GameScannerThread::updateDB()  
    107107    uint counter = 0;
    108108    if (m_HasGUI)
    109109        SendProgressEvent(counter, (uint)(m_files.size() + m_remove.size()),
    110                           GameScanner::tr("Updating game database"));
     110                          GameScanner::tr("Updating game database..."));
    111111
    112112    for (QList<RomFileInfo>::iterator p = m_files.begin();
    113113                                 p != m_files.end(); ++p)
  • mythplugins/mythgame/mythgame/gamesettings.cpp

    diff --git mythplugins/mythgame/mythgame/gamesettings.cpp mythplugins/mythgame/mythgame/gamesettings.cpp
    index 8fadbd9..46d18bd 100644
    class RomPath : public LineEditSetting, public GameDBStorage  
    195195    RomPath(const MythGamePlayerSettings &parent) :
    196196        LineEditSetting(this), GameDBStorage(this, parent, "rompath")
    197197    {
    198         setLabel(QObject::tr("Rom Path"));
     198        setLabel(QObject::tr("ROM Path"));
    199199        setHelpText(QObject::tr("Location of the ROM files for this emulator"));
    200200    };
    201201};
    void MythGamePlayerEditor::menu(void)  
    303303        DialogCode val = MythPopupBox::Show2ButtonPopup(
    304304            GetMythMainWindow(),
    305305            "", tr("Game Player Menu"),
    306             tr("Edit.."), tr("Delete.."), kDialogCodeButton1);
     306            tr("Edit..."), tr("Delete..."), kDialogCodeButton1);
    307307
    308308        if (kDialogCodeButton0 == val)
    309309            edit();