Changeset 019894f5ef in tspsg for src/mainwindow.cpp


Ignore:
Timestamp:
Apr 15, 2011, 6:28:48 AM (13 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
f6352492e7
Parents:
27b1dca32b
git-author:
Oleksii Serdiuk <contacts@…> (04/15/11 06:28:48)
git-committer:
Oleksii Serdiuk <contacts@…> (06/29/12 19:45:59)
Message:
  • Made some small corrections to different texts.
  • FIX: Icons in toolbar configuration dialog didn't follow style and one of them wasn't shown.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mainwindow.cpp

    r27b1dca32b r019894f5ef  
    524524{
    525525    if (!hasUpdater()) {
    526         QMessageBox::warning(this, tr("Unsupported Feature"), tr("Sorry, but this feature is not supported on your platform\nor support for this feature was not installed."));
     526        QMessageBox::warning(this, tr("Unsupported Feature"), tr("Sorry, but this feature is not supported on your\nplatform or support for it was not installed."));
    527527        return;
    528528    }
     
    738738QPushButton *cancel = new QPushButton(&pd);
    739739    cancel->setIcon(GET_ICON("dialog-cancel"));
    740     cancel->setText(QCoreApplication::translate("QDialogButtonBox", "Cancel", "No need to translate this. This translation will be taken from Qt translation files."));
     740    cancel->setText(QCoreApplication::translate("QDialogButtonBox", "Cancel", "No need to translate this. The translation will be taken from Qt translation files."));
    741741    pd.setCancelButton(cancel);
    742742    pd.setMaximum(n);
     
    18571857
    18581858    QMenu *m = new QMenu(this);
    1859     m->addAction(QApplication::translate("QDialogButtonBox", "Discard", "No need to translate this. This translation will be taken from Qt translation files."),
     1859    m->addAction(QApplication::translate("QDialogButtonBox", "Discard", "No need to translate this. The translation will be taken from Qt translation files."),
    18601860                 this, SLOT(discard()));
    1861     m->addAction(QApplication::translate("QDialogButtonBox", "Cancel", "No need to translate this. This translation will be taken from Qt translation files."),
     1861    m->addAction(QApplication::translate("QDialogButtonBox", "Cancel", "No need to translate this. The translation will be taken from Qt translation files."),
    18621862                 this, SLOT(cancel()));
    18631863
    1864     QAction *o = new QAction(QApplication::translate("QMenuBar", "Actions", "No need to translate this. This translation will be taken from Qt translation files."), this);
     1864    QAction *o = new QAction(QApplication::translate("QtToolBarDialog", "Actions"), this);
    18651865    o->setSoftKeyRole(QAction::NegativeSoftKey);
    18661866    o->setMenu(m);
Note: See TracChangeset for help on using the changeset viewer.