forked from qt-creator/qt-creator
A few spelling/grammar fixes
This commit is contained in:
committed by
Oswald Buddenhagen
parent
849e8f35c3
commit
6b1a64d5c6
@@ -1280,7 +1280,7 @@ EditorManager::makeEditorWritable(IEditor *editor)
|
||||
switch (promptReadOnlyFile(fileName, versionControl, m_d->m_core->mainWindow(), true)) {
|
||||
case RO_OpenVCS:
|
||||
if (!versionControl->vcsOpen(fileName)) {
|
||||
QMessageBox::warning(m_d->m_core->mainWindow(), tr("Failed!"), tr("Could not open the file for edit with SCC."));
|
||||
QMessageBox::warning(m_d->m_core->mainWindow(), tr("Failed!"), tr("Could not open the file for editing with SCC."));
|
||||
return Failed;
|
||||
}
|
||||
file->checkPermissions();
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="labelGdbLocation">
|
||||
<property name="toolTip">
|
||||
<string>This is either a full abolute path leading to the gdb binary you intend to use or the name of a gdb binary that will be searched in your PATH.</string>
|
||||
<string>This is either a full absolute path leading to the gdb binary you intend to use or the name of a gdb binary that will be searched in your PATH.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Gdb location:</string>
|
||||
|
||||
@@ -667,7 +667,7 @@ void FormEditorW::print()
|
||||
QString errorMessage;
|
||||
const QPixmap pixmap = m_fwm->createPreviewPixmap(&errorMessage);
|
||||
if (pixmap.isNull()) {
|
||||
critical(tr("The image could not be create: %1").arg(errorMessage));
|
||||
critical(tr("The image could not be created: %1").arg(errorMessage));
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text" >
|
||||
<string>Edit</string>
|
||||
<string>Edit...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@@ -72,12 +72,12 @@
|
||||
<item>
|
||||
<widget class="QLabel" name="label" >
|
||||
<property name="text" >
|
||||
<string>Refresh Intervall:</string>
|
||||
<string>Refresh Interval:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QSpinBox" name="refreshIntervall" >
|
||||
<widget class="QSpinBox" name="refreshInterval" >
|
||||
<property name="frame" >
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
||||
@@ -699,7 +699,7 @@ void BookmarkManager::removeBookmarkItem(QTreeView *treeView, const QModelIndex&
|
||||
if (data == QLatin1String("Folder") && item->rowCount() > 0) {
|
||||
int value = QMessageBox::question(treeView, tr("Remove"),
|
||||
tr("You are going to delete a Folder which will also<br>"
|
||||
"remove its content. Are you sure to continue?"),
|
||||
"remove its content. Are you sure you would like to continue?"),
|
||||
QMessageBox::Yes | QMessageBox::Cancel, QMessageBox::Cancel);
|
||||
|
||||
if (value == QMessageBox::Cancel)
|
||||
|
||||
Reference in New Issue
Block a user