some polish

This commit is contained in:
Blue 2022-04-26 23:08:25 +03:00
parent e58213b294
commit 2fcc432aef
Signed by: blue
GPG Key ID: 9B203B252A63EE38
2 changed files with 3 additions and 2 deletions

View File

@ -220,7 +220,7 @@ void Application::notify(const QString& account, const Shared::Message& msg)
args << QString("mail-message"); //TODO should here better be unknown user icon? args << QString("mail-message"); //TODO should here better be unknown user icon?
} }
if (msg.getType() == Shared::Message::groupChat) { if (msg.getType() == Shared::Message::groupChat) {
args << msg.getFromResource() + " from " + name; args << msg.getFromResource() + tr(" from ") + name;
} else { } else {
args << name; args << name;
} }
@ -239,6 +239,7 @@ void Application::notify(const QString& account, const Shared::Message& msg)
args << QVariantMap({ args << QVariantMap({
{"desktop-entry", qApp->desktopFileName()}, {"desktop-entry", qApp->desktopFileName()},
{"category", QString("message")}, {"category", QString("message")},
{"urgency", 1},
// {"sound-file", "/path/to/macaw/squawk"}, // {"sound-file", "/path/to/macaw/squawk"},
{"sound-name", QString("message-new-instant")} {"sound-name", QString("message-new-instant")}
}); });

View File

@ -40,5 +40,5 @@ QString Shared::processMessageBody(const QString& msg)
{ {
QString processed = msg.toHtmlEscaped(); QString processed = msg.toHtmlEscaped();
processed.replace(urlReg, "<a href=\"\\1\">\\1</a>"); processed.replace(urlReg, "<a href=\"\\1\">\\1</a>");
return "<p style=\"white-space: pre-wrap;\">" + processed + "</p>"; return processed;
} }