Gui: Remove trailing spaces from translations

This commit is contained in:
Chris Hennes
2024-03-03 22:07:22 -06:00
parent fcddb21d0e
commit 918bcb7f5b
6 changed files with 8 additions and 8 deletions

View File

@@ -134,7 +134,7 @@
<string/>
</property>
<property name="text">
<string>Multi-key sequence delay: </string>
<string>Multi-key sequence delay:</string>
</property>
</widget>
</item>
@@ -153,9 +153,9 @@
</size>
</property>
<property name="toolTip">
<string>Time in milliseconds to wait for the next key stroke of the current key sequence.
<string>Time in milliseconds to wait for the next keystroke of the current key sequence.
For example, pressing 'F' twice in less than the time delay setting here will be
be treated as shorctcut key sequence 'F, F'.</string>
treated as shortcut key sequence 'F, F'.</string>
</property>
<property name="maximum">
<number>10000</number>

View File

@@ -159,7 +159,7 @@
</item>
<item>
<property name="text">
<string>5 m </string>
<string>5 m</string>
</property>
</item>
</widget>

View File

@@ -1084,7 +1084,7 @@ bool NotificationArea::confirmationRequired(Base::LogStyle level)
void NotificationArea::showConfirmationDialog(const QString& notifiername, const QString& message)
{
auto confirmMsg = QObject::tr("Notifier: ") + notifiername + QStringLiteral("\n\n") + message
auto confirmMsg = QObject::tr("Notifier:") + QStringLiteral(" ") + notifiername + QStringLiteral("\n\n") + message
+ QStringLiteral("\n\n")
+ QObject::tr("Do you want to skip confirmation of further critical message notifications "
"while loading the file?");

View File

@@ -60,7 +60,7 @@ lower right corner within opened files</string>
<item row="0" column="2">
<widget class="QLabel" name="labelCoordSize">
<property name="text">
<string>Relative size : </string>
<string>Relative size:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>

View File

@@ -81,7 +81,7 @@ horizontal space in Python console</string>
<item row="3" column="0">
<widget class="QLabel" name="labelProfilerInterval">
<property name="text">
<string>Python profiler interval (milliseconds): </string>
<string>Python profiler interval (milliseconds):</string>
</property>
</widget>
</item>

View File

@@ -51,7 +51,7 @@ Q_SIGNALS:
private:
const QString genericExpressionEditorTooltip = tr("Enter an expression... (=)");
const QString expressionEditorTooltipPrefix = tr("Expression: ");
const QString expressionEditorTooltipPrefix = tr("Expression:") + QLatin1String(" ");
};
#endif // QUANTITYSPINBOX_P_H