forked from qt-creator/qt-creator
GUI style fixes: spaces before ellipses and excess ellipses
This commit is contained in:
@@ -819,7 +819,7 @@ FileManager::ReadOnlyAction
|
||||
|
||||
QPushButton *saveAsButton = 0;
|
||||
if (displaySaveAsButton)
|
||||
saveAsButton = msgBox.addButton(tr("Save as ..."), QMessageBox::ActionRole);
|
||||
saveAsButton = msgBox.addButton(tr("Save as..."), QMessageBox::ActionRole);
|
||||
|
||||
msgBox.setDefaultButton(vcsButton ? vcsButton : makeWritableButton);
|
||||
msgBox.exec();
|
||||
|
@@ -1522,7 +1522,7 @@ private:
|
||||
: CppQuickFixOperation(state, priority)
|
||||
, binaryAST(binaryAST)
|
||||
{
|
||||
setDescription(QApplication::translate("CppTools::QuickFix", "Add local Declaration"));
|
||||
setDescription(QApplication::translate("CppTools::QuickFix", "Add Local Declaration"));
|
||||
}
|
||||
|
||||
virtual void performChanges(CppRefactoringFile *currentFile, CppRefactoringChanges *)
|
||||
@@ -1612,7 +1612,7 @@ private:
|
||||
, m_name(newName)
|
||||
{
|
||||
setDescription(QApplication::translate("CppTools::QuickFix",
|
||||
"Convert to Camel Case ..."));
|
||||
"Convert to Camel Case"));
|
||||
}
|
||||
|
||||
virtual void performChanges(CppRefactoringFile *, CppRefactoringChanges *)
|
||||
|
@@ -229,7 +229,7 @@ void QmlProfilerTool::initialize(ExtensionSystem::IPlugin * /*plugin*/)
|
||||
Core::ActionContainer *manalyzer = am->actionContainer(Analyzer::Constants::M_DEBUG_ANALYZER);
|
||||
const Core::Context globalcontext(Core::Constants::C_GLOBAL);
|
||||
|
||||
d->m_attachAction = new QAction(tr("Attach ..."), manalyzer);
|
||||
d->m_attachAction = new QAction(tr("Attach..."), manalyzer);
|
||||
Core::Command *command = am->registerAction(d->m_attachAction,
|
||||
Constants::ATTACH, globalcontext);
|
||||
command->setAttribute(Core::Command::CA_UpdateText);
|
||||
|
@@ -102,7 +102,7 @@
|
||||
<item>
|
||||
<widget class="QPushButton" name="addIconButton">
|
||||
<property name="text">
|
||||
<string>Add Launcher Icon ...</string>
|
||||
<string>Add Launcher Icon...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@@ -397,7 +397,7 @@ void MaemoDeviceConfigurationsSettingsWidget::finishDeployment()
|
||||
{
|
||||
m_keyDeployer->stopDeployment();
|
||||
m_ui->deployKeyButton->disconnect();
|
||||
m_ui->deployKeyButton->setText(tr("Deploy Public Key ..."));
|
||||
m_ui->deployKeyButton->setText(tr("&Deploy Public Key..."));
|
||||
connect(m_ui->deployKeyButton, SIGNAL(clicked()), this, SLOT(deployKey()));
|
||||
}
|
||||
|
||||
|
@@ -415,7 +415,7 @@
|
||||
<string>Click here if you do not have an SSH key yet.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>&Generate SSH Key ...</string>
|
||||
<string>&Generate SSH Key...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -431,7 +431,7 @@
|
||||
<string>This will enable you to log into the device without a password.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>&Deploy Public Key ...</string>
|
||||
<string>&Deploy Public Key...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -447,7 +447,7 @@
|
||||
<string>Click here to see which processes are running on the device.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Remote Processes ...</string>
|
||||
<string>Remote Processes...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
Reference in New Issue
Block a user