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
26
27
28
29
30
31
32
33
|
/*
* Copyright (c) 2011 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
/*
* This file contains strings from the Qt library that need to be
* translated.
*
* This header is not included by our sources, but will be picked up
* by lupdate.
*/
#pragma once
QT_TRANSLATE_NOOP3("QApplication", "QT_LAYOUT_DIRECTION", "Translate this to LTR for left-to-right or RTL for right-to-left languages");
QT_TRANSLATE_NOOP("QWizard", "< &Back");
QT_TRANSLATE_NOOP("QWizard", "&Finish");
QT_TRANSLATE_NOOP("QWizard", "&Help");
QT_TRANSLATE_NOOP("QWizard", "Go Back");
QT_TRANSLATE_NOOP("QWizard", "Continue");
QT_TRANSLATE_NOOP("QWizard", "Commit");
QT_TRANSLATE_NOOP("QWizard", "Done");
QT_TRANSLATE_NOOP("QWizard", "Quit");
QT_TRANSLATE_NOOP("QWizard", "Help");
QT_TRANSLATE_NOOP("QWizard", "Cancel");
QT_TRANSLATE_NOOP("QWizard", "&Next");
QT_TRANSLATE_NOOP("QWizard", "&Next >");
QT_TRANSLATE_NOOP("QDialogButtonBox", "&Yes");
QT_TRANSLATE_NOOP("QDialogButtonBox", "&No");
|