forked from qt-creator/qt-creator
tr()-Fixes in QNX plugin.
Fix capitalization of message box titles, fix some message to be in line with QtSupport. Change-Id: I6ff2b930fa8e10ef164588d76ff233e1e57ae63f Reviewed-by: Tobias Nätterlund <tobias.naetterlund@kdab.com> Reviewed-by: Mehdi Fekari <mfekari@rim.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
@@ -472,7 +472,7 @@ void BarDescriptorEditorWidget::appendSplashScreenDelayed(const QString &splashS
|
||||
|
||||
void BarDescriptorEditorWidget::browseForSplashScreen()
|
||||
{
|
||||
const QString fileName = QFileDialog::getOpenFileName(this, tr("Select splash screen"), QString(), tr("Images (*.jpg *.png)"));
|
||||
const QString fileName = QFileDialog::getOpenFileName(this, tr("Select Splash Screen"), QString(), tr("Images (*.jpg *.png)"));
|
||||
if (fileName.isEmpty())
|
||||
return;
|
||||
|
||||
@@ -622,7 +622,7 @@ BarDescriptorEditor *BarDescriptorEditorWidget::createEditor()
|
||||
|
||||
void BarDescriptorEditorWidget::addNewAsset()
|
||||
{
|
||||
const QString fileName = QFileDialog::getOpenFileName(this, tr("Select file to add"));
|
||||
const QString fileName = QFileDialog::getOpenFileName(this, tr("Select File to Add"));
|
||||
if (fileName.isEmpty())
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user