diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2012-07-27 15:43:00 +0200 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2012-07-27 17:08:12 +0200 |
commit | bf980649d2f28266838b7e16e8828a2271d8a69c (patch) | |
tree | 0a9b6a0bebea42de04404f1d737fe75c885af6b8 /src/plugins/android/androiddevice.cpp | |
parent | 5635272b44a8a5a79fbb073180ca8aa8414d1dab (diff) | |
download | qt-creator-bf980649d2f28266838b7e16e8828a2271d8a69c.tar.gz |
tr()-Fixes for 2.6.
- ProjectExplorer::Profile should appear as 'Target' in the UI.
- Fix messagebox title capitalization
- Fix Q_DECLARE_TR_FUNCTIONS to contain fully qualified class
names, add where applicable to replace
QCoreApplication::translate().
- Introduce message utility function for the commonly used
'No tool chain set up for this profile' message to
ToolChainProfileInformation.
- Introduce message utility functions related to adding files
to version control to VcsManager to be shared by QmlJsEditor.
- Fix typos.
- Remove QObject::tr(), QCoreApplication::tr().
- Do not translate diagnostic console warnings of
QmlProfiler.
Change-Id: I6cee717a504796ef39f6eae58f552c5c8630adf3
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
Diffstat (limited to 'src/plugins/android/androiddevice.cpp')
-rw-r--r-- | src/plugins/android/androiddevice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/android/androiddevice.cpp b/src/plugins/android/androiddevice.cpp index 35ff2d1f4b..83ee64d940 100644 --- a/src/plugins/android/androiddevice.cpp +++ b/src/plugins/android/androiddevice.cpp @@ -44,7 +44,7 @@ AndroidDevice::AndroidDevice() IDevice::Hardware, Core::Id(Constants::ANDROID_DEVICE_ID)) { - setDisplayName(QCoreApplication::translate("ProjectExplorer::AndroidDevice", "Run on Android")); + setDisplayName(QCoreApplication::translate("Android::Internal::AndroidDevice", "Run on Android")); setDeviceState(DeviceReadyToUse); } @@ -60,7 +60,7 @@ IDevice::DeviceInfo AndroidDevice::deviceInformation() const QString AndroidDevice::displayType() const { - return QCoreApplication::translate("ProjectExplorer::AndroidDevice", "Android"); + return QCoreApplication::translate("Android::Internal::AndroidDevice", "Android"); } IDeviceWidget *AndroidDevice::createWidget() |