зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1313196 - Add L10N support for the new Debugger. r=jlongster
This commit is contained in:
Родитель
e69fc25743
Коммит
44c54db977
|
@ -4,9 +4,14 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
const { Task } = require("devtools/shared/task");
|
const { Task } = require("devtools/shared/task");
|
||||||
|
var {LocalizationHelper} = require("devtools/shared/l10n");
|
||||||
|
|
||||||
|
const DBG_STRINGS_URI = "devtools/locale/debugger.properties";
|
||||||
|
var L10N = new LocalizationHelper(DBG_STRINGS_URI);
|
||||||
|
|
||||||
function DebuggerPanel(iframeWindow, toolbox) {
|
function DebuggerPanel(iframeWindow, toolbox) {
|
||||||
this.panelWin = iframeWindow;
|
this.panelWin = iframeWindow;
|
||||||
|
this.panelWin.L10N = L10N;
|
||||||
this.toolbox = toolbox;
|
this.toolbox = toolbox;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -161,6 +161,80 @@ breakpointMenuItem.enableAll=Enable all breakpoints
|
||||||
breakpointMenuItem.disableAll=Disable all breakpoints
|
breakpointMenuItem.disableAll=Disable all breakpoints
|
||||||
breakpointMenuItem.deleteAll=Remove all breakpoints
|
breakpointMenuItem.deleteAll=Remove all breakpoints
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (breakpoints.header): Breakpoints right sidebar pane header.
|
||||||
|
breakpoints.header=Breakpoints
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (callStack.header): Call Stack right sidebar pane header.
|
||||||
|
callStack.header=Call Stack
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (callStack.notPaused): Call Stack right sidebar pane
|
||||||
|
# message when not paused.
|
||||||
|
callStack.notPaused=Not Paused
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (callStack.collapse): Call Stack right sidebar pane
|
||||||
|
# message to hide some of the frames that are shown.
|
||||||
|
callStack.collapse=Collapse Rows
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (callStack.expand): Call Stack right sidebar pane
|
||||||
|
# message to show more of the frames.
|
||||||
|
callStack.expand=Expand Rows
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (editor.searchResults): Editor Search bar message
|
||||||
|
# for the summarizing the selected search result. e.g. 5 of 10 results.
|
||||||
|
editor.searchResults=%d of %d results
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (editor.noResults): Editor Search bar message
|
||||||
|
# for when no results found.
|
||||||
|
editor.noResults=no results
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (scopes.header): Scopes right sidebar pane header.
|
||||||
|
scopes.header=Scopes
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (scopes.notAvailable): Scopes right sidebar pane message
|
||||||
|
# for when the debugger is paused, but there isn't pause data.
|
||||||
|
scopes.notAvailable=Scopes Unavailable
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (scopes.notPaused): Scopes right sidebar pane message
|
||||||
|
# for when the debugger is not paused.
|
||||||
|
scopes.notPaused=Not Paused
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (sources.header): Sources left sidebar header
|
||||||
|
sources.header=Sources
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (sources.search): Sources left sidebar prompt
|
||||||
|
# e.g. Cmd+P to search. On a mac, we use the command unicode character.
|
||||||
|
# On windows, it's ctrl.
|
||||||
|
sources.search=%S to search
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (watchExpressions.header): Watch Expressions right sidebar
|
||||||
|
# pane header.
|
||||||
|
watchExpressions.header=Watch Expressions
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (welcome.search): The center pane welcome panel's
|
||||||
|
# search prompt. e.g. cmd+p to search for files. On windows, it's ctrl, on
|
||||||
|
# a mac we use the unicode character.
|
||||||
|
welcome.search=%S to search for files
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (sourceSearch.search): The center pane Source Search
|
||||||
|
# prompt for searching for files.
|
||||||
|
sourceSearch.search=Search...
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (sourceSearch.noResults): The center pane Source Search
|
||||||
|
# message when the query did not match any of the sources.
|
||||||
|
sourceSearch.noResults=No files matching %S found
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (ignoreExceptions): The pause on exceptions button tooltip
|
||||||
|
# when the debugger will not pause on exceptions.
|
||||||
|
ignoreExceptions=Ignore exceptions. Click to pause on uncaught exceptions
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (pauseOnUncaughtExceptions): The pause on exceptions button
|
||||||
|
# tooltip when the debugger will pause on uncaught exceptions.
|
||||||
|
pauseOnUncaughtExceptions=Pause on uncaught exceptions. Click to pause on all exceptions
|
||||||
|
|
||||||
|
# LOCALIZATION NOTE (pauseOnExceptions): The pause on exceptions button tooltip
|
||||||
|
# when the debugger will pause on all exceptions.
|
||||||
|
pauseOnExceptions=Pause on all exceptions. Click to ignore exceptions
|
||||||
|
|
||||||
# LOCALIZATION NOTE (loadingText): The text that is displayed in the script
|
# LOCALIZATION NOTE (loadingText): The text that is displayed in the script
|
||||||
# editor when the loading process has started but there is no file to display
|
# editor when the loading process has started but there is no file to display
|
||||||
# yet.
|
# yet.
|
||||||
|
@ -274,4 +348,4 @@ variablesViewMissingArgs=(unavailable)
|
||||||
|
|
||||||
anonymousSourcesLabel=Anonymous Sources
|
anonymousSourcesLabel=Anonymous Sources
|
||||||
|
|
||||||
experimental=This is an experimental feature
|
experimental=This is an experimental feature
|
||||||
|
|
Загрузка…
Ссылка в новой задаче