From c71d2ee7edccd505075a4ef3fd5fbd33788f56e2 Mon Sep 17 00:00:00 2001 From: Thomas NOEL Date: Wed, 26 Mar 2014 14:57:40 +0100 Subject: [PATCH] i18n and french l10n --- .../locale/fr/LC_MESSAGES/django.po | 22 +++++++++++++++++++ setup.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 cms_ajax_text_plugin/locale/fr/LC_MESSAGES/django.po diff --git a/cms_ajax_text_plugin/locale/fr/LC_MESSAGES/django.po b/cms_ajax_text_plugin/locale/fr/LC_MESSAGES/django.po new file mode 100644 index 0000000..4eb1fcc --- /dev/null +++ b/cms_ajax_text_plugin/locale/fr/LC_MESSAGES/django.po @@ -0,0 +1,22 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-03-26 14:53+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: cms_plugins.py:8 +msgid "Text (asynchronous loading)" +msgstr "Texte en chargement asynchrone (ajax)" + +#: templates/cms_ajax_text_plugin/plugin.html:16 +msgid "loading..." +msgstr "chargement…" diff --git a/setup.py b/setup.py index b9f843d..7adc027 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ class compile_translations(Command): try: from django.core.management.commands.compilemessages import \ compile_messages - for path in ['cms_ajax_plugin']: + for path in ['cms_ajax_text_plugin']: if path.endswith('.py'): continue if not os.path.isdir(os.path.join(path, 'locale')):