Changeset 165 in tspsg-svn
- Timestamp:
- Apr 15, 2011, 6:28:48 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 5 edited
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/3rdparty/qttoolbardialog-2.2_1-opensource/src/qttoolbardialog.cpp
r120 r165 1812 1812 // ui.currentToolBarList->setAcceptDrops(true); 1813 1813 1814 d_ptr->ui.upButton->setIcon(QIcon(":/images/icons/go-up.png"));1815 d_ptr->ui.downButton->setIcon(QIcon(":/images/icons/go-down.png"));1816 d_ptr->ui.leftButton->setIcon(QIcon(":/images/icons/go-previous.png"));1817 d_ptr->ui.rightButton->setIcon(QIcon(":/images/icons/go-next.png"));1818 d_ptr->ui.newButton->setIcon(QIcon(":/images/icons/list-add.png"));1819 d_ptr->ui.removeButton->setIcon(QIcon(":/images/icons/list-remove.png"));1814 d_ptr->ui.upButton->setIcon(GET_ICON("go-up")); 1815 d_ptr->ui.downButton->setIcon(GET_ICON("go-down")); 1816 d_ptr->ui.leftButton->setIcon(GET_ICON("go-previous")); 1817 d_ptr->ui.rightButton->setIcon(GET_ICON("go-next")); 1818 d_ptr->ui.newButton->setIcon(GET_ICON("list-add")); 1819 d_ptr->ui.removeButton->setIcon(GET_ICON("list-remove")); 1820 1820 1821 1821 connect(d_ptr->ui.newButton, SIGNAL(clicked()), this, SLOT(newClicked())); -
trunk/src/3rdparty/qttoolbardialog-2.2_1-opensource/src/qttoolbardialog.qrc
r119 r165 1 1 <RCC> 2 2 <qresource prefix="/"> 3 <file>images/icons/ go-down.png</file>4 <file>images/icons/ go-next.png</file>5 <file>images/icons/ go-up.png</file>6 <file>images/icons/ list-add.png</file>7 <file>images/icons/ list-remove.png</file>3 <file>images/icons/128x128/go-down.png</file> 4 <file>images/icons/128x128/go-next.png</file> 5 <file>images/icons/128x128/go-up.png</file> 6 <file>images/icons/128x128/list-add.png</file> 7 <file>images/icons/128x128/list-remove.png</file> 8 8 </qresource> 9 9 </RCC> -
trunk/src/mainwindow.cpp
r163 r165 524 524 { 525 525 if (!hasUpdater()) { 526 QMessageBox::warning(this, tr("Unsupported Feature"), tr("Sorry, but this feature is not supported on your platform\nor support for this featurewas 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.")); 527 527 return; 528 528 } … … 738 738 QPushButton *cancel = new QPushButton(&pd); 739 739 cancel->setIcon(GET_ICON("dialog-cancel")); 740 cancel->setText(QCoreApplication::translate("QDialogButtonBox", "Cancel", "No need to translate this. Th istranslation 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.")); 741 741 pd.setCancelButton(cancel); 742 742 pd.setMaximum(n); … … 1857 1857 1858 1858 QMenu *m = new QMenu(this); 1859 m->addAction(QApplication::translate("QDialogButtonBox", "Discard", "No need to translate this. Th istranslation 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."), 1860 1860 this, SLOT(discard())); 1861 m->addAction(QApplication::translate("QDialogButtonBox", "Cancel", "No need to translate this. Th istranslation 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."), 1862 1862 this, SLOT(cancel())); 1863 1863 1864 QAction *o = new QAction(QApplication::translate("Q MenuBar", "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); 1865 1865 o->setSoftKeyRole(QAction::NegativeSoftKey); 1866 1866 o->setMenu(m); -
trunk/src/tspmodel.cpp
r157 r165 404 404 QMessageBox::critical(QApplication::activeWindow(), tr("Task Load"), tr("Unable to load task:") + "\n" 405 405 + tr("File version (%1) is newer than this version of %3 supports (%2).\n" 406 "Please, try to update the application. Also, the file mightbe corrupted.")406 "Please, try to update the application. Also, the file could be corrupted.") 407 407 .arg(version).arg(TSPT_VERSION).arg(QApplication::applicationName())); 408 408 QApplication::restoreOverrideCursor(); -
trunk/ui/settingsdialog.ui
r162 r165 389 389 </property> 390 390 <property name="statusTip"> 391 <string> Use data URI scheme to save solution graph in HTML(not supported by IE 7 and lower)</string>391 <string>Save solution graph inside HTML using data URI scheme (not supported by IE 7 and lower)</string> 392 392 </property> 393 393 <property name="text">
Note: See TracChangeset
for help on using the changeset viewer.