diff options
Diffstat (limited to 'Swift/QtUI')
-rw-r--r-- | Swift/QtUI/QtStrings.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Swift/QtUI/QtStrings.h b/Swift/QtUI/QtStrings.h new file mode 100644 index 0000000..cee6c14 --- /dev/null +++ b/Swift/QtUI/QtStrings.h @@ -0,0 +1,31 @@ +/* + * 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 >"); + |