mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
Some wording improvements
This commit is contained in:
parent
c3505d0939
commit
d36c471f4f
@ -220,8 +220,8 @@ fallbackOnTox1:
|
|||||||
#if TOX1_SILENT_FALLBACK
|
#if TOX1_SILENT_FALLBACK
|
||||||
toxIdStr = queryTox1(record, silent);
|
toxIdStr = queryTox1(record, silent);
|
||||||
#elif TOX1_ASK_FALLBACK
|
#elif TOX1_ASK_FALLBACK
|
||||||
QMessageBox::StandardButton btn = QMessageBox::warning(nullptr, "qTox", tr("qTox needs to use the old tox1 protocol.\n\
|
QMessageBox::StandardButton btn = QMessageBox::warning(nullptr, "qTox", tr("It appears that qTox has to use the old tox1 protocol.\n\
|
||||||
But tox1 is insecure and doesn't protect metadata. Should we use it anyway ?"), QMessageBox::Ok|QMessageBox::No, QMessageBox::No);
|
Unfortunately tox1 is not secure. Should it be used anyway?"), QMessageBox::Ok|QMessageBox::No, QMessageBox::No);
|
||||||
if (btn == QMessageBox::Ok)
|
if (btn == QMessageBox::Ok)
|
||||||
queryTox1(record, silent);
|
queryTox1(record, silent);
|
||||||
#endif
|
#endif
|
||||||
@ -264,8 +264,8 @@ ToxID ToxDNS::resolveToxAddress(const QString &address, bool silent)
|
|||||||
#if TOX1_SILENT_FALLBACK
|
#if TOX1_SILENT_FALLBACK
|
||||||
toxId = ToxID::fromString(queryTox1(address, silent));
|
toxId = ToxID::fromString(queryTox1(address, silent));
|
||||||
#elif TOX1_ASK_FALLBACK
|
#elif TOX1_ASK_FALLBACK
|
||||||
QMessageBox::StandardButton btn = QMessageBox::warning(nullptr, "qTox", tr("qTox needs to use the old tox1 protocol.\n\
|
QMessageBox::StandardButton btn = QMessageBox::warning(nullptr, "qTox", tr("It appears that qTox has to use the old tox1 protocol.\n\
|
||||||
But tox1 is insecure and doesn't protect metadata. Should we use it anyway ?"), QMessageBox::Ok|QMessageBox::No, QMessageBox::No);
|
Unfortunately tox1 is not secure. Should it be used anyway?"), QMessageBox::Ok|QMessageBox::No, QMessageBox::No);
|
||||||
if (btn == QMessageBox::Ok)
|
if (btn == QMessageBox::Ok)
|
||||||
toxId = ToxID::fromString(queryTox1(address, silent));
|
toxId = ToxID::fromString(queryTox1(address, silent));
|
||||||
#else
|
#else
|
||||||
|
@ -43,8 +43,11 @@
|
|||||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="cbTypingNotification">
|
<widget class="QCheckBox" name="cbTypingNotification">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string extracomment="Your friends will be able to see when you are typing."/>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Typing Notification</string>
|
<string>Send Typing Notifications</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user