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:
authorBastien Montagne <montagne29@wanadoo.fr>2013-04-09 12:52:08 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-04-09 12:52:08 +0400
commit7009865c7e02ee9230a5c46a8ce1896492ee371a (patch)
treefcefadb9bb540f14e7d40d317cff8282c6b57b92 /render_copy_settings
parent0c08fe2fec6f97d3ff7cc164a3849eafc941e4e2 (diff)
Minor updates...
Diffstat (limited to 'render_copy_settings')
-rw-r--r--render_copy_settings/__init__.py24
-rw-r--r--render_copy_settings/translations.py4
2 files changed, 16 insertions, 12 deletions
diff --git a/render_copy_settings/__init__.py b/render_copy_settings/__init__.py
index 62b0ab30..9b42123a 100644
--- a/render_copy_settings/__init__.py
+++ b/render_copy_settings/__init__.py
@@ -18,6 +18,18 @@
# <pep8 compliant>
+bl_info = {
+ "name": "Copy Settings",
+ "author": "Bastien Montagne",
+ "version": (0, 1, 5),
+ "blender": (2, 65, 9),
+ "location": "Render buttons (Properties window)",
+ "description": "Allows to copy a selection of render settings from current scene to others.",
+ "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Render/Copy Settings",
+ "tracker_url": "http://projects.blender.org/tracker/index.php?func=detail&aid=25832",
+ "category": "Render",
+}
+
if "bpy" in locals():
import imp
imp.reload(operator)
@@ -35,18 +47,6 @@ from bpy.props import (StringProperty,
CollectionProperty,
PointerProperty)
-bl_info = {
- "name": "Copy Settings",
- "author": "Bastien Montagne",
- "version": (0, 1, 5),
- "blender": (2, 65, 9),
- "location": "Render buttons (Properties window)",
- "description": "Allows to copy a selection of render settings from current scene to others.",
- "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/Render/Copy Settings",
- "tracker_url": "http://projects.blender.org/tracker/index.php?func=detail&aid=25832",
- "category": "Render",
-}
-
########################################################################################################################
# Global properties for the script, for UI (as there’s no way to let them in the operator…).
########################################################################################################################
diff --git a/render_copy_settings/translations.py b/render_copy_settings/translations.py
index 9d4bf667..59aadb97 100644
--- a/render_copy_settings/translations.py
+++ b/render_copy_settings/translations.py
@@ -18,6 +18,8 @@
# <pep8 compliant>
+# ##### BEGIN AUTOGENERATED I18N SECTION #####
+
# Tuple of tuples (key, (sources, comments), (lang, translation, (is_fuzzy, comments)), ...)
translations_tuple = (
((None, "Allows to copy a selection of render settings from current scene to others."),
@@ -33,3 +35,5 @@ for msg in translations_tuple:
for lang, trans, (is_fuzzy, comments) in msg[2:]:
if trans and not is_fuzzy:
translations_dict.setdefault(lang, {})[key] = trans
+
+# ##### END AUTOGENERATED I18N SECTION #####