__init__.py 462 B

1234567891011121314151617181920212223
  1. # Copyright (c) 2017 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from . import MonitorStage
  4. from UM.i18n import i18nCatalog
  5. i18n_catalog = i18nCatalog("cura")
  6. def getMetaData():
  7. return {
  8. "stage": {
  9. "name": i18n_catalog.i18nc("@item:inmenu", "Monitor"),
  10. "weight": 30
  11. }
  12. }
  13. def register(app):
  14. return {
  15. "stage": MonitorStage.MonitorStage()
  16. }