summaryrefslogtreecommitdiffstats
path: root/tools/designer/src/lib
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-08-11 07:36:12 (GMT)
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-08-11 07:36:12 (GMT)
commit9ccaa95e7dbae96527b3ec502d4c604a4d691aec (patch)
treebc15acb7ecb8618314cf1a9fcc7c2f27ddd89701 /tools/designer/src/lib
parent20050c010038ab10c29b68833b2054b87dd59a33 (diff)
downloadQt-9ccaa95e7dbae96527b3ec502d4c604a4d691aec.zip
Qt-9ccaa95e7dbae96527b3ec502d4c604a4d691aec.tar.gz
Qt-9ccaa95e7dbae96527b3ec502d4c604a4d691aec.tar.bz2
Tr-Fixes in Qt Designer.
Diffstat (limited to 'tools/designer/src/lib')
-rw-r--r--tools/designer/src/lib/shared/pluginmanager.cpp2
-rw-r--r--tools/designer/src/lib/shared/previewmanager.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/tools/designer/src/lib/shared/pluginmanager.cpp b/tools/designer/src/lib/shared/pluginmanager.cpp
index b8c1c40..58d6c5c 100644
--- a/tools/designer/src/lib/shared/pluginmanager.cpp
+++ b/tools/designer/src/lib/shared/pluginmanager.cpp
@@ -331,7 +331,7 @@ static bool parsePropertySpecs(QXmlStreamReader &sr,
const bool noTr = notrS == QLatin1String("true") || notrS == QLatin1String("1");
QDesignerCustomWidgetSharedData::StringPropertyType v(typeStringToType(type, &typeOk), !noTr);
if (!typeOk) {
- *errorMessage = QDesignerPluginManager::tr("'%1' is not a valid string property specification!").arg(type);
+ *errorMessage = QDesignerPluginManager::tr("'%1' is not a valid string property specification.").arg(type);
return false;
}
rc->insert(name, v);
diff --git a/tools/designer/src/lib/shared/previewmanager.cpp b/tools/designer/src/lib/shared/previewmanager.cpp
index 890bfc1..81bf6fb 100644
--- a/tools/designer/src/lib/shared/previewmanager.cpp
+++ b/tools/designer/src/lib/shared/previewmanager.cpp
@@ -257,7 +257,9 @@ void PreviewDeviceSkin::slotPopupMenu()
connect(directionGroup, SIGNAL(triggered(QAction*)), this, SLOT(slotDirection(QAction*)));
directionGroup->setExclusive(true);
m_directionUpAction = createCheckableActionIntData(tr("&Portrait"), DirectionUp, m_direction, directionGroup, this);
+ //: Rotate form preview counter-clockwise
m_directionLeftAction = createCheckableActionIntData(tr("Landscape (&CCW)"), DirectionLeft, m_direction, directionGroup, this);
+ //: Rotate form preview clockwise
m_directionRightAction = createCheckableActionIntData(tr("&Landscape (CW)"), DirectionRight, m_direction, directionGroup, this);
m_closeAction = new QAction(tr("&Close"), this);
connect(m_closeAction, SIGNAL(triggered()), parentWidget(), SLOT(close()));