mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix(translation): match text to translation files part 2
Fixes various issues around the tree.
This commit is contained in:
parent
251beb5b70
commit
98976547fe
|
@ -138,7 +138,7 @@
|
|||
<item>
|
||||
<widget class="QGroupBox" name="publicGroup">
|
||||
<property name="title">
|
||||
<string>Public information</string>
|
||||
<string>Public Information</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
|
|
|
@ -107,7 +107,7 @@ void AboutForm::replaceVersions()
|
|||
bodyUI->gitVersion->setText(
|
||||
tr("Commit hash: %1").arg(createLink(commitLink, QString(GIT_VERSION))));
|
||||
|
||||
bodyUI->toxCoreVersion->setText(tr("Toxcore version: %1").arg(TOXCORE_VERSION));
|
||||
bodyUI->toxCoreVersion->setText(tr("toxcore version: %1").arg(TOXCORE_VERSION));
|
||||
bodyUI->qtVersion->setText(tr("Qt version: %1").arg(QT_VERSION_STR));
|
||||
|
||||
QString issueBody = QString("##### Brief Description\n\n"
|
||||
|
|
|
@ -360,7 +360,7 @@ p, li { white-space: pre-wrap; }
|
|||
</size>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Known issues</string>
|
||||
<string>Known Issues</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_8">
|
||||
<item>
|
||||
|
|
|
@ -83,7 +83,7 @@
|
|||
<item>
|
||||
<widget class="QPushButton" name="btnCopyDebug">
|
||||
<property name="text">
|
||||
<string>Copy debug log</string>
|
||||
<string>Copy Debug Log</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
<item>
|
||||
<widget class="QGroupBox" name="audioGroup">
|
||||
<property name="title">
|
||||
<string>Audio settings</string>
|
||||
<string>Audio Settings</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout_3">
|
||||
<property name="bottomMargin">
|
||||
|
@ -165,7 +165,7 @@
|
|||
<item>
|
||||
<widget class="QGroupBox" name="videoGroup">
|
||||
<property name="title">
|
||||
<string>Video settings</string>
|
||||
<string>Video Settings</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
|
|
|
@ -104,7 +104,7 @@
|
|||
<string>Start qTox on operating system startup (current profile).</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Auto-start</string>
|
||||
<string>Autostart</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -235,7 +235,7 @@ instead of closing entirely.</string>
|
|||
<enum>Qt::LeftToRight</enum>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Auto-away after (0 to disable):</string>
|
||||
<string>Auto away after (0 to disable):</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -303,14 +303,14 @@ instead of closing entirely.</string>
|
|||
<string comment="autoaccept cb tooltip">You can set this on a per-friend basis by right clicking individual friends.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Auto-accept files</string>
|
||||
<string>Autoaccept files</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
<widget class="QLabel" name="maxAutoAcceptSizeLabel">
|
||||
<property name="text">
|
||||
<string>Max auto-accept file size (0 for unlimited):</string>
|
||||
<string>Max autoaccept file size (0 to disable):</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
|
@ -123,7 +123,7 @@ If you are getting spammed with friend requests, change the NoSpam.</string>
|
|||
<string/>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Blacklist</string>
|
||||
<string>BlackList</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<item>
|
||||
|
|
|
@ -36,7 +36,7 @@ public:
|
|||
~UserInterfaceForm();
|
||||
QString getFormName() final
|
||||
{
|
||||
return tr("User interface");
|
||||
return tr("User Interface");
|
||||
}
|
||||
|
||||
private slots:
|
||||
|
|
|
@ -111,7 +111,7 @@
|
|||
<string>New text styling preference may not load until qTox restarts.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Text style format:</string>
|
||||
<string>Text Style format:</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
|
||||
|
|
|
@ -2602,7 +2602,7 @@ void Widget::retranslateUi()
|
|||
setStatusMessage(core->getStatusMessage());
|
||||
|
||||
filterDisplayName->setText(tr("By Name"));
|
||||
filterDisplayActivity->setText(tr("By activity"));
|
||||
filterDisplayActivity->setText(tr("By Activity"));
|
||||
filterAllAction->setText(tr("All"));
|
||||
filterOnlineAction->setText(tr("Online"));
|
||||
filterOfflineAction->setText(tr("Offline"));
|
||||
|
|
Loading…
Reference in New Issue
Block a user