canvasdebugger.properties 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. # LOCALIZATION NOTE These strings are used inside the Canvas Debugger
  5. # which is available from the Web Developer sub-menu -> 'Canvas'.
  6. # The correct localization of this file might be to keep it in
  7. # English, or another language commonly spoken among web developers.
  8. # You want to make that choice consistent across the developer tools.
  9. # A good criteria is the language in which you'd find the best
  10. # documentation on web development on the web.
  11. # LOCALIZATION NOTE (noSnapshotsText): The text to display in the snapshots menu
  12. # when there are no recorded snapshots yet.
  13. noSnapshotsText=There are no snapshots yet.
  14. # LOCALIZATION NOTE (snapshotsList.itemLabel):
  15. # This string is displayed in the snapshots list of the Canvas Debugger,
  16. # identifying a set of function calls of a recorded animation frame.
  17. snapshotsList.itemLabel=Snapshot #%S
  18. # LOCALIZATION NOTE (snapshotsList.loadingLabel):
  19. # This string is displayed in the snapshots list of the Canvas Debugger,
  20. # for an item that has not finished loading.
  21. snapshotsList.loadingLabel=Loading…
  22. # LOCALIZATION NOTE (snapshotsList.saveLabel):
  23. # This string is displayed in the snapshots list of the Canvas Debugger,
  24. # for saving an item to disk.
  25. snapshotsList.saveLabel=Save
  26. # LOCALIZATION NOTE (snapshotsList.savingLabel):
  27. # This string is displayed in the snapshots list of the Canvas Debugger,
  28. # while saving an item to disk.
  29. snapshotsList.savingLabel=Saving…
  30. # LOCALIZATION NOTE (snapshotsList.loadedLabel):
  31. # This string is displayed in the snapshots list of the Canvas Debugger,
  32. # for an item which was loaded from disk
  33. snapshotsList.loadedLabel=Loaded from disk
  34. # LOCALIZATION NOTE (snapshotsList.saveDialogTitle):
  35. # This string is displayed as a title for saving a snapshot to disk.
  36. snapshotsList.saveDialogTitle=Save animation frame snapshot…
  37. # LOCALIZATION NOTE (snapshotsList.saveDialogJSONFilter):
  38. # This string is displayed as a filter for saving a snapshot to disk.
  39. snapshotsList.saveDialogJSONFilter=JSON Files
  40. # LOCALIZATION NOTE (snapshotsList.saveDialogAllFilter):
  41. # This string is displayed as a filter for saving a snapshot to disk.
  42. snapshotsList.saveDialogAllFilter=All Files
  43. # LOCALIZATION NOTE (snapshotsList.drawCallsLabel):
  44. # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
  45. # This string is displayed in the snapshots list of the Canvas Debugger,
  46. # as a generic description about how many draw calls were made.
  47. snapshotsList.drawCallsLabel=#1 draw;#1 draws
  48. # LOCALIZATION NOTE (snapshotsList.functionCallsLabel):
  49. # See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
  50. # This string is displayed in the snapshots list of the Canvas Debugger,
  51. # as a generic description about how many function calls were made in total.
  52. snapshotsList.functionCallsLabel=#1 call;#1 calls
  53. # LOCALIZATION NOTE (recordingTimeoutFailure):
  54. # This notification alert is displayed when attempting to record a requestAnimationFrame
  55. # cycle in the Canvas Debugger and no cycles detected. This alerts the user that no
  56. # loops were found.
  57. recordingTimeoutFailure=Canvas Debugger could not find a requestAnimationFrame or setTimeout cycle.