Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__init__.py « PrepareStage « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e86ff303daa84bc23b94cd12973e5b4a23a824d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright (c) 2017 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.

from . import PrepareStage

from UM.i18n import i18nCatalog
i18n_catalog = i18nCatalog("cura")

def getMetaData():
    return {
        "stage": {
            "name": i18n_catalog.i18nc("@item:inmenu", "Prepare"),
            "weight": 10
        }
    }

def register(app):
    return {
        "stage": PrepareStage.PrepareStage()
    }