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 'ui_translate/edit_translation.py')
-rw-r--r--ui_translate/edit_translation.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui_translate/edit_translation.py b/ui_translate/edit_translation.py
index 2e8d6252..c66e2fac 100644
--- a/ui_translate/edit_translation.py
+++ b/ui_translate/edit_translation.py
@@ -308,3 +308,9 @@ class UI_OT_i18n_edittranslation(bpy.types.Operator):
row.prop(self, "update_po", text="Save to PO File", toggle=True)
row.prop(self, "update_mo", text="Rebuild MO File", toggle=True)
row.prop(self, "clean_mo", text="Erase Local MO files", toggle=True)
+
+
+classes = (
+ UI_OT_i18n_edittranslation_update_mo,
+ UI_OT_i18n_edittranslation,
+)