[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [4458] trunk/py/scripts/addons/ render_copy_settings: Minor updates...

Bastien Montagne montagne29 at wanadoo.fr
Tue Apr 9 10:52:13 CEST 2013


Revision: 4458
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=4458
Author:   mont29
Date:     2013-04-09 08:52:08 +0000 (Tue, 09 Apr 2013)
Log Message:
-----------
Minor updates...

Modified Paths:
--------------
    trunk/py/scripts/addons/render_copy_settings/__init__.py
    trunk/py/scripts/addons/render_copy_settings/translations.py

Modified: trunk/py/scripts/addons/render_copy_settings/__init__.py
===================================================================
--- trunk/py/scripts/addons/render_copy_settings/__init__.py	2013-04-08 21:38:29 UTC (rev 4457)
+++ trunk/py/scripts/addons/render_copy_settings/__init__.py	2013-04-09 08:52:08 UTC (rev 4458)
@@ -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 @@
                        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…).
 ########################################################################################################################

Modified: trunk/py/scripts/addons/render_copy_settings/translations.py
===================================================================
--- trunk/py/scripts/addons/render_copy_settings/translations.py	2013-04-08 21:38:29 UTC (rev 4457)
+++ trunk/py/scripts/addons/render_copy_settings/translations.py	2013-04-09 08:52:08 UTC (rev 4458)
@@ -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 lang, trans, (is_fuzzy, comments) in msg[2:]:
         if trans and not is_fuzzy:
             translations_dict.setdefault(lang, {})[key] = trans
+
+# ##### END AUTOGENERATED I18N SECTION #####



More information about the Bf-extensions-cvs mailing list