Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
cura / opt / cura / lib / uranium / plugins / Tools / TranslateTool / __init__.py
Size: Mime:
# Copyright (c) 2015 Ultimaker B.V.
# Uranium is released under the terms of the AGPLv3 or higher.

from . import TranslateTool

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

def getMetaData():
    return {
        "type": "tool",
        "plugin": {
            "name": i18n_catalog.i18nc("@label", "Translate Tool"),
            "author": "Ultimaker",
            "version": "1.0",
            "description": i18n_catalog.i18nc("@info:whatsthis", "Provides the Translate tool."),
            "api": 2
        },
        "tool": {
            "name": i18n_catalog.i18nc("@action:button", "Translate"),
            "description": i18n_catalog.i18nc("@info:tooltip", "Translate Object"),
            "icon": "translate"
        },
        "cura": {
            "tool": {
                "visible": False
            }
        }
    }

def register(app):
    return { "tool": TranslateTool.TranslateTool() }