UI text: Fix "the the" in visible UI text, comments, and docs

Change-Id: I9b126ffa15b808fdb6f900a36453a9864248d35e
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Leena Miettinen
2023-11-13 11:05:44 +01:00
parent 48843d3f6b
commit 0ae211586e
9 changed files with 12 additions and 12 deletions

View File

@@ -50433,7 +50433,7 @@ Testfall &quot;%2&quot; wird nicht aufgezeichnet.</translation>
<translation>Maximale Post-Mortem-Wartezeit:</translation>
</message>
<message>
<source>Specifies how many seconds Squish should wait after the the first AUT process has exited.</source>
<source>Specifies how many seconds Squish should wait after the first AUT process has exited.</source>
<translation>Legt fest, wie viele Sekunden Squish wartet, nachdem der erste AUT-Prozess beendet ist.</translation>
</message>
<message>

View File

@@ -48829,7 +48829,7 @@ Refus d&apos;enregistrer le cas de test «&#xa0;%2&#xa0;».</translation>
<translation>Temps maximal d&apos;attente après la fin&#xa0;:</translation>
</message>
<message>
<source>Specifies how many seconds Squish should wait after the the first AUT process has exited.</source>
<source>Specifies how many seconds Squish should wait after the first AUT process has exited.</source>
<translation>Spécifie combien de secondes Squish doit attendre après la fin du premier processus de l&apos;AUT.</translation>
</message>
<message>

View File

@@ -41142,7 +41142,7 @@ Refusing to record test case &quot;%2&quot;.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Specifies how many seconds Squish should wait after the the first AUT process has exited.</source>
<source>Specifies how many seconds Squish should wait after the first AUT process has exited.</source>
<translation type="unfinished"></translation>
</message>
<message>

View File

@@ -140,7 +140,7 @@ void DockAreaTabBar::onCloseOtherTabsRequested(DockWidgetTab *sourceTab)
? 1
: 0;
closeTab(i);
// If the the dock widget blocks closing, i.e. if the flag CustomCloseHandling is set,
// If the dock widget blocks closing, i.e. if the flag CustomCloseHandling is set,
// and the dock widget is still open, then we do not need to correct the index.
if (currentTab->dockWidget()->isClosed())
i -= offset;

View File

@@ -14,7 +14,7 @@
IEditor instances are usually created by a corresponding IEditorFactory.
An IEditor instance provides an editor widget for a single IDocument via
the IContext::widget() method. If the the editor type supports it, multiple
the IContext::widget() method. If the editor type supports it, multiple
editors can be opened for the same document. Multiple IEditor instances
share ownership of the same IDocument instance in that case.

View File

@@ -249,7 +249,7 @@ void BaseTextFind::replace(const QString &before, const QString &after, FindFlag
setTextCursor(cursor);
}
// QTextCursor::insert moves all other QTextCursors that are the the insertion point forward.
// QTextCursor::insert moves all other QTextCursors that are the insertion point forward.
// We do not want that for the replace operation, because then e.g. the find scope would move when
// replacing a match at the start.
static void insertTextAfterSelection(const QString &text, QTextCursor &cursor)

View File

@@ -77,7 +77,7 @@ CreateSimulatorDialog::~CreateSimulatorDialog()
}
/*!
Returns the the simulator name entered by user.
Returns the simulator name entered by user.
*/
QString CreateSimulatorDialog::name() const
{
@@ -85,7 +85,7 @@ QString CreateSimulatorDialog::name() const
}
/*!
Returns the the simulator runtime (OS version) selected by user.
Returns the simulator runtime (OS version) selected by user.
Though the runtimes are filtered by the selected device type but the runtime camppatibility is
not checked. i.e. User can select the Runtime iOS 10.2 for iPhone 4 but the combination is not
possible as iOS 10.2 is not compatible with iPhone 4. In this case the command to create
@@ -97,7 +97,7 @@ RuntimeInfo CreateSimulatorDialog::runtime() const
}
/*!
Returns the the selected device type.
Returns the selected device type.
*/
DeviceTypeInfo CreateSimulatorDialog::deviceType() const
{

View File

@@ -218,7 +218,7 @@ QJsonObject qmlProjectTojson(const Utils::FilePath &projectFile)
QJsonObject mcuObject;
QJsonObject shaderToolObject;
// convert the the non-object props
// convert the non-object props
for (const QString &propName : rootNode->propertyNames()) {
QJsonObject *currentObj = &rootObject;
QString objKey = QString(propName).remove("QDS.", Qt::CaseInsensitive);
@@ -267,7 +267,7 @@ QJsonObject qmlProjectTojson(const Utils::FilePath &projectFile)
versionObject.insert("qt", "5");
}
// convert the the object props
// convert the object props
for (const QmlJS::SimpleReaderNode::Ptr &childNode : rootNode->children()) {
if (childNode->name().contains("files", Qt::CaseInsensitive)) {
PropsPair propsPair;

View File

@@ -160,7 +160,7 @@ SquishServerSettings::SquishServerSettings()
responseTimeout.setSuffix("s");
postMortemWaitTime.setLabel(Tr::tr("Maximum post-mortem wait time:"));
postMortemWaitTime.setToolTip(Tr::tr("Specifies how many seconds Squish should wait after the the "
postMortemWaitTime.setToolTip(Tr::tr("Specifies how many seconds Squish should wait after the "
"first AUT process has exited."));
postMortemWaitTime.setRange(1, 65535);
postMortemWaitTime.setDefaultValue(1500);