author | Ricardo Palomares <rpmdisguise-otros@yahoo.es> |
Mon, 06 Jan 2014 09:58:05 -0500 | |
changeset 162232 | cc593f2cf2cb5ce056dd6752c19dceeda3e2a6d9 |
parent 162231 | 5b19ca07781b5cbede4974f4fe46431d47121919 |
child 162233 | d73cb462dbed66086367aee8097913e236475fe5 |
push id | 25941 |
push user | kwierso@gmail.com |
push date | Tue, 07 Jan 2014 01:20:54 +0000 |
treeherder | mozilla-central@ce917d3dd7c8 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | fitzgen |
bugs | 918017 |
milestone | 29.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
browser/devtools/debugger/debugger.xul | file | annotate | diff | comparison | revisions | |
browser/locales/en-US/chrome/browser/devtools/debugger.dtd | file | annotate | diff | comparison | revisions |
--- a/browser/devtools/debugger/debugger.xul +++ b/browser/devtools/debugger/debugger.xul @@ -113,106 +113,106 @@ command="addWatchExpressionCommand"/> <menuseparator/> <menuitem id="cMenu_copy"/> <menuseparator/> <menuitem id="cMenu_selectAll"/> <menuseparator/> <menuitem id="se-dbg-cMenu-findFile" label="&debuggerUI.searchFile;" - accesskey="&debuggerUI.searchFile.key;" + accesskey="&debuggerUI.searchFile.accesskey;" key="fileSearchKey" command="fileSearchCommand"/> <menuitem id="se-dbg-cMenu-findGlobal" label="&debuggerUI.searchGlobal;" - accesskey="&debuggerUI.searchGlobal.key;" + accesskey="&debuggerUI.searchGlobal.accesskey;" key="globalSearchKey" command="globalSearchCommand"/> <menuitem id="se-dbg-cMenu-findFunction" label="&debuggerUI.searchFunction;" - accesskey="&debuggerUI.searchFunction.key;" + accesskey="&debuggerUI.searchFunction.accesskey;" key="functionSearchKey" command="functionSearchCommand"/> <menuseparator/> <menuitem id="se-dbg-cMenu-findToken" label="&debuggerUI.searchToken;" - accesskey="&debuggerUI.searchToken.key;" + accesskey="&debuggerUI.searchToken.accesskey;" key="tokenSearchKey" command="tokenSearchCommand"/> <menuitem id="se-dbg-cMenu-findLine" label="&debuggerUI.searchGoToLine;" - accesskey="&debuggerUI.searchGoToLine.key;" + accesskey="&debuggerUI.searchGoToLine.accesskey;" key="lineSearchKey" command="lineSearchCommand"/> <menuseparator/> <menuitem id="se-dbg-cMenu-findVariable" label="&debuggerUI.searchVariable;" - accesskey="&debuggerUI.searchVariable.key;" + accesskey="&debuggerUI.searchVariable.accesskey;" key="variableSearchKey" command="variableSearchCommand"/> <menuitem id="se-dbg-cMenu-focusVariables" label="&debuggerUI.focusVariables;" - accesskey="&debuggerUI.focusVariables.key;" + accesskey="&debuggerUI.focusVariables.accesskey;" key="variablesFocusKey" command="variablesFocusCommand"/> <menuitem id="se-dbg-cMenu-prettyPrint" label="&debuggerUI.sources.prettyPrint;" command="prettyPrintCommand"/> </menupopup> <menupopup id="debuggerWatchExpressionsContextMenu"> <menuitem id="add-watch-expression" label="&debuggerUI.addWatch;" - accesskey="&debuggerUI.addWatch.key;" + accesskey="&debuggerUI.addWatch.accesskey;" key="addWatchExpressionKey" command="addWatchExpressionCommand"/> <menuitem id="removeAll-watch-expression" label="&debuggerUI.removeAllWatch;" - accesskey="&debuggerUI.removeAllWatch.key;" + accesskey="&debuggerUI.removeAllWatch.accesskey;" key="removeAllWatchExpressionsKey" command="removeAllWatchExpressionsCommand"/> </menupopup> <menupopup id="debuggerPrefsContextMenu" position="before_end" onpopupshowing="DebuggerView.Options._onPopupShowing()" onpopuphiding="DebuggerView.Options._onPopupHiding()" onpopuphidden="DebuggerView.Options._onPopupHidden()"> <menuitem id="auto-pretty-print" type="checkbox" label="&debuggerUI.autoPrettyPrint;" accesskey="&debuggerUI.autoPrettyPrint.key;" command="toggleAutoPrettyPrint"/> <menuitem id="pause-on-exceptions" type="checkbox" label="&debuggerUI.pauseExceptions;" - accesskey="&debuggerUI.pauseExceptions.key;" + accesskey="&debuggerUI.pauseExceptions.accesskey;" command="togglePauseOnExceptions"/> <menuitem id="ignore-caught-exceptions" type="checkbox" label="&debuggerUI.ignoreCaughtExceptions;" - accesskey="&debuggerUI.ignoreCaughtExceptions.key;" + accesskey="&debuggerUI.ignoreCaughtExceptions.accesskey;" command="toggleIgnoreCaughtExceptions"/> <menuitem id="show-panes-on-startup" type="checkbox" label="&debuggerUI.showPanesOnInit;" - accesskey="&debuggerUI.showPanesOnInit.key;" + accesskey="&debuggerUI.showPanesOnInit.accesskey;" command="toggleShowPanesOnStartup"/> <menuitem id="show-vars-only-enum" type="checkbox" label="&debuggerUI.showOnlyEnum;" - accesskey="&debuggerUI.showOnlyEnum.key;" + accesskey="&debuggerUI.showOnlyEnum.accesskey;" command="toggleShowOnlyEnum"/> <menuitem id="show-vars-filter-box" type="checkbox" label="&debuggerUI.showVarsFilter;" - accesskey="&debuggerUI.showVarsFilter.key;" + accesskey="&debuggerUI.showVarsFilter.accesskey;" command="toggleShowVariablesFilterBox"/> <menuitem id="show-original-source" type="checkbox" label="&debuggerUI.showOriginalSource;" - accesskey="&debuggerUI.showOriginalSource.key;" + accesskey="&debuggerUI.showOriginalSource.accesskey;" command="toggleShowOriginalSource"/> </menupopup> </popupset> <keyset id="debuggerKeys"> <key id="nextSourceKey" keycode="VK_DOWN" modifiers="accel alt"
--- a/browser/locales/en-US/chrome/browser/devtools/debugger.dtd +++ b/browser/locales/en-US/chrome/browser/devtools/debugger.dtd @@ -63,95 +63,102 @@ <!ENTITY debuggerUI.clearButton "Clear"> <!-- LOCALIZATION NOTE (debuggerUI.clearButton.tooltip): This is the tooltip for - the button that clears the collected tracing data in the tracing tab. --> <!ENTITY debuggerUI.clearButton.tooltip "Clear the collected traces"> <!-- LOCALIZATION NOTE (debuggerUI.pauseExceptions): This is the label for the - checkbox that toggles pausing on exceptions. --> -<!ENTITY debuggerUI.pauseExceptions "Pause on exceptions"> -<!ENTITY debuggerUI.pauseExceptions.key "E"> +<!ENTITY debuggerUI.pauseExceptions "Pause on exceptions"> +<!ENTITY debuggerUI.pauseExceptions.accesskey "E"> <!-- LOCALIZATION NOTE (debuggerUI.ignoreCaughtExceptions): This is the label for the - checkbox that toggles ignoring caught exceptions. --> -<!ENTITY debuggerUI.ignoreCaughtExceptions "Ignore caught exceptions"> -<!ENTITY debuggerUI.ignoreCaughtExceptions.key "C"> +<!ENTITY debuggerUI.ignoreCaughtExceptions "Ignore caught exceptions"> +<!ENTITY debuggerUI.ignoreCaughtExceptions.accesskey "C"> <!-- LOCALIZATION NOTE (debuggerUI.showPanesOnInit): This is the label for the - checkbox that toggles visibility of panes when opening the debugger. --> -<!ENTITY debuggerUI.showPanesOnInit "Show panes on startup"> -<!ENTITY debuggerUI.showPanesOnInit.key "S"> +<!ENTITY debuggerUI.showPanesOnInit "Show panes on startup"> +<!ENTITY debuggerUI.showPanesOnInit.accesskey "S"> <!-- LOCALIZATION NOTE (debuggerUI.showVarsFilter): This is the label for the - checkbox that toggles visibility of a designated variables filter box. --> -<!ENTITY debuggerUI.showVarsFilter "Show variables filter box"> -<!ENTITY debuggerUI.showVarsFilter.key "V"> +<!ENTITY debuggerUI.showVarsFilter "Show variables filter box"> +<!ENTITY debuggerUI.showVarsFilter.accesskey "V"> <!-- LOCALIZATION NOTE (debuggerUI.showOnlyEnum): This is the label for the - checkbox that toggles visibility of hidden (non-enumerable) variables and - properties in stack views. The "enumerable" flag is a state of a property - defined in JavaScript. When in doubt, leave untranslated. --> -<!ENTITY debuggerUI.showOnlyEnum "Show only enumerable properties"> -<!ENTITY debuggerUI.showOnlyEnum.key "P"> +<!ENTITY debuggerUI.showOnlyEnum "Show only enumerable properties"> +<!ENTITY debuggerUI.showOnlyEnum.accesskey "P"> <!-- LOCALIZATION NOTE (debuggerUI.showOriginalSource): This is the label for - the checkbox that toggles the display of original or sourcemap-derived - sources. --> -<!ENTITY debuggerUI.showOriginalSource "Show original sources"> -<!ENTITY debuggerUI.showOriginalSource.key "O"> +<!ENTITY debuggerUI.showOriginalSource "Show original sources"> +<!ENTITY debuggerUI.showOriginalSource.accesskey "O"> <!-- LOCALIZATION NOTE (debuggerUI.searchPanelOperators): This is the text that - appears in the filter panel popup as a header for the operators part. --> <!ENTITY debuggerUI.searchPanelOperators "Operators:"> <!-- LOCALIZATION NOTE (debuggerUI.searchFile): This is the text that appears - in the source editor's context menu for the scripts search operation. --> -<!ENTITY debuggerUI.searchFile "Filter scripts"> -<!ENTITY debuggerUI.searchFile.key "P"> -<!ENTITY debuggerUI.searchFile.altkey "O"> +<!ENTITY debuggerUI.searchFile "Filter scripts"> +<!ENTITY debuggerUI.searchFile.key "P"> +<!ENTITY debuggerUI.searchFile.altkey "O"> +<!ENTITY debuggerUI.searchFile.accesskey "P"> <!-- LOCALIZATION NOTE (debuggerUI.searchGlobal): This is the text that appears - in the source editor's context menu for the global search operation. --> -<!ENTITY debuggerUI.searchGlobal "Search in all files"> -<!ENTITY debuggerUI.searchGlobal.key "F"> +<!ENTITY debuggerUI.searchGlobal "Search in all files"> +<!ENTITY debuggerUI.searchGlobal.key "F"> +<!ENTITY debuggerUI.searchGlobal.accesskey "F"> <!-- LOCALIZATION NOTE (debuggerUI.searchFunction): This is the text that appears - in the source editor's context menu for the function search operation. --> -<!ENTITY debuggerUI.searchFunction "Search for function definition"> -<!ENTITY debuggerUI.searchFunction.key "D"> +<!ENTITY debuggerUI.searchFunction "Search for function definition"> +<!ENTITY debuggerUI.searchFunction.key "D"> +<!ENTITY debuggerUI.searchFunction.accesskey "D"> <!-- LOCALIZATION NOTE (debuggerUI.searchToken): This is the text that appears - in the source editor's context menu for the token search operation. --> -<!ENTITY debuggerUI.searchToken "Find"> -<!ENTITY debuggerUI.searchToken.key "F"> +<!ENTITY debuggerUI.searchToken "Find"> +<!ENTITY debuggerUI.searchToken.key "F"> +<!ENTITY debuggerUI.searchToken.accesskey "F"> <!-- LOCALIZATION NOTE (debuggerUI.searchLine): This is the text that appears - in the source editor's context menu for the line search operation. --> -<!ENTITY debuggerUI.searchGoToLine "Go to line…"> -<!ENTITY debuggerUI.searchGoToLine.key "L"> +<!ENTITY debuggerUI.searchGoToLine "Go to line…"> +<!ENTITY debuggerUI.searchGoToLine.key "L"> +<!ENTITY debuggerUI.searchGoToLine.accesskey "L"> <!-- LOCALIZATION NOTE (debuggerUI.searchVariable): This is the text that appears - in the source editor's context menu for the variables search operation. --> -<!ENTITY debuggerUI.searchVariable "Filter variables"> -<!ENTITY debuggerUI.searchVariable.key "V"> +<!ENTITY debuggerUI.searchVariable "Filter variables"> +<!ENTITY debuggerUI.searchVariable.key "V"> +<!ENTITY debuggerUI.searchVariable.accesskey "V"> <!-- LOCALIZATION NOTE (debuggerUI.focusVariables): This is the text that appears - in the source editor's context menu for the variables focus operation. --> -<!ENTITY debuggerUI.focusVariables "Focus variables tree"> -<!ENTITY debuggerUI.focusVariables.key "V"> +<!ENTITY debuggerUI.focusVariables "Focus variables tree"> +<!ENTITY debuggerUI.focusVariables.key "V"> +<!ENTITY debuggerUI.focusVariables.accesskey "V"> <!-- LOCALIZATION NOTE (debuggerUI.condBreakPanelTitle): This is the text that - appears in the conditional breakpoint panel popup as a description. --> <!ENTITY debuggerUI.condBreakPanelTitle "This breakpoint will stop execution only if the following expression is true"> <!-- LOCALIZATION NOTE (debuggerUI.seMenuBreak): This is the text that - appears in the source editor context menu for adding a breakpoint. --> -<!ENTITY debuggerUI.seMenuBreak "Add breakpoint"> -<!ENTITY debuggerUI.seMenuBreak.key "B"> +<!ENTITY debuggerUI.seMenuBreak "Add breakpoint"> +<!ENTITY debuggerUI.seMenuBreak.key "B"> <!-- LOCALIZATION NOTE (debuggerUI.seMenuCondBreak): This is the text that - appears in the source editor context menu for adding a conditional - breakpoint. --> <!ENTITY debuggerUI.seMenuCondBreak "Add conditional breakpoint"> <!ENTITY debuggerUI.seMenuCondBreak.key "B"> <!-- LOCALIZATION NOTE (debuggerUI.tabs.*): This is the text that @@ -165,22 +172,23 @@ <!-- LOCALIZATION NOTE (debuggerUI.seMenuAddWatch): This is the text that - appears in the source editor context menu for adding an expression. --> <!ENTITY debuggerUI.seMenuAddWatch "Selection to watch expression"> <!ENTITY debuggerUI.seMenuAddWatch.key "E"> <!-- LOCALIZATION NOTE (debuggerUI.addWatch): This is the text that - appears in the watch expressions context menu for adding an expression. --> <!ENTITY debuggerUI.addWatch "Add watch expression"> -<!ENTITY debuggerUI.addWatch.key "E"> +<!ENTITY debuggerUI.addWatch.accesskey "E"> <!-- LOCALIZATION NOTE (debuggerUI.removeWatch): This is the text that - appears in the watch expressions context menu for removing all expressions. --> -<!ENTITY debuggerUI.removeAllWatch "Remove all watch expressions"> -<!ENTITY debuggerUI.removeAllWatch.key "E"> +<!ENTITY debuggerUI.removeAllWatch "Remove all watch expressions"> +<!ENTITY debuggerUI.removeAllWatch.key "E"> +<!ENTITY debuggerUI.removeAllWatch.accesskey "E"> <!-- LOCALIZATION NOTE (debuggerUI.stepping): These are the keycodes that - control the stepping commands in the debugger (continue, step over, - step in and step out). --> <!ENTITY debuggerUI.stepping.resume1 "VK_F8"> <!ENTITY debuggerUI.stepping.resume2 "VK_SLASH"> <!ENTITY debuggerUI.stepping.stepOver1 "VK_F10"> <!ENTITY debuggerUI.stepping.stepOver2 "VK_QUOTE">