Fix menu location in alert

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

View File

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

View File

@ -222,7 +222,7 @@ void EditWidgetIcons::iconReceived(const QString& url, const QImage& icon)
QString message(tr("Unable to fetch favicon."));
if (!config()->get(Config::Security_IconDownloadFallback).toBool()) {
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);
return;