blob: 7edb923ef92918b6dce5f928a7702fd5ba8b4ab7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// The first line in this file should always be empty, its part of the test!!
class FindDialog : public QDialog
{
Q_OBJECT
public:
FindDialog(MainWindow *parent);
void reset();
};
FindDialog::FindDialog(MainWindow *parent)
: QDialog(parent)
{
QString trans = tr("Enter the text you want to find.");
trans = tr("Search reached end of the document");
trans = tr("Search reached start of the document");
trans = tr( "Text not found" );
}
void FindDialog::reset()
{
tr("%n item(s)", "merge from singular to plural form", 4);
tr("%n item(s)", "merge from a finished singular form to an unfinished plural form", 4);
}
|