Fix bug 892286 - Cmd+L / Ctrl+L should be go to line. r=robcee

This commit is contained in:
Nick Fitzgerald 2013-08-01 10:55:39 +02:00
parent fdc6430862
commit 2c317e4266
4 changed files with 8 additions and 8 deletions

View File

@ -757,7 +757,7 @@ FilterView.prototype = {
this._tokenOperatorLabel.setAttribute("value",
L10N.getFormatStr("searchPanelToken", this._tokenSearchKey));
this._lineOperatorLabel.setAttribute("value",
L10N.getFormatStr("searchPanelLine", this._lineSearchKey));
L10N.getFormatStr("searchPanelGoToLine", this._lineSearchKey));
this._variableOperatorLabel.setAttribute("value",
L10N.getFormatStr("searchPanelVariable", this._variableSearchKey));

View File

@ -122,8 +122,8 @@
key="tokenSearchKey"
command="tokenSearchCommand"/>
<menuitem id="se-dbg-cMenu-findLine"
label="&debuggerUI.searchLine;"
accesskey="&debuggerUI.searchLine.key;"
label="&debuggerUI.searchGoToLine;"
accesskey="&debuggerUI.searchGoToLine.key;"
key="lineSearchKey"
command="lineSearchCommand"/>
<menuseparator/>
@ -226,7 +226,7 @@
modifiers="accel"
command="tokenSearchCommand"/>
<key id="lineSearchKey"
key="&debuggerUI.searchLine.key;"
key="&debuggerUI.searchGoToLine.key;"
modifiers="accel"
command="lineSearchCommand"/>
<key id="variableSearchKey"

View File

@ -88,8 +88,8 @@
<!-- LOCALIZATION NOTE (debuggerUI.searchLine): This is the text that appears
- in the source editor's context menu for the line search operation. -->
<!ENTITY debuggerUI.searchLine "Jump to line…">
<!ENTITY debuggerUI.searchLine.key "J">
<!ENTITY debuggerUI.searchGoToLine "Go to line…">
<!ENTITY debuggerUI.searchGoToLine.key "L">
<!-- LOCALIZATION NOTE (debuggerUI.searchVariable): This is the text that appears
- in the source editor's context menu for the variables search operation. -->

View File

@ -107,9 +107,9 @@ searchPanelFunction=Search for function definition (%S)
# filter panel popup for the token search operation.
searchPanelToken=Find in this file (%S)
# LOCALIZATION NOTE (searchPanelLine): This is the text that appears in the
# LOCALIZATION NOTE (searchPanelGoToLine): This is the text that appears in the
# filter panel popup for the line search operation.
searchPanelLine=Jump to line (%S)
searchPanelGoToLine=Go to line (%S)
# LOCALIZATION NOTE (searchPanelVariable): This is the text that appears in the
# filter panel popup for the variables search operation.