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-01-21 15:00:17 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-01-21 15:00:17 +0400
commit5e7be36a2903fddb9a9324e6f70de2e4952f3dca (patch)
treef072053d00bfe67e70b689a28ad9f363253948e4 /render_copy_settings/translations.py
parentce714647da7694d7d8e0b863c1b97c0be5ccb59a (diff)
Fix to i18n stuff (mostly, handles correctly non-WITH_INTERNATIONAL builds, which do not have any bpy.app.translations module).
Diffstat (limited to 'render_copy_settings/translations.py')
-rw-r--r--render_copy_settings/translations.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/render_copy_settings/translations.py b/render_copy_settings/translations.py
index da9afc1e..9d4bf667 100644
--- a/render_copy_settings/translations.py
+++ b/render_copy_settings/translations.py
@@ -20,9 +20,9 @@
# Tuple of tuples (key, (sources, comments), (lang, translation, (is_fuzzy, comments)), ...)
translations_tuple = (
- (("", "Allows to copy a selection of render settings from current scene to others."),
+ ((None, "Allows to copy a selection of render settings from current scene to others."),
((), ()),
- ("fr", "Permet de copier une sélection des réglages de rendu depuis la scène courante vers d’autres scènes",
+ ("fr", "Permet de copier une sélection des réglages de rendu depuis la scène courante vers d’autres scènes.",
(False, ())),
),
)