mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 404279 - Suggest automatic filling of 'name' field after selecting "add a keyword for this search" from context menu, r=mak77 ui-r=beltzner
This commit is contained in:
parent
35dff56288
commit
28dca3265f
@ -5764,6 +5764,10 @@ function AddKeywordForSearchField()
|
|||||||
&& (node.form.enctype == "application/x-www-form-urlencoded" ||
|
&& (node.form.enctype == "application/x-www-form-urlencoded" ||
|
||||||
node.form.enctype == ""));
|
node.form.enctype == ""));
|
||||||
|
|
||||||
|
var title = gNavigatorBundle.getFormattedString("addKeywordTitleAutoFill",
|
||||||
|
[node.ownerDocument.title]);
|
||||||
|
var description = PlacesUIUtils.getDescriptionFromDocument(node.ownerDocument);
|
||||||
|
|
||||||
var el, type;
|
var el, type;
|
||||||
var formData = [];
|
var formData = [];
|
||||||
|
|
||||||
@ -5801,8 +5805,7 @@ function AddKeywordForSearchField()
|
|||||||
else
|
else
|
||||||
spec += "?" + formData.join("&");
|
spec += "?" + formData.join("&");
|
||||||
|
|
||||||
var description = PlacesUIUtils.getDescriptionFromDocument(node.ownerDocument);
|
PlacesUIUtils.showMinimalAddBookmarkUI(makeURI(spec), title, description, null,
|
||||||
PlacesUIUtils.showMinimalAddBookmarkUI(makeURI(spec), "", description, null,
|
|
||||||
null, null, "", postData, charset);
|
null, null, "", postData, charset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -208,3 +208,7 @@ privateBrowsingMessage=%S will save your current tabs for when you are done with
|
|||||||
privateBrowsingYesTitle=&Start Private Browsing
|
privateBrowsingYesTitle=&Start Private Browsing
|
||||||
privateBrowsingNoTitle=&Cancel
|
privateBrowsingNoTitle=&Cancel
|
||||||
privateBrowsingNeverAsk=&Do not show this message again
|
privateBrowsingNeverAsk=&Do not show this message again
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (addKeywordTitleAutoFill): %S will be replaced by the page's title
|
||||||
|
# Used as the bookmark name when saving a keyword for a search field.
|
||||||
|
addKeywordTitleAutoFill=Search %S
|
||||||
|
Loading…
Reference in New Issue
Block a user