Fix translation nits

This commit is contained in:
Nicolas Werner 2021-11-04 01:10:41 +01:00
parent c98abc87ce
commit 373e124bf7
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
2 changed files with 2 additions and 2 deletions

View file

@ -950,7 +950,7 @@ UserSettingsPage::UserSettingsPage(QSharedPointer<UserSettings> settings, QWidge
tr("Change the appearance of user avatars in chats.\nOFF - square, ON - Circle.")); tr("Change the appearance of user avatars in chats.\nOFF - square, ON - Circle."));
boxWrap(tr("Use identicons"), boxWrap(tr("Use identicons"),
useIdenticon_, useIdenticon_,
tr("Display an identicon instead of a letter when a user has not set an avatar.")); tr("Display an identicon instead of a letter when no avatar is set."));
boxWrap(tr("Group's sidebar"), boxWrap(tr("Group's sidebar"),
groupViewToggle_, groupViewToggle_,
tr("Show a column containing groups and tags next to the room list.")); tr("Show a column containing groups and tags next to the room list."));

View file

@ -82,7 +82,7 @@ SelfVerificationStatus::setupCrosssigning(bool useSSSS, QString password, bool u
ssss = olm::client()->create_ssss_key(password.toStdString()); ssss = olm::client()->create_ssss_key(password.toStdString());
if (!ssss) { if (!ssss) {
nhlog::crypto()->critical("Failed to setup secure server side secret storage!"); nhlog::crypto()->critical("Failed to setup secure server side secret storage!");
emit setupFailed(tr("Failed to create keys secure server side secret storage!")); emit setupFailed(tr("Failed to create keys for secure server side secret storage!"));
return; return;
} }