uic: Use nullptr instead of Q_NULLPTR in generated code
nullptr can be used directly in the Qt code since Qt 5.7. Use it in generated code for consistency. Change-Id: I249aeaf0a39b46ce1106b29d3ea4569a399908b7 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>bb10
parent
eeaaac8f0e
commit
d61e61fa1a
|
|
@ -2267,7 +2267,7 @@ QString WriteInitialization::trCall(const QString &str, const QString &commentHi
|
|||
return QLatin1String("QString()");
|
||||
|
||||
QString result;
|
||||
const QString comment = commentHint.isEmpty() ? QString(QLatin1String("Q_NULLPTR")) : fixString(commentHint, m_dindent);
|
||||
const QString comment = commentHint.isEmpty() ? QString(QLatin1String("nullptr")) : fixString(commentHint, m_dindent);
|
||||
|
||||
if (m_option.translateFunction.isEmpty()) {
|
||||
if (m_option.idBased) {
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *Dialog)
|
||||
{
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", Q_NULLPTR));
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *Dialog)
|
||||
{
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", Q_NULLPTR));
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *Dialog)
|
||||
{
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", Q_NULLPTR));
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ public:
|
|||
|
||||
void retranslateUi(QMainWindow *MainWindow)
|
||||
{
|
||||
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", Q_NULLPTR));
|
||||
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -60,13 +60,13 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *Form)
|
||||
{
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Form", Q_NULLPTR));
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Form", nullptr));
|
||||
Alabel->setText(QApplication::translate("Form", "A label.\n"
|
||||
"One new line.\n"
|
||||
"Another new line.\n"
|
||||
"Last line.", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("Form", "A Group Box", Q_NULLPTR));
|
||||
pushButton->setText(QApplication::translate("Form", "PushButton", Q_NULLPTR));
|
||||
"Last line.", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("Form", "A Group Box", nullptr));
|
||||
pushButton->setText(QApplication::translate("Form", "PushButton", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -100,9 +100,9 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *AddLinkDialog)
|
||||
{
|
||||
AddLinkDialog->setWindowTitle(QApplication::translate("AddLinkDialog", "Insert Link", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("AddLinkDialog", "Title:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("AddLinkDialog", "URL:", Q_NULLPTR));
|
||||
AddLinkDialog->setWindowTitle(QApplication::translate("AddLinkDialog", "Insert Link", nullptr));
|
||||
label->setText(QApplication::translate("AddLinkDialog", "Title:", nullptr));
|
||||
label_2->setText(QApplication::translate("AddLinkDialog", "URL:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -212,23 +212,23 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *AddTorrentFile)
|
||||
{
|
||||
AddTorrentFile->setWindowTitle(QApplication::translate("AddTorrentFile", "Add a torrent", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("AddTorrentFile", "Select a torrent source", Q_NULLPTR));
|
||||
label_4->setText(QApplication::translate("AddTorrentFile", "Destination:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("AddTorrentFile", "Tracker URL:", Q_NULLPTR));
|
||||
browseTorrents->setText(QApplication::translate("AddTorrentFile", "Browse", Q_NULLPTR));
|
||||
label_5->setText(QApplication::translate("AddTorrentFile", "File(s):", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("AddTorrentFile", "Size:", Q_NULLPTR));
|
||||
label_6->setText(QApplication::translate("AddTorrentFile", "Creator:", Q_NULLPTR));
|
||||
announceUrl->setText(QApplication::translate("AddTorrentFile", "<none>", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("AddTorrentFile", "Torrent file:", Q_NULLPTR));
|
||||
browseDestination->setText(QApplication::translate("AddTorrentFile", "Browse", Q_NULLPTR));
|
||||
label_7->setText(QApplication::translate("AddTorrentFile", "Comment:", Q_NULLPTR));
|
||||
commentLabel->setText(QApplication::translate("AddTorrentFile", "<none>", Q_NULLPTR));
|
||||
creatorLabel->setText(QApplication::translate("AddTorrentFile", "<none>", Q_NULLPTR));
|
||||
sizeLabel->setText(QApplication::translate("AddTorrentFile", "0", Q_NULLPTR));
|
||||
okButton->setText(QApplication::translate("AddTorrentFile", "&OK", Q_NULLPTR));
|
||||
cancelButton->setText(QApplication::translate("AddTorrentFile", "&Cancel", Q_NULLPTR));
|
||||
AddTorrentFile->setWindowTitle(QApplication::translate("AddTorrentFile", "Add a torrent", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("AddTorrentFile", "Select a torrent source", nullptr));
|
||||
label_4->setText(QApplication::translate("AddTorrentFile", "Destination:", nullptr));
|
||||
label_2->setText(QApplication::translate("AddTorrentFile", "Tracker URL:", nullptr));
|
||||
browseTorrents->setText(QApplication::translate("AddTorrentFile", "Browse", nullptr));
|
||||
label_5->setText(QApplication::translate("AddTorrentFile", "File(s):", nullptr));
|
||||
label_3->setText(QApplication::translate("AddTorrentFile", "Size:", nullptr));
|
||||
label_6->setText(QApplication::translate("AddTorrentFile", "Creator:", nullptr));
|
||||
announceUrl->setText(QApplication::translate("AddTorrentFile", "<none>", nullptr));
|
||||
label->setText(QApplication::translate("AddTorrentFile", "Torrent file:", nullptr));
|
||||
browseDestination->setText(QApplication::translate("AddTorrentFile", "Browse", nullptr));
|
||||
label_7->setText(QApplication::translate("AddTorrentFile", "Comment:", nullptr));
|
||||
commentLabel->setText(QApplication::translate("AddTorrentFile", "<none>", nullptr));
|
||||
creatorLabel->setText(QApplication::translate("AddTorrentFile", "<none>", nullptr));
|
||||
sizeLabel->setText(QApplication::translate("AddTorrentFile", "0", nullptr));
|
||||
okButton->setText(QApplication::translate("AddTorrentFile", "&OK", nullptr));
|
||||
cancelButton->setText(QApplication::translate("AddTorrentFile", "&Cancel", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -106,12 +106,12 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *Dialog)
|
||||
{
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Http authentication required", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("Dialog", "You need to supply a Username and a Password to access this site", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("Dialog", "Username:", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("Dialog", "Password:", Q_NULLPTR));
|
||||
label_4->setText(QApplication::translate("Dialog", "Site:", Q_NULLPTR));
|
||||
siteDescription->setText(QApplication::translate("Dialog", "%1 at %2", Q_NULLPTR));
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Http authentication required", nullptr));
|
||||
label->setText(QApplication::translate("Dialog", "You need to supply a Username and a Password to access this site", nullptr));
|
||||
label_2->setText(QApplication::translate("Dialog", "Username:", nullptr));
|
||||
label_3->setText(QApplication::translate("Dialog", "Password:", nullptr));
|
||||
label_4->setText(QApplication::translate("Dialog", "Site:", nullptr));
|
||||
siteDescription->setText(QApplication::translate("Dialog", "%1 at %2", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -146,40 +146,40 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *BackSide)
|
||||
{
|
||||
BackSide->setWindowTitle(QApplication::translate("BackSide", "BackSide", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("BackSide", "Settings", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("BackSide", "Title:", Q_NULLPTR));
|
||||
hostName->setText(QApplication::translate("BackSide", "Pad Navigator Example", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("BackSide", "Modified:", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("BackSide", "Extent", Q_NULLPTR));
|
||||
groupBox_2->setTitle(QApplication::translate("BackSide", "Other input", Q_NULLPTR));
|
||||
BackSide->setWindowTitle(QApplication::translate("BackSide", "BackSide", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("BackSide", "Settings", nullptr));
|
||||
label->setText(QApplication::translate("BackSide", "Title:", nullptr));
|
||||
hostName->setText(QApplication::translate("BackSide", "Pad Navigator Example", nullptr));
|
||||
label_2->setText(QApplication::translate("BackSide", "Modified:", nullptr));
|
||||
label_3->setText(QApplication::translate("BackSide", "Extent", nullptr));
|
||||
groupBox_2->setTitle(QApplication::translate("BackSide", "Other input", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem();
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("BackSide", "Widgets On Graphics View", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("BackSide", "Widgets On Graphics View", nullptr));
|
||||
|
||||
const bool __sortingEnabled = treeWidget->isSortingEnabled();
|
||||
treeWidget->setSortingEnabled(false);
|
||||
QTreeWidgetItem *___qtreewidgetitem1 = treeWidget->topLevelItem(0);
|
||||
___qtreewidgetitem1->setText(0, QApplication::translate("BackSide", "QGraphicsProxyWidget", Q_NULLPTR));
|
||||
___qtreewidgetitem1->setText(0, QApplication::translate("BackSide", "QGraphicsProxyWidget", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem2 = ___qtreewidgetitem1->child(0);
|
||||
___qtreewidgetitem2->setText(0, QApplication::translate("BackSide", "QGraphicsWidget", Q_NULLPTR));
|
||||
___qtreewidgetitem2->setText(0, QApplication::translate("BackSide", "QGraphicsWidget", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem3 = ___qtreewidgetitem2->child(0);
|
||||
___qtreewidgetitem3->setText(0, QApplication::translate("BackSide", "QObject", Q_NULLPTR));
|
||||
___qtreewidgetitem3->setText(0, QApplication::translate("BackSide", "QObject", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem4 = ___qtreewidgetitem2->child(1);
|
||||
___qtreewidgetitem4->setText(0, QApplication::translate("BackSide", "QGraphicsItem", Q_NULLPTR));
|
||||
___qtreewidgetitem4->setText(0, QApplication::translate("BackSide", "QGraphicsItem", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem5 = ___qtreewidgetitem2->child(2);
|
||||
___qtreewidgetitem5->setText(0, QApplication::translate("BackSide", "QGraphicsLayoutItem", Q_NULLPTR));
|
||||
___qtreewidgetitem5->setText(0, QApplication::translate("BackSide", "QGraphicsLayoutItem", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem6 = treeWidget->topLevelItem(1);
|
||||
___qtreewidgetitem6->setText(0, QApplication::translate("BackSide", "QGraphicsGridLayout", Q_NULLPTR));
|
||||
___qtreewidgetitem6->setText(0, QApplication::translate("BackSide", "QGraphicsGridLayout", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem7 = ___qtreewidgetitem6->child(0);
|
||||
___qtreewidgetitem7->setText(0, QApplication::translate("BackSide", "QGraphicsLayout", Q_NULLPTR));
|
||||
___qtreewidgetitem7->setText(0, QApplication::translate("BackSide", "QGraphicsLayout", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem8 = ___qtreewidgetitem7->child(0);
|
||||
___qtreewidgetitem8->setText(0, QApplication::translate("BackSide", "QGraphicsLayoutItem", Q_NULLPTR));
|
||||
___qtreewidgetitem8->setText(0, QApplication::translate("BackSide", "QGraphicsLayoutItem", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem9 = treeWidget->topLevelItem(2);
|
||||
___qtreewidgetitem9->setText(0, QApplication::translate("BackSide", "QGraphicsLinearLayout", Q_NULLPTR));
|
||||
___qtreewidgetitem9->setText(0, QApplication::translate("BackSide", "QGraphicsLinearLayout", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem10 = ___qtreewidgetitem9->child(0);
|
||||
___qtreewidgetitem10->setText(0, QApplication::translate("BackSide", "QGraphicsLayout", Q_NULLPTR));
|
||||
___qtreewidgetitem10->setText(0, QApplication::translate("BackSide", "QGraphicsLayout", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem11 = ___qtreewidgetitem10->child(0);
|
||||
___qtreewidgetitem11->setText(0, QApplication::translate("BackSide", "QGraphicsLayoutItem", Q_NULLPTR));
|
||||
___qtreewidgetitem11->setText(0, QApplication::translate("BackSide", "QGraphicsLayoutItem", nullptr));
|
||||
treeWidget->setSortingEnabled(__sortingEnabled);
|
||||
|
||||
} // retranslateUi
|
||||
|
|
|
|||
|
|
@ -216,16 +216,16 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *databaseTranslationDialog)
|
||||
{
|
||||
databaseTranslationDialog->setWindowTitle(QApplication::translate("databaseTranslationDialog", "Qt Linguist - Batch Translation", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("databaseTranslationDialog", "Options", Q_NULLPTR));
|
||||
ckOnlyUntranslated->setText(QApplication::translate("databaseTranslationDialog", "Only translate entries with no translation", Q_NULLPTR));
|
||||
ckMarkFinished->setText(QApplication::translate("databaseTranslationDialog", "Set translated entries to finished", Q_NULLPTR));
|
||||
groupBox_2->setTitle(QApplication::translate("databaseTranslationDialog", "Phrase book preference", Q_NULLPTR));
|
||||
moveUpButton->setText(QApplication::translate("databaseTranslationDialog", "Move up", Q_NULLPTR));
|
||||
moveDownButton->setText(QApplication::translate("databaseTranslationDialog", "Move down", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("databaseTranslationDialog", "The batch translator will search through the selected phrasebooks in the order given above.", Q_NULLPTR));
|
||||
runButton->setText(QApplication::translate("databaseTranslationDialog", "&Run", Q_NULLPTR));
|
||||
cancelButton->setText(QApplication::translate("databaseTranslationDialog", "&Cancel", Q_NULLPTR));
|
||||
databaseTranslationDialog->setWindowTitle(QApplication::translate("databaseTranslationDialog", "Qt Linguist - Batch Translation", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("databaseTranslationDialog", "Options", nullptr));
|
||||
ckOnlyUntranslated->setText(QApplication::translate("databaseTranslationDialog", "Only translate entries with no translation", nullptr));
|
||||
ckMarkFinished->setText(QApplication::translate("databaseTranslationDialog", "Set translated entries to finished", nullptr));
|
||||
groupBox_2->setTitle(QApplication::translate("databaseTranslationDialog", "Phrase book preference", nullptr));
|
||||
moveUpButton->setText(QApplication::translate("databaseTranslationDialog", "Move up", nullptr));
|
||||
moveDownButton->setText(QApplication::translate("databaseTranslationDialog", "Move down", nullptr));
|
||||
label->setText(QApplication::translate("databaseTranslationDialog", "The batch translator will search through the selected phrasebooks in the order given above.", nullptr));
|
||||
runButton->setText(QApplication::translate("databaseTranslationDialog", "&Run", nullptr));
|
||||
cancelButton->setText(QApplication::translate("databaseTranslationDialog", "&Cancel", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -150,13 +150,13 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *BookmarkDialog)
|
||||
{
|
||||
BookmarkDialog->setWindowTitle(QApplication::translate("BookmarkDialog", "Add Bookmark", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("BookmarkDialog", "Bookmark:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("BookmarkDialog", "Add in Folder:", Q_NULLPTR));
|
||||
toolButton->setText(QApplication::translate("BookmarkDialog", "+", Q_NULLPTR));
|
||||
BookmarkDialog->setWindowTitle(QApplication::translate("BookmarkDialog", "Add Bookmark", nullptr));
|
||||
label->setText(QApplication::translate("BookmarkDialog", "Bookmark:", nullptr));
|
||||
label_2->setText(QApplication::translate("BookmarkDialog", "Add in Folder:", nullptr));
|
||||
toolButton->setText(QApplication::translate("BookmarkDialog", "+", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem = bookmarkWidget->headerItem();
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("BookmarkDialog", "1", Q_NULLPTR));
|
||||
newFolderButton->setText(QApplication::translate("BookmarkDialog", "New Folder", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("BookmarkDialog", "1", nullptr));
|
||||
newFolderButton->setText(QApplication::translate("BookmarkDialog", "New Folder", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -159,15 +159,15 @@ public:
|
|||
|
||||
void retranslateUi(QMainWindow *BookWindow)
|
||||
{
|
||||
BookWindow->setWindowTitle(QApplication::translate("BookWindow", "Books", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("BookWindow", "Books", Q_NULLPTR));
|
||||
groupBox_2->setTitle(QApplication::translate("BookWindow", "Details", Q_NULLPTR));
|
||||
label_5->setText(QApplication::translate("BookWindow", "<b>Title:</b>", Q_NULLPTR));
|
||||
label_2_2_2_2->setText(QApplication::translate("BookWindow", "<b>Author: </b>", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("BookWindow", "<b>Genre:</b>", Q_NULLPTR));
|
||||
label_4->setText(QApplication::translate("BookWindow", "<b>Year:</b>", Q_NULLPTR));
|
||||
BookWindow->setWindowTitle(QApplication::translate("BookWindow", "Books", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("BookWindow", "Books", nullptr));
|
||||
groupBox_2->setTitle(QApplication::translate("BookWindow", "Details", nullptr));
|
||||
label_5->setText(QApplication::translate("BookWindow", "<b>Title:</b>", nullptr));
|
||||
label_2_2_2_2->setText(QApplication::translate("BookWindow", "<b>Author: </b>", nullptr));
|
||||
label_3->setText(QApplication::translate("BookWindow", "<b>Genre:</b>", nullptr));
|
||||
label_4->setText(QApplication::translate("BookWindow", "<b>Year:</b>", nullptr));
|
||||
yearEdit->setPrefix(QString());
|
||||
label->setText(QApplication::translate("BookWindow", "<b>Rating:</b>", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("BookWindow", "<b>Rating:</b>", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -156,18 +156,18 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *Browser)
|
||||
{
|
||||
Browser->setWindowTitle(QApplication::translate("Browser", "Qt SQL Browser", Q_NULLPTR));
|
||||
insertRowAction->setText(QApplication::translate("Browser", "&Insert Row", Q_NULLPTR));
|
||||
Browser->setWindowTitle(QApplication::translate("Browser", "Qt SQL Browser", nullptr));
|
||||
insertRowAction->setText(QApplication::translate("Browser", "&Insert Row", nullptr));
|
||||
#ifndef QT_NO_STATUSTIP
|
||||
insertRowAction->setStatusTip(QApplication::translate("Browser", "Inserts a new Row", Q_NULLPTR));
|
||||
insertRowAction->setStatusTip(QApplication::translate("Browser", "Inserts a new Row", nullptr));
|
||||
#endif // QT_NO_STATUSTIP
|
||||
deleteRowAction->setText(QApplication::translate("Browser", "&Delete Row", Q_NULLPTR));
|
||||
deleteRowAction->setText(QApplication::translate("Browser", "&Delete Row", nullptr));
|
||||
#ifndef QT_NO_STATUSTIP
|
||||
deleteRowAction->setStatusTip(QApplication::translate("Browser", "Deletes the current Row", Q_NULLPTR));
|
||||
deleteRowAction->setStatusTip(QApplication::translate("Browser", "Deletes the current Row", nullptr));
|
||||
#endif // QT_NO_STATUSTIP
|
||||
groupBox->setTitle(QApplication::translate("Browser", "SQL Query", Q_NULLPTR));
|
||||
clearButton->setText(QApplication::translate("Browser", "&Clear", Q_NULLPTR));
|
||||
submitButton->setText(QApplication::translate("Browser", "&Submit", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("Browser", "SQL Query", nullptr));
|
||||
clearButton->setText(QApplication::translate("Browser", "&Clear", nullptr));
|
||||
submitButton->setText(QApplication::translate("Browser", "&Submit", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -59,9 +59,9 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *Dialog)
|
||||
{
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", Q_NULLPTR));
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem();
|
||||
___qtreewidgetitem->setText(1, QApplication::translate("Dialog", "4", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(1, QApplication::translate("Dialog", "4", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -159,34 +159,34 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *Calculator)
|
||||
{
|
||||
Calculator->setWindowTitle(QApplication::translate("Calculator", "Calculator", Q_NULLPTR));
|
||||
backspaceButton->setText(QApplication::translate("Calculator", "Backspace", Q_NULLPTR));
|
||||
clearButton->setText(QApplication::translate("Calculator", "Clear", Q_NULLPTR));
|
||||
clearAllButton->setText(QApplication::translate("Calculator", "Clear All", Q_NULLPTR));
|
||||
clearMemoryButton->setText(QApplication::translate("Calculator", "MC", Q_NULLPTR));
|
||||
readMemoryButton->setText(QApplication::translate("Calculator", "MR", Q_NULLPTR));
|
||||
setMemoryButton->setText(QApplication::translate("Calculator", "MS", Q_NULLPTR));
|
||||
addToMemoryButton->setText(QApplication::translate("Calculator", "M+", Q_NULLPTR));
|
||||
sevenButton->setText(QApplication::translate("Calculator", "7", Q_NULLPTR));
|
||||
eightButton->setText(QApplication::translate("Calculator", "8", Q_NULLPTR));
|
||||
nineButton->setText(QApplication::translate("Calculator", "9", Q_NULLPTR));
|
||||
fourButton->setText(QApplication::translate("Calculator", "4", Q_NULLPTR));
|
||||
fiveButton->setText(QApplication::translate("Calculator", "5", Q_NULLPTR));
|
||||
sixButton->setText(QApplication::translate("Calculator", "6", Q_NULLPTR));
|
||||
oneButton->setText(QApplication::translate("Calculator", "1", Q_NULLPTR));
|
||||
twoButton->setText(QApplication::translate("Calculator", "2", Q_NULLPTR));
|
||||
threeButton->setText(QApplication::translate("Calculator", "3", Q_NULLPTR));
|
||||
zeroButton->setText(QApplication::translate("Calculator", "0", Q_NULLPTR));
|
||||
pointButton->setText(QApplication::translate("Calculator", ".", Q_NULLPTR));
|
||||
changeSignButton->setText(QApplication::translate("Calculator", "+-", Q_NULLPTR));
|
||||
plusButton->setText(QApplication::translate("Calculator", "+", Q_NULLPTR));
|
||||
divisionButton->setText(QApplication::translate("Calculator", "/", Q_NULLPTR));
|
||||
timesButton->setText(QApplication::translate("Calculator", "*", Q_NULLPTR));
|
||||
minusButton->setText(QApplication::translate("Calculator", "-", Q_NULLPTR));
|
||||
squareRootButton->setText(QApplication::translate("Calculator", "Sqrt", Q_NULLPTR));
|
||||
powerButton->setText(QApplication::translate("Calculator", "x^2", Q_NULLPTR));
|
||||
reciprocalButton->setText(QApplication::translate("Calculator", "1/x", Q_NULLPTR));
|
||||
equalButton->setText(QApplication::translate("Calculator", "=", Q_NULLPTR));
|
||||
Calculator->setWindowTitle(QApplication::translate("Calculator", "Calculator", nullptr));
|
||||
backspaceButton->setText(QApplication::translate("Calculator", "Backspace", nullptr));
|
||||
clearButton->setText(QApplication::translate("Calculator", "Clear", nullptr));
|
||||
clearAllButton->setText(QApplication::translate("Calculator", "Clear All", nullptr));
|
||||
clearMemoryButton->setText(QApplication::translate("Calculator", "MC", nullptr));
|
||||
readMemoryButton->setText(QApplication::translate("Calculator", "MR", nullptr));
|
||||
setMemoryButton->setText(QApplication::translate("Calculator", "MS", nullptr));
|
||||
addToMemoryButton->setText(QApplication::translate("Calculator", "M+", nullptr));
|
||||
sevenButton->setText(QApplication::translate("Calculator", "7", nullptr));
|
||||
eightButton->setText(QApplication::translate("Calculator", "8", nullptr));
|
||||
nineButton->setText(QApplication::translate("Calculator", "9", nullptr));
|
||||
fourButton->setText(QApplication::translate("Calculator", "4", nullptr));
|
||||
fiveButton->setText(QApplication::translate("Calculator", "5", nullptr));
|
||||
sixButton->setText(QApplication::translate("Calculator", "6", nullptr));
|
||||
oneButton->setText(QApplication::translate("Calculator", "1", nullptr));
|
||||
twoButton->setText(QApplication::translate("Calculator", "2", nullptr));
|
||||
threeButton->setText(QApplication::translate("Calculator", "3", nullptr));
|
||||
zeroButton->setText(QApplication::translate("Calculator", "0", nullptr));
|
||||
pointButton->setText(QApplication::translate("Calculator", ".", nullptr));
|
||||
changeSignButton->setText(QApplication::translate("Calculator", "+-", nullptr));
|
||||
plusButton->setText(QApplication::translate("Calculator", "+", nullptr));
|
||||
divisionButton->setText(QApplication::translate("Calculator", "/", nullptr));
|
||||
timesButton->setText(QApplication::translate("Calculator", "*", nullptr));
|
||||
minusButton->setText(QApplication::translate("Calculator", "-", nullptr));
|
||||
squareRootButton->setText(QApplication::translate("Calculator", "Sqrt", nullptr));
|
||||
powerButton->setText(QApplication::translate("Calculator", "x^2", nullptr));
|
||||
reciprocalButton->setText(QApplication::translate("Calculator", "1/x", nullptr));
|
||||
equalButton->setText(QApplication::translate("Calculator", "=", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -173,13 +173,13 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *CalculatorForm)
|
||||
{
|
||||
CalculatorForm->setWindowTitle(QApplication::translate("CalculatorForm", "Calculator Builder", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("CalculatorForm", "Input 1", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("CalculatorForm", "+", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("CalculatorForm", "Input 2", Q_NULLPTR));
|
||||
label_3_2->setText(QApplication::translate("CalculatorForm", "=", Q_NULLPTR));
|
||||
label_2_2_2->setText(QApplication::translate("CalculatorForm", "Output", Q_NULLPTR));
|
||||
outputWidget->setText(QApplication::translate("CalculatorForm", "0", Q_NULLPTR));
|
||||
CalculatorForm->setWindowTitle(QApplication::translate("CalculatorForm", "Calculator Builder", nullptr));
|
||||
label->setText(QApplication::translate("CalculatorForm", "Input 1", nullptr));
|
||||
label_3->setText(QApplication::translate("CalculatorForm", "+", nullptr));
|
||||
label_2->setText(QApplication::translate("CalculatorForm", "Input 2", nullptr));
|
||||
label_3_2->setText(QApplication::translate("CalculatorForm", "=", nullptr));
|
||||
label_2_2_2->setText(QApplication::translate("CalculatorForm", "Output", nullptr));
|
||||
outputWidget->setText(QApplication::translate("CalculatorForm", "0", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -93,9 +93,9 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *CertificateInfo)
|
||||
{
|
||||
CertificateInfo->setWindowTitle(QApplication::translate("CertificateInfo", "Display Certificate Information", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("CertificateInfo", "Certification Path", Q_NULLPTR));
|
||||
groupBox_2->setTitle(QApplication::translate("CertificateInfo", "Certificate Information", Q_NULLPTR));
|
||||
CertificateInfo->setWindowTitle(QApplication::translate("CertificateInfo", "Display Certificate Information", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("CertificateInfo", "Certification Path", nullptr));
|
||||
groupBox_2->setTitle(QApplication::translate("CertificateInfo", "Certificate Information", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -100,8 +100,8 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *ChatDialog)
|
||||
{
|
||||
ChatDialog->setWindowTitle(QApplication::translate("ChatDialog", "Chat", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("ChatDialog", "Message:", Q_NULLPTR));
|
||||
ChatDialog->setWindowTitle(QApplication::translate("ChatDialog", "Chat", nullptr));
|
||||
label->setText(QApplication::translate("ChatDialog", "Message:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -149,29 +149,29 @@ public:
|
|||
|
||||
void retranslateUi(QMainWindow *ChatMainWindow)
|
||||
{
|
||||
ChatMainWindow->setWindowTitle(QApplication::translate("ChatMainWindow", "Qt D-Bus Chat", Q_NULLPTR));
|
||||
actionQuit->setText(QApplication::translate("ChatMainWindow", "Quit", Q_NULLPTR));
|
||||
ChatMainWindow->setWindowTitle(QApplication::translate("ChatMainWindow", "Qt D-Bus Chat", nullptr));
|
||||
actionQuit->setText(QApplication::translate("ChatMainWindow", "Quit", nullptr));
|
||||
#ifndef QT_NO_SHORTCUT
|
||||
actionQuit->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+Q", Q_NULLPTR));
|
||||
actionQuit->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+Q", nullptr));
|
||||
#endif // QT_NO_SHORTCUT
|
||||
actionAboutQt->setText(QApplication::translate("ChatMainWindow", "About Qt...", Q_NULLPTR));
|
||||
actionChangeNickname->setText(QApplication::translate("ChatMainWindow", "Change nickname...", Q_NULLPTR));
|
||||
actionAboutQt->setText(QApplication::translate("ChatMainWindow", "About Qt...", nullptr));
|
||||
actionChangeNickname->setText(QApplication::translate("ChatMainWindow", "Change nickname...", nullptr));
|
||||
#ifndef QT_NO_SHORTCUT
|
||||
actionChangeNickname->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+N", Q_NULLPTR));
|
||||
actionChangeNickname->setShortcut(QApplication::translate("ChatMainWindow", "Ctrl+N", nullptr));
|
||||
#endif // QT_NO_SHORTCUT
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
chatHistory->setToolTip(QApplication::translate("ChatMainWindow", "Messages sent and received from other users", Q_NULLPTR));
|
||||
chatHistory->setToolTip(QApplication::translate("ChatMainWindow", "Messages sent and received from other users", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
label->setText(QApplication::translate("ChatMainWindow", "Message:", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("ChatMainWindow", "Message:", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
sendButton->setToolTip(QApplication::translate("ChatMainWindow", "Sends a message to other people", Q_NULLPTR));
|
||||
sendButton->setToolTip(QApplication::translate("ChatMainWindow", "Sends a message to other people", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
sendButton->setWhatsThis(QString());
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
sendButton->setText(QApplication::translate("ChatMainWindow", "Send", Q_NULLPTR));
|
||||
menuQuit->setTitle(QApplication::translate("ChatMainWindow", "Help", Q_NULLPTR));
|
||||
menuFile->setTitle(QApplication::translate("ChatMainWindow", "File", Q_NULLPTR));
|
||||
sendButton->setText(QApplication::translate("ChatMainWindow", "Send", nullptr));
|
||||
menuQuit->setTitle(QApplication::translate("ChatMainWindow", "Help", nullptr));
|
||||
menuFile->setTitle(QApplication::translate("ChatMainWindow", "File", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -115,10 +115,10 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *NicknameDialog)
|
||||
{
|
||||
NicknameDialog->setWindowTitle(QApplication::translate("NicknameDialog", "Set nickname", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("NicknameDialog", "New nickname:", Q_NULLPTR));
|
||||
okButton->setText(QApplication::translate("NicknameDialog", "OK", Q_NULLPTR));
|
||||
cancelButton->setText(QApplication::translate("NicknameDialog", "Cancel", Q_NULLPTR));
|
||||
NicknameDialog->setWindowTitle(QApplication::translate("NicknameDialog", "Set nickname", nullptr));
|
||||
label->setText(QApplication::translate("NicknameDialog", "New nickname:", nullptr));
|
||||
okButton->setText(QApplication::translate("NicknameDialog", "OK", nullptr));
|
||||
cancelButton->setText(QApplication::translate("NicknameDialog", "Cancel", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -709,44 +709,44 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *Config)
|
||||
{
|
||||
Config->setWindowTitle(QApplication::translate("Config", "Configure", Q_NULLPTR));
|
||||
ButtonGroup1->setTitle(QApplication::translate("Config", "Size", Q_NULLPTR));
|
||||
size_176_220->setText(QApplication::translate("Config", "176x220 \"SmartPhone\"", Q_NULLPTR));
|
||||
size_240_320->setText(QApplication::translate("Config", "240x320 \"PDA\"", Q_NULLPTR));
|
||||
size_320_240->setText(QApplication::translate("Config", "320x240 \"TV\" / \"QVGA\"", Q_NULLPTR));
|
||||
size_640_480->setText(QApplication::translate("Config", "640x480 \"VGA\"", Q_NULLPTR));
|
||||
size_800_600->setText(QApplication::translate("Config", "800x600", Q_NULLPTR));
|
||||
size_1024_768->setText(QApplication::translate("Config", "1024x768", Q_NULLPTR));
|
||||
size_custom->setText(QApplication::translate("Config", "Custom", Q_NULLPTR));
|
||||
ButtonGroup2->setTitle(QApplication::translate("Config", "Depth", Q_NULLPTR));
|
||||
depth_1->setText(QApplication::translate("Config", "1 bit monochrome", Q_NULLPTR));
|
||||
depth_4gray->setText(QApplication::translate("Config", "4 bit grayscale", Q_NULLPTR));
|
||||
depth_8->setText(QApplication::translate("Config", "8 bit", Q_NULLPTR));
|
||||
depth_12->setText(QApplication::translate("Config", "12 (16) bit", Q_NULLPTR));
|
||||
depth_15->setText(QApplication::translate("Config", "15 bit", Q_NULLPTR));
|
||||
depth_16->setText(QApplication::translate("Config", "16 bit", Q_NULLPTR));
|
||||
depth_18->setText(QApplication::translate("Config", "18 bit", Q_NULLPTR));
|
||||
depth_24->setText(QApplication::translate("Config", "24 bit", Q_NULLPTR));
|
||||
depth_32->setText(QApplication::translate("Config", "32 bit", Q_NULLPTR));
|
||||
depth_32_argb->setText(QApplication::translate("Config", "32 bit ARGB", Q_NULLPTR));
|
||||
TextLabel1_3->setText(QApplication::translate("Config", "Skin", Q_NULLPTR));
|
||||
skin->setItemText(0, QApplication::translate("Config", "None", Q_NULLPTR));
|
||||
Config->setWindowTitle(QApplication::translate("Config", "Configure", nullptr));
|
||||
ButtonGroup1->setTitle(QApplication::translate("Config", "Size", nullptr));
|
||||
size_176_220->setText(QApplication::translate("Config", "176x220 \"SmartPhone\"", nullptr));
|
||||
size_240_320->setText(QApplication::translate("Config", "240x320 \"PDA\"", nullptr));
|
||||
size_320_240->setText(QApplication::translate("Config", "320x240 \"TV\" / \"QVGA\"", nullptr));
|
||||
size_640_480->setText(QApplication::translate("Config", "640x480 \"VGA\"", nullptr));
|
||||
size_800_600->setText(QApplication::translate("Config", "800x600", nullptr));
|
||||
size_1024_768->setText(QApplication::translate("Config", "1024x768", nullptr));
|
||||
size_custom->setText(QApplication::translate("Config", "Custom", nullptr));
|
||||
ButtonGroup2->setTitle(QApplication::translate("Config", "Depth", nullptr));
|
||||
depth_1->setText(QApplication::translate("Config", "1 bit monochrome", nullptr));
|
||||
depth_4gray->setText(QApplication::translate("Config", "4 bit grayscale", nullptr));
|
||||
depth_8->setText(QApplication::translate("Config", "8 bit", nullptr));
|
||||
depth_12->setText(QApplication::translate("Config", "12 (16) bit", nullptr));
|
||||
depth_15->setText(QApplication::translate("Config", "15 bit", nullptr));
|
||||
depth_16->setText(QApplication::translate("Config", "16 bit", nullptr));
|
||||
depth_18->setText(QApplication::translate("Config", "18 bit", nullptr));
|
||||
depth_24->setText(QApplication::translate("Config", "24 bit", nullptr));
|
||||
depth_32->setText(QApplication::translate("Config", "32 bit", nullptr));
|
||||
depth_32_argb->setText(QApplication::translate("Config", "32 bit ARGB", nullptr));
|
||||
TextLabel1_3->setText(QApplication::translate("Config", "Skin", nullptr));
|
||||
skin->setItemText(0, QApplication::translate("Config", "None", nullptr));
|
||||
|
||||
touchScreen->setText(QApplication::translate("Config", "Emulate touch screen (no mouse move)", Q_NULLPTR));
|
||||
lcdScreen->setText(QApplication::translate("Config", "Emulate LCD screen (Only with fixed zoom of 3.0 times magnification)", Q_NULLPTR));
|
||||
TextLabel1->setText(QApplication::translate("Config", "<p>Note that any applications using the virtual framebuffer will be terminated if you change the Size or Depth <i>above</i>. You may freely modify the Gamma <i>below</i>.", Q_NULLPTR));
|
||||
GroupBox1->setTitle(QApplication::translate("Config", "Gamma", Q_NULLPTR));
|
||||
TextLabel3->setText(QApplication::translate("Config", "Blue", Q_NULLPTR));
|
||||
blabel->setText(QApplication::translate("Config", "1.0", Q_NULLPTR));
|
||||
TextLabel2->setText(QApplication::translate("Config", "Green", Q_NULLPTR));
|
||||
glabel->setText(QApplication::translate("Config", "1.0", Q_NULLPTR));
|
||||
TextLabel7->setText(QApplication::translate("Config", "All", Q_NULLPTR));
|
||||
TextLabel8->setText(QApplication::translate("Config", "1.0", Q_NULLPTR));
|
||||
TextLabel1_2->setText(QApplication::translate("Config", "Red", Q_NULLPTR));
|
||||
rlabel->setText(QApplication::translate("Config", "1.0", Q_NULLPTR));
|
||||
PushButton3->setText(QApplication::translate("Config", "Set all to 1.0", Q_NULLPTR));
|
||||
buttonOk->setText(QApplication::translate("Config", "&OK", Q_NULLPTR));
|
||||
buttonCancel->setText(QApplication::translate("Config", "&Cancel", Q_NULLPTR));
|
||||
touchScreen->setText(QApplication::translate("Config", "Emulate touch screen (no mouse move)", nullptr));
|
||||
lcdScreen->setText(QApplication::translate("Config", "Emulate LCD screen (Only with fixed zoom of 3.0 times magnification)", nullptr));
|
||||
TextLabel1->setText(QApplication::translate("Config", "<p>Note that any applications using the virtual framebuffer will be terminated if you change the Size or Depth <i>above</i>. You may freely modify the Gamma <i>below</i>.", nullptr));
|
||||
GroupBox1->setTitle(QApplication::translate("Config", "Gamma", nullptr));
|
||||
TextLabel3->setText(QApplication::translate("Config", "Blue", nullptr));
|
||||
blabel->setText(QApplication::translate("Config", "1.0", nullptr));
|
||||
TextLabel2->setText(QApplication::translate("Config", "Green", nullptr));
|
||||
glabel->setText(QApplication::translate("Config", "1.0", nullptr));
|
||||
TextLabel7->setText(QApplication::translate("Config", "All", nullptr));
|
||||
TextLabel8->setText(QApplication::translate("Config", "1.0", nullptr));
|
||||
TextLabel1_2->setText(QApplication::translate("Config", "Red", nullptr));
|
||||
rlabel->setText(QApplication::translate("Config", "1.0", nullptr));
|
||||
PushButton3->setText(QApplication::translate("Config", "Set all to 1.0", nullptr));
|
||||
buttonOk->setText(QApplication::translate("Config", "&OK", nullptr));
|
||||
buttonCancel->setText(QApplication::translate("Config", "&Cancel", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -129,12 +129,12 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *ConnectDialog)
|
||||
{
|
||||
ConnectDialog->setWindowTitle(QApplication::translate("ConnectDialog", "Configure Connection", Q_NULLPTR));
|
||||
signalGroupBox->setTitle(QApplication::translate("ConnectDialog", "GroupBox", Q_NULLPTR));
|
||||
editSignalsButton->setText(QApplication::translate("ConnectDialog", "Edit...", Q_NULLPTR));
|
||||
slotGroupBox->setTitle(QApplication::translate("ConnectDialog", "GroupBox", Q_NULLPTR));
|
||||
editSlotsButton->setText(QApplication::translate("ConnectDialog", "Edit...", Q_NULLPTR));
|
||||
showAllCheckBox->setText(QApplication::translate("ConnectDialog", "Show signals and slots inherited from QWidget", Q_NULLPTR));
|
||||
ConnectDialog->setWindowTitle(QApplication::translate("ConnectDialog", "Configure Connection", nullptr));
|
||||
signalGroupBox->setTitle(QApplication::translate("ConnectDialog", "GroupBox", nullptr));
|
||||
editSignalsButton->setText(QApplication::translate("ConnectDialog", "Edit...", nullptr));
|
||||
slotGroupBox->setTitle(QApplication::translate("ConnectDialog", "GroupBox", nullptr));
|
||||
editSlotsButton->setText(QApplication::translate("ConnectDialog", "Edit...", nullptr));
|
||||
showAllCheckBox->setText(QApplication::translate("ConnectDialog", "Show signals and slots inherited from QWidget", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -78,12 +78,12 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *Controller)
|
||||
{
|
||||
Controller->setWindowTitle(QApplication::translate("Controller", "Controller", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("Controller", "Controller", Q_NULLPTR));
|
||||
decelerate->setText(QApplication::translate("Controller", "Decelerate", Q_NULLPTR));
|
||||
accelerate->setText(QApplication::translate("Controller", "Accelerate", Q_NULLPTR));
|
||||
right->setText(QApplication::translate("Controller", "Right", Q_NULLPTR));
|
||||
left->setText(QApplication::translate("Controller", "Left", Q_NULLPTR));
|
||||
Controller->setWindowTitle(QApplication::translate("Controller", "Controller", nullptr));
|
||||
label->setText(QApplication::translate("Controller", "Controller", nullptr));
|
||||
decelerate->setText(QApplication::translate("Controller", "Decelerate", nullptr));
|
||||
accelerate->setText(QApplication::translate("Controller", "Accelerate", nullptr));
|
||||
right->setText(QApplication::translate("Controller", "Right", nullptr));
|
||||
left->setText(QApplication::translate("Controller", "Left", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -93,9 +93,9 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *CookiesDialog)
|
||||
{
|
||||
CookiesDialog->setWindowTitle(QApplication::translate("CookiesDialog", "Cookies", Q_NULLPTR));
|
||||
removeButton->setText(QApplication::translate("CookiesDialog", "&Remove", Q_NULLPTR));
|
||||
removeAllButton->setText(QApplication::translate("CookiesDialog", "Remove &All Cookies", Q_NULLPTR));
|
||||
CookiesDialog->setWindowTitle(QApplication::translate("CookiesDialog", "Cookies", nullptr));
|
||||
removeButton->setText(QApplication::translate("CookiesDialog", "&Remove", nullptr));
|
||||
removeAllButton->setText(QApplication::translate("CookiesDialog", "Remove &All Cookies", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -160,15 +160,15 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *CookiesExceptionsDialog)
|
||||
{
|
||||
CookiesExceptionsDialog->setWindowTitle(QApplication::translate("CookiesExceptionsDialog", "Cookie Exceptions", Q_NULLPTR));
|
||||
newExceptionGroupBox->setTitle(QApplication::translate("CookiesExceptionsDialog", "New Exception", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("CookiesExceptionsDialog", "Domain:", Q_NULLPTR));
|
||||
blockButton->setText(QApplication::translate("CookiesExceptionsDialog", "Block", Q_NULLPTR));
|
||||
allowForSessionButton->setText(QApplication::translate("CookiesExceptionsDialog", "Allow For Session", Q_NULLPTR));
|
||||
allowButton->setText(QApplication::translate("CookiesExceptionsDialog", "Allow", Q_NULLPTR));
|
||||
ExceptionsGroupBox->setTitle(QApplication::translate("CookiesExceptionsDialog", "Exceptions", Q_NULLPTR));
|
||||
removeButton->setText(QApplication::translate("CookiesExceptionsDialog", "&Remove", Q_NULLPTR));
|
||||
removeAllButton->setText(QApplication::translate("CookiesExceptionsDialog", "Remove &All", Q_NULLPTR));
|
||||
CookiesExceptionsDialog->setWindowTitle(QApplication::translate("CookiesExceptionsDialog", "Cookie Exceptions", nullptr));
|
||||
newExceptionGroupBox->setTitle(QApplication::translate("CookiesExceptionsDialog", "New Exception", nullptr));
|
||||
label->setText(QApplication::translate("CookiesExceptionsDialog", "Domain:", nullptr));
|
||||
blockButton->setText(QApplication::translate("CookiesExceptionsDialog", "Block", nullptr));
|
||||
allowForSessionButton->setText(QApplication::translate("CookiesExceptionsDialog", "Allow For Session", nullptr));
|
||||
allowButton->setText(QApplication::translate("CookiesExceptionsDialog", "Allow", nullptr));
|
||||
ExceptionsGroupBox->setTitle(QApplication::translate("CookiesExceptionsDialog", "Exceptions", nullptr));
|
||||
removeButton->setText(QApplication::translate("CookiesExceptionsDialog", "&Remove", nullptr));
|
||||
removeAllButton->setText(QApplication::translate("CookiesExceptionsDialog", "Remove &All", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -228,84 +228,84 @@ public:
|
|||
|
||||
void retranslateUi(QMainWindow *MainWindow)
|
||||
{
|
||||
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", Q_NULLPTR));
|
||||
exitAction->setText(QApplication::translate("MainWindow", "&Exit", Q_NULLPTR));
|
||||
aboutQtAction->setText(QApplication::translate("MainWindow", "About Qt", Q_NULLPTR));
|
||||
editStyleAction->setText(QApplication::translate("MainWindow", "Edit &Style", Q_NULLPTR));
|
||||
aboutAction->setText(QApplication::translate("MainWindow", "About", Q_NULLPTR));
|
||||
nameLabel->setText(QApplication::translate("MainWindow", "&Name:", Q_NULLPTR));
|
||||
nameCombo->setItemText(0, QApplication::translate("MainWindow", "Girish", Q_NULLPTR));
|
||||
nameCombo->setItemText(1, QApplication::translate("MainWindow", "Jasmin", Q_NULLPTR));
|
||||
nameCombo->setItemText(2, QApplication::translate("MainWindow", "Simon", Q_NULLPTR));
|
||||
nameCombo->setItemText(3, QApplication::translate("MainWindow", "Zack", Q_NULLPTR));
|
||||
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", nullptr));
|
||||
exitAction->setText(QApplication::translate("MainWindow", "&Exit", nullptr));
|
||||
aboutQtAction->setText(QApplication::translate("MainWindow", "About Qt", nullptr));
|
||||
editStyleAction->setText(QApplication::translate("MainWindow", "Edit &Style", nullptr));
|
||||
aboutAction->setText(QApplication::translate("MainWindow", "About", nullptr));
|
||||
nameLabel->setText(QApplication::translate("MainWindow", "&Name:", nullptr));
|
||||
nameCombo->setItemText(0, QApplication::translate("MainWindow", "Girish", nullptr));
|
||||
nameCombo->setItemText(1, QApplication::translate("MainWindow", "Jasmin", nullptr));
|
||||
nameCombo->setItemText(2, QApplication::translate("MainWindow", "Simon", nullptr));
|
||||
nameCombo->setItemText(3, QApplication::translate("MainWindow", "Zack", nullptr));
|
||||
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
nameCombo->setToolTip(QApplication::translate("MainWindow", "Specify your name", Q_NULLPTR));
|
||||
nameCombo->setToolTip(QApplication::translate("MainWindow", "Specify your name", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
femaleRadioButton->setToolTip(QApplication::translate("MainWindow", "Check this if you are female", Q_NULLPTR));
|
||||
femaleRadioButton->setToolTip(QApplication::translate("MainWindow", "Check this if you are female", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
femaleRadioButton->setText(QApplication::translate("MainWindow", "&Female", Q_NULLPTR));
|
||||
femaleRadioButton->setText(QApplication::translate("MainWindow", "&Female", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
agreeCheckBox->setToolTip(QApplication::translate("MainWindow", "Please read the license before checking this", Q_NULLPTR));
|
||||
agreeCheckBox->setToolTip(QApplication::translate("MainWindow", "Please read the license before checking this", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
agreeCheckBox->setText(QApplication::translate("MainWindow", "I &accept the terms and conditions", Q_NULLPTR));
|
||||
agreeCheckBox->setText(QApplication::translate("MainWindow", "I &accept the terms and conditions", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
maleRadioButton->setToolTip(QApplication::translate("MainWindow", "Check this if you are male", Q_NULLPTR));
|
||||
maleRadioButton->setToolTip(QApplication::translate("MainWindow", "Check this if you are male", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
maleRadioButton->setText(QApplication::translate("MainWindow", "&Male", Q_NULLPTR));
|
||||
genderLabel->setText(QApplication::translate("MainWindow", "Gender:", Q_NULLPTR));
|
||||
maleRadioButton->setText(QApplication::translate("MainWindow", "&Male", nullptr));
|
||||
genderLabel->setText(QApplication::translate("MainWindow", "Gender:", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
ageSpinBox->setToolTip(QApplication::translate("MainWindow", "Specify your age", Q_NULLPTR));
|
||||
ageSpinBox->setToolTip(QApplication::translate("MainWindow", "Specify your age", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_STATUSTIP
|
||||
ageSpinBox->setStatusTip(QApplication::translate("MainWindow", "Specify your age here", Q_NULLPTR));
|
||||
ageSpinBox->setStatusTip(QApplication::translate("MainWindow", "Specify your age here", nullptr));
|
||||
#endif // QT_NO_STATUSTIP
|
||||
ageLabel->setText(QApplication::translate("MainWindow", "&Age:", Q_NULLPTR));
|
||||
passwordLabel->setText(QApplication::translate("MainWindow", "&Password:", Q_NULLPTR));
|
||||
ageLabel->setText(QApplication::translate("MainWindow", "&Age:", nullptr));
|
||||
passwordLabel->setText(QApplication::translate("MainWindow", "&Password:", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
passwordEdit->setToolTip(QApplication::translate("MainWindow", "Specify your password", Q_NULLPTR));
|
||||
passwordEdit->setToolTip(QApplication::translate("MainWindow", "Specify your password", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_STATUSTIP
|
||||
passwordEdit->setStatusTip(QApplication::translate("MainWindow", "Specify your password here", Q_NULLPTR));
|
||||
passwordEdit->setStatusTip(QApplication::translate("MainWindow", "Specify your password here", nullptr));
|
||||
#endif // QT_NO_STATUSTIP
|
||||
passwordEdit->setText(QApplication::translate("MainWindow", "Password", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("MainWindow", "Profession", Q_NULLPTR));
|
||||
countryLabel->setText(QApplication::translate("MainWindow", "&Country", Q_NULLPTR));
|
||||
passwordEdit->setText(QApplication::translate("MainWindow", "Password", nullptr));
|
||||
label->setText(QApplication::translate("MainWindow", "Profession", nullptr));
|
||||
countryLabel->setText(QApplication::translate("MainWindow", "&Country", nullptr));
|
||||
|
||||
const bool __sortingEnabled = professionList->isSortingEnabled();
|
||||
professionList->setSortingEnabled(false);
|
||||
QListWidgetItem *___qlistwidgetitem = professionList->item(0);
|
||||
___qlistwidgetitem->setText(QApplication::translate("MainWindow", "Developer", Q_NULLPTR));
|
||||
___qlistwidgetitem->setText(QApplication::translate("MainWindow", "Developer", nullptr));
|
||||
QListWidgetItem *___qlistwidgetitem1 = professionList->item(1);
|
||||
___qlistwidgetitem1->setText(QApplication::translate("MainWindow", "Student", Q_NULLPTR));
|
||||
___qlistwidgetitem1->setText(QApplication::translate("MainWindow", "Student", nullptr));
|
||||
QListWidgetItem *___qlistwidgetitem2 = professionList->item(2);
|
||||
___qlistwidgetitem2->setText(QApplication::translate("MainWindow", "Fisherman", Q_NULLPTR));
|
||||
___qlistwidgetitem2->setText(QApplication::translate("MainWindow", "Fisherman", nullptr));
|
||||
professionList->setSortingEnabled(__sortingEnabled);
|
||||
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
professionList->setToolTip(QApplication::translate("MainWindow", "Select your profession", Q_NULLPTR));
|
||||
professionList->setToolTip(QApplication::translate("MainWindow", "Select your profession", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_STATUSTIP
|
||||
professionList->setStatusTip(QApplication::translate("MainWindow", "Select your profession", Q_NULLPTR));
|
||||
professionList->setStatusTip(QApplication::translate("MainWindow", "Select your profession", nullptr));
|
||||
#endif // QT_NO_STATUSTIP
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
professionList->setWhatsThis(QApplication::translate("MainWindow", "Select your profession", Q_NULLPTR));
|
||||
professionList->setWhatsThis(QApplication::translate("MainWindow", "Select your profession", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
countryCombo->setItemText(0, QApplication::translate("MainWindow", "Germany", Q_NULLPTR));
|
||||
countryCombo->setItemText(1, QApplication::translate("MainWindow", "India", Q_NULLPTR));
|
||||
countryCombo->setItemText(2, QApplication::translate("MainWindow", "Norway", Q_NULLPTR));
|
||||
countryCombo->setItemText(3, QApplication::translate("MainWindow", "United States Of America", Q_NULLPTR));
|
||||
countryCombo->setItemText(4, QApplication::translate("MainWindow", "United Kingdom", Q_NULLPTR));
|
||||
countryCombo->setItemText(0, QApplication::translate("MainWindow", "Germany", nullptr));
|
||||
countryCombo->setItemText(1, QApplication::translate("MainWindow", "India", nullptr));
|
||||
countryCombo->setItemText(2, QApplication::translate("MainWindow", "Norway", nullptr));
|
||||
countryCombo->setItemText(3, QApplication::translate("MainWindow", "United States Of America", nullptr));
|
||||
countryCombo->setItemText(4, QApplication::translate("MainWindow", "United Kingdom", nullptr));
|
||||
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
countryCombo->setToolTip(QApplication::translate("MainWindow", "Specify your country", Q_NULLPTR));
|
||||
countryCombo->setToolTip(QApplication::translate("MainWindow", "Specify your country", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_STATUSTIP
|
||||
countryCombo->setStatusTip(QApplication::translate("MainWindow", "Specify your country here", Q_NULLPTR));
|
||||
countryCombo->setStatusTip(QApplication::translate("MainWindow", "Specify your country here", nullptr));
|
||||
#endif // QT_NO_STATUSTIP
|
||||
menu_File->setTitle(QApplication::translate("MainWindow", "&File", Q_NULLPTR));
|
||||
menu_Help->setTitle(QApplication::translate("MainWindow", "&Help", Q_NULLPTR));
|
||||
menu_File->setTitle(QApplication::translate("MainWindow", "&File", nullptr));
|
||||
menu_Help->setTitle(QApplication::translate("MainWindow", "&Help", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -61,10 +61,10 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *Dialog)
|
||||
{
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", Q_NULLPTR));
|
||||
loadFromFileButton->setText(QApplication::translate("Dialog", "Load Image From File...", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("Dialog", "Launch two of these dialogs. In the first, press the top button and load an image from a file. In the second, press the bottom button and display the loaded image from shared memory.", Q_NULLPTR));
|
||||
loadFromSharedMemoryButton->setText(QApplication::translate("Dialog", "Display Image From Shared Memory", Q_NULLPTR));
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", nullptr));
|
||||
loadFromFileButton->setText(QApplication::translate("Dialog", "Load Image From File...", nullptr));
|
||||
label->setText(QApplication::translate("Dialog", "Launch two of these dialogs. In the first, press the top button and load an image from a file. In the second, press the bottom button and display the loaded image from shared memory.", nullptr));
|
||||
loadFromSharedMemoryButton->setText(QApplication::translate("Dialog", "Display Image From Shared Memory", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -127,13 +127,13 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *DownloadItem)
|
||||
{
|
||||
DownloadItem->setWindowTitle(QApplication::translate("DownloadItem", "Form", Q_NULLPTR));
|
||||
fileIcon->setText(QApplication::translate("DownloadItem", "Ico", Q_NULLPTR));
|
||||
fileNameLabel->setProperty("text", QVariant(QApplication::translate("DownloadItem", "Filename", Q_NULLPTR)));
|
||||
DownloadItem->setWindowTitle(QApplication::translate("DownloadItem", "Form", nullptr));
|
||||
fileIcon->setText(QApplication::translate("DownloadItem", "Ico", nullptr));
|
||||
fileNameLabel->setProperty("text", QVariant(QApplication::translate("DownloadItem", "Filename", nullptr)));
|
||||
downloadInfoLabel->setProperty("text", QVariant(QString()));
|
||||
tryAgainButton->setText(QApplication::translate("DownloadItem", "Try Again", Q_NULLPTR));
|
||||
stopButton->setText(QApplication::translate("DownloadItem", "Stop", Q_NULLPTR));
|
||||
openButton->setText(QApplication::translate("DownloadItem", "Open", Q_NULLPTR));
|
||||
tryAgainButton->setText(QApplication::translate("DownloadItem", "Try Again", nullptr));
|
||||
stopButton->setText(QApplication::translate("DownloadItem", "Stop", nullptr));
|
||||
openButton->setText(QApplication::translate("DownloadItem", "Open", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -81,9 +81,9 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *DownloadDialog)
|
||||
{
|
||||
DownloadDialog->setWindowTitle(QApplication::translate("DownloadDialog", "Downloads", Q_NULLPTR));
|
||||
cleanupButton->setText(QApplication::translate("DownloadDialog", "Clean up", Q_NULLPTR));
|
||||
itemCount->setText(QApplication::translate("DownloadDialog", "0 Items", Q_NULLPTR));
|
||||
DownloadDialog->setWindowTitle(QApplication::translate("DownloadDialog", "Downloads", nullptr));
|
||||
cleanupButton->setText(QApplication::translate("DownloadDialog", "Clean up", nullptr));
|
||||
itemCount->setText(QApplication::translate("DownloadDialog", "0 Items", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -100,14 +100,14 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *embeddedDialog)
|
||||
{
|
||||
embeddedDialog->setWindowTitle(QApplication::translate("embeddedDialog", "Embedded Dialog", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("embeddedDialog", "Layout Direction:", Q_NULLPTR));
|
||||
layoutDirection->setItemText(0, QApplication::translate("embeddedDialog", "Left to Right", Q_NULLPTR));
|
||||
layoutDirection->setItemText(1, QApplication::translate("embeddedDialog", "Right to Left", Q_NULLPTR));
|
||||
embeddedDialog->setWindowTitle(QApplication::translate("embeddedDialog", "Embedded Dialog", nullptr));
|
||||
label->setText(QApplication::translate("embeddedDialog", "Layout Direction:", nullptr));
|
||||
layoutDirection->setItemText(0, QApplication::translate("embeddedDialog", "Left to Right", nullptr));
|
||||
layoutDirection->setItemText(1, QApplication::translate("embeddedDialog", "Right to Left", nullptr));
|
||||
|
||||
label_2->setText(QApplication::translate("embeddedDialog", "Select Font:", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("embeddedDialog", "Style:", Q_NULLPTR));
|
||||
label_4->setText(QApplication::translate("embeddedDialog", "Layout spacing:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("embeddedDialog", "Select Font:", nullptr));
|
||||
label_3->setText(QApplication::translate("embeddedDialog", "Style:", nullptr));
|
||||
label_4->setText(QApplication::translate("embeddedDialog", "Layout spacing:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *Form)
|
||||
{
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Form", Q_NULLPTR));
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Form", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -83,10 +83,10 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *FilesPage)
|
||||
{
|
||||
FilesPage->setWindowTitle(QApplication::translate("FilesPage", "Form", Q_NULLPTR));
|
||||
fileLabel->setText(QApplication::translate("FilesPage", "Files:", Q_NULLPTR));
|
||||
removeButton->setText(QApplication::translate("FilesPage", "Remove", Q_NULLPTR));
|
||||
removeAllButton->setText(QApplication::translate("FilesPage", "Remove All", Q_NULLPTR));
|
||||
FilesPage->setWindowTitle(QApplication::translate("FilesPage", "Form", nullptr));
|
||||
fileLabel->setText(QApplication::translate("FilesPage", "Files:", nullptr));
|
||||
removeButton->setText(QApplication::translate("FilesPage", "Remove", nullptr));
|
||||
removeAllButton->setText(QApplication::translate("FilesPage", "Remove All", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -79,8 +79,8 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *FilterNameDialogClass)
|
||||
{
|
||||
FilterNameDialogClass->setWindowTitle(QApplication::translate("FilterNameDialogClass", "FilterNameDialog", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("FilterNameDialogClass", "Filter Name:", Q_NULLPTR));
|
||||
FilterNameDialogClass->setWindowTitle(QApplication::translate("FilterNameDialogClass", "FilterNameDialog", nullptr));
|
||||
label->setText(QApplication::translate("FilterNameDialogClass", "Filter Name:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -105,14 +105,14 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *FilterPage)
|
||||
{
|
||||
FilterPage->setWindowTitle(QApplication::translate("FilterPage", "Form", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("FilterPage", "Filter attributes for current documentation (comma separated list):", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("FilterPage", "Custom Filters", Q_NULLPTR));
|
||||
FilterPage->setWindowTitle(QApplication::translate("FilterPage", "Form", nullptr));
|
||||
label->setText(QApplication::translate("FilterPage", "Filter attributes for current documentation (comma separated list):", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("FilterPage", "Custom Filters", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem = customFilterWidget->headerItem();
|
||||
___qtreewidgetitem->setText(1, QApplication::translate("FilterPage", "2", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("FilterPage", "1", Q_NULLPTR));
|
||||
addButton->setText(QApplication::translate("FilterPage", "Add", Q_NULLPTR));
|
||||
removeButton->setText(QApplication::translate("FilterPage", "Remove", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(1, QApplication::translate("FilterPage", "2", nullptr));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("FilterPage", "1", nullptr));
|
||||
addButton->setText(QApplication::translate("FilterPage", "Add", nullptr));
|
||||
removeButton->setText(QApplication::translate("FilterPage", "Remove", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -196,40 +196,40 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *FindDialog)
|
||||
{
|
||||
FindDialog->setWindowTitle(QApplication::translate("FindDialog", "Find", Q_NULLPTR));
|
||||
FindDialog->setWindowTitle(QApplication::translate("FindDialog", "Find", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
FindDialog->setWhatsThis(QApplication::translate("FindDialog", "This window allows you to search for some text in the translation source file.", Q_NULLPTR));
|
||||
FindDialog->setWhatsThis(QApplication::translate("FindDialog", "This window allows you to search for some text in the translation source file.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
findWhat->setText(QApplication::translate("FindDialog", "&Find what:", Q_NULLPTR));
|
||||
findWhat->setText(QApplication::translate("FindDialog", "&Find what:", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
led->setWhatsThis(QApplication::translate("FindDialog", "Type in the text to search for.", Q_NULLPTR));
|
||||
led->setWhatsThis(QApplication::translate("FindDialog", "Type in the text to search for.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
groupBox->setTitle(QApplication::translate("FindDialog", "Options", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("FindDialog", "Options", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
sourceText->setWhatsThis(QApplication::translate("FindDialog", "Source texts are searched when checked.", Q_NULLPTR));
|
||||
sourceText->setWhatsThis(QApplication::translate("FindDialog", "Source texts are searched when checked.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
sourceText->setText(QApplication::translate("FindDialog", "&Source texts", Q_NULLPTR));
|
||||
sourceText->setText(QApplication::translate("FindDialog", "&Source texts", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
translations->setWhatsThis(QApplication::translate("FindDialog", "Translations are searched when checked.", Q_NULLPTR));
|
||||
translations->setWhatsThis(QApplication::translate("FindDialog", "Translations are searched when checked.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
translations->setText(QApplication::translate("FindDialog", "&Translations", Q_NULLPTR));
|
||||
translations->setText(QApplication::translate("FindDialog", "&Translations", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
matchCase->setWhatsThis(QApplication::translate("FindDialog", "Texts such as 'TeX' and 'tex' are considered as different when checked.", Q_NULLPTR));
|
||||
matchCase->setWhatsThis(QApplication::translate("FindDialog", "Texts such as 'TeX' and 'tex' are considered as different when checked.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
matchCase->setText(QApplication::translate("FindDialog", "&Match case", Q_NULLPTR));
|
||||
matchCase->setText(QApplication::translate("FindDialog", "&Match case", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
comments->setWhatsThis(QApplication::translate("FindDialog", "Comments and contexts are searched when checked.", Q_NULLPTR));
|
||||
comments->setWhatsThis(QApplication::translate("FindDialog", "Comments and contexts are searched when checked.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
comments->setText(QApplication::translate("FindDialog", "&Comments", Q_NULLPTR));
|
||||
ignoreAccelerators->setText(QApplication::translate("FindDialog", "Ignore &accelerators", Q_NULLPTR));
|
||||
comments->setText(QApplication::translate("FindDialog", "&Comments", nullptr));
|
||||
ignoreAccelerators->setText(QApplication::translate("FindDialog", "Ignore &accelerators", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
findNxt->setWhatsThis(QApplication::translate("FindDialog", "Click here to find the next occurrence of the text you typed in.", Q_NULLPTR));
|
||||
findNxt->setWhatsThis(QApplication::translate("FindDialog", "Click here to find the next occurrence of the text you typed in.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
findNxt->setText(QApplication::translate("FindDialog", "Find Next", Q_NULLPTR));
|
||||
findNxt->setText(QApplication::translate("FindDialog", "Find Next", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
cancel->setWhatsThis(QApplication::translate("FindDialog", "Click here to close this window.", Q_NULLPTR));
|
||||
cancel->setWhatsThis(QApplication::translate("FindDialog", "Click here to close this window.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
cancel->setText(QApplication::translate("FindDialog", "Cancel", Q_NULLPTR));
|
||||
cancel->setText(QApplication::translate("FindDialog", "Cancel", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -126,9 +126,9 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *WorldTimeForm)
|
||||
{
|
||||
WorldTimeForm->setWindowTitle(QApplication::translate("WorldTimeForm", "World Time Clock", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("WorldTimeForm", "Current time:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("WorldTimeForm", "Set time zone:", Q_NULLPTR));
|
||||
WorldTimeForm->setWindowTitle(QApplication::translate("WorldTimeForm", "World Time Clock", nullptr));
|
||||
label->setText(QApplication::translate("WorldTimeForm", "Current time:", nullptr));
|
||||
label_2->setText(QApplication::translate("WorldTimeForm", "Set time zone:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -274,17 +274,17 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *FormWindowSettings)
|
||||
{
|
||||
FormWindowSettings->setWindowTitle(QApplication::translate("FormWindowSettings", "Form Settings", Q_NULLPTR));
|
||||
layoutDefaultGroupBox->setTitle(QApplication::translate("FormWindowSettings", "Layout &Default", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("FormWindowSettings", "&Spacing:", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("FormWindowSettings", "&Margin:", Q_NULLPTR));
|
||||
layoutFunctionGroupBox->setTitle(QApplication::translate("FormWindowSettings", "&Layout Function", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("FormWindowSettings", "Ma&rgin:", Q_NULLPTR));
|
||||
label_3_2->setText(QApplication::translate("FormWindowSettings", "Spa&cing:", Q_NULLPTR));
|
||||
pixmapFunctionGroupBox_2->setTitle(QApplication::translate("FormWindowSettings", "&Author", Q_NULLPTR));
|
||||
includeHintsGroupBox->setTitle(QApplication::translate("FormWindowSettings", "&Include Hints", Q_NULLPTR));
|
||||
pixmapFunctionGroupBox->setTitle(QApplication::translate("FormWindowSettings", "&Pixmap Function", Q_NULLPTR));
|
||||
gridPanel->setTitle(QApplication::translate("FormWindowSettings", "Grid", Q_NULLPTR));
|
||||
FormWindowSettings->setWindowTitle(QApplication::translate("FormWindowSettings", "Form Settings", nullptr));
|
||||
layoutDefaultGroupBox->setTitle(QApplication::translate("FormWindowSettings", "Layout &Default", nullptr));
|
||||
label_2->setText(QApplication::translate("FormWindowSettings", "&Spacing:", nullptr));
|
||||
label->setText(QApplication::translate("FormWindowSettings", "&Margin:", nullptr));
|
||||
layoutFunctionGroupBox->setTitle(QApplication::translate("FormWindowSettings", "&Layout Function", nullptr));
|
||||
label_3->setText(QApplication::translate("FormWindowSettings", "Ma&rgin:", nullptr));
|
||||
label_3_2->setText(QApplication::translate("FormWindowSettings", "Spa&cing:", nullptr));
|
||||
pixmapFunctionGroupBox_2->setTitle(QApplication::translate("FormWindowSettings", "&Author", nullptr));
|
||||
includeHintsGroupBox->setTitle(QApplication::translate("FormWindowSettings", "&Include Hints", nullptr));
|
||||
pixmapFunctionGroupBox->setTitle(QApplication::translate("FormWindowSettings", "&Pixmap Function", nullptr));
|
||||
gridPanel->setTitle(QApplication::translate("FormWindowSettings", "Grid", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -76,9 +76,9 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *GeneralPage)
|
||||
{
|
||||
GeneralPage->setWindowTitle(QApplication::translate("GeneralPage", "Form", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("GeneralPage", "Namespace:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("GeneralPage", "Virtual Folder:", Q_NULLPTR));
|
||||
GeneralPage->setWindowTitle(QApplication::translate("GeneralPage", "Form", nullptr));
|
||||
label->setText(QApplication::translate("GeneralPage", "Namespace:", nullptr));
|
||||
label_2->setText(QApplication::translate("GeneralPage", "Virtual Folder:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -64,11 +64,11 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *Form)
|
||||
{
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Form", Q_NULLPTR));
|
||||
pushButton->setText(QApplication::translate("Form", "Left", Q_NULLPTR));
|
||||
pushButton_3->setText(QApplication::translate("Form", "Top", Q_NULLPTR));
|
||||
pushButton_2->setText(QApplication::translate("Form", "Right", Q_NULLPTR));
|
||||
pushButton_4->setText(QApplication::translate("Form", "Bottom", Q_NULLPTR));
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Form", nullptr));
|
||||
pushButton->setText(QApplication::translate("Form", "Left", nullptr));
|
||||
pushButton_3->setText(QApplication::translate("Form", "Top", nullptr));
|
||||
pushButton_2->setText(QApplication::translate("Form", "Right", nullptr));
|
||||
pushButton_4->setText(QApplication::translate("Form", "Bottom", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -135,14 +135,14 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *qdesigner_internal__GridPanel)
|
||||
{
|
||||
qdesigner_internal__GridPanel->setWindowTitle(QApplication::translate("qdesigner_internal::GridPanel", "Form", Q_NULLPTR));
|
||||
m_gridGroupBox->setTitle(QApplication::translate("qdesigner_internal::GridPanel", "Grid", Q_NULLPTR));
|
||||
m_visibleCheckBox->setText(QApplication::translate("qdesigner_internal::GridPanel", "Visible", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("qdesigner_internal::GridPanel", "Grid &X", Q_NULLPTR));
|
||||
m_snapXCheckBox->setText(QApplication::translate("qdesigner_internal::GridPanel", "Snap", Q_NULLPTR));
|
||||
m_resetButton->setText(QApplication::translate("qdesigner_internal::GridPanel", "Reset", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("qdesigner_internal::GridPanel", "Grid &Y", Q_NULLPTR));
|
||||
m_snapYCheckBox->setText(QApplication::translate("qdesigner_internal::GridPanel", "Snap", Q_NULLPTR));
|
||||
qdesigner_internal__GridPanel->setWindowTitle(QApplication::translate("qdesigner_internal::GridPanel", "Form", nullptr));
|
||||
m_gridGroupBox->setTitle(QApplication::translate("qdesigner_internal::GridPanel", "Grid", nullptr));
|
||||
m_visibleCheckBox->setText(QApplication::translate("qdesigner_internal::GridPanel", "Visible", nullptr));
|
||||
label->setText(QApplication::translate("qdesigner_internal::GridPanel", "Grid &X", nullptr));
|
||||
m_snapXCheckBox->setText(QApplication::translate("qdesigner_internal::GridPanel", "Snap", nullptr));
|
||||
m_resetButton->setText(QApplication::translate("qdesigner_internal::GridPanel", "Reset", nullptr));
|
||||
label_2->setText(QApplication::translate("qdesigner_internal::GridPanel", "Grid &Y", nullptr));
|
||||
m_snapYCheckBox->setText(QApplication::translate("qdesigner_internal::GridPanel", "Snap", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -298,77 +298,77 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *HelpDialog)
|
||||
{
|
||||
HelpDialog->setWindowTitle(QApplication::translate("HelpDialog", "Help", Q_NULLPTR));
|
||||
HelpDialog->setWindowTitle(QApplication::translate("HelpDialog", "Help", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
HelpDialog->setWhatsThis(QApplication::translate("HelpDialog", "<b>Help</b><p>Choose the topic you want help on from the contents list, or search the index for keywords.</p>", Q_NULLPTR));
|
||||
HelpDialog->setWhatsThis(QApplication::translate("HelpDialog", "<b>Help</b><p>Choose the topic you want help on from the contents list, or search the index for keywords.</p>", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
tabWidget->setWhatsThis(QApplication::translate("HelpDialog", "Displays help topics organized by category, index or bookmarks. Another tab inherits the full text search.", Q_NULLPTR));
|
||||
tabWidget->setWhatsThis(QApplication::translate("HelpDialog", "Displays help topics organized by category, index or bookmarks. Another tab inherits the full text search.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
QTreeWidgetItem *___qtreewidgetitem = listContents->headerItem();
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("HelpDialog", "column 1", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("HelpDialog", "column 1", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
listContents->setWhatsThis(QApplication::translate("HelpDialog", "<b>Help topics organized by category.</b><p>Double-click an item to see the topics in that category. To view a topic, just double-click it.</p>", Q_NULLPTR));
|
||||
listContents->setWhatsThis(QApplication::translate("HelpDialog", "<b>Help topics organized by category.</b><p>Double-click an item to see the topics in that category. To view a topic, just double-click it.</p>", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
tabWidget->setTabText(tabWidget->indexOf(contentPage), QApplication::translate("HelpDialog", "Con&tents", Q_NULLPTR));
|
||||
TextLabel1->setText(QApplication::translate("HelpDialog", "&Look For:", Q_NULLPTR));
|
||||
tabWidget->setTabText(tabWidget->indexOf(contentPage), QApplication::translate("HelpDialog", "Con&tents", nullptr));
|
||||
TextLabel1->setText(QApplication::translate("HelpDialog", "&Look For:", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
editIndex->setToolTip(QApplication::translate("HelpDialog", "Enter keyword", Q_NULLPTR));
|
||||
editIndex->setToolTip(QApplication::translate("HelpDialog", "Enter keyword", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
editIndex->setWhatsThis(QApplication::translate("HelpDialog", "<b>Enter a keyword.</b><p>The list will select an item that matches the entered string best.</p>", Q_NULLPTR));
|
||||
editIndex->setWhatsThis(QApplication::translate("HelpDialog", "<b>Enter a keyword.</b><p>The list will select an item that matches the entered string best.</p>", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
listIndex->setWhatsThis(QApplication::translate("HelpDialog", "<b>List of available help topics.</b><p>Double-click on an item to open its help page. If more than one is found, you must specify which page you want.</p>", Q_NULLPTR));
|
||||
listIndex->setWhatsThis(QApplication::translate("HelpDialog", "<b>List of available help topics.</b><p>Double-click on an item to open its help page. If more than one is found, you must specify which page you want.</p>", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
tabWidget->setTabText(tabWidget->indexOf(indexPage), QApplication::translate("HelpDialog", "&Index", Q_NULLPTR));
|
||||
tabWidget->setTabText(tabWidget->indexOf(indexPage), QApplication::translate("HelpDialog", "&Index", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem1 = listBookmarks->headerItem();
|
||||
___qtreewidgetitem1->setText(0, QApplication::translate("HelpDialog", "column 1", Q_NULLPTR));
|
||||
___qtreewidgetitem1->setText(0, QApplication::translate("HelpDialog", "column 1", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
listBookmarks->setWhatsThis(QApplication::translate("HelpDialog", "Displays the list of bookmarks.", Q_NULLPTR));
|
||||
listBookmarks->setWhatsThis(QApplication::translate("HelpDialog", "Displays the list of bookmarks.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
buttonAdd->setToolTip(QApplication::translate("HelpDialog", "Add new bookmark", Q_NULLPTR));
|
||||
buttonAdd->setToolTip(QApplication::translate("HelpDialog", "Add new bookmark", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
buttonAdd->setWhatsThis(QApplication::translate("HelpDialog", "Add the currently displayed page as a new bookmark.", Q_NULLPTR));
|
||||
buttonAdd->setWhatsThis(QApplication::translate("HelpDialog", "Add the currently displayed page as a new bookmark.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
buttonAdd->setText(QApplication::translate("HelpDialog", "&New", Q_NULLPTR));
|
||||
buttonAdd->setText(QApplication::translate("HelpDialog", "&New", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
buttonRemove->setToolTip(QApplication::translate("HelpDialog", "Delete bookmark", Q_NULLPTR));
|
||||
buttonRemove->setToolTip(QApplication::translate("HelpDialog", "Delete bookmark", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
buttonRemove->setWhatsThis(QApplication::translate("HelpDialog", "Delete the selected bookmark.", Q_NULLPTR));
|
||||
buttonRemove->setWhatsThis(QApplication::translate("HelpDialog", "Delete the selected bookmark.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
buttonRemove->setText(QApplication::translate("HelpDialog", "&Delete", Q_NULLPTR));
|
||||
tabWidget->setTabText(tabWidget->indexOf(bookmarkPage), QApplication::translate("HelpDialog", "&Bookmarks", Q_NULLPTR));
|
||||
TextLabel1_2->setText(QApplication::translate("HelpDialog", "Searching f&or:", Q_NULLPTR));
|
||||
buttonRemove->setText(QApplication::translate("HelpDialog", "&Delete", nullptr));
|
||||
tabWidget->setTabText(tabWidget->indexOf(bookmarkPage), QApplication::translate("HelpDialog", "&Bookmarks", nullptr));
|
||||
TextLabel1_2->setText(QApplication::translate("HelpDialog", "Searching f&or:", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
termsEdit->setToolTip(QApplication::translate("HelpDialog", "Enter searchword(s).", Q_NULLPTR));
|
||||
termsEdit->setToolTip(QApplication::translate("HelpDialog", "Enter searchword(s).", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
termsEdit->setWhatsThis(QApplication::translate("HelpDialog", "<b>Enter search word(s).</b><p>Enter here the word(s) you are looking for. The words may contain wildcards (*). For a sequence of words quote them.</p>", Q_NULLPTR));
|
||||
termsEdit->setWhatsThis(QApplication::translate("HelpDialog", "<b>Enter search word(s).</b><p>Enter here the word(s) you are looking for. The words may contain wildcards (*). For a sequence of words quote them.</p>", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
resultBox->setWhatsThis(QApplication::translate("HelpDialog", "<b>Found documents</b><p>This list contains all found documents from the last search. The documents are ordered, i.e. the first document has the most matches.</p>", Q_NULLPTR));
|
||||
resultBox->setWhatsThis(QApplication::translate("HelpDialog", "<b>Found documents</b><p>This list contains all found documents from the last search. The documents are ordered, i.e. the first document has the most matches.</p>", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
TextLabel2->setText(QApplication::translate("HelpDialog", "Found &Documents:", Q_NULLPTR));
|
||||
TextLabel2->setText(QApplication::translate("HelpDialog", "Found &Documents:", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
helpButton->setToolTip(QApplication::translate("HelpDialog", "Display the help page.", Q_NULLPTR));
|
||||
helpButton->setToolTip(QApplication::translate("HelpDialog", "Display the help page.", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
helpButton->setWhatsThis(QApplication::translate("HelpDialog", "Display the help page for the full text search.", Q_NULLPTR));
|
||||
helpButton->setWhatsThis(QApplication::translate("HelpDialog", "Display the help page for the full text search.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
helpButton->setText(QApplication::translate("HelpDialog", "He&lp", Q_NULLPTR));
|
||||
helpButton->setText(QApplication::translate("HelpDialog", "He&lp", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
searchButton->setToolTip(QApplication::translate("HelpDialog", "Start searching.", Q_NULLPTR));
|
||||
searchButton->setToolTip(QApplication::translate("HelpDialog", "Start searching.", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
searchButton->setWhatsThis(QApplication::translate("HelpDialog", "Pressing this button starts the search.", Q_NULLPTR));
|
||||
searchButton->setWhatsThis(QApplication::translate("HelpDialog", "Pressing this button starts the search.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
searchButton->setText(QApplication::translate("HelpDialog", "&Search", Q_NULLPTR));
|
||||
tabWidget->setTabText(tabWidget->indexOf(searchPage), QApplication::translate("HelpDialog", "&Search", Q_NULLPTR));
|
||||
labelPrepare->setText(QApplication::translate("HelpDialog", "Preparing...", Q_NULLPTR));
|
||||
searchButton->setText(QApplication::translate("HelpDialog", "&Search", nullptr));
|
||||
tabWidget->setTabText(tabWidget->indexOf(searchPage), QApplication::translate("HelpDialog", "&Search", nullptr));
|
||||
labelPrepare->setText(QApplication::translate("HelpDialog", "Preparing...", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -93,9 +93,9 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *HistoryDialog)
|
||||
{
|
||||
HistoryDialog->setWindowTitle(QApplication::translate("HistoryDialog", "History", Q_NULLPTR));
|
||||
removeButton->setText(QApplication::translate("HistoryDialog", "&Remove", Q_NULLPTR));
|
||||
removeAllButton->setText(QApplication::translate("HistoryDialog", "Remove &All", Q_NULLPTR));
|
||||
HistoryDialog->setWindowTitle(QApplication::translate("HistoryDialog", "History", nullptr));
|
||||
removeButton->setText(QApplication::translate("HistoryDialog", "&Remove", nullptr));
|
||||
removeAllButton->setText(QApplication::translate("HistoryDialog", "Remove &All", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -77,10 +77,10 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *Form)
|
||||
{
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Form", Q_NULLPTR));
|
||||
fileicon->setText(QApplication::translate("Form", "fileicon", Q_NULLPTR));
|
||||
fileandthemeicon->setText(QApplication::translate("Form", "PushButton", Q_NULLPTR));
|
||||
themeicon->setText(QApplication::translate("Form", "PushButton", Q_NULLPTR));
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Form", nullptr));
|
||||
fileicon->setText(QApplication::translate("Form", "fileicon", nullptr));
|
||||
fileandthemeicon->setText(QApplication::translate("Form", "PushButton", nullptr));
|
||||
themeicon->setText(QApplication::translate("Form", "PushButton", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -92,10 +92,10 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *IdentifierPage)
|
||||
{
|
||||
IdentifierPage->setWindowTitle(QApplication::translate("IdentifierPage", "Form", Q_NULLPTR));
|
||||
identifierCheckBox->setText(QApplication::translate("IdentifierPage", "Create identifiers", Q_NULLPTR));
|
||||
globalButton->setText(QApplication::translate("IdentifierPage", "Global prefix:", Q_NULLPTR));
|
||||
fileNameButton->setText(QApplication::translate("IdentifierPage", "Inherit prefix from file names", Q_NULLPTR));
|
||||
IdentifierPage->setWindowTitle(QApplication::translate("IdentifierPage", "Form", nullptr));
|
||||
identifierCheckBox->setText(QApplication::translate("IdentifierPage", "Create identifiers", nullptr));
|
||||
globalButton->setText(QApplication::translate("IdentifierPage", "Global prefix:", nullptr));
|
||||
fileNameButton->setText(QApplication::translate("IdentifierPage", "Inherit prefix from file names", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -199,14 +199,14 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *dialog)
|
||||
{
|
||||
dialog->setWindowTitle(QApplication::translate("ImageDialog", "Create Image", Q_NULLPTR));
|
||||
widthLabel->setText(QApplication::translate("ImageDialog", "Width:", Q_NULLPTR));
|
||||
heightLabel->setText(QApplication::translate("ImageDialog", "Height:", Q_NULLPTR));
|
||||
nameLineEdit->setText(QApplication::translate("ImageDialog", "Untitled image", Q_NULLPTR));
|
||||
nameLabel->setText(QApplication::translate("ImageDialog", "Name:", Q_NULLPTR));
|
||||
colorDepthLabel->setText(QApplication::translate("ImageDialog", "Color depth:", Q_NULLPTR));
|
||||
okButton->setText(QApplication::translate("ImageDialog", "OK", Q_NULLPTR));
|
||||
cancelButton->setText(QApplication::translate("ImageDialog", "Cancel", Q_NULLPTR));
|
||||
dialog->setWindowTitle(QApplication::translate("ImageDialog", "Create Image", nullptr));
|
||||
widthLabel->setText(QApplication::translate("ImageDialog", "Width:", nullptr));
|
||||
heightLabel->setText(QApplication::translate("ImageDialog", "Height:", nullptr));
|
||||
nameLineEdit->setText(QApplication::translate("ImageDialog", "Untitled image", nullptr));
|
||||
nameLabel->setText(QApplication::translate("ImageDialog", "Name:", nullptr));
|
||||
colorDepthLabel->setText(QApplication::translate("ImageDialog", "Color depth:", nullptr));
|
||||
okButton->setText(QApplication::translate("ImageDialog", "OK", nullptr));
|
||||
cancelButton->setText(QApplication::translate("ImageDialog", "Cancel", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -84,9 +84,9 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *InputPage)
|
||||
{
|
||||
InputPage->setWindowTitle(QApplication::translate("InputPage", "Form", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("InputPage", "File name:", Q_NULLPTR));
|
||||
browseButton->setText(QApplication::translate("InputPage", "...", Q_NULLPTR));
|
||||
InputPage->setWindowTitle(QApplication::translate("InputPage", "Form", nullptr));
|
||||
label->setText(QApplication::translate("InputPage", "File name:", nullptr));
|
||||
browseButton->setText(QApplication::translate("InputPage", "...", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -123,13 +123,13 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *InstallDialog)
|
||||
{
|
||||
InstallDialog->setWindowTitle(QApplication::translate("InstallDialog", "Install Documentation", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("InstallDialog", "Available Documentation:", Q_NULLPTR));
|
||||
installButton->setText(QApplication::translate("InstallDialog", "Install", Q_NULLPTR));
|
||||
cancelButton->setText(QApplication::translate("InstallDialog", "Cancel", Q_NULLPTR));
|
||||
closeButton->setText(QApplication::translate("InstallDialog", "Close", Q_NULLPTR));
|
||||
label_4->setText(QApplication::translate("InstallDialog", "Installation Path:", Q_NULLPTR));
|
||||
browseButton->setText(QApplication::translate("InstallDialog", "...", Q_NULLPTR));
|
||||
InstallDialog->setWindowTitle(QApplication::translate("InstallDialog", "Install Documentation", nullptr));
|
||||
label->setText(QApplication::translate("InstallDialog", "Available Documentation:", nullptr));
|
||||
installButton->setText(QApplication::translate("InstallDialog", "Install", nullptr));
|
||||
cancelButton->setText(QApplication::translate("InstallDialog", "Cancel", nullptr));
|
||||
closeButton->setText(QApplication::translate("InstallDialog", "Close", nullptr));
|
||||
label_4->setText(QApplication::translate("InstallDialog", "Installation Path:", nullptr));
|
||||
browseButton->setText(QApplication::translate("InstallDialog", "...", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -109,39 +109,39 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *LanguagesDialog)
|
||||
{
|
||||
LanguagesDialog->setWindowTitle(QApplication::translate("LanguagesDialog", "Auxiliary Languages", Q_NULLPTR));
|
||||
LanguagesDialog->setWindowTitle(QApplication::translate("LanguagesDialog", "Auxiliary Languages", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem = languagesList->headerItem();
|
||||
___qtreewidgetitem->setText(1, QApplication::translate("LanguagesDialog", "File", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("LanguagesDialog", "Locale", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(1, QApplication::translate("LanguagesDialog", "File", nullptr));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("LanguagesDialog", "Locale", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
upButton->setToolTip(QApplication::translate("LanguagesDialog", "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
||||
"p, li { white-space: pre-wrap; }\n"
|
||||
"</style></head><body style=\" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;\">\n"
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Move selected language up</p></body></html>", Q_NULLPTR));
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Move selected language up</p></body></html>", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
upButton->setText(QApplication::translate("LanguagesDialog", "up", Q_NULLPTR));
|
||||
upButton->setText(QApplication::translate("LanguagesDialog", "up", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
downButton->setToolTip(QApplication::translate("LanguagesDialog", "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
||||
"p, li { white-space: pre-wrap; }\n"
|
||||
"</style></head><body style=\" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;\">\n"
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;\">Move selected language down</p></body></html>", Q_NULLPTR));
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;\">Move selected language down</p></body></html>", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
downButton->setText(QApplication::translate("LanguagesDialog", "down", Q_NULLPTR));
|
||||
downButton->setText(QApplication::translate("LanguagesDialog", "down", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
removeButton->setToolTip(QApplication::translate("LanguagesDialog", "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
||||
"p, li { white-space: pre-wrap; }\n"
|
||||
"</style></head><body style=\" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;\">\n"
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Remove selected language</p></body></html>", Q_NULLPTR));
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Remove selected language</p></body></html>", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
removeButton->setText(QApplication::translate("LanguagesDialog", "remove", Q_NULLPTR));
|
||||
removeButton->setText(QApplication::translate("LanguagesDialog", "remove", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
openFileButton->setToolTip(QApplication::translate("LanguagesDialog", "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
||||
"p, li { white-space: pre-wrap; }\n"
|
||||
"</style></head><body style=\" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;\">\n"
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Open auxiliary language files</p></body></html>", Q_NULLPTR));
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Open auxiliary language files</p></body></html>", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
openFileButton->setText(QApplication::translate("LanguagesDialog", "...", Q_NULLPTR));
|
||||
okButton->setText(QApplication::translate("LanguagesDialog", "OK", Q_NULLPTR));
|
||||
openFileButton->setText(QApplication::translate("LanguagesDialog", "...", nullptr));
|
||||
okButton->setText(QApplication::translate("LanguagesDialog", "OK", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -175,28 +175,28 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *qdesigner_internal__ListWidgetEditor)
|
||||
{
|
||||
qdesigner_internal__ListWidgetEditor->setWindowTitle(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Dialog", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Items List", Q_NULLPTR));
|
||||
qdesigner_internal__ListWidgetEditor->setWindowTitle(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Dialog", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Items List", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
listWidget->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Items List", Q_NULLPTR));
|
||||
listWidget->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Items List", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
newItemButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "New Item", Q_NULLPTR));
|
||||
newItemButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "New Item", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
newItemButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "&New", Q_NULLPTR));
|
||||
newItemButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "&New", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
deleteItemButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Delete Item", Q_NULLPTR));
|
||||
deleteItemButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Delete Item", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
deleteItemButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "&Delete", Q_NULLPTR));
|
||||
deleteItemButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "&Delete", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveItemUpButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Move Item Up", Q_NULLPTR));
|
||||
moveItemUpButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Move Item Up", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveItemUpButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "U", Q_NULLPTR));
|
||||
moveItemUpButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "U", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveItemDownButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Move Item Down", Q_NULLPTR));
|
||||
moveItemDownButton->setToolTip(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Move Item Down", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveItemDownButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "D", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Icon", Q_NULLPTR));
|
||||
moveItemDownButton->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "D", nullptr));
|
||||
label->setText(QApplication::translate("qdesigner_internal::ListWidgetEditor", "Icon", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -363,30 +363,30 @@ public:
|
|||
|
||||
void retranslateUi(QMainWindow *MainWindow)
|
||||
{
|
||||
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MakeQPF", Q_NULLPTR));
|
||||
actionAdd_Custom_Font->setText(QApplication::translate("MainWindow", "&Add Custom Font...", Q_NULLPTR));
|
||||
action_Exit->setText(QApplication::translate("MainWindow", "&Exit", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("MainWindow", "Font Properties", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("MainWindow", "Family:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("MainWindow", "Pixel Size:", Q_NULLPTR));
|
||||
label_7->setText(QApplication::translate("MainWindow", "Weight:", Q_NULLPTR));
|
||||
italic->setText(QApplication::translate("MainWindow", "Italic", Q_NULLPTR));
|
||||
groupBox_2->setTitle(QApplication::translate("MainWindow", "Glyph Coverage", Q_NULLPTR));
|
||||
chooseFromCodePoints->setText(QApplication::translate("MainWindow", "Choose from Unicode Codepoints:", Q_NULLPTR));
|
||||
selectAll->setText(QApplication::translate("MainWindow", "Select &All", Q_NULLPTR));
|
||||
deselectAll->setText(QApplication::translate("MainWindow", "&Deselect All", Q_NULLPTR));
|
||||
invertSelection->setText(QApplication::translate("MainWindow", "&Invert Selection", Q_NULLPTR));
|
||||
chooseFromSampleFile->setText(QApplication::translate("MainWindow", "Choose from Sample Text File (UTF-8 Encoded):", Q_NULLPTR));
|
||||
label_5->setText(QApplication::translate("MainWindow", "Path:", Q_NULLPTR));
|
||||
browseSampleFile->setText(QApplication::translate("MainWindow", "Browse...", Q_NULLPTR));
|
||||
charCount->setText(QApplication::translate("MainWindow", "TextLabel", Q_NULLPTR));
|
||||
groupBox_3->setTitle(QApplication::translate("MainWindow", "Preview", Q_NULLPTR));
|
||||
groupBox_4->setTitle(QApplication::translate("MainWindow", "Output Options", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("MainWindow", "Path:", Q_NULLPTR));
|
||||
browsePath->setText(QApplication::translate("MainWindow", "Browse...", Q_NULLPTR));
|
||||
label_4->setText(QApplication::translate("MainWindow", "Filename:", Q_NULLPTR));
|
||||
generate->setText(QApplication::translate("MainWindow", "Generate Pre-Rendered Font...", Q_NULLPTR));
|
||||
menuFile->setTitle(QApplication::translate("MainWindow", "File", Q_NULLPTR));
|
||||
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MakeQPF", nullptr));
|
||||
actionAdd_Custom_Font->setText(QApplication::translate("MainWindow", "&Add Custom Font...", nullptr));
|
||||
action_Exit->setText(QApplication::translate("MainWindow", "&Exit", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("MainWindow", "Font Properties", nullptr));
|
||||
label->setText(QApplication::translate("MainWindow", "Family:", nullptr));
|
||||
label_2->setText(QApplication::translate("MainWindow", "Pixel Size:", nullptr));
|
||||
label_7->setText(QApplication::translate("MainWindow", "Weight:", nullptr));
|
||||
italic->setText(QApplication::translate("MainWindow", "Italic", nullptr));
|
||||
groupBox_2->setTitle(QApplication::translate("MainWindow", "Glyph Coverage", nullptr));
|
||||
chooseFromCodePoints->setText(QApplication::translate("MainWindow", "Choose from Unicode Codepoints:", nullptr));
|
||||
selectAll->setText(QApplication::translate("MainWindow", "Select &All", nullptr));
|
||||
deselectAll->setText(QApplication::translate("MainWindow", "&Deselect All", nullptr));
|
||||
invertSelection->setText(QApplication::translate("MainWindow", "&Invert Selection", nullptr));
|
||||
chooseFromSampleFile->setText(QApplication::translate("MainWindow", "Choose from Sample Text File (UTF-8 Encoded):", nullptr));
|
||||
label_5->setText(QApplication::translate("MainWindow", "Path:", nullptr));
|
||||
browseSampleFile->setText(QApplication::translate("MainWindow", "Browse...", nullptr));
|
||||
charCount->setText(QApplication::translate("MainWindow", "TextLabel", nullptr));
|
||||
groupBox_3->setTitle(QApplication::translate("MainWindow", "Preview", nullptr));
|
||||
groupBox_4->setTitle(QApplication::translate("MainWindow", "Output Options", nullptr));
|
||||
label_3->setText(QApplication::translate("MainWindow", "Path:", nullptr));
|
||||
browsePath->setText(QApplication::translate("MainWindow", "Browse...", nullptr));
|
||||
label_4->setText(QApplication::translate("MainWindow", "Filename:", nullptr));
|
||||
generate->setText(QApplication::translate("MainWindow", "Generate Pre-Rendered Font...", nullptr));
|
||||
menuFile->setTitle(QApplication::translate("MainWindow", "File", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -59,11 +59,11 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *MyDialog)
|
||||
{
|
||||
MyDialog->setWindowTitle(QApplication::translate("MyDialog", "Mach 2!", Q_NULLPTR));
|
||||
aLabel->setText(QApplication::translate("MyDialog", "Join the life in the fastlane; - PCH enable your project today! -", Q_NULLPTR));
|
||||
aButton->setText(QApplication::translate("MyDialog", "&Quit", Q_NULLPTR));
|
||||
MyDialog->setWindowTitle(QApplication::translate("MyDialog", "Mach 2!", nullptr));
|
||||
aLabel->setText(QApplication::translate("MyDialog", "Join the life in the fastlane; - PCH enable your project today! -", nullptr));
|
||||
aButton->setText(QApplication::translate("MyDialog", "&Quit", nullptr));
|
||||
#ifndef QT_NO_SHORTCUT
|
||||
aButton->setShortcut(QApplication::translate("MyDialog", "Alt+Q", Q_NULLPTR));
|
||||
aButton->setShortcut(QApplication::translate("MyDialog", "Alt+Q", nullptr));
|
||||
#endif // QT_NO_SHORTCUT
|
||||
} // retranslateUi
|
||||
|
||||
|
|
|
|||
|
|
@ -123,17 +123,17 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *Form)
|
||||
{
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Export Document", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("Form", "Export Options", Q_NULLPTR));
|
||||
radioButton_2->setText(QApplication::translate("Form", "&DocBook", Q_NULLPTR));
|
||||
radioButton->setText(QApplication::translate("Form", "&LaTeX", Q_NULLPTR));
|
||||
checkBox_2->setText(QApplication::translate("Form", "Include p&ictures", Q_NULLPTR));
|
||||
checkBox->setText(QApplication::translate("Form", "&Compress", Q_NULLPTR));
|
||||
radioButton_2_2->setText(QApplication::translate("Form", "&HTML", Q_NULLPTR));
|
||||
radioButton_3->setText(QApplication::translate("Form", "&PostScript", Q_NULLPTR));
|
||||
radioButton_4->setText(QApplication::translate("Form", "PD&F", Q_NULLPTR));
|
||||
checkBox_3->setText(QApplication::translate("Form", "Include &metadata", Q_NULLPTR));
|
||||
checkBox_4->setText(QApplication::translate("Form", "Create inde&x", Q_NULLPTR));
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Export Document", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("Form", "Export Options", nullptr));
|
||||
radioButton_2->setText(QApplication::translate("Form", "&DocBook", nullptr));
|
||||
radioButton->setText(QApplication::translate("Form", "&LaTeX", nullptr));
|
||||
checkBox_2->setText(QApplication::translate("Form", "Include p&ictures", nullptr));
|
||||
checkBox->setText(QApplication::translate("Form", "&Compress", nullptr));
|
||||
radioButton_2_2->setText(QApplication::translate("Form", "&HTML", nullptr));
|
||||
radioButton_3->setText(QApplication::translate("Form", "&PostScript", nullptr));
|
||||
radioButton_4->setText(QApplication::translate("Form", "PD&F", nullptr));
|
||||
checkBox_3->setText(QApplication::translate("Form", "Include &metadata", nullptr));
|
||||
checkBox_4->setText(QApplication::translate("Form", "Create inde&x", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -162,10 +162,10 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *qdesigner_internal__NewActionDialog)
|
||||
{
|
||||
qdesigner_internal__NewActionDialog->setWindowTitle(QApplication::translate("qdesigner_internal::NewActionDialog", "New Action...", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("qdesigner_internal::NewActionDialog", "&Text:", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("qdesigner_internal::NewActionDialog", "Object &name:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("qdesigner_internal::NewActionDialog", "&Icon:", Q_NULLPTR));
|
||||
qdesigner_internal__NewActionDialog->setWindowTitle(QApplication::translate("qdesigner_internal::NewActionDialog", "New Action...", nullptr));
|
||||
label->setText(QApplication::translate("qdesigner_internal::NewActionDialog", "&Text:", nullptr));
|
||||
label_3->setText(QApplication::translate("qdesigner_internal::NewActionDialog", "Object &name:", nullptr));
|
||||
label_2->setText(QApplication::translate("qdesigner_internal::NewActionDialog", "&Icon:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -111,9 +111,9 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *qdesigner_internal__NewDynamicPropertyDialog)
|
||||
{
|
||||
qdesigner_internal__NewDynamicPropertyDialog->setWindowTitle(QApplication::translate("qdesigner_internal::NewDynamicPropertyDialog", "Create Dynamic Property", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("qdesigner_internal::NewDynamicPropertyDialog", "Property Name", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("qdesigner_internal::NewDynamicPropertyDialog", "Property Type", Q_NULLPTR));
|
||||
qdesigner_internal__NewDynamicPropertyDialog->setWindowTitle(QApplication::translate("qdesigner_internal::NewDynamicPropertyDialog", "Create Dynamic Property", nullptr));
|
||||
label->setText(QApplication::translate("qdesigner_internal::NewDynamicPropertyDialog", "Property Name", nullptr));
|
||||
label_2->setText(QApplication::translate("qdesigner_internal::NewDynamicPropertyDialog", "Property Type", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -134,11 +134,11 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *NewForm)
|
||||
{
|
||||
NewForm->setWindowTitle(QApplication::translate("NewForm", "New Form", Q_NULLPTR));
|
||||
NewForm->setWindowTitle(QApplication::translate("NewForm", "New Form", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem();
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("NewForm", "0", Q_NULLPTR));
|
||||
lblPreview->setText(QApplication::translate("NewForm", "Choose a template for a preview", Q_NULLPTR));
|
||||
chkShowOnStartup->setText(QApplication::translate("NewForm", "Show this Dialog on Startup", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("NewForm", "0", nullptr));
|
||||
lblPreview->setText(QApplication::translate("NewForm", "Choose a template for a preview", nullptr));
|
||||
chkShowOnStartup->setText(QApplication::translate("NewForm", "Show this Dialog on Startup", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -133,13 +133,13 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *qdesigner_internal__OrderDialog)
|
||||
{
|
||||
qdesigner_internal__OrderDialog->setWindowTitle(QApplication::translate("qdesigner_internal::OrderDialog", "Change Page Order", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("qdesigner_internal::OrderDialog", "Page Order", Q_NULLPTR));
|
||||
qdesigner_internal__OrderDialog->setWindowTitle(QApplication::translate("qdesigner_internal::OrderDialog", "Change Page Order", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("qdesigner_internal::OrderDialog", "Page Order", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
upButton->setToolTip(QApplication::translate("qdesigner_internal::OrderDialog", "Move page up", Q_NULLPTR));
|
||||
upButton->setToolTip(QApplication::translate("qdesigner_internal::OrderDialog", "Move page up", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
downButton->setToolTip(QApplication::translate("qdesigner_internal::OrderDialog", "Move page down", Q_NULLPTR));
|
||||
downButton->setToolTip(QApplication::translate("qdesigner_internal::OrderDialog", "Move page down", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
} // retranslateUi
|
||||
|
||||
|
|
|
|||
|
|
@ -90,9 +90,9 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *OutputPage)
|
||||
{
|
||||
OutputPage->setWindowTitle(QApplication::translate("OutputPage", "Form", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("OutputPage", "Project file name:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("OutputPage", "Collection file name:", Q_NULLPTR));
|
||||
OutputPage->setWindowTitle(QApplication::translate("OutputPage", "Form", nullptr));
|
||||
label->setText(QApplication::translate("OutputPage", "Project file name:", nullptr));
|
||||
label_2->setText(QApplication::translate("OutputPage", "Collection file name:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -244,84 +244,84 @@ public:
|
|||
|
||||
void retranslateUi(QMainWindow *MainWindow)
|
||||
{
|
||||
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", Q_NULLPTR));
|
||||
exitAction->setText(QApplication::translate("MainWindow", "&Exit", Q_NULLPTR));
|
||||
aboutQtAction->setText(QApplication::translate("MainWindow", "About Qt", Q_NULLPTR));
|
||||
editStyleAction->setText(QApplication::translate("MainWindow", "Edit &Style", Q_NULLPTR));
|
||||
aboutAction->setText(QApplication::translate("MainWindow", "About", Q_NULLPTR));
|
||||
nameCombo->setItemText(0, QApplication::translate("MainWindow", "Girish", Q_NULLPTR));
|
||||
nameCombo->setItemText(1, QApplication::translate("MainWindow", "Jasmin", Q_NULLPTR));
|
||||
nameCombo->setItemText(2, QApplication::translate("MainWindow", "Simon", Q_NULLPTR));
|
||||
nameCombo->setItemText(3, QApplication::translate("MainWindow", "Zack", Q_NULLPTR));
|
||||
MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", nullptr));
|
||||
exitAction->setText(QApplication::translate("MainWindow", "&Exit", nullptr));
|
||||
aboutQtAction->setText(QApplication::translate("MainWindow", "About Qt", nullptr));
|
||||
editStyleAction->setText(QApplication::translate("MainWindow", "Edit &Style", nullptr));
|
||||
aboutAction->setText(QApplication::translate("MainWindow", "About", nullptr));
|
||||
nameCombo->setItemText(0, QApplication::translate("MainWindow", "Girish", nullptr));
|
||||
nameCombo->setItemText(1, QApplication::translate("MainWindow", "Jasmin", nullptr));
|
||||
nameCombo->setItemText(2, QApplication::translate("MainWindow", "Simon", nullptr));
|
||||
nameCombo->setItemText(3, QApplication::translate("MainWindow", "Zack", nullptr));
|
||||
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
nameCombo->setToolTip(QApplication::translate("MainWindow", "Specify your name", Q_NULLPTR));
|
||||
nameCombo->setToolTip(QApplication::translate("MainWindow", "Specify your name", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
femaleRadioButton->setStyleSheet(QApplication::translate("MainWindow", "Check this if you are female", Q_NULLPTR));
|
||||
femaleRadioButton->setText(QApplication::translate("MainWindow", "&Female", Q_NULLPTR));
|
||||
genderLabel->setText(QApplication::translate("MainWindow", "Gender:", Q_NULLPTR));
|
||||
ageLabel->setText(QApplication::translate("MainWindow", "&Age:", Q_NULLPTR));
|
||||
femaleRadioButton->setStyleSheet(QApplication::translate("MainWindow", "Check this if you are female", nullptr));
|
||||
femaleRadioButton->setText(QApplication::translate("MainWindow", "&Female", nullptr));
|
||||
genderLabel->setText(QApplication::translate("MainWindow", "Gender:", nullptr));
|
||||
ageLabel->setText(QApplication::translate("MainWindow", "&Age:", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
maleRadioButton->setToolTip(QApplication::translate("MainWindow", "Check this if you are male", Q_NULLPTR));
|
||||
maleRadioButton->setToolTip(QApplication::translate("MainWindow", "Check this if you are male", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
maleRadioButton->setText(QApplication::translate("MainWindow", "&Male", Q_NULLPTR));
|
||||
nameLabel->setText(QApplication::translate("MainWindow", "&Name:", Q_NULLPTR));
|
||||
passwordLabel->setText(QApplication::translate("MainWindow", "&Password:", Q_NULLPTR));
|
||||
maleRadioButton->setText(QApplication::translate("MainWindow", "&Male", nullptr));
|
||||
nameLabel->setText(QApplication::translate("MainWindow", "&Name:", nullptr));
|
||||
passwordLabel->setText(QApplication::translate("MainWindow", "&Password:", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
ageSpinBox->setToolTip(QApplication::translate("MainWindow", "Specify your age", Q_NULLPTR));
|
||||
ageSpinBox->setToolTip(QApplication::translate("MainWindow", "Specify your age", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_STATUSTIP
|
||||
ageSpinBox->setStatusTip(QApplication::translate("MainWindow", "Specify your age", Q_NULLPTR));
|
||||
ageSpinBox->setStatusTip(QApplication::translate("MainWindow", "Specify your age", nullptr));
|
||||
#endif // QT_NO_STATUSTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
agreeCheckBox->setToolTip(QApplication::translate("MainWindow", "Please read the LICENSE file before checking", Q_NULLPTR));
|
||||
agreeCheckBox->setToolTip(QApplication::translate("MainWindow", "Please read the LICENSE file before checking", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
agreeCheckBox->setText(QApplication::translate("MainWindow", "I &accept the terms and &conditions", Q_NULLPTR));
|
||||
agreeCheckBox->setText(QApplication::translate("MainWindow", "I &accept the terms and &conditions", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
passwordEdit->setToolTip(QApplication::translate("MainWindow", "Specify your password", Q_NULLPTR));
|
||||
passwordEdit->setToolTip(QApplication::translate("MainWindow", "Specify your password", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_STATUSTIP
|
||||
passwordEdit->setStatusTip(QApplication::translate("MainWindow", "Specify your password", Q_NULLPTR));
|
||||
passwordEdit->setStatusTip(QApplication::translate("MainWindow", "Specify your password", nullptr));
|
||||
#endif // QT_NO_STATUSTIP
|
||||
passwordEdit->setText(QApplication::translate("MainWindow", "Password", Q_NULLPTR));
|
||||
passwordEdit->setText(QApplication::translate("MainWindow", "Password", nullptr));
|
||||
|
||||
const bool __sortingEnabled = professionList->isSortingEnabled();
|
||||
professionList->setSortingEnabled(false);
|
||||
QListWidgetItem *___qlistwidgetitem = professionList->item(0);
|
||||
___qlistwidgetitem->setText(QApplication::translate("MainWindow", "Developer", Q_NULLPTR));
|
||||
___qlistwidgetitem->setText(QApplication::translate("MainWindow", "Developer", nullptr));
|
||||
QListWidgetItem *___qlistwidgetitem1 = professionList->item(1);
|
||||
___qlistwidgetitem1->setText(QApplication::translate("MainWindow", "Student", Q_NULLPTR));
|
||||
___qlistwidgetitem1->setText(QApplication::translate("MainWindow", "Student", nullptr));
|
||||
QListWidgetItem *___qlistwidgetitem2 = professionList->item(2);
|
||||
___qlistwidgetitem2->setText(QApplication::translate("MainWindow", "Fisherman", Q_NULLPTR));
|
||||
___qlistwidgetitem2->setText(QApplication::translate("MainWindow", "Fisherman", nullptr));
|
||||
professionList->setSortingEnabled(__sortingEnabled);
|
||||
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
professionList->setToolTip(QApplication::translate("MainWindow", "Select your profession", Q_NULLPTR));
|
||||
professionList->setToolTip(QApplication::translate("MainWindow", "Select your profession", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_STATUSTIP
|
||||
professionList->setStatusTip(QApplication::translate("MainWindow", "Specify your name here", Q_NULLPTR));
|
||||
professionList->setStatusTip(QApplication::translate("MainWindow", "Specify your name here", nullptr));
|
||||
#endif // QT_NO_STATUSTIP
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
professionList->setWhatsThis(QApplication::translate("MainWindow", "Specify your name here", Q_NULLPTR));
|
||||
professionList->setWhatsThis(QApplication::translate("MainWindow", "Specify your name here", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
label->setText(QApplication::translate("MainWindow", "Profession:", Q_NULLPTR));
|
||||
countryCombo->setItemText(0, QApplication::translate("MainWindow", "Egypt", Q_NULLPTR));
|
||||
countryCombo->setItemText(1, QApplication::translate("MainWindow", "France", Q_NULLPTR));
|
||||
countryCombo->setItemText(2, QApplication::translate("MainWindow", "Germany", Q_NULLPTR));
|
||||
countryCombo->setItemText(3, QApplication::translate("MainWindow", "India", Q_NULLPTR));
|
||||
countryCombo->setItemText(4, QApplication::translate("MainWindow", "Italy", Q_NULLPTR));
|
||||
countryCombo->setItemText(5, QApplication::translate("MainWindow", "Korea", Q_NULLPTR));
|
||||
countryCombo->setItemText(6, QApplication::translate("MainWindow", "Norway", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("MainWindow", "Profession:", nullptr));
|
||||
countryCombo->setItemText(0, QApplication::translate("MainWindow", "Egypt", nullptr));
|
||||
countryCombo->setItemText(1, QApplication::translate("MainWindow", "France", nullptr));
|
||||
countryCombo->setItemText(2, QApplication::translate("MainWindow", "Germany", nullptr));
|
||||
countryCombo->setItemText(3, QApplication::translate("MainWindow", "India", nullptr));
|
||||
countryCombo->setItemText(4, QApplication::translate("MainWindow", "Italy", nullptr));
|
||||
countryCombo->setItemText(5, QApplication::translate("MainWindow", "Korea", nullptr));
|
||||
countryCombo->setItemText(6, QApplication::translate("MainWindow", "Norway", nullptr));
|
||||
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
countryCombo->setToolTip(QApplication::translate("MainWindow", "Specify country of origin", Q_NULLPTR));
|
||||
countryCombo->setToolTip(QApplication::translate("MainWindow", "Specify country of origin", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_STATUSTIP
|
||||
countryCombo->setStatusTip(QApplication::translate("MainWindow", "Specify country of origin", Q_NULLPTR));
|
||||
countryCombo->setStatusTip(QApplication::translate("MainWindow", "Specify country of origin", nullptr));
|
||||
#endif // QT_NO_STATUSTIP
|
||||
countryLabel->setText(QApplication::translate("MainWindow", "Pro&fession", Q_NULLPTR));
|
||||
menu_File->setTitle(QApplication::translate("MainWindow", "&File", Q_NULLPTR));
|
||||
menu_Help->setTitle(QApplication::translate("MainWindow", "&Help", Q_NULLPTR));
|
||||
countryLabel->setText(QApplication::translate("MainWindow", "Pro&fession", nullptr));
|
||||
menu_File->setTitle(QApplication::translate("MainWindow", "&File", nullptr));
|
||||
menu_Help->setTitle(QApplication::translate("MainWindow", "&Help", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -199,16 +199,16 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *qdesigner_internal__PaletteEditor)
|
||||
{
|
||||
qdesigner_internal__PaletteEditor->setWindowTitle(QApplication::translate("qdesigner_internal::PaletteEditor", "Edit Palette", Q_NULLPTR));
|
||||
advancedBox->setTitle(QApplication::translate("qdesigner_internal::PaletteEditor", "Tune Palette", Q_NULLPTR));
|
||||
qdesigner_internal__PaletteEditor->setWindowTitle(QApplication::translate("qdesigner_internal::PaletteEditor", "Edit Palette", nullptr));
|
||||
advancedBox->setTitle(QApplication::translate("qdesigner_internal::PaletteEditor", "Tune Palette", nullptr));
|
||||
buildButton->setText(QString());
|
||||
detailsRadio->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Show Details", Q_NULLPTR));
|
||||
computeRadio->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Compute Details", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Quick", Q_NULLPTR));
|
||||
GroupBox126->setTitle(QApplication::translate("qdesigner_internal::PaletteEditor", "Preview", Q_NULLPTR));
|
||||
disabledRadio->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Disabled", Q_NULLPTR));
|
||||
inactiveRadio->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Inactive", Q_NULLPTR));
|
||||
activeRadio->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Active", Q_NULLPTR));
|
||||
detailsRadio->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Show Details", nullptr));
|
||||
computeRadio->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Compute Details", nullptr));
|
||||
label->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Quick", nullptr));
|
||||
GroupBox126->setTitle(QApplication::translate("qdesigner_internal::PaletteEditor", "Preview", nullptr));
|
||||
disabledRadio->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Disabled", nullptr));
|
||||
inactiveRadio->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Inactive", nullptr));
|
||||
activeRadio->setText(QApplication::translate("qdesigner_internal::PaletteEditor", "Active", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -101,11 +101,11 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *PasswordDialog)
|
||||
{
|
||||
PasswordDialog->setWindowTitle(QApplication::translate("PasswordDialog", "Authentication Required", Q_NULLPTR));
|
||||
iconLabel->setText(QApplication::translate("PasswordDialog", "DUMMY ICON", Q_NULLPTR));
|
||||
introLabel->setText(QApplication::translate("PasswordDialog", "INTRO TEXT DUMMY", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("PasswordDialog", "Username:", Q_NULLPTR));
|
||||
lblPassword->setText(QApplication::translate("PasswordDialog", "Password:", Q_NULLPTR));
|
||||
PasswordDialog->setWindowTitle(QApplication::translate("PasswordDialog", "Authentication Required", nullptr));
|
||||
iconLabel->setText(QApplication::translate("PasswordDialog", "DUMMY ICON", nullptr));
|
||||
introLabel->setText(QApplication::translate("PasswordDialog", "INTRO TEXT DUMMY", nullptr));
|
||||
label->setText(QApplication::translate("PasswordDialog", "Username:", nullptr));
|
||||
lblPassword->setText(QApplication::translate("PasswordDialog", "Password:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -107,11 +107,11 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *PathPage)
|
||||
{
|
||||
PathPage->setWindowTitle(QApplication::translate("PathPage", "Form", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("PathPage", "File filters:", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("PathPage", "Documentation source file paths:", Q_NULLPTR));
|
||||
addButton->setText(QApplication::translate("PathPage", "Add", Q_NULLPTR));
|
||||
removeButton->setText(QApplication::translate("PathPage", "Remove", Q_NULLPTR));
|
||||
PathPage->setWindowTitle(QApplication::translate("PathPage", "Form", nullptr));
|
||||
label_2->setText(QApplication::translate("PathPage", "File filters:", nullptr));
|
||||
label->setText(QApplication::translate("PathPage", "Documentation source file paths:", nullptr));
|
||||
addButton->setText(QApplication::translate("PathPage", "Add", nullptr));
|
||||
removeButton->setText(QApplication::translate("PathPage", "Remove", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -186,38 +186,38 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *PhraseBookBox)
|
||||
{
|
||||
PhraseBookBox->setWindowTitle(QApplication::translate("PhraseBookBox", "Edit Phrase Book", Q_NULLPTR));
|
||||
PhraseBookBox->setWindowTitle(QApplication::translate("PhraseBookBox", "Edit Phrase Book", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
PhraseBookBox->setWhatsThis(QApplication::translate("PhraseBookBox", "This window allows you to add, modify, or delete phrases in a phrase book.", Q_NULLPTR));
|
||||
PhraseBookBox->setWhatsThis(QApplication::translate("PhraseBookBox", "This window allows you to add, modify, or delete phrases in a phrase book.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
target->setText(QApplication::translate("PhraseBookBox", "&Translation:", Q_NULLPTR));
|
||||
target->setText(QApplication::translate("PhraseBookBox", "&Translation:", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
targetLed->setWhatsThis(QApplication::translate("PhraseBookBox", "This is the phrase in the target language corresponding to the source phrase.", Q_NULLPTR));
|
||||
targetLed->setWhatsThis(QApplication::translate("PhraseBookBox", "This is the phrase in the target language corresponding to the source phrase.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
source->setText(QApplication::translate("PhraseBookBox", "S&ource phrase:", Q_NULLPTR));
|
||||
source->setText(QApplication::translate("PhraseBookBox", "S&ource phrase:", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
definitionLed->setWhatsThis(QApplication::translate("PhraseBookBox", "This is a definition for the source phrase.", Q_NULLPTR));
|
||||
definitionLed->setWhatsThis(QApplication::translate("PhraseBookBox", "This is a definition for the source phrase.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
sourceLed->setWhatsThis(QApplication::translate("PhraseBookBox", "This is the phrase in the source language.", Q_NULLPTR));
|
||||
sourceLed->setWhatsThis(QApplication::translate("PhraseBookBox", "This is the phrase in the source language.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
definition->setText(QApplication::translate("PhraseBookBox", "&Definition:", Q_NULLPTR));
|
||||
definition->setText(QApplication::translate("PhraseBookBox", "&Definition:", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
newBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to add the phrase to the phrase book.", Q_NULLPTR));
|
||||
newBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to add the phrase to the phrase book.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
newBut->setText(QApplication::translate("PhraseBookBox", "&New Phrase", Q_NULLPTR));
|
||||
newBut->setText(QApplication::translate("PhraseBookBox", "&New Phrase", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
removeBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to remove the phrase from the phrase book.", Q_NULLPTR));
|
||||
removeBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to remove the phrase from the phrase book.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
removeBut->setText(QApplication::translate("PhraseBookBox", "&Remove Phrase", Q_NULLPTR));
|
||||
removeBut->setText(QApplication::translate("PhraseBookBox", "&Remove Phrase", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
saveBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to save the changes made.", Q_NULLPTR));
|
||||
saveBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to save the changes made.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
saveBut->setText(QApplication::translate("PhraseBookBox", "&Save", Q_NULLPTR));
|
||||
saveBut->setText(QApplication::translate("PhraseBookBox", "&Save", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
closeBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to close this window.", Q_NULLPTR));
|
||||
closeBut->setWhatsThis(QApplication::translate("PhraseBookBox", "Click here to close this window.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
closeBut->setText(QApplication::translate("PhraseBookBox", "Close", Q_NULLPTR));
|
||||
closeBut->setText(QApplication::translate("PhraseBookBox", "Close", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -113,11 +113,11 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *PluginDialog)
|
||||
{
|
||||
PluginDialog->setWindowTitle(QApplication::translate("PluginDialog", "Plugin Information", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("PluginDialog", "TextLabel", Q_NULLPTR));
|
||||
PluginDialog->setWindowTitle(QApplication::translate("PluginDialog", "Plugin Information", nullptr));
|
||||
label->setText(QApplication::translate("PluginDialog", "TextLabel", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem();
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("PluginDialog", "1", Q_NULLPTR));
|
||||
message->setText(QApplication::translate("PluginDialog", "TextLabel", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("PluginDialog", "1", nullptr));
|
||||
message->setText(QApplication::translate("PluginDialog", "TextLabel", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -153,11 +153,11 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *PreferencesDialog)
|
||||
{
|
||||
PreferencesDialog->setWindowTitle(QApplication::translate("PreferencesDialog", "Preferences", Q_NULLPTR));
|
||||
m_uiModeGroupBox->setTitle(QApplication::translate("PreferencesDialog", "User Interface Mode", Q_NULLPTR));
|
||||
m_templatePathGroupBox->setTitle(QApplication::translate("PreferencesDialog", "Additional Template Paths", Q_NULLPTR));
|
||||
m_addTemplatePathButton->setText(QApplication::translate("PreferencesDialog", "...", Q_NULLPTR));
|
||||
m_removeTemplatePathButton->setText(QApplication::translate("PreferencesDialog", "...", Q_NULLPTR));
|
||||
PreferencesDialog->setWindowTitle(QApplication::translate("PreferencesDialog", "Preferences", nullptr));
|
||||
m_uiModeGroupBox->setTitle(QApplication::translate("PreferencesDialog", "User Interface Mode", nullptr));
|
||||
m_templatePathGroupBox->setTitle(QApplication::translate("PreferencesDialog", "Additional Template Paths", nullptr));
|
||||
m_addTemplatePathButton->setText(QApplication::translate("PreferencesDialog", "...", nullptr));
|
||||
m_removeTemplatePathButton->setText(QApplication::translate("PreferencesDialog", "...", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -111,14 +111,14 @@ public:
|
|||
|
||||
void retranslateUi(QGroupBox *PreviewConfigurationWidget)
|
||||
{
|
||||
PreviewConfigurationWidget->setWindowTitle(QApplication::translate("PreviewConfigurationWidget", "Form", Q_NULLPTR));
|
||||
PreviewConfigurationWidget->setTitle(QApplication::translate("PreviewConfigurationWidget", "Print/Preview Configuration", Q_NULLPTR));
|
||||
m_styleLabel->setText(QApplication::translate("PreviewConfigurationWidget", "Style", Q_NULLPTR));
|
||||
m_appStyleSheetLabel->setText(QApplication::translate("PreviewConfigurationWidget", "Style sheet", Q_NULLPTR));
|
||||
m_appStyleSheetChangeButton->setText(QApplication::translate("PreviewConfigurationWidget", "...", Q_NULLPTR));
|
||||
m_appStyleSheetClearButton->setText(QApplication::translate("PreviewConfigurationWidget", "...", Q_NULLPTR));
|
||||
m_skinLabel->setText(QApplication::translate("PreviewConfigurationWidget", "Device skin", Q_NULLPTR));
|
||||
m_skinRemoveButton->setText(QApplication::translate("PreviewConfigurationWidget", "...", Q_NULLPTR));
|
||||
PreviewConfigurationWidget->setWindowTitle(QApplication::translate("PreviewConfigurationWidget", "Form", nullptr));
|
||||
PreviewConfigurationWidget->setTitle(QApplication::translate("PreviewConfigurationWidget", "Print/Preview Configuration", nullptr));
|
||||
m_styleLabel->setText(QApplication::translate("PreviewConfigurationWidget", "Style", nullptr));
|
||||
m_appStyleSheetLabel->setText(QApplication::translate("PreviewConfigurationWidget", "Style sheet", nullptr));
|
||||
m_appStyleSheetChangeButton->setText(QApplication::translate("PreviewConfigurationWidget", "...", nullptr));
|
||||
m_appStyleSheetClearButton->setText(QApplication::translate("PreviewConfigurationWidget", "...", nullptr));
|
||||
m_skinLabel->setText(QApplication::translate("PreviewConfigurationWidget", "Device skin", nullptr));
|
||||
m_skinRemoveButton->setText(QApplication::translate("PreviewConfigurationWidget", "...", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -172,11 +172,11 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *PreviewDialogBase)
|
||||
{
|
||||
PreviewDialogBase->setWindowTitle(QApplication::translate("PreviewDialogBase", "Print Preview", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("PreviewDialogBase", "&Paper Size:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("PreviewDialogBase", "&Orientation:", Q_NULLPTR));
|
||||
PreviewDialogBase->setWindowTitle(QApplication::translate("PreviewDialogBase", "Print Preview", nullptr));
|
||||
label->setText(QApplication::translate("PreviewDialogBase", "&Paper Size:", nullptr));
|
||||
label_2->setText(QApplication::translate("PreviewDialogBase", "&Orientation:", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem = pageList->headerItem();
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("PreviewDialogBase", "1", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("PreviewDialogBase", "1", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -238,18 +238,18 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *qdesigner_internal__PreviewWidget)
|
||||
{
|
||||
qdesigner_internal__PreviewWidget->setWindowTitle(QApplication::translate("qdesigner_internal::PreviewWidget", "Preview Window", Q_NULLPTR));
|
||||
LineEdit1->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "LineEdit", Q_NULLPTR));
|
||||
ComboBox1->setItemText(0, QApplication::translate("qdesigner_internal::PreviewWidget", "ComboBox", Q_NULLPTR));
|
||||
qdesigner_internal__PreviewWidget->setWindowTitle(QApplication::translate("qdesigner_internal::PreviewWidget", "Preview Window", nullptr));
|
||||
LineEdit1->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "LineEdit", nullptr));
|
||||
ComboBox1->setItemText(0, QApplication::translate("qdesigner_internal::PreviewWidget", "ComboBox", nullptr));
|
||||
|
||||
PushButton1->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "PushButton", Q_NULLPTR));
|
||||
ButtonGroup2->setTitle(QApplication::translate("qdesigner_internal::PreviewWidget", "ButtonGroup2", Q_NULLPTR));
|
||||
CheckBox1->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "CheckBox1", Q_NULLPTR));
|
||||
CheckBox2->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "CheckBox2", Q_NULLPTR));
|
||||
ButtonGroup1->setTitle(QApplication::translate("qdesigner_internal::PreviewWidget", "ButtonGroup", Q_NULLPTR));
|
||||
RadioButton1->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "RadioButton1", Q_NULLPTR));
|
||||
RadioButton2->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "RadioButton2", Q_NULLPTR));
|
||||
RadioButton3->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "RadioButton3", Q_NULLPTR));
|
||||
PushButton1->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "PushButton", nullptr));
|
||||
ButtonGroup2->setTitle(QApplication::translate("qdesigner_internal::PreviewWidget", "ButtonGroup2", nullptr));
|
||||
CheckBox1->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "CheckBox1", nullptr));
|
||||
CheckBox2->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "CheckBox2", nullptr));
|
||||
ButtonGroup1->setTitle(QApplication::translate("qdesigner_internal::PreviewWidget", "ButtonGroup", nullptr));
|
||||
RadioButton1->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "RadioButton1", nullptr));
|
||||
RadioButton2->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "RadioButton2", nullptr));
|
||||
RadioButton3->setText(QApplication::translate("qdesigner_internal::PreviewWidget", "RadioButton3", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -90,11 +90,11 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *ProxyDialog)
|
||||
{
|
||||
ProxyDialog->setWindowTitle(QApplication::translate("ProxyDialog", "Proxy Authentication", Q_NULLPTR));
|
||||
iconLabel->setText(QApplication::translate("ProxyDialog", "ICON", Q_NULLPTR));
|
||||
introLabel->setText(QApplication::translate("ProxyDialog", "Connect to proxy", Q_NULLPTR));
|
||||
usernameLabel->setText(QApplication::translate("ProxyDialog", "Username:", Q_NULLPTR));
|
||||
passwordLabel->setText(QApplication::translate("ProxyDialog", "Password:", Q_NULLPTR));
|
||||
ProxyDialog->setWindowTitle(QApplication::translate("ProxyDialog", "Proxy Authentication", nullptr));
|
||||
iconLabel->setText(QApplication::translate("ProxyDialog", "ICON", nullptr));
|
||||
introLabel->setText(QApplication::translate("ProxyDialog", "Connect to proxy", nullptr));
|
||||
usernameLabel->setText(QApplication::translate("ProxyDialog", "Username:", nullptr));
|
||||
passwordLabel->setText(QApplication::translate("ProxyDialog", "Password:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -273,26 +273,26 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *QFileDialog)
|
||||
{
|
||||
lookInLabel->setText(QApplication::translate("QFileDialog", "Look in:", Q_NULLPTR));
|
||||
lookInLabel->setText(QApplication::translate("QFileDialog", "Look in:", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
backButton->setToolTip(QApplication::translate("QFileDialog", "Back", Q_NULLPTR));
|
||||
backButton->setToolTip(QApplication::translate("QFileDialog", "Back", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
forwardButton->setToolTip(QApplication::translate("QFileDialog", "Forward", Q_NULLPTR));
|
||||
forwardButton->setToolTip(QApplication::translate("QFileDialog", "Forward", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
toParentButton->setToolTip(QApplication::translate("QFileDialog", "Parent Directory", Q_NULLPTR));
|
||||
toParentButton->setToolTip(QApplication::translate("QFileDialog", "Parent Directory", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
newFolderButton->setToolTip(QApplication::translate("QFileDialog", "Create New Folder", Q_NULLPTR));
|
||||
newFolderButton->setToolTip(QApplication::translate("QFileDialog", "Create New Folder", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
listModeButton->setToolTip(QApplication::translate("QFileDialog", "List View", Q_NULLPTR));
|
||||
listModeButton->setToolTip(QApplication::translate("QFileDialog", "List View", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
detailModeButton->setToolTip(QApplication::translate("QFileDialog", "Detail View", Q_NULLPTR));
|
||||
detailModeButton->setToolTip(QApplication::translate("QFileDialog", "Detail View", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
fileTypeLabel->setText(QApplication::translate("QFileDialog", "Files of type:", Q_NULLPTR));
|
||||
fileTypeLabel->setText(QApplication::translate("QFileDialog", "Files of type:", nullptr));
|
||||
Q_UNUSED(QFileDialog);
|
||||
} // retranslateUi
|
||||
|
||||
|
|
|
|||
|
|
@ -307,45 +307,45 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *QPageSetupWidget)
|
||||
{
|
||||
QPageSetupWidget->setWindowTitle(QApplication::translate("QPageSetupWidget", "Form", Q_NULLPTR));
|
||||
groupBox_2->setTitle(QApplication::translate("QPageSetupWidget", "Paper", Q_NULLPTR));
|
||||
pageSizeLabel->setText(QApplication::translate("QPageSetupWidget", "Page size:", Q_NULLPTR));
|
||||
widthLabel->setText(QApplication::translate("QPageSetupWidget", "Width:", Q_NULLPTR));
|
||||
heightLabel->setText(QApplication::translate("QPageSetupWidget", "Height:", Q_NULLPTR));
|
||||
paperSourceLabel->setText(QApplication::translate("QPageSetupWidget", "Paper source:", Q_NULLPTR));
|
||||
groupBox_3->setTitle(QApplication::translate("QPageSetupWidget", "Orientation", Q_NULLPTR));
|
||||
portrait->setText(QApplication::translate("QPageSetupWidget", "Portrait", Q_NULLPTR));
|
||||
landscape->setText(QApplication::translate("QPageSetupWidget", "Landscape", Q_NULLPTR));
|
||||
reverseLandscape->setText(QApplication::translate("QPageSetupWidget", "Reverse landscape", Q_NULLPTR));
|
||||
reversePortrait->setText(QApplication::translate("QPageSetupWidget", "Reverse portrait", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("QPageSetupWidget", "Margins", Q_NULLPTR));
|
||||
QPageSetupWidget->setWindowTitle(QApplication::translate("QPageSetupWidget", "Form", nullptr));
|
||||
groupBox_2->setTitle(QApplication::translate("QPageSetupWidget", "Paper", nullptr));
|
||||
pageSizeLabel->setText(QApplication::translate("QPageSetupWidget", "Page size:", nullptr));
|
||||
widthLabel->setText(QApplication::translate("QPageSetupWidget", "Width:", nullptr));
|
||||
heightLabel->setText(QApplication::translate("QPageSetupWidget", "Height:", nullptr));
|
||||
paperSourceLabel->setText(QApplication::translate("QPageSetupWidget", "Paper source:", nullptr));
|
||||
groupBox_3->setTitle(QApplication::translate("QPageSetupWidget", "Orientation", nullptr));
|
||||
portrait->setText(QApplication::translate("QPageSetupWidget", "Portrait", nullptr));
|
||||
landscape->setText(QApplication::translate("QPageSetupWidget", "Landscape", nullptr));
|
||||
reverseLandscape->setText(QApplication::translate("QPageSetupWidget", "Reverse landscape", nullptr));
|
||||
reversePortrait->setText(QApplication::translate("QPageSetupWidget", "Reverse portrait", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("QPageSetupWidget", "Margins", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
topMargin->setToolTip(QApplication::translate("QPageSetupWidget", "top margin", Q_NULLPTR));
|
||||
topMargin->setToolTip(QApplication::translate("QPageSetupWidget", "top margin", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_ACCESSIBILITY
|
||||
topMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "top margin", Q_NULLPTR));
|
||||
topMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "top margin", nullptr));
|
||||
#endif // QT_NO_ACCESSIBILITY
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
leftMargin->setToolTip(QApplication::translate("QPageSetupWidget", "left margin", Q_NULLPTR));
|
||||
leftMargin->setToolTip(QApplication::translate("QPageSetupWidget", "left margin", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_ACCESSIBILITY
|
||||
leftMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "left margin", Q_NULLPTR));
|
||||
leftMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "left margin", nullptr));
|
||||
#endif // QT_NO_ACCESSIBILITY
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
rightMargin->setToolTip(QApplication::translate("QPageSetupWidget", "right margin", Q_NULLPTR));
|
||||
rightMargin->setToolTip(QApplication::translate("QPageSetupWidget", "right margin", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_ACCESSIBILITY
|
||||
rightMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "right margin", Q_NULLPTR));
|
||||
rightMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "right margin", nullptr));
|
||||
#endif // QT_NO_ACCESSIBILITY
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
bottomMargin->setToolTip(QApplication::translate("QPageSetupWidget", "bottom margin", Q_NULLPTR));
|
||||
bottomMargin->setToolTip(QApplication::translate("QPageSetupWidget", "bottom margin", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_ACCESSIBILITY
|
||||
bottomMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "bottom margin", Q_NULLPTR));
|
||||
bottomMargin->setAccessibleName(QApplication::translate("QPageSetupWidget", "bottom margin", nullptr));
|
||||
#endif // QT_NO_ACCESSIBILITY
|
||||
pagesPerSheetButtonGroup->setTitle(QApplication::translate("QPageSetupWidget", "Page Layout", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("QPageSetupWidget", "Page order:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("QPageSetupWidget", "Pages per sheet:", Q_NULLPTR));
|
||||
pagesPerSheetButtonGroup->setTitle(QApplication::translate("QPageSetupWidget", "Page Layout", nullptr));
|
||||
label->setText(QApplication::translate("QPageSetupWidget", "Page order:", nullptr));
|
||||
label_2->setText(QApplication::translate("QPageSetupWidget", "Pages per sheet:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -81,9 +81,9 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *QPrintPropertiesWidget)
|
||||
{
|
||||
QPrintPropertiesWidget->setWindowTitle(QApplication::translate("QPrintPropertiesWidget", "Form", Q_NULLPTR));
|
||||
tabs->setTabText(tabs->indexOf(tabPage), QApplication::translate("QPrintPropertiesWidget", "Page", Q_NULLPTR));
|
||||
tabs->setTabText(tabs->indexOf(cupsPropertiesPage), QApplication::translate("QPrintPropertiesWidget", "Advanced", Q_NULLPTR));
|
||||
QPrintPropertiesWidget->setWindowTitle(QApplication::translate("QPrintPropertiesWidget", "Form", nullptr));
|
||||
tabs->setTabText(tabs->indexOf(tabPage), QApplication::translate("QPrintPropertiesWidget", "Page", nullptr));
|
||||
tabs->setTabText(tabs->indexOf(cupsPropertiesPage), QApplication::translate("QPrintPropertiesWidget", "Advanced", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -279,25 +279,25 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *QPrintSettingsOutput)
|
||||
{
|
||||
QPrintSettingsOutput->setWindowTitle(QApplication::translate("QPrintSettingsOutput", "Form", Q_NULLPTR));
|
||||
gbPrintRange->setTitle(QApplication::translate("QPrintSettingsOutput", "Print range", Q_NULLPTR));
|
||||
printAll->setText(QApplication::translate("QPrintSettingsOutput", "Print all", Q_NULLPTR));
|
||||
printRange->setText(QApplication::translate("QPrintSettingsOutput", "Pages from", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("QPrintSettingsOutput", "to", Q_NULLPTR));
|
||||
printSelection->setText(QApplication::translate("QPrintSettingsOutput", "Selection", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("QPrintSettingsOutput", "Output Settings", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("QPrintSettingsOutput", "Copies:", Q_NULLPTR));
|
||||
collate->setText(QApplication::translate("QPrintSettingsOutput", "Collate", Q_NULLPTR));
|
||||
reverse->setText(QApplication::translate("QPrintSettingsOutput", "Reverse", Q_NULLPTR));
|
||||
tabs->setTabText(tabs->indexOf(copiesTab), QApplication::translate("QPrintSettingsOutput", "Copies", Q_NULLPTR));
|
||||
colorMode->setTitle(QApplication::translate("QPrintSettingsOutput", "Color Mode", Q_NULLPTR));
|
||||
color->setText(QApplication::translate("QPrintSettingsOutput", "Color", Q_NULLPTR));
|
||||
grayscale->setText(QApplication::translate("QPrintSettingsOutput", "Grayscale", Q_NULLPTR));
|
||||
duplex->setTitle(QApplication::translate("QPrintSettingsOutput", "Duplex Printing", Q_NULLPTR));
|
||||
noDuplex->setText(QApplication::translate("QPrintSettingsOutput", "None", Q_NULLPTR));
|
||||
duplexLong->setText(QApplication::translate("QPrintSettingsOutput", "Long side", Q_NULLPTR));
|
||||
duplexShort->setText(QApplication::translate("QPrintSettingsOutput", "Short side", Q_NULLPTR));
|
||||
tabs->setTabText(tabs->indexOf(optionsTab), QApplication::translate("QPrintSettingsOutput", "Options", Q_NULLPTR));
|
||||
QPrintSettingsOutput->setWindowTitle(QApplication::translate("QPrintSettingsOutput", "Form", nullptr));
|
||||
gbPrintRange->setTitle(QApplication::translate("QPrintSettingsOutput", "Print range", nullptr));
|
||||
printAll->setText(QApplication::translate("QPrintSettingsOutput", "Print all", nullptr));
|
||||
printRange->setText(QApplication::translate("QPrintSettingsOutput", "Pages from", nullptr));
|
||||
label_3->setText(QApplication::translate("QPrintSettingsOutput", "to", nullptr));
|
||||
printSelection->setText(QApplication::translate("QPrintSettingsOutput", "Selection", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("QPrintSettingsOutput", "Output Settings", nullptr));
|
||||
label->setText(QApplication::translate("QPrintSettingsOutput", "Copies:", nullptr));
|
||||
collate->setText(QApplication::translate("QPrintSettingsOutput", "Collate", nullptr));
|
||||
reverse->setText(QApplication::translate("QPrintSettingsOutput", "Reverse", nullptr));
|
||||
tabs->setTabText(tabs->indexOf(copiesTab), QApplication::translate("QPrintSettingsOutput", "Copies", nullptr));
|
||||
colorMode->setTitle(QApplication::translate("QPrintSettingsOutput", "Color Mode", nullptr));
|
||||
color->setText(QApplication::translate("QPrintSettingsOutput", "Color", nullptr));
|
||||
grayscale->setText(QApplication::translate("QPrintSettingsOutput", "Grayscale", nullptr));
|
||||
duplex->setTitle(QApplication::translate("QPrintSettingsOutput", "Duplex Printing", nullptr));
|
||||
noDuplex->setText(QApplication::translate("QPrintSettingsOutput", "None", nullptr));
|
||||
duplexLong->setText(QApplication::translate("QPrintSettingsOutput", "Long side", nullptr));
|
||||
duplexShort->setText(QApplication::translate("QPrintSettingsOutput", "Short side", nullptr));
|
||||
tabs->setTabText(tabs->indexOf(optionsTab), QApplication::translate("QPrintSettingsOutput", "Options", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -143,15 +143,15 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *QPrintWidget)
|
||||
{
|
||||
QPrintWidget->setWindowTitle(QApplication::translate("QPrintWidget", "Form", Q_NULLPTR));
|
||||
printerGroup->setTitle(QApplication::translate("QPrintWidget", "Printer", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("QPrintWidget", "&Name:", Q_NULLPTR));
|
||||
properties->setText(QApplication::translate("QPrintWidget", "P&roperties", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("QPrintWidget", "Location:", Q_NULLPTR));
|
||||
preview->setText(QApplication::translate("QPrintWidget", "Preview", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("QPrintWidget", "Type:", Q_NULLPTR));
|
||||
lOutput->setText(QApplication::translate("QPrintWidget", "Output &file:", Q_NULLPTR));
|
||||
fileBrowser->setText(QApplication::translate("QPrintWidget", "...", Q_NULLPTR));
|
||||
QPrintWidget->setWindowTitle(QApplication::translate("QPrintWidget", "Form", nullptr));
|
||||
printerGroup->setTitle(QApplication::translate("QPrintWidget", "Printer", nullptr));
|
||||
label->setText(QApplication::translate("QPrintWidget", "&Name:", nullptr));
|
||||
properties->setText(QApplication::translate("QPrintWidget", "P&roperties", nullptr));
|
||||
label_2->setText(QApplication::translate("QPrintWidget", "Location:", nullptr));
|
||||
preview->setText(QApplication::translate("QPrintWidget", "Preview", nullptr));
|
||||
label_3->setText(QApplication::translate("QPrintWidget", "Type:", nullptr));
|
||||
lOutput->setText(QApplication::translate("QPrintWidget", "Output &file:", nullptr));
|
||||
fileBrowser->setText(QApplication::translate("QPrintWidget", "...", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -209,18 +209,18 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *QSqlConnectionDialogUi)
|
||||
{
|
||||
QSqlConnectionDialogUi->setWindowTitle(QApplication::translate("QSqlConnectionDialogUi", "Connect...", Q_NULLPTR));
|
||||
connGroupBox->setTitle(QApplication::translate("QSqlConnectionDialogUi", "Connection settings", Q_NULLPTR));
|
||||
textLabel4->setText(QApplication::translate("QSqlConnectionDialogUi", "&Username:", Q_NULLPTR));
|
||||
textLabel2->setText(QApplication::translate("QSqlConnectionDialogUi", "D&river", Q_NULLPTR));
|
||||
portSpinBox->setSpecialValueText(QApplication::translate("QSqlConnectionDialogUi", "Default", Q_NULLPTR));
|
||||
textLabel3->setText(QApplication::translate("QSqlConnectionDialogUi", "Database Name:", Q_NULLPTR));
|
||||
textLabel5->setText(QApplication::translate("QSqlConnectionDialogUi", "&Hostname:", Q_NULLPTR));
|
||||
textLabel5_2->setText(QApplication::translate("QSqlConnectionDialogUi", "P&ort:", Q_NULLPTR));
|
||||
textLabel4_2->setText(QApplication::translate("QSqlConnectionDialogUi", "&Password:", Q_NULLPTR));
|
||||
dbCheckBox->setText(QApplication::translate("QSqlConnectionDialogUi", "Us&e predefined in-memory database", Q_NULLPTR));
|
||||
okButton->setText(QApplication::translate("QSqlConnectionDialogUi", "&OK", Q_NULLPTR));
|
||||
cancelButton->setText(QApplication::translate("QSqlConnectionDialogUi", "&Cancel", Q_NULLPTR));
|
||||
QSqlConnectionDialogUi->setWindowTitle(QApplication::translate("QSqlConnectionDialogUi", "Connect...", nullptr));
|
||||
connGroupBox->setTitle(QApplication::translate("QSqlConnectionDialogUi", "Connection settings", nullptr));
|
||||
textLabel4->setText(QApplication::translate("QSqlConnectionDialogUi", "&Username:", nullptr));
|
||||
textLabel2->setText(QApplication::translate("QSqlConnectionDialogUi", "D&river", nullptr));
|
||||
portSpinBox->setSpecialValueText(QApplication::translate("QSqlConnectionDialogUi", "Default", nullptr));
|
||||
textLabel3->setText(QApplication::translate("QSqlConnectionDialogUi", "Database Name:", nullptr));
|
||||
textLabel5->setText(QApplication::translate("QSqlConnectionDialogUi", "&Hostname:", nullptr));
|
||||
textLabel5_2->setText(QApplication::translate("QSqlConnectionDialogUi", "P&ort:", nullptr));
|
||||
textLabel4_2->setText(QApplication::translate("QSqlConnectionDialogUi", "&Password:", nullptr));
|
||||
dbCheckBox->setText(QApplication::translate("QSqlConnectionDialogUi", "Us&e predefined in-memory database", nullptr));
|
||||
okButton->setText(QApplication::translate("QSqlConnectionDialogUi", "&OK", nullptr));
|
||||
cancelButton->setText(QApplication::translate("QSqlConnectionDialogUi", "&Cancel", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *QtGradientDialog)
|
||||
{
|
||||
QtGradientDialog->setWindowTitle(QApplication::translate("QtGradientDialog", "Edit Gradient", Q_NULLPTR));
|
||||
QtGradientDialog->setWindowTitle(QApplication::translate("QtGradientDialog", "Edit Gradient", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -586,119 +586,119 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *QtGradientEditor)
|
||||
{
|
||||
QtGradientEditor->setWindowTitle(QApplication::translate("QtGradientEditor", "Form", Q_NULLPTR));
|
||||
QtGradientEditor->setWindowTitle(QApplication::translate("QtGradientEditor", "Form", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
gradientWidget->setToolTip(QApplication::translate("QtGradientEditor", "Gradient Editor", Q_NULLPTR));
|
||||
gradientWidget->setToolTip(QApplication::translate("QtGradientEditor", "Gradient Editor", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
gradientWidget->setWhatsThis(QApplication::translate("QtGradientEditor", "This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop.", Q_NULLPTR));
|
||||
gradientWidget->setWhatsThis(QApplication::translate("QtGradientEditor", "This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
label1->setText(QApplication::translate("QtGradientEditor", "1", Q_NULLPTR));
|
||||
label2->setText(QApplication::translate("QtGradientEditor", "2", Q_NULLPTR));
|
||||
label3->setText(QApplication::translate("QtGradientEditor", "3", Q_NULLPTR));
|
||||
label4->setText(QApplication::translate("QtGradientEditor", "4", Q_NULLPTR));
|
||||
label5->setText(QApplication::translate("QtGradientEditor", "5", Q_NULLPTR));
|
||||
label1->setText(QApplication::translate("QtGradientEditor", "1", nullptr));
|
||||
label2->setText(QApplication::translate("QtGradientEditor", "2", nullptr));
|
||||
label3->setText(QApplication::translate("QtGradientEditor", "3", nullptr));
|
||||
label4->setText(QApplication::translate("QtGradientEditor", "4", nullptr));
|
||||
label5->setText(QApplication::translate("QtGradientEditor", "5", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
gradientStopsWidget->setToolTip(QApplication::translate("QtGradientEditor", "Gradient Stops Editor", Q_NULLPTR));
|
||||
gradientStopsWidget->setToolTip(QApplication::translate("QtGradientEditor", "Gradient Stops Editor", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
gradientStopsWidget->setWhatsThis(QApplication::translate("QtGradientEditor", "This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions.", Q_NULLPTR));
|
||||
gradientStopsWidget->setWhatsThis(QApplication::translate("QtGradientEditor", "This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
zoomLabel->setText(QApplication::translate("QtGradientEditor", "Zoom", Q_NULLPTR));
|
||||
zoomLabel->setText(QApplication::translate("QtGradientEditor", "Zoom", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
zoomAllButton->setToolTip(QApplication::translate("QtGradientEditor", "Reset Zoom", Q_NULLPTR));
|
||||
zoomAllButton->setToolTip(QApplication::translate("QtGradientEditor", "Reset Zoom", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
zoomAllButton->setText(QApplication::translate("QtGradientEditor", "Reset Zoom", Q_NULLPTR));
|
||||
positionLabel->setText(QApplication::translate("QtGradientEditor", "Position", Q_NULLPTR));
|
||||
zoomAllButton->setText(QApplication::translate("QtGradientEditor", "Reset Zoom", nullptr));
|
||||
positionLabel->setText(QApplication::translate("QtGradientEditor", "Position", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
hLabel->setToolTip(QApplication::translate("QtGradientEditor", "Hue", Q_NULLPTR));
|
||||
hLabel->setToolTip(QApplication::translate("QtGradientEditor", "Hue", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
hLabel->setText(QApplication::translate("QtGradientEditor", "H", Q_NULLPTR));
|
||||
hLabel->setText(QApplication::translate("QtGradientEditor", "H", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
hueColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Hue", Q_NULLPTR));
|
||||
hueColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Hue", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
hueLabel->setText(QApplication::translate("QtGradientEditor", "Hue", Q_NULLPTR));
|
||||
hueLabel->setText(QApplication::translate("QtGradientEditor", "Hue", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
sLabel->setToolTip(QApplication::translate("QtGradientEditor", "Saturation", Q_NULLPTR));
|
||||
sLabel->setToolTip(QApplication::translate("QtGradientEditor", "Saturation", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
sLabel->setText(QApplication::translate("QtGradientEditor", "S", Q_NULLPTR));
|
||||
sLabel->setText(QApplication::translate("QtGradientEditor", "S", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
saturationColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Saturation", Q_NULLPTR));
|
||||
saturationColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Saturation", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
saturationLabel->setText(QApplication::translate("QtGradientEditor", "Sat", Q_NULLPTR));
|
||||
saturationLabel->setText(QApplication::translate("QtGradientEditor", "Sat", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
vLabel->setToolTip(QApplication::translate("QtGradientEditor", "Value", Q_NULLPTR));
|
||||
vLabel->setToolTip(QApplication::translate("QtGradientEditor", "Value", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
vLabel->setText(QApplication::translate("QtGradientEditor", "V", Q_NULLPTR));
|
||||
vLabel->setText(QApplication::translate("QtGradientEditor", "V", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
valueColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Value", Q_NULLPTR));
|
||||
valueColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Value", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
valueLabel->setText(QApplication::translate("QtGradientEditor", "Val", Q_NULLPTR));
|
||||
valueLabel->setText(QApplication::translate("QtGradientEditor", "Val", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
aLabel->setToolTip(QApplication::translate("QtGradientEditor", "Alpha", Q_NULLPTR));
|
||||
aLabel->setToolTip(QApplication::translate("QtGradientEditor", "Alpha", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
aLabel->setText(QApplication::translate("QtGradientEditor", "A", Q_NULLPTR));
|
||||
aLabel->setText(QApplication::translate("QtGradientEditor", "A", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
alphaColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Alpha", Q_NULLPTR));
|
||||
alphaColorLine->setToolTip(QApplication::translate("QtGradientEditor", "Alpha", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
alphaLabel->setText(QApplication::translate("QtGradientEditor", "Alpha", Q_NULLPTR));
|
||||
alphaLabel->setText(QApplication::translate("QtGradientEditor", "Alpha", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
typeComboBox->setToolTip(QApplication::translate("QtGradientEditor", "Type", Q_NULLPTR));
|
||||
typeComboBox->setToolTip(QApplication::translate("QtGradientEditor", "Type", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
spreadComboBox->setToolTip(QApplication::translate("QtGradientEditor", "Spread", Q_NULLPTR));
|
||||
spreadComboBox->setToolTip(QApplication::translate("QtGradientEditor", "Spread", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
colorLabel->setText(QApplication::translate("QtGradientEditor", "Color", Q_NULLPTR));
|
||||
colorLabel->setText(QApplication::translate("QtGradientEditor", "Color", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
colorButton->setToolTip(QApplication::translate("QtGradientEditor", "Current stop's color", Q_NULLPTR));
|
||||
colorButton->setToolTip(QApplication::translate("QtGradientEditor", "Current stop's color", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
colorButton->setText(QString());
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
hsvRadioButton->setToolTip(QApplication::translate("QtGradientEditor", "Show HSV specification", Q_NULLPTR));
|
||||
hsvRadioButton->setToolTip(QApplication::translate("QtGradientEditor", "Show HSV specification", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
hsvRadioButton->setText(QApplication::translate("QtGradientEditor", "HSV", Q_NULLPTR));
|
||||
hsvRadioButton->setText(QApplication::translate("QtGradientEditor", "HSV", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
rgbRadioButton->setToolTip(QApplication::translate("QtGradientEditor", "Show RGB specification", Q_NULLPTR));
|
||||
rgbRadioButton->setToolTip(QApplication::translate("QtGradientEditor", "Show RGB specification", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
rgbRadioButton->setText(QApplication::translate("QtGradientEditor", "RGB", Q_NULLPTR));
|
||||
rgbRadioButton->setText(QApplication::translate("QtGradientEditor", "RGB", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
positionSpinBox->setToolTip(QApplication::translate("QtGradientEditor", "Current stop's position", Q_NULLPTR));
|
||||
positionSpinBox->setToolTip(QApplication::translate("QtGradientEditor", "Current stop's position", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
zoomSpinBox->setSuffix(QApplication::translate("QtGradientEditor", "%", Q_NULLPTR));
|
||||
zoomSpinBox->setSuffix(QApplication::translate("QtGradientEditor", "%", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
zoomInButton->setToolTip(QApplication::translate("QtGradientEditor", "Zoom In", Q_NULLPTR));
|
||||
zoomInButton->setToolTip(QApplication::translate("QtGradientEditor", "Zoom In", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
zoomOutButton->setToolTip(QApplication::translate("QtGradientEditor", "Zoom Out", Q_NULLPTR));
|
||||
zoomOutButton->setToolTip(QApplication::translate("QtGradientEditor", "Zoom Out", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
detailsButton->setToolTip(QApplication::translate("QtGradientEditor", "Toggle details extension", Q_NULLPTR));
|
||||
detailsButton->setToolTip(QApplication::translate("QtGradientEditor", "Toggle details extension", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
detailsButton->setText(QApplication::translate("QtGradientEditor", ">", Q_NULLPTR));
|
||||
detailsButton->setText(QApplication::translate("QtGradientEditor", ">", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
linearButton->setToolTip(QApplication::translate("QtGradientEditor", "Linear Type", Q_NULLPTR));
|
||||
linearButton->setToolTip(QApplication::translate("QtGradientEditor", "Linear Type", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
linearButton->setText(QApplication::translate("QtGradientEditor", "...", Q_NULLPTR));
|
||||
linearButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
radialButton->setToolTip(QApplication::translate("QtGradientEditor", "Radial Type", Q_NULLPTR));
|
||||
radialButton->setToolTip(QApplication::translate("QtGradientEditor", "Radial Type", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
radialButton->setText(QApplication::translate("QtGradientEditor", "...", Q_NULLPTR));
|
||||
radialButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
conicalButton->setToolTip(QApplication::translate("QtGradientEditor", "Conical Type", Q_NULLPTR));
|
||||
conicalButton->setToolTip(QApplication::translate("QtGradientEditor", "Conical Type", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
conicalButton->setText(QApplication::translate("QtGradientEditor", "...", Q_NULLPTR));
|
||||
conicalButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
padButton->setToolTip(QApplication::translate("QtGradientEditor", "Pad Spread", Q_NULLPTR));
|
||||
padButton->setToolTip(QApplication::translate("QtGradientEditor", "Pad Spread", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
padButton->setText(QApplication::translate("QtGradientEditor", "...", Q_NULLPTR));
|
||||
padButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
repeatButton->setToolTip(QApplication::translate("QtGradientEditor", "Repeat Spread", Q_NULLPTR));
|
||||
repeatButton->setToolTip(QApplication::translate("QtGradientEditor", "Repeat Spread", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
repeatButton->setText(QApplication::translate("QtGradientEditor", "...", Q_NULLPTR));
|
||||
repeatButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
reflectButton->setToolTip(QApplication::translate("QtGradientEditor", "Reflect Spread", Q_NULLPTR));
|
||||
reflectButton->setToolTip(QApplication::translate("QtGradientEditor", "Reflect Spread", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
reflectButton->setText(QApplication::translate("QtGradientEditor", "...", Q_NULLPTR));
|
||||
reflectButton->setText(QApplication::translate("QtGradientEditor", "...", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -108,11 +108,11 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *QtGradientView)
|
||||
{
|
||||
QtGradientView->setWindowTitle(QApplication::translate("QtGradientView", "Gradient View", Q_NULLPTR));
|
||||
newButton->setText(QApplication::translate("QtGradientView", "New...", Q_NULLPTR));
|
||||
editButton->setText(QApplication::translate("QtGradientView", "Edit...", Q_NULLPTR));
|
||||
renameButton->setText(QApplication::translate("QtGradientView", "Rename", Q_NULLPTR));
|
||||
removeButton->setText(QApplication::translate("QtGradientView", "Remove", Q_NULLPTR));
|
||||
QtGradientView->setWindowTitle(QApplication::translate("QtGradientView", "Gradient View", nullptr));
|
||||
newButton->setText(QApplication::translate("QtGradientView", "New...", nullptr));
|
||||
editButton->setText(QApplication::translate("QtGradientView", "Edit...", nullptr));
|
||||
renameButton->setText(QApplication::translate("QtGradientView", "Rename", nullptr));
|
||||
removeButton->setText(QApplication::translate("QtGradientView", "Remove", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *QtGradientViewDialog)
|
||||
{
|
||||
QtGradientViewDialog->setWindowTitle(QApplication::translate("QtGradientViewDialog", "Select Gradient", Q_NULLPTR));
|
||||
QtGradientViewDialog->setWindowTitle(QApplication::translate("QtGradientViewDialog", "Select Gradient", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -143,25 +143,25 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *QtResourceEditorDialog)
|
||||
{
|
||||
QtResourceEditorDialog->setWindowTitle(QApplication::translate("QtResourceEditorDialog", "Dialog", Q_NULLPTR));
|
||||
QtResourceEditorDialog->setWindowTitle(QApplication::translate("QtResourceEditorDialog", "Dialog", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
newQrcButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "New File", Q_NULLPTR));
|
||||
newQrcButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "New File", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
newQrcButton->setText(QApplication::translate("QtResourceEditorDialog", "N", Q_NULLPTR));
|
||||
newQrcButton->setText(QApplication::translate("QtResourceEditorDialog", "N", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
removeQrcButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "Remove File", Q_NULLPTR));
|
||||
removeQrcButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "Remove File", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
removeQrcButton->setText(QApplication::translate("QtResourceEditorDialog", "R", Q_NULLPTR));
|
||||
importQrcButton->setText(QApplication::translate("QtResourceEditorDialog", "I", Q_NULLPTR));
|
||||
removeQrcButton->setText(QApplication::translate("QtResourceEditorDialog", "R", nullptr));
|
||||
importQrcButton->setText(QApplication::translate("QtResourceEditorDialog", "I", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
newResourceButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "New Resource", Q_NULLPTR));
|
||||
newResourceButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "New Resource", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
newResourceButton->setText(QApplication::translate("QtResourceEditorDialog", "N", Q_NULLPTR));
|
||||
addResourceButton->setText(QApplication::translate("QtResourceEditorDialog", "A", Q_NULLPTR));
|
||||
newResourceButton->setText(QApplication::translate("QtResourceEditorDialog", "N", nullptr));
|
||||
addResourceButton->setText(QApplication::translate("QtResourceEditorDialog", "A", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
removeResourceButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "Remove Resource or File", Q_NULLPTR));
|
||||
removeResourceButton->setToolTip(QApplication::translate("QtResourceEditorDialog", "Remove Resource or File", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
removeResourceButton->setText(QApplication::translate("QtResourceEditorDialog", "R", Q_NULLPTR));
|
||||
removeResourceButton->setText(QApplication::translate("QtResourceEditorDialog", "R", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -180,40 +180,40 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *QtToolBarDialog)
|
||||
{
|
||||
QtToolBarDialog->setWindowTitle(QApplication::translate("QtToolBarDialog", "Customize Toolbars", Q_NULLPTR));
|
||||
QtToolBarDialog->setWindowTitle(QApplication::translate("QtToolBarDialog", "Customize Toolbars", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem = actionTree->headerItem();
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("QtToolBarDialog", "1", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("QtToolBarDialog", "Actions", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("QtToolBarDialog", "Toolbars", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("QtToolBarDialog", "1", nullptr));
|
||||
label->setText(QApplication::translate("QtToolBarDialog", "Actions", nullptr));
|
||||
label_2->setText(QApplication::translate("QtToolBarDialog", "Toolbars", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
newButton->setToolTip(QApplication::translate("QtToolBarDialog", "Add new toolbar", Q_NULLPTR));
|
||||
newButton->setToolTip(QApplication::translate("QtToolBarDialog", "Add new toolbar", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
newButton->setText(QApplication::translate("QtToolBarDialog", "New", Q_NULLPTR));
|
||||
newButton->setText(QApplication::translate("QtToolBarDialog", "New", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
removeButton->setToolTip(QApplication::translate("QtToolBarDialog", "Remove selected toolbar", Q_NULLPTR));
|
||||
removeButton->setToolTip(QApplication::translate("QtToolBarDialog", "Remove selected toolbar", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
removeButton->setText(QApplication::translate("QtToolBarDialog", "Remove", Q_NULLPTR));
|
||||
removeButton->setText(QApplication::translate("QtToolBarDialog", "Remove", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
renameButton->setToolTip(QApplication::translate("QtToolBarDialog", "Rename toolbar", Q_NULLPTR));
|
||||
renameButton->setToolTip(QApplication::translate("QtToolBarDialog", "Rename toolbar", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
renameButton->setText(QApplication::translate("QtToolBarDialog", "Rename", Q_NULLPTR));
|
||||
renameButton->setText(QApplication::translate("QtToolBarDialog", "Rename", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
upButton->setToolTip(QApplication::translate("QtToolBarDialog", "Move action up", Q_NULLPTR));
|
||||
upButton->setToolTip(QApplication::translate("QtToolBarDialog", "Move action up", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
upButton->setText(QApplication::translate("QtToolBarDialog", "Up", Q_NULLPTR));
|
||||
upButton->setText(QApplication::translate("QtToolBarDialog", "Up", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
leftButton->setToolTip(QApplication::translate("QtToolBarDialog", "Remove action from toolbar", Q_NULLPTR));
|
||||
leftButton->setToolTip(QApplication::translate("QtToolBarDialog", "Remove action from toolbar", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
leftButton->setText(QApplication::translate("QtToolBarDialog", "<-", Q_NULLPTR));
|
||||
leftButton->setText(QApplication::translate("QtToolBarDialog", "<-", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
rightButton->setToolTip(QApplication::translate("QtToolBarDialog", "Add action to toolbar", Q_NULLPTR));
|
||||
rightButton->setToolTip(QApplication::translate("QtToolBarDialog", "Add action to toolbar", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
rightButton->setText(QApplication::translate("QtToolBarDialog", "->", Q_NULLPTR));
|
||||
rightButton->setText(QApplication::translate("QtToolBarDialog", "->", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
downButton->setToolTip(QApplication::translate("QtToolBarDialog", "Move action down", Q_NULLPTR));
|
||||
downButton->setToolTip(QApplication::translate("QtToolBarDialog", "Move action down", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
downButton->setText(QApplication::translate("QtToolBarDialog", "Down", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("QtToolBarDialog", "Current Toolbar Actions", Q_NULLPTR));
|
||||
downButton->setText(QApplication::translate("QtToolBarDialog", "Down", nullptr));
|
||||
label_3->setText(QApplication::translate("QtToolBarDialog", "Current Toolbar Actions", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -156,10 +156,10 @@ public:
|
|||
|
||||
void retranslateUi(QMainWindow *QueryWidget)
|
||||
{
|
||||
QueryWidget->setWindowTitle(QApplication::translate("QueryWidget", "Recipes XQuery Example", Q_NULLPTR));
|
||||
inputGroupBox->setTitle(QApplication::translate("QueryWidget", "Input Document", Q_NULLPTR));
|
||||
queryGroupBox->setTitle(QApplication::translate("QueryWidget", "Select your query:", Q_NULLPTR));
|
||||
outputGroupBox->setTitle(QApplication::translate("QueryWidget", "Output Document", Q_NULLPTR));
|
||||
QueryWidget->setWindowTitle(QApplication::translate("QueryWidget", "Recipes XQuery Example", nullptr));
|
||||
inputGroupBox->setTitle(QApplication::translate("QueryWidget", "Input Document", nullptr));
|
||||
queryGroupBox->setTitle(QApplication::translate("QueryWidget", "Select your query:", nullptr));
|
||||
outputGroupBox->setTitle(QApplication::translate("QueryWidget", "Output Document", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -223,22 +223,22 @@ public:
|
|||
|
||||
void retranslateUi(QMainWindow *RemoteControlClass)
|
||||
{
|
||||
RemoteControlClass->setWindowTitle(QApplication::translate("RemoteControlClass", "RemoteControl", Q_NULLPTR));
|
||||
actionQuit->setText(QApplication::translate("RemoteControlClass", "Quit", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("RemoteControlClass", "Start URL:", Q_NULLPTR));
|
||||
launchButton->setText(QApplication::translate("RemoteControlClass", "Launch Qt HelpViewer", Q_NULLPTR));
|
||||
actionGroupBox->setTitle(QApplication::translate("RemoteControlClass", "Actions", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("RemoteControlClass", "Search in Index:", Q_NULLPTR));
|
||||
RemoteControlClass->setWindowTitle(QApplication::translate("RemoteControlClass", "RemoteControl", nullptr));
|
||||
actionQuit->setText(QApplication::translate("RemoteControlClass", "Quit", nullptr));
|
||||
label->setText(QApplication::translate("RemoteControlClass", "Start URL:", nullptr));
|
||||
launchButton->setText(QApplication::translate("RemoteControlClass", "Launch Qt HelpViewer", nullptr));
|
||||
actionGroupBox->setTitle(QApplication::translate("RemoteControlClass", "Actions", nullptr));
|
||||
label_2->setText(QApplication::translate("RemoteControlClass", "Search in Index:", nullptr));
|
||||
indexButton->setText(QString());
|
||||
label_4->setText(QApplication::translate("RemoteControlClass", "Identifier:", Q_NULLPTR));
|
||||
label_4->setText(QApplication::translate("RemoteControlClass", "Identifier:", nullptr));
|
||||
identifierButton->setText(QString());
|
||||
label_3->setText(QApplication::translate("RemoteControlClass", "Show URL:", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("RemoteControlClass", "Show URL:", nullptr));
|
||||
urlButton->setText(QString());
|
||||
syncContentsButton->setText(QApplication::translate("RemoteControlClass", "Sync Contents", Q_NULLPTR));
|
||||
contentsCheckBox->setText(QApplication::translate("RemoteControlClass", "Show Contents", Q_NULLPTR));
|
||||
indexCheckBox->setText(QApplication::translate("RemoteControlClass", "Show Index", Q_NULLPTR));
|
||||
bookmarksCheckBox->setText(QApplication::translate("RemoteControlClass", "Show Bookmarks", Q_NULLPTR));
|
||||
menuFile->setTitle(QApplication::translate("RemoteControlClass", "File", Q_NULLPTR));
|
||||
syncContentsButton->setText(QApplication::translate("RemoteControlClass", "Sync Contents", nullptr));
|
||||
contentsCheckBox->setText(QApplication::translate("RemoteControlClass", "Show Contents", nullptr));
|
||||
indexCheckBox->setText(QApplication::translate("RemoteControlClass", "Show Index", nullptr));
|
||||
bookmarksCheckBox->setText(QApplication::translate("RemoteControlClass", "Show Bookmarks", nullptr));
|
||||
menuFile->setTitle(QApplication::translate("RemoteControlClass", "File", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -134,10 +134,10 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *SaveFormAsTemplate)
|
||||
{
|
||||
SaveFormAsTemplate->setWindowTitle(QApplication::translate("SaveFormAsTemplate", "Save Form As Template", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("SaveFormAsTemplate", "&Name:", Q_NULLPTR));
|
||||
SaveFormAsTemplate->setWindowTitle(QApplication::translate("SaveFormAsTemplate", "Save Form As Template", nullptr));
|
||||
label->setText(QApplication::translate("SaveFormAsTemplate", "&Name:", nullptr));
|
||||
templateNameEdit->setText(QString());
|
||||
label_2->setText(QApplication::translate("SaveFormAsTemplate", "&Category:", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("SaveFormAsTemplate", "&Category:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -185,13 +185,13 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *Dialog)
|
||||
{
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("Dialog", "Audio device:", Q_NULLPTR));
|
||||
label_6->setText(QApplication::translate("Dialog", "Audio effect:", Q_NULLPTR));
|
||||
crossFadeLabel->setText(QApplication::translate("Dialog", "Cross fade:", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("Dialog", "-10 Sec", Q_NULLPTR));
|
||||
label_5->setText(QApplication::translate("Dialog", "0", Q_NULLPTR));
|
||||
label_4->setText(QApplication::translate("Dialog", "10 Sec", Q_NULLPTR));
|
||||
Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", nullptr));
|
||||
label->setText(QApplication::translate("Dialog", "Audio device:", nullptr));
|
||||
label_6->setText(QApplication::translate("Dialog", "Audio effect:", nullptr));
|
||||
crossFadeLabel->setText(QApplication::translate("Dialog", "Cross fade:", nullptr));
|
||||
label_3->setText(QApplication::translate("Dialog", "-10 Sec", nullptr));
|
||||
label_5->setText(QApplication::translate("Dialog", "0", nullptr));
|
||||
label_4->setText(QApplication::translate("Dialog", "10 Sec", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -136,25 +136,25 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *SignalSlotDialogClass)
|
||||
{
|
||||
SignalSlotDialogClass->setWindowTitle(QApplication::translate("SignalSlotDialogClass", "Signals and slots", Q_NULLPTR));
|
||||
slotGroupBox->setTitle(QApplication::translate("SignalSlotDialogClass", "Slots", Q_NULLPTR));
|
||||
SignalSlotDialogClass->setWindowTitle(QApplication::translate("SignalSlotDialogClass", "Signals and slots", nullptr));
|
||||
slotGroupBox->setTitle(QApplication::translate("SignalSlotDialogClass", "Slots", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
addSlotButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Add", Q_NULLPTR));
|
||||
addSlotButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Add", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
addSlotButton->setText(QApplication::translate("SignalSlotDialogClass", "...", Q_NULLPTR));
|
||||
addSlotButton->setText(QApplication::translate("SignalSlotDialogClass", "...", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
removeSlotButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Delete", Q_NULLPTR));
|
||||
removeSlotButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Delete", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
removeSlotButton->setText(QApplication::translate("SignalSlotDialogClass", "...", Q_NULLPTR));
|
||||
signalGroupBox->setTitle(QApplication::translate("SignalSlotDialogClass", "Signals", Q_NULLPTR));
|
||||
removeSlotButton->setText(QApplication::translate("SignalSlotDialogClass", "...", nullptr));
|
||||
signalGroupBox->setTitle(QApplication::translate("SignalSlotDialogClass", "Signals", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
addSignalButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Add", Q_NULLPTR));
|
||||
addSignalButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Add", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
addSignalButton->setText(QApplication::translate("SignalSlotDialogClass", "...", Q_NULLPTR));
|
||||
addSignalButton->setText(QApplication::translate("SignalSlotDialogClass", "...", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
removeSignalButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Delete", Q_NULLPTR));
|
||||
removeSignalButton->setToolTip(QApplication::translate("SignalSlotDialogClass", "Delete", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
removeSignalButton->setText(QApplication::translate("SignalSlotDialogClass", "...", Q_NULLPTR));
|
||||
removeSignalButton->setText(QApplication::translate("SignalSlotDialogClass", "...", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -158,20 +158,20 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *Form)
|
||||
{
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Secure Socket Client", Q_NULLPTR));
|
||||
hostNameLabel->setText(QApplication::translate("Form", "Host name:", Q_NULLPTR));
|
||||
hostNameEdit->setText(QApplication::translate("Form", "imap.example.com", Q_NULLPTR));
|
||||
portLabel->setText(QApplication::translate("Form", "Port:", Q_NULLPTR));
|
||||
connectButton->setText(QApplication::translate("Form", "Connect to host", Q_NULLPTR));
|
||||
sessionBox->setTitle(QApplication::translate("Form", "Active session", Q_NULLPTR));
|
||||
cipherText->setText(QApplication::translate("Form", "Cryptographic Cipher:", Q_NULLPTR));
|
||||
cipherLabel->setText(QApplication::translate("Form", "<none>", Q_NULLPTR));
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Secure Socket Client", nullptr));
|
||||
hostNameLabel->setText(QApplication::translate("Form", "Host name:", nullptr));
|
||||
hostNameEdit->setText(QApplication::translate("Form", "imap.example.com", nullptr));
|
||||
portLabel->setText(QApplication::translate("Form", "Port:", nullptr));
|
||||
connectButton->setText(QApplication::translate("Form", "Connect to host", nullptr));
|
||||
sessionBox->setTitle(QApplication::translate("Form", "Active session", nullptr));
|
||||
cipherText->setText(QApplication::translate("Form", "Cryptographic Cipher:", nullptr));
|
||||
cipherLabel->setText(QApplication::translate("Form", "<none>", nullptr));
|
||||
sessionOutput->setHtml(QApplication::translate("Form", "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
||||
"p, li { white-space: pre-wrap; }\n"
|
||||
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
|
||||
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></p></body></html>", Q_NULLPTR));
|
||||
sessionInputLabel->setText(QApplication::translate("Form", "Input:", Q_NULLPTR));
|
||||
sendButton->setText(QApplication::translate("Form", "&Send", Q_NULLPTR));
|
||||
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></p></body></html>", nullptr));
|
||||
sessionInputLabel->setText(QApplication::translate("Form", "Input:", nullptr));
|
||||
sendButton->setText(QApplication::translate("Form", "&Send", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -89,14 +89,14 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *SslErrors)
|
||||
{
|
||||
SslErrors->setWindowTitle(QApplication::translate("SslErrors", "Unable To Validate The Connection", Q_NULLPTR));
|
||||
SslErrors->setWindowTitle(QApplication::translate("SslErrors", "Unable To Validate The Connection", nullptr));
|
||||
label->setText(QApplication::translate("SslErrors", "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
||||
"p, li { white-space: pre-wrap; }\n"
|
||||
"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;\">\n"
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600; color:#ff0000;\">Warning</span><span style=\" color:#ff0000;\">:</span><span style=\" color:#000000;\"> One or more errors with this connection prevent validating the authenticity of the host you are connecting to. Please review the following list of errors, and click </span><span style=\" color:#000000;\">Ignore</span><span style=\" color:#000000;\"> to continue, or </span><span style=\" color:#000000;\">Cancel</span><span style=\" color:#000000;\"> to abort the connection.</span></p></body></html>", Q_NULLPTR));
|
||||
certificateChainButton->setText(QApplication::translate("SslErrors", "View Certificate Chain", Q_NULLPTR));
|
||||
pushButton->setText(QApplication::translate("SslErrors", "Ignore", Q_NULLPTR));
|
||||
pushButton_2->setText(QApplication::translate("SslErrors", "Cancel", Q_NULLPTR));
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600; color:#ff0000;\">Warning</span><span style=\" color:#ff0000;\">:</span><span style=\" color:#000000;\"> One or more errors with this connection prevent validating the authenticity of the host you are connecting to. Please review the following list of errors, and click </span><span style=\" color:#000000;\">Ignore</span><span style=\" color:#000000;\"> to continue, or </span><span style=\" color:#000000;\">Cancel</span><span style=\" color:#000000;\"> to abort the connection.</span></p></body></html>", nullptr));
|
||||
certificateChainButton->setText(QApplication::translate("SslErrors", "View Certificate Chain", nullptr));
|
||||
pushButton->setText(QApplication::translate("SslErrors", "Ignore", nullptr));
|
||||
pushButton_2->setText(QApplication::translate("SslErrors", "Cancel", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -182,19 +182,19 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *Statistics)
|
||||
{
|
||||
Statistics->setWindowTitle(QApplication::translate("Statistics", "Statistics", Q_NULLPTR));
|
||||
closeBtn->setText(QApplication::translate("Statistics", "&Close", Q_NULLPTR));
|
||||
textLabel4->setText(QApplication::translate("Statistics", "Translation", Q_NULLPTR));
|
||||
textLabel5->setText(QApplication::translate("Statistics", "Source", Q_NULLPTR));
|
||||
untrWords->setText(QApplication::translate("Statistics", "0", Q_NULLPTR));
|
||||
trWords->setText(QApplication::translate("Statistics", "0", Q_NULLPTR));
|
||||
textLabel1->setText(QApplication::translate("Statistics", "Words:", Q_NULLPTR));
|
||||
trChars->setText(QApplication::translate("Statistics", "0", Q_NULLPTR));
|
||||
untrChars->setText(QApplication::translate("Statistics", "0", Q_NULLPTR));
|
||||
textLabel3->setText(QApplication::translate("Statistics", "Characters:", Q_NULLPTR));
|
||||
textLabel6->setText(QApplication::translate("Statistics", "Characters (with spaces):", Q_NULLPTR));
|
||||
trCharsSpc->setText(QApplication::translate("Statistics", "0", Q_NULLPTR));
|
||||
untrCharsSpc->setText(QApplication::translate("Statistics", "0", Q_NULLPTR));
|
||||
Statistics->setWindowTitle(QApplication::translate("Statistics", "Statistics", nullptr));
|
||||
closeBtn->setText(QApplication::translate("Statistics", "&Close", nullptr));
|
||||
textLabel4->setText(QApplication::translate("Statistics", "Translation", nullptr));
|
||||
textLabel5->setText(QApplication::translate("Statistics", "Source", nullptr));
|
||||
untrWords->setText(QApplication::translate("Statistics", "0", nullptr));
|
||||
trWords->setText(QApplication::translate("Statistics", "0", nullptr));
|
||||
textLabel1->setText(QApplication::translate("Statistics", "Words:", nullptr));
|
||||
trChars->setText(QApplication::translate("Statistics", "0", nullptr));
|
||||
untrChars->setText(QApplication::translate("Statistics", "0", nullptr));
|
||||
textLabel3->setText(QApplication::translate("Statistics", "Characters:", nullptr));
|
||||
textLabel6->setText(QApplication::translate("Statistics", "Characters (with spaces):", nullptr));
|
||||
trCharsSpc->setText(QApplication::translate("Statistics", "0", nullptr));
|
||||
untrCharsSpc->setText(QApplication::translate("Statistics", "0", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -217,25 +217,25 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *qdesigner_internal__Dialog)
|
||||
{
|
||||
qdesigner_internal__Dialog->setWindowTitle(QApplication::translate("qdesigner_internal::Dialog", "Dialog", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("qdesigner_internal::Dialog", "StringList", Q_NULLPTR));
|
||||
qdesigner_internal__Dialog->setWindowTitle(QApplication::translate("qdesigner_internal::Dialog", "Dialog", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("qdesigner_internal::Dialog", "StringList", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
newButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "New String", Q_NULLPTR));
|
||||
newButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "New String", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
newButton->setText(QApplication::translate("qdesigner_internal::Dialog", "&New", Q_NULLPTR));
|
||||
newButton->setText(QApplication::translate("qdesigner_internal::Dialog", "&New", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
deleteButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "Delete String", Q_NULLPTR));
|
||||
deleteButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "Delete String", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
deleteButton->setText(QApplication::translate("qdesigner_internal::Dialog", "&Delete", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("qdesigner_internal::Dialog", "&Value:", Q_NULLPTR));
|
||||
deleteButton->setText(QApplication::translate("qdesigner_internal::Dialog", "&Delete", nullptr));
|
||||
label->setText(QApplication::translate("qdesigner_internal::Dialog", "&Value:", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
upButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "Move String Up", Q_NULLPTR));
|
||||
upButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "Move String Up", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
upButton->setText(QApplication::translate("qdesigner_internal::Dialog", "Up", Q_NULLPTR));
|
||||
upButton->setText(QApplication::translate("qdesigner_internal::Dialog", "Up", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
downButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "Move String Down", Q_NULLPTR));
|
||||
downButton->setToolTip(QApplication::translate("qdesigner_internal::Dialog", "Move String Down", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
downButton->setText(QApplication::translate("qdesigner_internal::Dialog", "Down", Q_NULLPTR));
|
||||
downButton->setText(QApplication::translate("qdesigner_internal::Dialog", "Down", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -133,14 +133,14 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *StyleSheetEditor)
|
||||
{
|
||||
StyleSheetEditor->setWindowTitle(QApplication::translate("StyleSheetEditor", "Style Editor", Q_NULLPTR));
|
||||
styleSheetCombo->setItemText(0, QApplication::translate("StyleSheetEditor", "Default", Q_NULLPTR));
|
||||
styleSheetCombo->setItemText(1, QApplication::translate("StyleSheetEditor", "Coffee", Q_NULLPTR));
|
||||
styleSheetCombo->setItemText(2, QApplication::translate("StyleSheetEditor", "Pagefold", Q_NULLPTR));
|
||||
StyleSheetEditor->setWindowTitle(QApplication::translate("StyleSheetEditor", "Style Editor", nullptr));
|
||||
styleSheetCombo->setItemText(0, QApplication::translate("StyleSheetEditor", "Default", nullptr));
|
||||
styleSheetCombo->setItemText(1, QApplication::translate("StyleSheetEditor", "Coffee", nullptr));
|
||||
styleSheetCombo->setItemText(2, QApplication::translate("StyleSheetEditor", "Pagefold", nullptr));
|
||||
|
||||
label_7->setText(QApplication::translate("StyleSheetEditor", "Style:", Q_NULLPTR));
|
||||
applyButton->setText(QApplication::translate("StyleSheetEditor", "&Apply", Q_NULLPTR));
|
||||
label_8->setText(QApplication::translate("StyleSheetEditor", "Style Sheet:", Q_NULLPTR));
|
||||
label_7->setText(QApplication::translate("StyleSheetEditor", "Style:", nullptr));
|
||||
applyButton->setText(QApplication::translate("StyleSheetEditor", "&Apply", nullptr));
|
||||
label_8->setText(QApplication::translate("StyleSheetEditor", "Style Sheet:", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -183,14 +183,14 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *TabbedBrowser)
|
||||
{
|
||||
TabbedBrowser->setWindowTitle(QApplication::translate("TabbedBrowser", "TabbedBrowser", Q_NULLPTR));
|
||||
tab->setTabText(tab->indexOf(frontpage), QApplication::translate("TabbedBrowser", "Untitled", Q_NULLPTR));
|
||||
TabbedBrowser->setWindowTitle(QApplication::translate("TabbedBrowser", "TabbedBrowser", nullptr));
|
||||
tab->setTabText(tab->indexOf(frontpage), QApplication::translate("TabbedBrowser", "Untitled", nullptr));
|
||||
toolClose->setText(QString());
|
||||
toolPrevious->setText(QApplication::translate("TabbedBrowser", "Previous", Q_NULLPTR));
|
||||
toolNext->setText(QApplication::translate("TabbedBrowser", "Next", Q_NULLPTR));
|
||||
checkCase->setText(QApplication::translate("TabbedBrowser", "Case Sensitive", Q_NULLPTR));
|
||||
checkWholeWords->setText(QApplication::translate("TabbedBrowser", "Whole words", Q_NULLPTR));
|
||||
labelWrapped->setText(QApplication::translate("TabbedBrowser", "<img src=\":/qt-project.org/assistant/images/wrap.png\"> Search wrapped", Q_NULLPTR));
|
||||
toolPrevious->setText(QApplication::translate("TabbedBrowser", "Previous", nullptr));
|
||||
toolNext->setText(QApplication::translate("TabbedBrowser", "Next", nullptr));
|
||||
checkCase->setText(QApplication::translate("TabbedBrowser", "Case Sensitive", nullptr));
|
||||
checkWholeWords->setText(QApplication::translate("TabbedBrowser", "Whole words", nullptr));
|
||||
labelWrapped->setText(QApplication::translate("TabbedBrowser", "<img src=\":/qt-project.org/assistant/images/wrap.png\"> Search wrapped", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -313,54 +313,54 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *qdesigner_internal__TableWidgetEditor)
|
||||
{
|
||||
qdesigner_internal__TableWidgetEditor->setWindowTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Edit Table Widget", Q_NULLPTR));
|
||||
itemsBox->setTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Items", Q_NULLPTR));
|
||||
qdesigner_internal__TableWidgetEditor->setWindowTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Edit Table Widget", nullptr));
|
||||
itemsBox->setTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Items", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
tableWidget->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Items", Q_NULLPTR));
|
||||
tableWidget->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Items", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
label_3->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Icon", Q_NULLPTR));
|
||||
columnsBox->setTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Columns", Q_NULLPTR));
|
||||
label_3->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Icon", nullptr));
|
||||
columnsBox->setTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Columns", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
columnsListWidget->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Columns", Q_NULLPTR));
|
||||
columnsListWidget->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Columns", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
newColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New Column", Q_NULLPTR));
|
||||
newColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New Column", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
newColumnButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New", Q_NULLPTR));
|
||||
newColumnButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
deleteColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete Column", Q_NULLPTR));
|
||||
deleteColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete Column", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
deleteColumnButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete", Q_NULLPTR));
|
||||
deleteColumnButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveColumnUpButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Column Up", Q_NULLPTR));
|
||||
moveColumnUpButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Column Up", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveColumnUpButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "U", Q_NULLPTR));
|
||||
moveColumnUpButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "U", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveColumnDownButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Column Down", Q_NULLPTR));
|
||||
moveColumnDownButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Column Down", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveColumnDownButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "D", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Icon", Q_NULLPTR));
|
||||
rowsBox->setTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Rows", Q_NULLPTR));
|
||||
moveColumnDownButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "D", nullptr));
|
||||
label->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Icon", nullptr));
|
||||
rowsBox->setTitle(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Rows", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
rowsListWidget->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Rows", Q_NULLPTR));
|
||||
rowsListWidget->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Table Rows", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
newRowButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New Row", Q_NULLPTR));
|
||||
newRowButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New Row", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
newRowButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New", Q_NULLPTR));
|
||||
newRowButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "New", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
deleteRowButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete Row", Q_NULLPTR));
|
||||
deleteRowButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete Row", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
deleteRowButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete", Q_NULLPTR));
|
||||
deleteRowButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Delete", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveRowUpButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Row Up", Q_NULLPTR));
|
||||
moveRowUpButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Row Up", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveRowUpButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "U", Q_NULLPTR));
|
||||
moveRowUpButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "U", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveRowDownButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Row Down", Q_NULLPTR));
|
||||
moveRowDownButton->setToolTip(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Move Row Down", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveRowDownButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "D", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Icon", Q_NULLPTR));
|
||||
moveRowDownButton->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "D", nullptr));
|
||||
label_2->setText(QApplication::translate("qdesigner_internal::TableWidgetEditor", "Icon", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -150,15 +150,15 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *TetrixWindow)
|
||||
{
|
||||
TetrixWindow->setWindowTitle(QApplication::translate("TetrixWindow", "Tetrix", Q_NULLPTR));
|
||||
startButton->setText(QApplication::translate("TetrixWindow", "&Start", Q_NULLPTR));
|
||||
linesRemovedLabel->setText(QApplication::translate("TetrixWindow", "LINES REMOVED", Q_NULLPTR));
|
||||
pauseButton->setText(QApplication::translate("TetrixWindow", "&Pause", Q_NULLPTR));
|
||||
levelLabel->setText(QApplication::translate("TetrixWindow", "LEVEL", Q_NULLPTR));
|
||||
nextLabel->setText(QApplication::translate("TetrixWindow", "NEXT", Q_NULLPTR));
|
||||
scoreLabel->setText(QApplication::translate("TetrixWindow", "SCORE", Q_NULLPTR));
|
||||
TetrixWindow->setWindowTitle(QApplication::translate("TetrixWindow", "Tetrix", nullptr));
|
||||
startButton->setText(QApplication::translate("TetrixWindow", "&Start", nullptr));
|
||||
linesRemovedLabel->setText(QApplication::translate("TetrixWindow", "LINES REMOVED", nullptr));
|
||||
pauseButton->setText(QApplication::translate("TetrixWindow", "&Pause", nullptr));
|
||||
levelLabel->setText(QApplication::translate("TetrixWindow", "LEVEL", nullptr));
|
||||
nextLabel->setText(QApplication::translate("TetrixWindow", "NEXT", nullptr));
|
||||
scoreLabel->setText(QApplication::translate("TetrixWindow", "SCORE", nullptr));
|
||||
nextPieceLabel->setText(QString());
|
||||
quitButton->setText(QApplication::translate("TetrixWindow", "&Quit", Q_NULLPTR));
|
||||
quitButton->setText(QApplication::translate("TetrixWindow", "&Quit", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -96,9 +96,9 @@ public:
|
|||
|
||||
void retranslateUi(QWidget *Form)
|
||||
{
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Find Text", Q_NULLPTR));
|
||||
searchLabel->setText(QApplication::translate("Form", "&Keyword:", Q_NULLPTR));
|
||||
findButton->setText(QApplication::translate("Form", "&Find", Q_NULLPTR));
|
||||
Form->setWindowTitle(QApplication::translate("Form", "Find Text", nullptr));
|
||||
searchLabel->setText(QApplication::translate("Form", "&Keyword:", nullptr));
|
||||
findButton->setText(QApplication::translate("Form", "&Find", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -103,10 +103,10 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *TopicChooser)
|
||||
{
|
||||
TopicChooser->setWindowTitle(QApplication::translate("TopicChooser", "Choose Topic", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("TopicChooser", "&Topics", Q_NULLPTR));
|
||||
buttonDisplay->setText(QApplication::translate("TopicChooser", "&Display", Q_NULLPTR));
|
||||
buttonCancel->setText(QApplication::translate("TopicChooser", "&Close", Q_NULLPTR));
|
||||
TopicChooser->setWindowTitle(QApplication::translate("TopicChooser", "Choose Topic", nullptr));
|
||||
label->setText(QApplication::translate("TopicChooser", "&Topics", nullptr));
|
||||
buttonDisplay->setText(QApplication::translate("TopicChooser", "&Display", nullptr));
|
||||
buttonCancel->setText(QApplication::translate("TopicChooser", "&Close", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -208,34 +208,34 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *TranslateDialog)
|
||||
{
|
||||
TranslateDialog->setWindowTitle(QApplication::translate("TranslateDialog", "Qt Linguist", Q_NULLPTR));
|
||||
TranslateDialog->setWindowTitle(QApplication::translate("TranslateDialog", "Qt Linguist", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
TranslateDialog->setWhatsThis(QApplication::translate("TranslateDialog", "This window allows you to search for some text in the translation source file.", Q_NULLPTR));
|
||||
TranslateDialog->setWhatsThis(QApplication::translate("TranslateDialog", "This window allows you to search for some text in the translation source file.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
ledTranslateTo->setWhatsThis(QApplication::translate("TranslateDialog", "Type in the text to search for.", Q_NULLPTR));
|
||||
ledTranslateTo->setWhatsThis(QApplication::translate("TranslateDialog", "Type in the text to search for.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
findWhat->setText(QApplication::translate("TranslateDialog", "Find &source text:", Q_NULLPTR));
|
||||
translateTo->setText(QApplication::translate("TranslateDialog", "&Translate to:", Q_NULLPTR));
|
||||
findWhat->setText(QApplication::translate("TranslateDialog", "Find &source text:", nullptr));
|
||||
translateTo->setText(QApplication::translate("TranslateDialog", "&Translate to:", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
ledFindWhat->setWhatsThis(QApplication::translate("TranslateDialog", "Type in the text to search for.", Q_NULLPTR));
|
||||
ledFindWhat->setWhatsThis(QApplication::translate("TranslateDialog", "Type in the text to search for.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
groupBox->setTitle(QApplication::translate("TranslateDialog", "Search options", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("TranslateDialog", "Search options", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
ckMatchCase->setWhatsThis(QApplication::translate("TranslateDialog", "Texts such as 'TeX' and 'tex' are considered as different when checked.", Q_NULLPTR));
|
||||
ckMatchCase->setWhatsThis(QApplication::translate("TranslateDialog", "Texts such as 'TeX' and 'tex' are considered as different when checked.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
ckMatchCase->setText(QApplication::translate("TranslateDialog", "Match &case", Q_NULLPTR));
|
||||
ckMarkFinished->setText(QApplication::translate("TranslateDialog", "Mark new translation as &finished", Q_NULLPTR));
|
||||
ckMatchCase->setText(QApplication::translate("TranslateDialog", "Match &case", nullptr));
|
||||
ckMarkFinished->setText(QApplication::translate("TranslateDialog", "Mark new translation as &finished", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
findNxt->setWhatsThis(QApplication::translate("TranslateDialog", "Click here to find the next occurrence of the text you typed in.", Q_NULLPTR));
|
||||
findNxt->setWhatsThis(QApplication::translate("TranslateDialog", "Click here to find the next occurrence of the text you typed in.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
findNxt->setText(QApplication::translate("TranslateDialog", "Find Next", Q_NULLPTR));
|
||||
translate->setText(QApplication::translate("TranslateDialog", "Translate", Q_NULLPTR));
|
||||
translateAll->setText(QApplication::translate("TranslateDialog", "Translate All", Q_NULLPTR));
|
||||
findNxt->setText(QApplication::translate("TranslateDialog", "Find Next", nullptr));
|
||||
translate->setText(QApplication::translate("TranslateDialog", "Translate", nullptr));
|
||||
translateAll->setText(QApplication::translate("TranslateDialog", "Translate All", nullptr));
|
||||
#ifndef QT_NO_WHATSTHIS
|
||||
cancel->setWhatsThis(QApplication::translate("TranslateDialog", "Click here to close this window.", Q_NULLPTR));
|
||||
cancel->setWhatsThis(QApplication::translate("TranslateDialog", "Click here to close this window.", nullptr));
|
||||
#endif // QT_NO_WHATSTHIS
|
||||
cancel->setText(QApplication::translate("TranslateDialog", "Cancel", Q_NULLPTR));
|
||||
cancel->setText(QApplication::translate("TranslateDialog", "Cancel", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *Dialog)
|
||||
{
|
||||
Dialog->setWindowTitle(i18n("Dialog", Q_NULLPTR));
|
||||
Dialog->setWindowTitle(i18n("Dialog", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -102,10 +102,10 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *TranslationSettings)
|
||||
{
|
||||
TranslationSettings->setWindowTitle(QApplication::translate("TranslationSettings", "Qt Linguist - Translation file settings", Q_NULLPTR));
|
||||
groupBox->setTitle(QApplication::translate("TranslationSettings", "Target language", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("TranslationSettings", "Language", Q_NULLPTR));
|
||||
lblCountry->setText(QApplication::translate("TranslationSettings", "Country/Region", Q_NULLPTR));
|
||||
TranslationSettings->setWindowTitle(QApplication::translate("TranslationSettings", "Qt Linguist - Translation file settings", nullptr));
|
||||
groupBox->setTitle(QApplication::translate("TranslationSettings", "Target language", nullptr));
|
||||
label->setText(QApplication::translate("TranslationSettings", "Language", nullptr));
|
||||
lblCountry->setText(QApplication::translate("TranslationSettings", "Country/Region", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -278,63 +278,63 @@ public:
|
|||
|
||||
void retranslateUi(QDialog *qdesigner_internal__TreeWidgetEditor)
|
||||
{
|
||||
qdesigner_internal__TreeWidgetEditor->setWindowTitle(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Edit Tree Widget", Q_NULLPTR));
|
||||
itemsBox->setTitle(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Tree Items", Q_NULLPTR));
|
||||
qdesigner_internal__TreeWidgetEditor->setWindowTitle(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Edit Tree Widget", nullptr));
|
||||
itemsBox->setTitle(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Tree Items", nullptr));
|
||||
QTreeWidgetItem *___qtreewidgetitem = treeWidget->headerItem();
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("qdesigner_internal::TreeWidgetEditor", "1", Q_NULLPTR));
|
||||
___qtreewidgetitem->setText(0, QApplication::translate("qdesigner_internal::TreeWidgetEditor", "1", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
treeWidget->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Tree Items", Q_NULLPTR));
|
||||
treeWidget->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Tree Items", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
newItemButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New Item", Q_NULLPTR));
|
||||
newItemButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New Item", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
newItemButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "&New", Q_NULLPTR));
|
||||
newItemButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "&New", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
newSubItemButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New Subitem", Q_NULLPTR));
|
||||
newSubItemButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New Subitem", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
newSubItemButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New &Subitem", Q_NULLPTR));
|
||||
newSubItemButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New &Subitem", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
deleteItemButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Delete Item", Q_NULLPTR));
|
||||
deleteItemButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Delete Item", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
deleteItemButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "&Delete", Q_NULLPTR));
|
||||
deleteItemButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "&Delete", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveItemLeftButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Left (before Parent Item)", Q_NULLPTR));
|
||||
moveItemLeftButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Left (before Parent Item)", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveItemLeftButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "L", Q_NULLPTR));
|
||||
moveItemLeftButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "L", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveItemRightButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Right (as a First Subitem of the Next Sibling Item)", Q_NULLPTR));
|
||||
moveItemRightButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Right (as a First Subitem of the Next Sibling Item)", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveItemRightButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "R", Q_NULLPTR));
|
||||
moveItemRightButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "R", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveItemUpButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Up", Q_NULLPTR));
|
||||
moveItemUpButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Up", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveItemUpButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "U", Q_NULLPTR));
|
||||
moveItemUpButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "U", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveItemDownButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Down", Q_NULLPTR));
|
||||
moveItemDownButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Item Down", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveItemDownButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "D", Q_NULLPTR));
|
||||
label_2->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Icon", Q_NULLPTR));
|
||||
columnsBox->setTitle(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Columns", Q_NULLPTR));
|
||||
moveItemDownButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "D", nullptr));
|
||||
label_2->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Icon", nullptr));
|
||||
columnsBox->setTitle(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Columns", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
listWidget->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Tree Columns", Q_NULLPTR));
|
||||
listWidget->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Tree Columns", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
newColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New Column", Q_NULLPTR));
|
||||
newColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New Column", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
newColumnButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New", Q_NULLPTR));
|
||||
newColumnButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "New", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
deleteColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Delete Column", Q_NULLPTR));
|
||||
deleteColumnButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Delete Column", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
deleteColumnButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Delete", Q_NULLPTR));
|
||||
deleteColumnButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Delete", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveColumnUpButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Column Up", Q_NULLPTR));
|
||||
moveColumnUpButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Column Up", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveColumnUpButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "U", Q_NULLPTR));
|
||||
moveColumnUpButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "U", nullptr));
|
||||
#ifndef QT_NO_TOOLTIP
|
||||
moveColumnDownButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Column Down", Q_NULLPTR));
|
||||
moveColumnDownButton->setToolTip(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Move Column Down", nullptr));
|
||||
#endif // QT_NO_TOOLTIP
|
||||
moveColumnDownButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "D", Q_NULLPTR));
|
||||
label->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Icon", Q_NULLPTR));
|
||||
moveColumnDownButton->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "D", nullptr));
|
||||
label->setText(QApplication::translate("qdesigner_internal::TreeWidgetEditor", "Icon", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
};
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue