Fix menu location in alert

This commit is contained in:
wise0n 2023-08-23 11:57:01 -04:00 committed by Jonathan White
parent 9f3b4dc5ea
commit 07232f04c0
2 changed files with 5 additions and 5 deletions

View File

@ -3440,10 +3440,6 @@ Supported extensions are: %1.</source>
<source>Unable to fetch favicon.</source> <source>Unable to fetch favicon.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message>
<source>You can enable the DuckDuckGo website icon service under Tools -&gt; Settings -&gt; Security</source>
<translation type="unfinished"></translation>
</message>
<message> <message>
<source>Existing icon selected.</source> <source>Existing icon selected.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -3485,6 +3481,10 @@ Supported extensions are: %1.</source>
<numerusform></numerusform> <numerusform></numerusform>
</translation> </translation>
</message> </message>
<message>
<source>You can enable the DuckDuckGo website icon service under Application Settings -&gt; Security</source>
<translation type="unfinished"></translation>
</message>
</context> </context>
<context> <context>
<name>EditWidgetProperties</name> <name>EditWidgetProperties</name>

View File

@ -220,7 +220,7 @@ void EditWidgetIcons::iconReceived(const QString& url, const QImage& icon)
QString message(tr("Unable to fetch favicon.")); QString message(tr("Unable to fetch favicon."));
if (!config()->get(Config::Security_IconDownloadFallback).toBool()) { if (!config()->get(Config::Security_IconDownloadFallback).toBool()) {
message.append("\n").append( message.append("\n").append(
tr("You can enable the DuckDuckGo website icon service under Tools -> Settings -> Security")); tr("You can enable the DuckDuckGo website icon service under Application Settings -> Security"));
} }
emit messageEditEntry(message, MessageWidget::Error); emit messageEditEntry(message, MessageWidget::Error);
return; return;