# HG changeset patch # User Thierry Florac # Date 1539790829 -7200 # Node ID cbc4b53f6dd287ce2bb35e7b41de18740a78a0ce # Parent fac2e007432babba39578144400a656100fe504e Updated translations diff -r fac2e007432b -r cbc4b53f6dd2 src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.mo Binary file src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.mo has changed diff -r fac2e007432b -r cbc4b53f6dd2 src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.po --- a/src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.po Wed Oct 17 16:10:52 2018 +0200 +++ b/src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.po Wed Oct 17 17:40:29 2018 +0200 @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE 1.0\n" -"POT-Creation-Date: 2018-10-17 15:41+0200\n" +"POT-Creation-Date: 2018-10-17 17:27+0200\n" "PO-Revision-Date: 2015-09-10 10:42+0200\n" "Last-Translator: Thierry Florac \n" "Language-Team: French\n" @@ -3089,19 +3089,19 @@ #: src/pyams_content/root/zmi/__init__.py:359 #: src/pyams_content/shared/common/zmi/dashboard.py:552 -msgid "My preparations" -msgstr "Mes préparations" +msgid "My drafts" +msgstr "Mes brouillons" #: src/pyams_content/root/zmi/__init__.py:368 #: src/pyams_content/shared/common/zmi/dashboard.py:561 #, python-format -msgid "CONTRIBUTOR - {0} prepared content" +msgid "CONTRIBUTOR - {0} content in preparation" msgstr "CONTRIBUTEUR - {0} contenu en préparation" #: src/pyams_content/root/zmi/__init__.py:369 #: src/pyams_content/shared/common/zmi/dashboard.py:562 #, python-format -msgid "CONTRIBUTOR - {0} prepared contents" +msgid "CONTRIBUTOR - {0} contents in preparation" msgstr "CONTRIBUTEUR - {0} contenus en préparation" #: src/pyams_content/root/zmi/__init__.py:408 @@ -6019,6 +6019,12 @@ msgid "Add automatic content archiver" msgstr "Ajout d'une tâche d'archivage automatique" +#~ msgid "CONTRIBUTOR - {0} prepared content" +#~ msgstr "CONTRIBUTEUR - {0} contenu en préparation" + +#~ msgid "CONTRIBUTOR - {0} prepared contents" +#~ msgstr "CONTRIBUTEUR - {0} contenus en préparation" + #~ msgid "File title, as shown in front-office" #~ msgstr "Titre présenté aux internautes" diff -r fac2e007432b -r cbc4b53f6dd2 src/pyams_content/locales/pyams_content.pot --- a/src/pyams_content/locales/pyams_content.pot Wed Oct 17 16:10:52 2018 +0200 +++ b/src/pyams_content/locales/pyams_content.pot Wed Oct 17 17:40:29 2018 +0200 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE 1.0\n" -"POT-Creation-Date: 2018-10-17 15:41+0200\n" +"POT-Creation-Date: 2018-10-17 17:27+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" @@ -2874,19 +2874,19 @@ #: ./src/pyams_content/root/zmi/__init__.py:359 #: ./src/pyams_content/shared/common/zmi/dashboard.py:552 -msgid "My preparations" +msgid "My drafts" msgstr "" #: ./src/pyams_content/root/zmi/__init__.py:368 #: ./src/pyams_content/shared/common/zmi/dashboard.py:561 #, python-format -msgid "CONTRIBUTOR - {0} prepared content" +msgid "CONTRIBUTOR - {0} content in preparation" msgstr "" #: ./src/pyams_content/root/zmi/__init__.py:369 #: ./src/pyams_content/shared/common/zmi/dashboard.py:562 #, python-format -msgid "CONTRIBUTOR - {0} prepared contents" +msgid "CONTRIBUTOR - {0} contents in preparation" msgstr "" #: ./src/pyams_content/root/zmi/__init__.py:408 diff -r fac2e007432b -r cbc4b53f6dd2 src/pyams_content/root/zmi/__init__.py --- a/src/pyams_content/root/zmi/__init__.py Wed Oct 17 16:10:52 2018 +0200 +++ b/src/pyams_content/root/zmi/__init__.py Wed Oct 17 17:40:29 2018 +0200 @@ -356,7 +356,7 @@ class SiteRootPreparationsMenu(MenuItem): """Site root preparations dashboard menu""" - label = _("My preparations") + label = _("My drafts") icon_class = None url = '#my-preparations.html' @@ -365,8 +365,8 @@ class SiteRootPreparationsTable(BaseDashboardTable): """Site root preparations table""" - _single_title = _("CONTRIBUTOR - {0} prepared content") - _plural_title = _("CONTRIBUTOR - {0} prepared contents") + _single_title = _("CONTRIBUTOR - {0} content in preparation") + _plural_title = _("CONTRIBUTOR - {0} contents in preparation") @adapter_config(context=(ISiteRoot, IPyAMSLayer, SiteRootPreparationsTable), provides=IValues) diff -r fac2e007432b -r cbc4b53f6dd2 src/pyams_content/shared/common/zmi/dashboard.py --- a/src/pyams_content/shared/common/zmi/dashboard.py Wed Oct 17 16:10:52 2018 +0200 +++ b/src/pyams_content/shared/common/zmi/dashboard.py Wed Oct 17 17:40:29 2018 +0200 @@ -549,7 +549,7 @@ class SharedToolPreparationsMenu(MenuItem): """Shared tool preparations dashboard menu""" - label = _("My preparations") + label = _("My drafts") icon_class = None url = '#my-preparations.html' @@ -558,8 +558,8 @@ class SharedToolPreparationsTable(BaseDashboardTable): """Shared tool preparations table""" - _single_title = _("CONTRIBUTOR - {0} prepared content") - _plural_title = _("CONTRIBUTOR - {0} prepared contents") + _single_title = _("CONTRIBUTOR - {0} content in preparation") + _plural_title = _("CONTRIBUTOR - {0} contents in preparation") @adapter_config(context=(IBaseSharedTool, IPyAMSLayer, SharedToolPreparationsTable), provides=IValues)