debugger-paused-reasons.ftl (3840B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 ### These strings are used inside the Debugger which is available from the Web 6 ### Developer sub-menu -> 'Debugger', as well as in the "Paused Debugger 7 ### Overlay" that is displayed in the content page when it pauses. 8 9 ### The correct localization of this file might be to keep it in 10 ### English, or another language commonly spoken among web developers. 11 ### You want to make that choice consistent across the developer tools. 12 ### A good criteria is the language in which you'd find the best 13 ### documentation on web development on the web. 14 15 # The text that is displayed in a info block explaining how the debugger is 16 # currently paused due to a `debugger` statement in the code 17 whypaused-debugger-statement = Paused on debugger statement 18 19 # The text that is displayed in a info block explaining how the debugger is 20 # currently paused on a breakpoint 21 whypaused-breakpoint = Paused on breakpoint 22 23 # The text that is displayed in a info block explaining how the debugger is 24 # currently paused on an event breakpoint. 25 whypaused-event-breakpoint = Paused on event breakpoint 26 27 # The text that is displayed in a info block explaining how the debugger is 28 # currently paused on an exception 29 whypaused-exception = Paused on exception 30 31 # The text that is displayed in a info block explaining how the debugger is 32 # currently paused on a DOM mutation breakpoint 33 whypaused-mutation-breakpoint = Paused on DOM mutation 34 35 # The text that is displayed to describe an added node which triggers a subtree 36 # modification 37 whypaused-mutation-breakpoint-added = Added: 38 39 # The text that is displayed to describe a removed node which triggers a subtree 40 # modification 41 whypaused-mutation-breakpoint-removed = Removed: 42 43 # The text that is displayed in a info block explaining how the debugger is 44 # currently paused at a JS execution 45 whypaused-interrupted = Paused at Execution 46 47 # The text that is displayed in a info block explaining how the debugger is 48 # currently paused while stepping in or out of the stack 49 whypaused-resume-limit = Paused while stepping 50 51 # The text that is displayed in a info block explaining how the debugger is 52 # currently paused on a dom event 53 whypaused-pause-on-dom-events = Paused on event listener 54 55 # The text that is displayed in an info block when evaluating a conditional 56 # breakpoint throws an error 57 whypaused-breakpoint-condition-thrown = Error with conditional breakpoint 58 59 # The text that is displayed in a info block explaining how the debugger is 60 # currently paused on an xml http request 61 whypaused-xhr = Paused on XMLHttpRequest 62 63 # The text that is displayed in a info block explaining how the debugger is 64 # currently paused on a promise rejection 65 whypaused-promise-rejection = Paused on promise rejection 66 67 # The text that is displayed in a info block explaining how the debugger is 68 # currently paused at a watchpoint on an object property 69 whypaused-get-watchpoint = Paused on property get 70 71 # The text that is displayed in an info block explaining how the debugger is 72 # currently paused at a watchpoint on an object property 73 whypaused-set-watchpoint = Paused on property set 74 75 # The text that is displayed in a info block explaining how the debugger is 76 # currently paused on an assert 77 whypaused-assert = Paused on assertion 78 79 # The text that is displayed in a info block explaining how the debugger is 80 # currently paused on a debugger statement 81 whypaused-debug-command = Paused on debugged function 82 83 # The text that is displayed in a info block saying that the debugger is currently paused 84 # without other precision. This is also used in the overlay we show in the page when 85 # the page is paused. 86 whypaused-other = Debugger paused