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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'animation_animall/__init__.py')
-rw-r--r--animation_animall/__init__.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/animation_animall/__init__.py b/animation_animall/__init__.py
index 1ff7bc69..3088a1a6 100644
--- a/animation_animall/__init__.py
+++ b/animation_animall/__init__.py
@@ -662,14 +662,12 @@ def register():
register_classes()
bpy.types.Scene.animall_properties = bpy.props.PointerProperty(type=AnimallProperties)
update_panel(None, bpy.context)
-
bpy.app.translations.register(__name__, translations.translations_dict)
def unregister():
+ bpy.app.translations.unregister(__name__)
del bpy.types.Scene.animall_properties
unregister_classes()
- bpy.app.translations.unregister(__name__)
-
if __name__ == "__main__":
register()