Version 0.1.66 0.1.66
authorThierry Florac <tflorac@ulthar.net>
Wed, 27 Jan 2021 16:14:21 +0100
changeset 1450 6594f9d03438
parent 1449 b74f6ea0f791
child 1451 9539c5209338
Version 0.1.66
buildout.cfg
docs/HISTORY.txt
docs/properties-menu.txt
setup.py
src/pyams_content.egg-info/PKG-INFO
src/pyams_content/component/paragraph/zmi/verbatim.py.orig
src/pyams_content/features/footer/zmi/__init__.py.orig
src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.mo.orig
src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.po.orig
src/pyams_content/locales/pyams_content.pot.orig
src/pyams_content/locales/pyams_content.pot~
--- a/buildout.cfg	Wed Jan 27 15:47:25 2021 +0100
+++ b/buildout.cfg	Wed Jan 27 16:14:21 2021 +0100
@@ -87,4 +87,4 @@
 eggs = pyams_content [test]
 
 [versions]
-pyams_content = 0.1.65
+pyams_content = 0.1.66
--- a/docs/HISTORY.txt	Wed Jan 27 15:47:25 2021 +0100
+++ b/docs/HISTORY.txt	Wed Jan 27 16:14:21 2021 +0100
@@ -1,6 +1,12 @@
 History
 =======
 
+0.1.66
+------
+ - removed themes settings support from sites and hubs managers
+ - added themes support on site root to use themes in advanced search form
+ - updated shared data types vocabularies
+
 0.1.65
 ------
  - added aggregations support
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/properties-menu.txt	Wed Jan 27 16:14:21 2021 +0100
@@ -0,0 +1,56 @@
+
+Properties menu items order
+===========================
+
+Site tree
+---------
+   10 - Paragraphs (hub)
+   20 - Links and attachments (hub)
+  109 - ----- (hub)
+  110 - Hearing (hub)
+  350 - Tags (hub)
+  352 - Themes (hub)
+
+Properties
+----------
+   10 - Properties
+   20 - Specific properties
+  -----
+  100 - Contents
+  110 - Links and attachments
+  120 - Form fields
+  -----
+  200 - Associations
+  210 - Image areas
+
+  300 - References
+  300 - References (view)
+  -----
+  310 - Location
+  320 - Hearing
+  350 - Tags
+  360 - Themes
+  370 - Collections
+  -----
+  500 - Graphic theme
+  510 - Publication dates
+  -----
+  600 - Data types
+  610 - Content block types
+  620 - Contact themes
+  -----
+  700 - Search settings
+  710 = Location settings
+  720 - Hearing settings
+  730 - Tags settings
+  740 - Themes settings
+  750 - Collections settings
+  760 - Pictograms selection
+  770 - External files settings
+  -----
+  800 - Google Tag Manager (site root)
+  810 - Google Analytics (site root)
+  820 - UserReport settings (site root)
+  -----
+  900 - ZMI configuration (site root)
+  990 - Back-office properties (site root)
--- a/setup.py	Wed Jan 27 15:47:25 2021 +0100
+++ b/setup.py	Wed Jan 27 16:14:21 2021 +0100
@@ -24,7 +24,7 @@
 README = os.path.join(DOCS, 'README.txt')
 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
 
-version = '0.1.65'
+version = '0.1.66'
 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
 
 tests_require = []
--- a/src/pyams_content.egg-info/PKG-INFO	Wed Jan 27 15:47:25 2021 +0100
+++ b/src/pyams_content.egg-info/PKG-INFO	Wed Jan 27 16:14:21 2021 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: pyams-content
-Version: 0.1.65
+Version: 0.1.66
 Summary: PyAMS base content interfaces and classes
 Home-page: http://hg.ztfy.org/pyams/pyams_content
 Author: Thierry Florac
@@ -72,6 +72,12 @@
         History
         =======
         
+        0.1.66
+        ------
+         - removed themes settings support from sites and hubs managers
+         - added themes support on site root to use themes in advanced search form
+         - updated shared data types vocabularies
+        
         0.1.65
         ------
          - added aggregations support
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/pyams_content/component/paragraph/zmi/verbatim.py.orig	Wed Jan 27 16:14:21 2021 +0100
@@ -0,0 +1,143 @@
+#
+# Copyright (c) 2008-2015 Thierry Florac <tflorac AT ulthar.net>
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+
+__docformat__ = 'restructuredtext'
+
+from z3c.form import button, field
+from z3c.form.interfaces import INPUT_MODE
+from zope.interface import implementer
+
+from pyams_content.component.association.zmi.interfaces import IAssociationsParentForm
+from pyams_content.component.paragraph import IBaseParagraph
+from pyams_content.component.paragraph.interfaces import IParagraphContainer, IParagraphContainerTarget, \
+    PARAGRAPH_HIDDEN_FIELDS
+from pyams_content.component.paragraph.interfaces.verbatim import IVerbatimParagraph, VERBATIM_PARAGRAPH_TYPE
+from pyams_content.component.paragraph.verbatim import VerbatimParagraph
+from pyams_content.component.paragraph.zmi import BaseParagraphAJAXAddForm, BaseParagraphAJAXEditForm, \
+    BaseParagraphAddMenu, BaseParagraphPropertiesEditForm, IParagraphInnerEditFormButtons, IParagraphTitleValue, \
+    get_json_paragraph_refresh_event
+from pyams_content.component.paragraph.zmi.interfaces import IParagraphContainerView, IParagraphInnerEditor
+from pyams_content.features.renderer.zmi.widget import RendererFieldWidget
+from pyams_content.interfaces import MANAGE_CONTENT_PERMISSION
+from pyams_form.form import ajax_config
+from pyams_form.interfaces.form import IInnerForm
+from pyams_i18n.interfaces import II18n
+from pyams_pagelet.pagelet import pagelet_config
+from pyams_skin.interfaces.viewlet import IToolbarAddingMenu
+from pyams_skin.layer import IPyAMSLayer
+from pyams_utils.adapter import adapter_config
+from pyams_utils.text import get_text_start
+from pyams_viewlet.viewlet import viewlet_config
+from pyams_zmi.form import AdminDialogAddForm
+from pyams_zmi.interfaces import IPropertiesEditForm
+
+from pyams_content import _
+
+
+#
+# Verbatim paragraph
+#
+
+@viewlet_config(name='add-verbatim-paragraph.menu', context=IParagraphContainerTarget, view=IParagraphContainerView,
+                layer=IPyAMSLayer, manager=IToolbarAddingMenu, weight=600)
+class VerbatimParagraphAddMenu(BaseParagraphAddMenu):
+    """Verbatim paragraph add menu"""
+
+    label = _("Verbatim...")
+    label_css_class = 'fa fa-fw fa-quote-right'
+    url = 'add-verbatim-paragraph.html'
+    paragraph_type = VERBATIM_PARAGRAPH_TYPE
+
+
+@pagelet_config(name='add-verbatim-paragraph.html', context=IParagraphContainerTarget, layer=IPyAMSLayer,
+                permission=MANAGE_CONTENT_PERMISSION)
+@ajax_config(name='add-verbatim-paragraph.json', context=IParagraphContainerTarget, layer=IPyAMSLayer,
+             base=BaseParagraphAJAXAddForm)
+class VerbatimParagraphAddForm(AdminDialogAddForm):
+    """Verbatim paragraph add form"""
+
+    legend = _("Add new verbatim paragraph")
+    icon_css_class = 'fa fa-fw fa-quote-right'
+
+    fields = field.Fields(IVerbatimParagraph).omit(*PARAGRAPH_HIDDEN_FIELDS)
+    edit_permission = MANAGE_CONTENT_PERMISSION
+
+    def updateWidgets(self, prefix=None):
+        super(VerbatimParagraphAddForm, self).updateWidgets(prefix)
+        if 'quote' in self.widgets:
+            self.widgets['quote'].widget_css_class = 'input height-100'
+
+    def create(self, data):
+        return VerbatimParagraph()
+
+    def add(self, object):
+        IParagraphContainer(self.context).append(object)
+
+
+@adapter_config(context=(IVerbatimParagraph, IPyAMSLayer), provides=IParagraphTitleValue)
+def verbatim_paragraph_title_adapter(context, request):
+    """Verbatim paragraph title adapter"""
+    i18n = II18n(context)
+    title = i18n.query_attribute('title', request=request)
+    if not title:
+        quote = i18n.query_attribute('quote', request=request)
+        if quote:
+            title = '<i>{0}</i>'.format(get_text_start(quote, 50, 10))
+    return title
+
+
+@pagelet_config(name='properties.html', context=IVerbatimParagraph, layer=IPyAMSLayer,
+                permission=MANAGE_CONTENT_PERMISSION)
+@ajax_config(name='properties.json', context=IVerbatimParagraph, layer=IPyAMSLayer,
+             base=BaseParagraphAJAXEditForm)
+class VerbatimParagraphPropertiesEditForm(BaseParagraphPropertiesEditForm):
+    """Verbatim paragraph properties edit form"""
+
+    prefix = 'verbatim_properties.'
+
+    legend = _("Edit verbatim paragraph properties")
+    icon_css_class = 'fa fa-fw fa-quote-right'
+
+    fields = field.Fields(IVerbatimParagraph).omit(*PARAGRAPH_HIDDEN_FIELDS)
+    fields['renderer'].widgetFactory = RendererFieldWidget
+
+    edit_permission = MANAGE_CONTENT_PERMISSION
+
+    def updateWidgets(self, prefix=None):
+        super(VerbatimParagraphPropertiesEditForm, self).updateWidgets(prefix)
+        if 'quote' in self.widgets:
+            self.widgets['quote'].widget_css_class = 'input height-100'
+
+    def get_ajax_output(self, changes):
+        output = super(self.__class__, self).get_ajax_output(changes)
+        if 'quote' in changes.get(IVerbatimParagraph, ()):
+            if 'title' not in changes.get(IBaseParagraph, ()):
+                output.setdefault('events', []).append(
+                    get_json_paragraph_refresh_event(self.context, self.request))
+        return output
+
+
+@adapter_config(context=(IVerbatimParagraph, IPyAMSLayer), provides=IParagraphInnerEditor)
+@ajax_config(name='inner-properties.json', context=IVerbatimParagraph, layer=IPyAMSLayer,
+             base=BaseParagraphAJAXEditForm)
+@implementer(IInnerForm, IPropertiesEditForm, IAssociationsParentForm)
+class VerbatimParagraphInnerEditForm(VerbatimParagraphPropertiesEditForm):
+    """Verbatim paragraph inner edit form"""
+
+    legend = None
+
+    @property
+    def buttons(self):
+        if self.mode == INPUT_MODE:
+            return button.Buttons(IParagraphInnerEditFormButtons)
+        else:
+            return button.Buttons()
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/pyams_content/features/footer/zmi/__init__.py.orig	Wed Jan 27 16:14:21 2021 +0100
@@ -0,0 +1,212 @@
+#
+# Copyright (c) 2008-2018 Thierry Florac <tflorac AT ulthar.net>
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+
+__docformat__ = 'restructuredtext'
+
+
+# import standard library
+
+# import interfaces
+from pyams_content.features.footer.interfaces import IFooterTarget, IFooterSettings, IFooterRenderer, \
+    IFooterRendererSettings
+from pyams_form.interfaces.form import IWidgetForm, IUncheckedEditFormButtons, IInnerSubForm, \
+    IWidgetsSuffixViewletsManager
+from pyams_portal.interfaces import MANAGE_TEMPLATE_PERMISSION
+from pyams_portal.zmi.interfaces import IPortalContextTemplatePropertiesMenu
+from pyams_skin.interfaces import IInnerPage
+from pyams_skin.layer import IPyAMSLayer
+from pyams_utils.interfaces.data import IObjectData
+from pyams_utils.interfaces.inherit import IInheritInfo
+from z3c.form.interfaces import INPUT_MODE
+
+# import packages
+from pyams_form.form import ajax_config
+from pyams_form.group import NamedWidgetsGroup
+from pyams_pagelet.pagelet import pagelet_config
+from pyams_skin.viewlet.menu import MenuItem
+from pyams_template.template import template_config
+from pyams_utils.adapter import adapter_config
+from pyams_utils.url import absolute_url
+from pyams_viewlet.viewlet import viewlet_config, Viewlet
+from pyams_zmi.form import AdminEditForm, InnerAdminEditForm
+from pyramid.exceptions import NotFound
+from pyramid.response import Response
+from pyramid.view import view_config
+from z3c.form import field, button
+from z3c.form.browser.checkbox import SingleCheckBoxFieldWidget
+from zope.interface import implementer, alsoProvides, Interface
+
+from pyams_content import _
+
+
+@viewlet_config(name='footer-settings.menu', context=IFooterTarget, layer=IPyAMSLayer,
+                manager=IPortalContextTemplatePropertiesMenu, permission=MANAGE_TEMPLATE_PERMISSION, weight=102)
+class FooterSettingsMenu(MenuItem):
+    """Footer settings menu"""
+
+    label = _("Page footer")
+    url = '#footer-settings.html'
+
+
+class IFooterSettingsGroup(Interface):
+    """Footer settings group marker interface"""
+
+
+@pagelet_config(name='footer-settings.html', context=IFooterTarget, layer=IPyAMSLayer,
+                permission=MANAGE_TEMPLATE_PERMISSION)
+@ajax_config(name='footer-settings.json', context=IFooterTarget, layer=IPyAMSLayer,
+             permission=MANAGE_TEMPLATE_PERMISSION)
+@implementer(IWidgetForm, IInnerPage)
+class FooterSettingsEditForm(AdminEditForm):
+    """Footer settings edit form"""
+
+    @property
+    def title(self):
+        return self.context.title
+
+    legend = _("Edit footer settings")
+
+    def getContent(self):
+        return IFooterSettings(self.context)
+
+    @property
+    def fields(self):
+        if self.getContent().can_inherit:
+            fields = field.Fields(IFooterSettings).select('no_inherit')
+            fields['no_inherit'].widgetFactory = SingleCheckBoxFieldWidget
+        else:
+            fields = field.Fields(Interface)
+        return fields
+
+    @property
+    def buttons(self):
+        if self.mode == INPUT_MODE:
+            return button.Buttons(IUncheckedEditFormButtons)
+        else:
+            return button.Buttons(Interface)
+
+    def updateGroups(self):
+        if self.getContent().can_inherit:
+            group = NamedWidgetsGroup(self, 'footer', self.widgets,
+                                      ('no_inherit', ),
+                                      legend=_("Don't inherit parent footer"),
+                                      css_class='inner',
+                                      switch=True,
+                                      checkbox_switch=True,
+                                      checkbox_mode='disable',
+                                      checkbox_field=IFooterSettings['no_inherit'])
+        else:
+            group = NamedWidgetsGroup(self, 'footer', self.widgets, (), css_class='inner')
+        alsoProvides(group, IFooterSettingsGroup)
+        self.add_group(group)
+        super(FooterSettingsEditForm, self).updateGroups()
+
+    def get_ajax_output(self, changes):
+        output = super(self.__class__, self).get_ajax_output(changes) or {}
+        if 'no_inherit' in changes.get(IInheritInfo, ()):
+            output['status'] = 'reload'
+        return output
+
+
+@adapter_config(name='renderer', context=(IFooterTarget, IPyAMSLayer, IFooterSettingsGroup), provides=IInnerSubForm)
+class FooterSettingsRendererEditSubform(InnerAdminEditForm):
+    """Footer settings renderer edit form"""
+
+    legend = None
+
+    fields = field.Fields(IFooterSettings).select('renderer')
+    weight = 1
+
+    def __init__(self, context, request, group):
+        context = IFooterSettings(context)
+        super(FooterSettingsRendererEditSubform, self).__init__(context, request, group)
+
+    def updateWidgets(self, prefix=None):
+        super(FooterSettingsRendererEditSubform, self).updateWidgets(prefix)
+        if 'renderer' in self.widgets:
+            widget = self.widgets['renderer']
+            widget.object_data = {
+                'ams-change-handler': 'MyAMS.helpers.select2ChangeHelper',
+                'ams-change-stop-propagation': 'true',
+                'ams-select2-helper-type': 'html',
+                'ams-select2-helper-url': absolute_url(self.context, self.request,
+                                                       'get-footer-settings-renderer-form.html'),
+                'ams-select2-helper-argument': 'form.widgets.renderer',
+                'ams-select2-helper-target': '#renderer-settings-helper'
+            }
+            alsoProvides(widget, IObjectData)
+
+    def get_forms(self, include_self=True):
+        if include_self and self.request.method == 'POST':
+            data, errors = self.extractData()
+            if not errors:
+                self.applyChanges(data)
+        for form in super(FooterSettingsRendererEditSubform, self).get_forms(include_self):
+            yield form
+
+
+@adapter_config(name='footer-renderer-settings-form',
+                context=(IFooterRendererSettings, IPyAMSLayer, FooterSettingsRendererEditSubform),
+                provides=IInnerSubForm)
+# @adapter_config(name='footer-renderer-settings-form',
+#                 context=(IFooterTarget, IPyAMSLayer, FooterSettingsEditForm),
+#                 provides=IInnerSubForm)
+class FooterSettingsRendererSettingsEditForm(InnerAdminEditForm):
+    """Footer settings renderer settings edit form"""
+
+    legend = _("Footer renderer settings")
+
+    def __new__(cls, context, request, view=None):
+        settings = IFooterRendererSettings(context, None)
+        if settings is None:
+            return None
+        return InnerAdminEditForm.__new__(cls)
+
+    def __init__(self, context, request, view=None):
+        context = IFooterRendererSettings(context)
+        super(FooterSettingsRendererSettingsEditForm, self).__init__(context, request, view)
+
+
+@viewlet_config(name='footer-renderer-settings', context=IFooterSettings, layer=IPyAMSLayer,
+                view=FooterSettingsRendererEditSubform, manager=IWidgetsSuffixViewletsManager)
+@template_config(template='templates/renderer-settings.pt', layer=IPyAMSLayer)
+class FooterSettingsRendererSettingsWidgetsSuffix(Viewlet):
+    """Footer settings renderer settings viewlet"""
+
+    def render_edit_form(self):
+        settings = IFooterSettings(self.context)
+        renderer = settings.get_renderer(self.request)
+        if (renderer is None) or (renderer.settings_interface is None):
+            return ''
+        renderer_settings = IFooterRendererSettings(settings)
+        form = FooterSettingsRendererSettingsEditForm(renderer_settings, self.request)
+        form.update()
+        return form.render()
+
+
+@view_config(name='get-footer-settings-renderer-form.html', context=IFooterSettings,
+             request_type=IPyAMSLayer, permission=MANAGE_TEMPLATE_PERMISSION, xhr=True)
+def get_footer_settings_renderer_form(request):
+    """Footer settings renderer settings form"""
+    renderer_name = request.params.get('form.widgets.renderer')
+    if renderer_name is None:
+        raise NotFound("No provided renderer argument")
+    if not renderer_name:
+        renderer_name = ''
+    renderer = request.registry.queryMultiAdapter((request.context, request), IFooterRenderer, name=renderer_name)
+    if (renderer is None) or (renderer.settings_interface is None):
+        return Response('')
+    settings = IFooterSettings(request.context)
+    renderer_settings = IFooterRendererSettings(settings)
+    form = FooterSettingsRendererSettingsEditForm(renderer_settings, request)
+    form.update()
+    return Response(form.render())
Binary file src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.mo.orig has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.po.orig	Wed Jan 27 16:14:21 2021 +0100
@@ -0,0 +1,5476 @@
+#
+# French translations for PACKAGE package
+# This file is distributed under the same license as the PACKAGE package.
+# Thierry Florac <tflorac@ulthar.net>, 2015.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE 1.0\n"
+"POT-Creation-Date: 2018-06-20 17:59+0200\n"
+"PO-Revision-Date: 2015-09-10 10:42+0200\n"
+"Last-Translator: Thierry Florac <tflorac@ulthar.net>\n"
+"Language-Team: French\n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Lingua 3.10.dev0\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: src/pyams_content/__init__.py:37
+msgid "Manage site root"
+msgstr "Gérer l'ensemble du site"
+
+#: src/pyams_content/__init__.py:39
+msgid "Manage site"
+msgstr "Gérer un site"
+
+#: src/pyams_content/__init__.py:41
+msgid "Manage tool"
+msgstr "Gérer un outil"
+
+#: src/pyams_content/__init__.py:43
+msgid "Create content"
+msgstr "Créer un contenu"
+
+#: src/pyams_content/__init__.py:45
+msgid "Manage content"
+msgstr "Gérer un contenu"
+
+#: src/pyams_content/__init__.py:47
+msgid "Comment content"
+msgstr "Commenter un contenu"
+
+#: src/pyams_content/__init__.py:49 src/pyams_content/workflow/__init__.py:375
+msgid "Publish content"
+msgstr "Publier le contenu"
+
+#: src/pyams_content/__init__.py:53
+msgid "Webmaster (role)"
+msgstr "Webmestre (rôle)"
+
+#: src/pyams_content/__init__.py:62
+msgid "Pilot (role)"
+msgstr "Pilote (rôle)"
+
+#: src/pyams_content/__init__.py:70
+msgid "Manager (role)"
+msgstr "Responsable (rôle)"
+
+#: src/pyams_content/__init__.py:77
+msgid "Owner (role)"
+msgstr "Propriétaire (rôle)"
+
+#: src/pyams_content/__init__.py:82
+msgid "Contributor (role)"
+msgstr "Contributeur (rôle)"
+
+#: src/pyams_content/__init__.py:90
+msgid "Reader (role)"
+msgstr "Relecteur (rôle)"
+
+#: src/pyams_content/__init__.py:96
+msgid "Operator (role)"
+msgstr "Opérateur (rôle)"
+
+#: src/pyams_content/__init__.py:100
+msgid "Guest user (role)"
+msgstr "Invité (rôle)"
+
+#: src/pyams_content/component/gallery/__init__.py:154
+msgid "Gallery"
+msgstr "Galerie de médias"
+
+#: src/pyams_content/component/gallery/zmi/file.py:57
+#: src/pyams_content/component/gallery/zmi/file.py:69
+#: src/pyams_content/component/gallery/zmi/paragraph.py:164
+msgid "Add media(s)"
+msgstr "Ajouter des médias"
+
+#: src/pyams_content/component/gallery/zmi/file.py:184
+msgid "Update media properties"
+msgstr "Propriétés du média"
+
+#: src/pyams_content/component/gallery/zmi/file.py:238
+msgid "Remove media..."
+msgstr "Supprimer le média"
+
+#: src/pyams_content/component/gallery/zmi/file.py:148
+msgid "Show/hide media"
+msgstr "Cliquez pour rendre le média visible ou non"
+
+#: src/pyams_content/component/gallery/zmi/file.py:211
+msgid "Audio content"
+msgstr "Contenu audio associé"
+
+#: src/pyams_content/component/gallery/zmi/paragraph.py:56
+msgid "Medias gallery..."
+msgstr "Galerie de médias"
+
+#: src/pyams_content/component/gallery/zmi/paragraph.py:69
+msgid "Add new gallery"
+msgstr "Ajout d'une galerie de médias"
+
+#: src/pyams_content/component/gallery/zmi/paragraph.py:96
+msgid "Edit gallery properties"
+msgstr "Propriétés de la galerie de médias"
+
+#: src/pyams_content/component/gallery/zmi/__init__.py:63
+msgid "Update gallery properties"
+msgstr "Propriétés de la galerie de médias"
+
+#: src/pyams_content/component/gallery/zmi/__init__.py:95
+msgid "Update gallery contents"
+msgstr "Contenu de la galerie de médias"
+
+#: src/pyams_content/component/gallery/zmi/interfaces.py:36
+msgid "Images or videos data"
+msgstr "Fichier"
+
+#: src/pyams_content/component/gallery/zmi/interfaces.py:37
+msgid "You can upload a single file or choose to upload a whole ZIP archive"
+msgstr ""
+"Vous pouvez déposer les médias un par un, ou en nombre en les réunissant au "
+"préalable dans un fichier ZIP"
+
+#: src/pyams_content/component/gallery/zmi/interfaces.py:40
+#: src/pyams_content/component/gallery/interfaces/__init__.py:61
+#: src/pyams_content/component/extfile/interfaces/__init__.py:44
+#: src/pyams_content/component/illustration/interfaces/__init__.py:68
+#: src/pyams_content/component/paragraph/interfaces/video.py:52
+#: src/pyams_content/component/paragraph/interfaces/audio.py:48
+#: src/pyams_content/component/paragraph/interfaces/verbatim.py:44
+#: src/pyams_content/component/video/interfaces/__init__.py:52
+msgid "Author"
+msgstr "Auteur"
+
+#: src/pyams_content/component/gallery/zmi/interfaces.py:41
+#: src/pyams_content/component/gallery/interfaces/__init__.py:62
+#: src/pyams_content/component/extfile/interfaces/__init__.py:45
+#: src/pyams_content/component/paragraph/interfaces/video.py:53
+#: src/pyams_content/component/paragraph/interfaces/audio.py:49
+#: src/pyams_content/component/video/interfaces/__init__.py:53
+msgid "Name of document's author"
+msgstr "Sous la forme \"Prénom Nom / Organisme\""
+
+#: src/pyams_content/component/gallery/zmi/interfaces.py:44
+msgid "Author comments"
+msgstr "À propos de l'auteur"
+
+#: src/pyams_content/component/gallery/zmi/interfaces.py:45
+#: src/pyams_content/component/gallery/interfaces/__init__.py:66
+msgid "Comments relatives to author's rights management"
+msgstr ""
+"Commentaires (non publiés mais à conserver) relatifs à l'auteur et à la "
+"gestion de ses droits"
+
+#: src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:11
+msgid "Gallery medias"
+msgstr "Contenu de la galerie"
+
+#: src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:17
+msgid "Download medias"
+msgstr "Télécharger tous les médias"
+
+#: src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:41
+msgid "Zoom image"
+msgstr "Agrandir l'image"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:130
+msgid "Medias gallery"
+msgstr "Galerie de médias"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:47
+#: src/pyams_content/component/illustration/interfaces/__init__.py:46
+#: src/pyams_content/component/illustration/interfaces/__init__.py:105
+msgid "Image or video data"
+msgstr "Fichier"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:48
+#: src/pyams_content/component/illustration/interfaces/__init__.py:47
+#: src/pyams_content/component/illustration/interfaces/__init__.py:106
+msgid "Image or video content"
+msgstr ""
+"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu..."
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:51
+#: src/pyams_content/component/illustration/interfaces/__init__.py:53
+#: src/pyams_content/component/paragraph/interfaces/video.py:45
+#: src/pyams_content/component/video/interfaces/__init__.py:75
+msgid "Legend"
+msgstr "Légende"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:54
+#: src/pyams_content/component/illustration/interfaces/__init__.py:56
+#: src/pyams_content/reference/pictograms/interfaces/__init__.py:48
+msgid "Accessibility title"
+msgstr "Alternative (accessibilité)"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:55
+msgid "Alternate title used to describe media content"
+msgstr ""
+"Ce texte est affiché lorsque le média ne peut être téléchargé ou affiché ; "
+"il est aussi utilisé par les navigateurs des personnes souffrant de "
+"déficiences visuelles. Il doit donc décrire le contenu du média, pour se "
+"conformer aux normes d'accessibilité."
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:58
+#: src/pyams_content/component/gallery/interfaces/__init__.py:98
+#: src/pyams_content/component/extfile/interfaces/__init__.py:40
+#: src/pyams_content/component/illustration/interfaces/__init__.py:64
+#: src/pyams_content/component/paragraph/interfaces/video.py:48
+#: src/pyams_content/component/paragraph/interfaces/audio.py:44
+#: src/pyams_content/component/links/interfaces/__init__.py:39
+#: src/pyams_content/component/video/interfaces/__init__.py:48
+#: src/pyams_content/shared/common/interfaces/__init__.py:149
+#: src/pyams_content/shared/form/interfaces/__init__.py:66
+msgid "Description"
+msgstr "Description"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:65
+msgid "Author's comments"
+msgstr "À propos de l'auteur"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:69
+msgid "Source ID"
+msgstr "ID source"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:70
+msgid "Number used to identify media into it's original source"
+msgstr ""
+"Identifiant ou référence de ce média dans la base de données dont elle est "
+"issue ; au besoin, préciser le nom de cette base"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:73
+#: src/pyams_content/component/extfile/interfaces/__init__.py:89
+#: src/pyams_content/component/paragraph/interfaces/audio.py:52
+msgid "Audio data"
+msgstr "Fichier"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:74
+msgid "Sound file associated with the current media"
+msgstr "Vous pouvez associer un fichier audio à ce média"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:77
+msgid "Sound title"
+msgstr "Titre"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:78
+msgid "Title of associated sound file"
+msgstr "Titre du fichier audio associé à ce média"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:81
+msgid "Sound description"
+msgstr "Description"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:82
+msgid "Short description of associated sound file"
+msgstr "Courte description du fichier audio associé à ce média"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:85
+msgid "Visible media?"
+msgstr "Média visible ?"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:86
+msgid "If 'no', this media won't be displayed in front office"
+msgstr "Si 'non', ce média ne sera pas présenté aux internautes"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:94
+#: src/pyams_content/component/keynumber/portlet/interfaces/__init__.py:30
+#: src/pyams_content/component/paragraph/zmi/milestone.py:231
+#: src/pyams_content/component/paragraph/zmi/container.py:223
+#: src/pyams_content/component/paragraph/interfaces/milestone.py:45
+#: src/pyams_content/component/links/zmi/reverse.py:73
+#: src/pyams_content/shared/common/zmi/dashboard.py:109
+#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:188
+#: src/pyams_content/shared/imagemap/zmi/container.py:123
+#: src/pyams_content/shared/site/zmi/folder.py:70
+#: src/pyams_content/root/zmi/templates/advanced-search.pt:188
+#: src/pyams_content/interfaces/__init__.py:99
+#: src/pyams_content/reference/pictograms/zmi/__init__.py:150
+#: src/pyams_content/features/menu/portlet/navigation/interfaces/simple.py:31
+#: src/pyams_content/features/menu/portlet/navigation/interfaces/double.py:31
+msgid "Title"
+msgstr "Titre"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:95
+msgid "Gallery title, as shown in front-office"
+msgstr "Titre de la galerie présenté aux internautes"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:99
+msgid "Gallery description displayed by front-office template"
+msgstr "Description de la galerie de médias présentée aux internautes"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:102
+msgid "Gallery template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/gallery/interfaces/__init__.py:103
+msgid "Presentation template used for this gallery"
+msgstr ""
+"<span>Modèle de présentation utilisé par cette galerie.<br /"
+"><strong>ATTENTION :</strong> certains modes de rendu ne prennent en charge "
+"que certains types de médias !!</span>"
+
+#: src/pyams_content/component/extfile/__init__.py:172
+#: src/pyams_content/component/extfile/__init__.py:176
+msgid "Standard file"
+msgstr "Fichier"
+
+#: src/pyams_content/component/extfile/__init__.py:223
+#: src/pyams_content/component/extfile/__init__.py:238
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:66
+#: src/pyams_content/shared/logo/interfaces/__init__.py:46
+#: src/pyams_content/reference/pictograms/interfaces/__init__.py:44
+msgid "Image"
+msgstr "Image"
+
+#: src/pyams_content/component/extfile/__init__.py:253
+#: src/pyams_content/component/extfile/__init__.py:257
+#: src/pyams_content/component/paragraph/interfaces/video.py:34
+msgid "Video"
+msgstr "Vidéo"
+
+#: src/pyams_content/component/extfile/__init__.py:272
+#: src/pyams_content/component/extfile/__init__.py:276
+msgid "Audio file"
+msgstr "Fichier audio"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:74
+msgid "External files"
+msgstr "Fichiers"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:89
+msgid "Add external file"
+msgstr "Fichier"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:103
+msgid "Add new external file"
+msgstr "Ajout d'un fichier"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:138
+msgid "Update file properties"
+msgstr "Propriétés du fichier"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:171
+msgid "Images"
+msgstr "Images"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:186
+msgid "Add image"
+msgstr "Image téléchargeable"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:200
+msgid "Add new image"
+msgstr "Ajout d'une image téléchargeable"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:231
+msgid "Update image properties"
+msgstr "Propriétés de l'image téléchargeable"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:264
+msgid "Videos"
+msgstr "Vidéos"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:279
+msgid "Add video"
+msgstr "Vidéo téléchargeable"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:293
+msgid "Add new video"
+msgstr "Ajout d'une vidéo téléchargeable"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:317
+msgid "Update video properties"
+msgstr "Propriétés de la vidéo téléchargeable"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:343
+msgid "Audios files"
+msgstr "Fichiers audios"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:358
+msgid "Add audio file"
+msgstr "Bande son téléchargeable"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:372
+msgid "Add new audio file"
+msgstr "Ajout d'une bande son téléchargeable"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:396
+msgid "Update audio file properties"
+msgstr "Propriétés de la bande son téléchargeable"
+
+#: src/pyams_content/component/extfile/zmi/__init__.py:50
+msgid "External file type"
+msgstr "Type de fichier joint"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:36
+#: src/pyams_content/component/links/interfaces/__init__.py:35
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:54
+#: src/pyams_content/shared/site/interfaces/__init__.py:113
+msgid "Alternate title"
+msgstr "Titre de substitution"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:37
+msgid "File title, as shown in front-office"
+msgstr "Titre présenté aux internautes"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:41
+#: src/pyams_content/component/paragraph/interfaces/video.py:49
+#: src/pyams_content/component/paragraph/interfaces/audio.py:45
+#: src/pyams_content/component/video/interfaces/__init__.py:49
+msgid "File description displayed by front-office template"
+msgstr "Description du fichier, présentée aux internautes"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:48
+#: src/pyams_content/component/links/interfaces/__init__.py:68
+msgid "Language"
+msgstr "Langue"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:49
+msgid "File's content language"
+msgstr "Langue du fichier"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:53
+msgid "Save file as..."
+msgstr "Nom du fichier"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:54
+msgid "Name under which the file will be saved"
+msgstr ""
+"Nom donné au fichier en cas de téléchargement ; il est donc important de "
+"veiller au sens de ce nom, sans oublier d'indiquer l'extension (« .pdf », « ."
+"doc »...) !"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:61
+msgid "File data"
+msgstr "Fichier"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:62
+msgid "File content"
+msgstr ""
+"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:73
+#: src/pyams_content/shared/logo/interfaces/__init__.py:47
+msgid "Image data"
+msgstr "Fichier"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:74
+msgid "Image content"
+msgstr ""
+"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu..."
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:81
+#: src/pyams_content/component/paragraph/interfaces/video.py:41
+msgid "Video data"
+msgstr "Fichier"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:82
+msgid "Video content"
+msgstr ""
+"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu"
+
+#: src/pyams_content/component/extfile/interfaces/__init__.py:90
+#: src/pyams_content/component/paragraph/interfaces/audio.py:53
+msgid "Audio file content"
+msgstr ""
+"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu"
+
+#: src/pyams_content/component/keynumber/__init__.py:180
+#: src/pyams_content/component/keynumber/zmi/__init__.py:198
+#: src/pyams_content/component/keynumber/portlet/zmi/__init__.py:74
+#: src/pyams_content/component/paragraph/interfaces/keynumber.py:29
+msgid "Key numbers"
+msgstr "Chiffres-clés"
+
+#. Default: Header
+#: src/pyams_content/component/keynumber/zmi/__init__.py:146
+#: src/pyams_content/component/keynumber/interfaces/__init__.py:44
+msgid "key-number-label"
+msgstr "En-tête"
+
+#: src/pyams_content/component/keynumber/zmi/__init__.py:158
+#: src/pyams_content/component/keynumber/interfaces/__init__.py:49
+msgid "Number"
+msgstr "Chiffre"
+
+#. Default: Unit
+#: src/pyams_content/component/keynumber/zmi/__init__.py:167
+#: src/pyams_content/component/keynumber/interfaces/__init__.py:53
+msgid "key-number-unit"
+msgstr "Unité"
+
+#: src/pyams_content/component/keynumber/zmi/__init__.py:179
+#: src/pyams_content/component/keynumber/interfaces/__init__.py:57
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:267
+#: src/pyams_content/component/paragraph/interfaces/pictogram.py:58
+msgid "Associated text"
+msgstr "Texte associé"
+
+#: src/pyams_content/component/keynumber/zmi/__init__.py:217
+msgid "Add keynumber"
+msgstr "Ajouter un chiffre-clé"
+
+#: src/pyams_content/component/keynumber/zmi/__init__.py:230
+msgid "Add new keynumber"
+msgstr "Ajout d'un chiffre-clé"
+
+#: src/pyams_content/component/keynumber/zmi/__init__.py:259
+msgid "Edit keynumber properties"
+msgstr "Propriétés du chiffre-clé"
+
+#: src/pyams_content/component/keynumber/zmi/__init__.py:245
+msgid "Key number was correctly added"
+msgstr "Le chiffre-clé a été ajouté."
+
+#: src/pyams_content/component/keynumber/portlet/__init__.py:52
+msgid "Key Numbers"
+msgstr "Chiffres-clés"
+
+#: src/pyams_content/component/keynumber/portlet/interfaces/__init__.py:31
+msgid "Portlet title"
+msgstr "Titre"
+
+#: src/pyams_content/component/keynumber/portlet/interfaces/__init__.py:34
+msgid "Teaser"
+msgstr "Accroche"
+
+#: src/pyams_content/component/keynumber/portlet/interfaces/__init__.py:35
+msgid "Short text displayed above key numbers"
+msgstr "Texte d'introduction des chiffres-clés"
+
+#: src/pyams_content/component/keynumber/interfaces/__init__.py:39
+#: src/pyams_content/component/paragraph/interfaces/milestone.py:40
+#: src/pyams_content/component/paragraph/interfaces/__init__.py:44
+#: src/pyams_content/component/paragraph/interfaces/pictogram.py:41
+#: src/pyams_content/component/association/interfaces/__init__.py:42
+#: src/pyams_content/shared/form/interfaces/__init__.py:87
+#: src/pyams_content/shared/site/interfaces/__init__.py:117
+#: src/pyams_content/features/alert/interfaces.py:54
+#: src/pyams_content/features/menu/interfaces/__init__.py:58
+msgid "Visible?"
+msgstr "Visible ?"
+
+#: src/pyams_content/component/keynumber/interfaces/__init__.py:40
+msgid "Is this key number visible in front-office?"
+msgstr "Si 'non', ce chiffre-clé ne sera pas présenté aux internautes"
+
+#: src/pyams_content/component/keynumber/interfaces/__init__.py:45
+msgid ""
+"Small text to be displayed above number (according to selected renderer)"
+msgstr ""
+"Texte court affiché au-dessus du chiffre (selon le mode de rendu sélectionné)"
+
+#: src/pyams_content/component/keynumber/interfaces/__init__.py:50
+msgid "Key number value"
+msgstr "Chiffre"
+
+#: src/pyams_content/component/keynumber/interfaces/__init__.py:54
+msgid "Displayed unit"
+msgstr "Unité affichée"
+
+#: src/pyams_content/component/keynumber/interfaces/__init__.py:58
+msgid "The way this text will be rendered depends on presentation template"
+msgstr ""
+"La présentation de cette information peut varier en fonction du mode de "
+"rendu choisi"
+
+#: src/pyams_content/component/illustration/__init__.py:177
+#: src/pyams_content/component/illustration/zmi/paragraph.py:168
+#: src/pyams_content/component/illustration/zmi/__init__.py:56
+#: src/pyams_content/component/illustration/zmi/__init__.py:100
+#: src/pyams_content/component/illustration/interfaces/__init__.py:99
+msgid "Illustration"
+msgstr "Illustration"
+
+#: src/pyams_content/component/illustration/zmi/paragraph.py:60
+msgid "Illustration..."
+msgstr "Illustration"
+
+#: src/pyams_content/component/illustration/zmi/paragraph.py:73
+msgid "Add new illustration"
+msgstr "Ajout d'une illustration"
+
+#: src/pyams_content/component/illustration/zmi/paragraph.py:103
+msgid "Edit illustration properties"
+msgstr "Propriétés de l'illustration"
+
+#: src/pyams_content/component/illustration/zmi/__init__.py:155
+msgid "Navigation link illustration"
+msgstr "Illustration de navigation"
+
+#: src/pyams_content/component/illustration/zmi/__init__.py:102
+msgid "Header illustration"
+msgstr "Illustration d'en-tête"
+
+#: src/pyams_content/component/illustration/interfaces/__init__.py:57
+#: src/pyams_content/reference/pictograms/interfaces/__init__.py:49
+msgid "Alternate title used to describe image content"
+msgstr ""
+"Ce texte est affiché lorsque le contenu ne peut être téléchargé ou affiché ; "
+"il est aussi utilisé par les navigateurs des personnes souffrant de "
+"déficiences visuelles. Il doit donc décrire le contenu, pour se conformer "
+"aux normes d'accessibilité."
+
+#: src/pyams_content/component/illustration/interfaces/__init__.py:69
+msgid "Name of picture's author"
+msgstr "Sous la forme \"Prénom Nom / Organisme\""
+
+#: src/pyams_content/component/illustration/interfaces/__init__.py:72
+msgid "Illustration template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/illustration/interfaces/__init__.py:73
+msgid "Presentation template used for illustration"
+msgstr ""
+"<span>Modèle de présentation utilisé par cette illustration.<br /"
+"><strong>ATTENTION :</strong> certains modes de rendu ne prennent pas en "
+"compte tous les types de médias !</span>"
+
+#: src/pyams_content/component/paragraph/milestone.py:140
+msgid "Selected paragraph is missing"
+msgstr "le bloc sélectionné est introuvable"
+
+#: src/pyams_content/component/paragraph/milestone.py:143
+msgid "Selected paragraph is not visible"
+msgstr "le bloc sélectionné n'est pas visible"
+
+#: src/pyams_content/component/paragraph/container.py:73
+msgid "Paragraphs"
+msgstr "Blocs de contenu"
+
+#: src/pyams_content/component/paragraph/container.py:95
+msgid "no visible paragraph"
+msgstr "aucun bloc de contenu visible"
+
+#: src/pyams_content/component/paragraph/pictogram.py:135
+msgid "Selected pictogram is missing"
+msgstr "le pictogramme sélectionné est introuvable"
+
+#: src/pyams_content/component/paragraph/zmi/milestone.py:77
+msgid "Milestones..."
+msgstr "Chronologie"
+
+#: src/pyams_content/component/paragraph/zmi/milestone.py:90
+msgid "Add new milestone paragraph"
+msgstr "Ajout d'une chronologie"
+
+#: src/pyams_content/component/paragraph/zmi/milestone.py:117
+msgid "Edit milestone paragraph properties"
+msgstr "Propriétés de la chronologie"
+
+#: src/pyams_content/component/paragraph/zmi/milestone.py:243
+#: src/pyams_content/component/paragraph/interfaces/milestone.py:49
+msgid "Associated label"
+msgstr "Information associée"
+
+#: src/pyams_content/component/paragraph/zmi/milestone.py:255
+#: src/pyams_content/component/paragraph/interfaces/milestone.py:53
+msgid "Anchor"
+msgstr "Ancre"
+
+#: src/pyams_content/component/paragraph/zmi/milestone.py:284
+#: src/pyams_content/component/paragraph/interfaces/milestone.py:76
+msgid "Milestones"
+msgstr "Chronologie"
+
+#: src/pyams_content/component/paragraph/zmi/milestone.py:299
+msgid "Add milestone"
+msgstr "Ajouter un jalon"
+
+#: src/pyams_content/component/paragraph/zmi/milestone.py:312
+msgid "Add new milestone"
+msgstr "Ajout d'un jalon"
+
+#: src/pyams_content/component/paragraph/zmi/milestone.py:339
+msgid "Edit milestone properties"
+msgstr "Propriétés du jalon"
+
+#: src/pyams_content/component/paragraph/zmi/milestone.py:327
+msgid "Milestone was correctly added"
+msgstr "Le jalon a été ajouté."
+
+#: src/pyams_content/component/paragraph/zmi/milestone.py:270
+msgid "(missing paragraph)"
+msgstr "(paragraphe supprimé)"
+
+#: src/pyams_content/component/paragraph/zmi/keypoint.py:51
+msgid "Key points..."
+msgstr "Points clés"
+
+#: src/pyams_content/component/paragraph/zmi/keypoint.py:64
+msgid "Add new key points paragraph"
+msgstr "Ajout de points clés"
+
+#: src/pyams_content/component/paragraph/zmi/keypoint.py:91
+msgid "Edit key points paragraph properties"
+msgstr "Propriétés des points clés"
+
+#: src/pyams_content/component/paragraph/zmi/__init__.py:65
+msgid "Content block types..."
+msgstr "Types de blocs de contenu"
+
+#: src/pyams_content/component/paragraph/zmi/__init__.py:79
+msgid "Content block types"
+msgstr "Types de blocs de contenu"
+
+#: src/pyams_content/component/paragraph/zmi/__init__.py:89
+msgid ""
+"You can define which types of paragraphs are allowed in this container.\n"
+"\n"
+"Default paragraphs will be added automatically (in selected order) to any "
+"new created content.\n"
+"\n"
+"NOTICE: removing types from allowed types list will have no effect on "
+"already created contents!"
+msgstr ""
+"Vous pouvez indiquer la liste des types de blocs de contenu autorisés pour "
+"ce gabarit.\n"
+"\n"
+"Les types de blocs par défaut seront ajoutés automatiquement (dans l'ordre "
+"défini) à chaque nouveau contenu créé selon ce gabarit.\n"
+"\n"
+"REMARQUE : supprimer des types de la liste des types de blocs autorisés sera "
+"sans effet sur les contenus existants."
+
+#: src/pyams_content/component/paragraph/zmi/__init__.py:207
+#: src/pyams_content/shared/common/zmi/templates/preview-input.pt:39
+#: src/pyams_content/features/preview/zmi/__init__.py:45
+msgid "Preview"
+msgstr "Aperçu"
+
+#: src/pyams_content/component/paragraph/zmi/__init__.py:212
+#: src/pyams_content/shared/common/zmi/workflow.py:122
+#: src/pyams_content/shared/common/zmi/workflow.py:209
+#: src/pyams_content/shared/common/zmi/workflow.py:249
+#: src/pyams_content/shared/common/zmi/workflow.py:303
+#: src/pyams_content/shared/common/zmi/workflow.py:392
+#: src/pyams_content/shared/common/zmi/workflow.py:448
+#: src/pyams_content/shared/common/zmi/workflow.py:488
+#: src/pyams_content/shared/common/zmi/workflow.py:529
+#: src/pyams_content/shared/common/zmi/workflow.py:572
+#: src/pyams_content/shared/common/zmi/workflow.py:612
+#: src/pyams_content/shared/common/zmi/workflow.py:653
+#: src/pyams_content/shared/common/zmi/workflow.py:704
+#: src/pyams_content/shared/common/zmi/__init__.py:275
+#: src/pyams_content/shared/common/zmi/owner.py:73
+#: src/pyams_content/features/review/zmi/__init__.py:90
+msgid "Cancel"
+msgstr "Annuler"
+
+#: src/pyams_content/component/paragraph/zmi/__init__.py:214
+msgid "Submit"
+msgstr "Enregistrer"
+
+#: src/pyams_content/component/paragraph/zmi/__init__.py:195
+msgid "Paragraph was correctly added."
+msgstr "Le bloc a été ajouté."
+
+#: src/pyams_content/component/paragraph/zmi/video.py:53
+msgid "Video paragraph..."
+msgstr "Vidéo"
+
+#: src/pyams_content/component/paragraph/zmi/video.py:66
+msgid "Add new video paragraph"
+msgstr "Ajout d'une vidéo"
+
+#: src/pyams_content/component/paragraph/zmi/video.py:94
+#: src/pyams_content/component/video/zmi/paragraph.py:192
+msgid "Edit video properties"
+msgstr "Propriétés de la vidéo"
+
+#: src/pyams_content/component/paragraph/zmi/container.py:74
+msgid "Contents..."
+msgstr "Contenu"
+
+#: src/pyams_content/component/paragraph/zmi/container.py:239
+msgid "Show/hide all paragraphs"
+msgstr "Afficher/masquer tous les blocs"
+
+#: src/pyams_content/component/paragraph/zmi/container.py:287
+#: src/pyams_content/component/paragraph/zmi/container.py:296
+#: src/pyams_content/component/paragraph/zmi/container.py:309
+msgid "Content blocks"
+msgstr "Blocs de contenu"
+
+#: src/pyams_content/component/paragraph/zmi/container.py:366
+msgid "Links and attachments..."
+msgstr "Récap. liens et PJ"
+
+#: src/pyams_content/component/paragraph/zmi/container.py:378
+msgid "Content blocks links and attachments"
+msgstr "Récapitulatif des liens et pièces jointes par bloc de contenu"
+
+#: src/pyams_content/component/paragraph/zmi/container.py:126
+msgid "No currently defined paragraph."
+msgstr "Aucun bloc n'est associé à ce contenu."
+
+#: src/pyams_content/component/paragraph/zmi/container.py:248
+msgid "Click to open/close all paragraphs editors"
+msgstr "Afficher/masquer tous les blocs"
+
+#: src/pyams_content/component/paragraph/zmi/container.py:261
+msgid "Click to open/close paragraph editor"
+msgstr "Afficher/masquer ce bloc"
+
+#: src/pyams_content/component/paragraph/zmi/container.py:132
+msgid "Check allowed paragraph types to be able to create new paragraphs."
+msgstr ""
+"Vérifiez le paramétrage des types de blocs de contenu autorisés pour pouvoir "
+"ajouter de nouveaux blocs."
+
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:82
+msgid "Pictograms..."
+msgstr "Pictogrammes"
+
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:95
+msgid "Add new pictogram paragraph"
+msgstr "Ajout de pictogrammes"
+
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:122
+msgid "Edit pictogram paragraph properties"
+msgstr "Propriétés des pictogrammes"
+
+#. Default: Header
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:252
+msgid "pictogram-item-header"
+msgstr "En-tête"
+
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:289
+#: src/pyams_content/component/paragraph/interfaces/pictogram.py:80
+msgid "Pictograms"
+msgstr "Pictogrammes"
+
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:304
+#: src/pyams_content/reference/pictograms/zmi/__init__.py:59
+msgid "Add pictogram"
+msgstr "Ajouter un pictogramme"
+
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:317
+#: src/pyams_content/reference/pictograms/zmi/__init__.py:71
+msgid "Add new pictogram"
+msgstr "Ajout d'un pictogramme"
+
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:359
+#: src/pyams_content/reference/pictograms/zmi/__init__.py:95
+msgid "Edit pictogram properties"
+msgstr "Propriétés du pictogramme"
+
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:339
+msgid "Pictogram was correctly added"
+msgstr "Le pictogramme a été ajouté."
+
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:349
+#: src/pyams_content/component/paragraph/zmi/pictogram.py:387
+msgid "You must select a pictogram!"
+msgstr "Vous devez sélectionner un pictogramme !"
+
+#: src/pyams_content/component/paragraph/zmi/audio.py:54
+msgid "Audio paragraph..."
+msgstr "Bande son"
+
+#: src/pyams_content/component/paragraph/zmi/audio.py:67
+msgid "Add new audio paragraph"
+msgstr "Ajout d'une bande son"
+
+#: src/pyams_content/component/paragraph/zmi/audio.py:108
+msgid "Edit audio properties"
+msgstr "Propriétés de la bande son"
+
+#: src/pyams_content/component/paragraph/zmi/audio.py:84
+#: src/pyams_content/component/paragraph/zmi/audio.py:128
+msgid "HTML content"
+msgstr "Contenu HTML"
+
+#: src/pyams_content/component/paragraph/zmi/keynumber.py:55
+msgid "Key numbers..."
+msgstr "Chiffres-clés"
+
+#: src/pyams_content/component/paragraph/zmi/keynumber.py:68
+msgid "Add new key number paragraph"
+msgstr "Ajout de chiffres-clés"
+
+#: src/pyams_content/component/paragraph/zmi/keynumber.py:96
+msgid "Edit key number paragraph properties"
+msgstr "Propriétés des chiffres-clés"
+
+#: src/pyams_content/component/paragraph/zmi/frame.py:84
+msgid "Framed text..."
+msgstr "Encadré"
+
+#: src/pyams_content/component/paragraph/zmi/frame.py:98
+msgid "Add new framed text paragraph"
+msgstr "Ajout d'un encadré"
+
+#: src/pyams_content/component/paragraph/zmi/frame.py:129
+msgid "Edit framed text paragraph properties"
+msgstr "Propriétés de l'encadré"
+
+#: src/pyams_content/component/paragraph/zmi/verbatim.py:56
+msgid "Verbatim..."
+msgstr "Verbatim"
+
+#: src/pyams_content/component/paragraph/zmi/verbatim.py:69
+msgid "Add new verbatim paragraph"
+msgstr "Ajout d'un verbatim"
+
+#: src/pyams_content/component/paragraph/zmi/verbatim.py:96
+msgid "Edit verbatim paragraph properties"
+msgstr "Propriétés du verbatim"
+
+#: src/pyams_content/component/paragraph/zmi/html.py:76
+msgid "Raw HTML..."
+msgstr "Code HTML"
+
+#: src/pyams_content/component/paragraph/zmi/html.py:89
+msgid "Add new raw HTML paragraph"
+msgstr "Ajout d'un bloc de code HTML"
+
+#: src/pyams_content/component/paragraph/zmi/html.py:119
+msgid "Edit raw HTML paragraph properties"
+msgstr "Propriétés du code HTML"
+
+#: src/pyams_content/component/paragraph/zmi/html.py:159
+msgid "Rich text..."
+msgstr "Texte enrichi"
+
+#: src/pyams_content/component/paragraph/zmi/html.py:172
+msgid "Add new rich text paragraph"
+msgstr "Ajout d'un bloc de texte enrichi"
+
+#: src/pyams_content/component/paragraph/zmi/html.py:202
+msgid "Edit rich text paragraph properties"
+msgstr "Propriétés du texte enrichi"
+
+#: src/pyams_content/component/paragraph/zmi/contact.py:53
+msgid "Contact card..."
+msgstr "Fiche contact"
+
+#: src/pyams_content/component/paragraph/zmi/contact.py:66
+msgid "Add new contact card"
+msgstr "Ajout d'une fiche contact"
+
+#: src/pyams_content/component/paragraph/zmi/contact.py:94
+msgid "Edit contact card properties"
+msgstr "Propriétés de la fiche contact"
+
+#: src/pyams_content/component/paragraph/zmi/header.py:50
+msgid "Header..."
+msgstr "Chapô"
+
+#: src/pyams_content/component/paragraph/zmi/header.py:63
+msgid "Add new header paragraph"
+msgstr "Ajout d'un chapô"
+
+#: src/pyams_content/component/paragraph/zmi/header.py:90
+msgid "Edit header paragraph properties"
+msgstr "Propriétés du chapô"
+
+#: src/pyams_content/component/paragraph/interfaces/milestone.py:41
+msgid "Is this milestone visible in front-office?"
+msgstr "Si 'non', ce jalon ne sera pas présenté aux internautes"
+
+#: src/pyams_content/component/paragraph/interfaces/milestone.py:46
+msgid "Milestone title"
+msgstr "Libellé associé au jalon"
+
+#: src/pyams_content/component/paragraph/interfaces/milestone.py:50
+msgid "The way this label will be rendered depends on presentation template"
+msgstr ""
+"La présentation de cette information peut varier en fonction du mode de "
+"rendu choisi"
+
+#: src/pyams_content/component/paragraph/interfaces/milestone.py:54
+msgid "Paragraph to which this milestone should lead"
+msgstr "Bloc de contenu vers lequel ce jalon doit conduire"
+
+#: src/pyams_content/component/paragraph/interfaces/milestone.py:83
+msgid "Milestones template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/milestone.py:84
+msgid "Presentation template used for milestones"
+msgstr "Modèle de présentation utilisé par ce bloc de contenu"
+
+#: src/pyams_content/component/paragraph/interfaces/keypoint.py:33
+#: src/pyams_content/component/paragraph/interfaces/keypoint.py:40
+msgid "Key points"
+msgstr "Points clés"
+
+#: src/pyams_content/component/paragraph/interfaces/keypoint.py:41
+msgid "Enter one key point by line, without hyphen or prefix"
+msgstr ""
+"Indiquez un point clé par ligne, sans tiret. Passez à la ligne entre chaque "
+"point clé, la mise en forme sera effectuée automatiquement."
+
+#: src/pyams_content/component/paragraph/interfaces/keypoint.py:44
+msgid "Presentation template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/keypoint.py:45
+#: src/pyams_content/component/paragraph/interfaces/frame.py:44
+#: src/pyams_content/component/paragraph/interfaces/verbatim.py:53
+#: src/pyams_content/component/paragraph/interfaces/html.py:46
+#: src/pyams_content/component/paragraph/interfaces/html.py:67
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:100
+#: src/pyams_content/shared/logo/interfaces/__init__.py:76
+msgid "Presentation template used for this paragraph"
+msgstr "Mode de rendu utilisé par ce bloc de contenu"
+
+#: src/pyams_content/component/paragraph/interfaces/__init__.py:45
+msgid "Is this paragraph visible in front-office?"
+msgstr "Si 'non', ce bloc de contenu ne sera pas présenté aux internautes"
+
+#: src/pyams_content/component/paragraph/interfaces/__init__.py:49
+msgid "§ Title"
+msgstr "Titre §"
+
+#: src/pyams_content/component/paragraph/interfaces/__init__.py:80
+msgid "Allowed paragraphs"
+msgstr "Types de blocs autorisés"
+
+#: src/pyams_content/component/paragraph/interfaces/__init__.py:81
+msgid "List of paragraphs allowed for this content type"
+msgstr "Liste des types de blocs de contenu autorisés pour ce gabarit."
+
+#: src/pyams_content/component/paragraph/interfaces/__init__.py:85
+#: src/pyams_content/shared/common/zmi/types.py:169
+#: src/pyams_content/shared/common/zmi/types.py:380
+msgid "Default paragraphs"
+msgstr "Types de blocs par défaut"
+
+#: src/pyams_content/component/paragraph/interfaces/__init__.py:86
+msgid "List of paragraphs automatically added to a new content"
+msgstr "Liste des types de blocs ajoutés automatiquement aux nouveaux contenus"
+
+#: src/pyams_content/component/paragraph/interfaces/video.py:42
+msgid "Video file content"
+msgstr ""
+"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu"
+
+#: src/pyams_content/component/paragraph/interfaces/video.py:56
+#: src/pyams_content/component/video/interfaces/__init__.py:78
+msgid "Video template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/video.py:57
+#: src/pyams_content/component/video/interfaces/__init__.py:79
+msgid "Presentation template used for this video"
+msgstr "Mode de rendu utilisé par cette vidéo"
+
+#: src/pyams_content/component/paragraph/interfaces/pictogram.py:42
+msgid "Is this pictogram visible in front-office?"
+msgstr "Si 'non', ce pictogramme ne sera pas présenté aux internautes"
+
+#: src/pyams_content/component/paragraph/interfaces/pictogram.py:46
+#: src/pyams_content/component/links/interfaces/__init__.py:43
+#: src/pyams_content/shared/common/interfaces/types.py:68
+#: src/pyams_content/features/alert/interfaces.py:79
+msgid "Pictogram"
+msgstr "Pictogramme"
+
+#: src/pyams_content/component/paragraph/interfaces/pictogram.py:47
+#: src/pyams_content/features/alert/interfaces.py:80
+msgid "Name of the pictogram to select"
+msgstr "Sélection du pictogramme à afficher"
+
+#: src/pyams_content/component/paragraph/interfaces/pictogram.py:53
+msgid "Alternate header"
+msgstr "En-tête de substitution"
+
+#: src/pyams_content/component/paragraph/interfaces/pictogram.py:54
+msgid ""
+"Alternate pictogram label; if not specified, the pictogram header will be "
+"used"
+msgstr ""
+"EN-tête de substitution utilisé par le pictogramme; si rien n'est spécifié, "
+"l'en-tête du pictogramme sélectionné sera utilisé."
+
+#: src/pyams_content/component/paragraph/interfaces/pictogram.py:59
+msgid "Additional text associated to this pictogram"
+msgstr "Texte complémentaire associé à ce pictogramme"
+
+#: src/pyams_content/component/paragraph/interfaces/pictogram.py:87
+msgid "Pictograms template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/pictogram.py:88
+msgid "Presentation template used for pictograms"
+msgstr "Modèle de présentation utilisé par ce bloc de contenu"
+
+#: src/pyams_content/component/paragraph/interfaces/audio.py:34
+msgid "Audio"
+msgstr "Bande son"
+
+#: src/pyams_content/component/paragraph/interfaces/audio.py:41
+#: src/pyams_content/component/paragraph/interfaces/html.py:63
+msgid "Body"
+msgstr "Contenu HTML"
+
+#: src/pyams_content/component/paragraph/interfaces/audio.py:56
+msgid "Audio template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/audio.py:57
+msgid "Presentation template used for this audio file"
+msgstr "Mode de rendu utilisé pour cette bande son"
+
+#: src/pyams_content/component/paragraph/interfaces/keynumber.py:36
+msgid "Key numbers template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/keynumber.py:37
+msgid "Presentation template used for key numbers"
+msgstr "Modèle de présentation utilisé par ce bloc de contenu"
+
+#: src/pyams_content/component/paragraph/interfaces/frame.py:33
+msgid "Framed text"
+msgstr "Encadré"
+
+#: src/pyams_content/component/paragraph/interfaces/frame.py:40
+msgid "Frame body"
+msgstr "Contenu"
+
+#: src/pyams_content/component/paragraph/interfaces/frame.py:43
+msgid "Text template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/verbatim.py:33
+msgid "Verbatim"
+msgstr "Verbatim"
+
+#: src/pyams_content/component/paragraph/interfaces/verbatim.py:40
+msgid "Quoted text"
+msgstr "Citation"
+
+#: src/pyams_content/component/paragraph/interfaces/verbatim.py:41
+msgid "Quotation marks will be added automatically by presentation template"
+msgstr "Les guillemets seront ajoutés automatiquement par le mode de rendu..."
+
+#: src/pyams_content/component/paragraph/interfaces/verbatim.py:45
+msgid "Name of the quote author"
+msgstr "Nom de l'auteur de la citation"
+
+#: src/pyams_content/component/paragraph/interfaces/verbatim.py:48
+#: src/pyams_content/component/paragraph/interfaces/contact.py:54
+msgid "In charge of"
+msgstr "Fonction"
+
+#: src/pyams_content/component/paragraph/interfaces/verbatim.py:49
+msgid "Label of author function"
+msgstr "Fonction de l'auteur"
+
+#: src/pyams_content/component/paragraph/interfaces/verbatim.py:52
+msgid "Verbatim template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/html.py:33
+msgid "Raw HTML "
+msgstr "Code HTML"
+
+#: src/pyams_content/component/paragraph/interfaces/html.py:56
+msgid "Rich text"
+msgstr "Texte enrichi"
+
+#: src/pyams_content/component/paragraph/interfaces/html.py:40
+msgid "Raw HTML code"
+msgstr "Code HTML"
+
+#: src/pyams_content/component/paragraph/interfaces/html.py:41
+msgid ""
+"This HTML code will be used 'as is', without any transformation. Use with "
+"care!!"
+msgstr ""
+"Ce code HTML sera utilisé en l'état et intégré dans les pages sans "
+"modification. À utiliser avec précaution !!!"
+
+#: src/pyams_content/component/paragraph/interfaces/html.py:45
+msgid "Raw HTML code template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/html.py:66
+msgid "Body template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:43
+msgid "Contact card"
+msgstr "Fiche contact"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:50
+msgid "Contact identity"
+msgstr "Nom du contact"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:51
+msgid "Name of the contact"
+msgstr "Nom complet du contact"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:55
+msgid "Label of contact function"
+msgstr "Fonction du contact"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:58
+msgid "Email address"
+msgstr "Adresse de messagerie"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:59
+msgid "Contact email address"
+msgstr "Adresse de messagerie \"stricte\", soit uniquement \"xxx@yyy.com\""
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:62
+msgid "Contact form"
+msgstr "Formulaire de contact"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:63
+msgid "Reference of contact form"
+msgstr "Référence d'un formulaire de contact"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:67
+msgid "Photo"
+msgstr "Photo"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:68
+msgid "Use 'browse' button to select contact picture"
+msgstr "Utilisez le bouton 'Parcourir' pour sélectionner la photo du contact"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:76
+msgid "Address"
+msgstr "Adresse"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:79
+msgid "Contact template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:80
+msgid "Presentation template used for this contact"
+msgstr "Modèle de présentation utilisé pour ce contact"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:72
+msgid "GPS location"
+msgstr "Position GPS"
+
+#: src/pyams_content/component/paragraph/interfaces/contact.py:73
+msgid "GPS coordinates used to locate contact"
+msgstr "Coordonnées GPS de situation du contact"
+
+#: src/pyams_content/component/paragraph/interfaces/header.py:33
+#: src/pyams_content/component/paragraph/interfaces/header.py:40
+msgid "Header"
+msgstr "Chapô"
+
+#: src/pyams_content/component/paragraph/interfaces/header.py:43
+#: src/pyams_content/features/header/interfaces/__init__.py:39
+msgid "Header template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/paragraph/interfaces/header.py:44
+#: src/pyams_content/features/header/interfaces/__init__.py:40
+msgid "Presentation template used for this header"
+msgstr "Mode de rendu utilisé par ce chapô"
+
+#: src/pyams_content/component/theme/__init__.py:65
+#: src/pyams_content/component/theme/zmi/portlet.py:40
+#: src/pyams_content/component/theme/interfaces/__init__.py:43
+msgid "Themes"
+msgstr "Thèmes"
+
+#: src/pyams_content/component/theme/__init__.py:74
+msgid "no defined theme"
+msgstr "aucun thème défini"
+
+#: src/pyams_content/component/theme/zmi/__init__.py:51
+#: src/pyams_content/shared/view/zmi/theme.py:48
+msgid "Themes..."
+msgstr "Thèmes"
+
+#: src/pyams_content/component/theme/zmi/__init__.py:63
+msgid "Content themes"
+msgstr "Thèmes du contenu"
+
+#: src/pyams_content/component/theme/zmi/manager.py:45
+msgid "Themes settings..."
+msgstr "Paramétrage des thèmes"
+
+#: src/pyams_content/component/theme/zmi/manager.py:59
+msgid "Selected themes"
+msgstr "Thèmes sélectionnés"
+
+#: src/pyams_content/component/association/container.py:88
+#: src/pyams_content/component/association/zmi/__init__.py:296
+#: src/pyams_content/component/association/interfaces/__init__.py:90
+msgid "Associations"
+msgstr "Liens et pièces jointes"
+
+#: src/pyams_content/component/association/zmi/paragraph.py:54
+#: src/pyams_content/component/association/zmi/__init__.py:96
+msgid "Associations..."
+msgstr "Liens et pièces jointes"
+
+#: src/pyams_content/component/association/zmi/paragraph.py:67
+msgid "Add new association paragraph"
+msgstr "Ajout d'un bloc  « liens et pièces jointes »"
+
+#: src/pyams_content/component/association/zmi/paragraph.py:93
+msgid "Edit association paragraph properties"
+msgstr "Propriétés du bloc « liens et pièces jointes »"
+
+#: src/pyams_content/component/association/zmi/__init__.py:198
+msgid "Public title"
+msgstr "Libellé public"
+
+#: src/pyams_content/component/association/zmi/__init__.py:216
+msgid "Inner title"
+msgstr "Contenu interne"
+
+#: src/pyams_content/component/association/zmi/__init__.py:232
+msgid "Size"
+msgstr "Taille"
+
+#: src/pyams_content/component/association/zmi/__init__.py:273
+#: src/pyams_content/component/association/zmi/__init__.py:283
+msgid "Associations list"
+msgstr "Liste des liens et pièces jointes"
+
+#: src/pyams_content/component/association/zmi/__init__.py:66
+msgid "Association was correctly added."
+msgstr "L'association a été ajoutée."
+
+#: src/pyams_content/component/association/interfaces/__init__.py:43
+#: src/pyams_content/features/menu/interfaces/__init__.py:59
+msgid "Is this item visible in front-office?"
+msgstr "Si 'non', ce lien ne sera pas présenté aux internautes"
+
+#: src/pyams_content/component/association/interfaces/__init__.py:97
+msgid "Associations template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/component/association/interfaces/__init__.py:98
+msgid "Presentation template used for associations"
+msgstr "Modèle de présentation utilisé par ce bloc de contenu"
+
+#: src/pyams_content/component/links/__init__.py:124
+msgid "Internal link"
+msgstr "Lien interne"
+
+#: src/pyams_content/component/links/__init__.py:206
+msgid "External link"
+msgstr "Lien externe"
+
+#: src/pyams_content/component/links/__init__.py:259
+msgid "Mailto link"
+msgstr "Lien mailto"
+
+#: src/pyams_content/component/links/__init__.py:193
+msgid "target is not published"
+msgstr "le contenu ciblé n'est pas publié"
+
+#: src/pyams_content/component/links/zmi/__init__.py:60
+msgid "Internal links"
+msgstr "Liens internes"
+
+#: src/pyams_content/component/links/zmi/__init__.py:75
+msgid "Add internal link"
+msgstr "Lien interne"
+
+#: src/pyams_content/component/links/zmi/__init__.py:89
+msgid "Add new internal link"
+msgstr "Ajout d'un lien interne"
+
+#: src/pyams_content/component/links/zmi/__init__.py:125
+msgid "Edit internal link properties"
+msgstr "Propriétés du lien interne"
+
+#: src/pyams_content/component/links/zmi/__init__.py:159
+msgid "External links"
+msgstr "Liens externes"
+
+#: src/pyams_content/component/links/zmi/__init__.py:174
+msgid "Add external link"
+msgstr "Lien externe"
+
+#: src/pyams_content/component/links/zmi/__init__.py:188
+msgid "Add new external link"
+msgstr "Ajout d'un lien externe"
+
+#: src/pyams_content/component/links/zmi/__init__.py:224
+msgid "Edit external link properties"
+msgstr "Propriétés du lien externe"
+
+#: src/pyams_content/component/links/zmi/__init__.py:258
+msgid "Mailto links"
+msgstr "Liens mailto"
+
+#: src/pyams_content/component/links/zmi/__init__.py:273
+msgid "Add mailto link"
+msgstr "Lien mailto"
+
+#: src/pyams_content/component/links/zmi/__init__.py:287
+msgid "Add new mailto link"
+msgstr "Ajout d'un lien « mailto »"
+
+#: src/pyams_content/component/links/zmi/__init__.py:323
+msgid "Edit mailto link properties"
+msgstr "Propriétés du lien « mailto »"
+
+#: src/pyams_content/component/links/zmi/reverse.py:57
+msgid "Reverse links"
+msgstr "Liens amont"
+
+#: src/pyams_content/component/links/zmi/reverse.py:66
+msgid "Content's internal links"
+msgstr "Autres contenus qui pointent vers ce contenu"
+
+#: src/pyams_content/component/links/interfaces/__init__.py:36
+msgid "Link title, as shown in front-office"
+msgstr ""
+"Le contexte d'utilisation de ce lien peut nécessiter de modifier son titre "
+"d'origine. Ce titre de substitution sera alors présenté aux internautes."
+
+#: src/pyams_content/component/links/interfaces/__init__.py:40
+msgid "Link description displayed by front-office template"
+msgstr "Description du lien, présentée aux internautes"
+
+#: src/pyams_content/component/links/interfaces/__init__.py:44
+msgid "Name of the pictogram associated with this link"
+msgstr "Pictogramme à associer à ce lien"
+
+#: src/pyams_content/component/links/interfaces/__init__.py:64
+#: src/pyams_content/shared/logo/interfaces/__init__.py:50
+msgid "Target URL"
+msgstr "URL cible"
+
+#: src/pyams_content/component/links/interfaces/__init__.py:65
+#: src/pyams_content/shared/logo/interfaces/__init__.py:51
+msgid "URL used to access external resource"
+msgstr ""
+"URL utilisée pour accéder à cette ressource externe. Doit comprendre le "
+"protocole d'accès au site, comme « http:// » ou « https:// »."
+
+#: src/pyams_content/component/links/interfaces/__init__.py:69
+msgid "Language used in this remote resource"
+msgstr ""
+"Langue utilisée par cette ressource extene ; à préciser lorsqu'il ne s'agit "
+"pas de la langue par défaut du site."
+
+#: src/pyams_content/component/links/interfaces/__init__.py:77
+msgid "Target address"
+msgstr "Adresse mail"
+
+#: src/pyams_content/component/links/interfaces/__init__.py:78
+msgid "Target email address"
+msgstr "Adresse de messagerie \"stricte\", soit uniquement \"xxx@yyy.com\""
+
+#: src/pyams_content/component/links/interfaces/__init__.py:81
+msgid "Address name"
+msgstr "Nom de messagerie"
+
+#: src/pyams_content/component/links/interfaces/__init__.py:82
+msgid "Address as displayed in address book"
+msgstr ""
+"Nom de la boîte aux lettres, tel qu'il sera affiché dans l'application de "
+"messagerie."
+
+#: src/pyams_content/component/video/__init__.py:73
+#: src/pyams_content/component/video/interfaces/__init__.py:68
+msgid "External video"
+msgstr "Vidéo externe"
+
+#: src/pyams_content/component/video/provider/dailymotion.py:94
+msgid "Dailymotion settings"
+msgstr "Paramètres Dailymotion"
+
+#: src/pyams_content/component/video/provider/__init__.py:70
+msgid "Other provider"
+msgstr "Autre fournisseur"
+
+#: src/pyams_content/component/video/provider/__init__.py:94
+msgid "Custom video settings"
+msgstr "Paramètres spécifiques"
+
+#: src/pyams_content/component/video/provider/vimeo.py:92
+msgid "Vimeo settings"
+msgstr "Paramètres Vimeo"
+
+#: src/pyams_content/component/video/provider/interfaces.py:31
+msgid "Integration code"
+msgstr "Code d'intégration"
+
+#: src/pyams_content/component/video/provider/interfaces.py:32
+msgid ""
+"Please select integration code provided by your video provider, and paste it "
+"here"
+msgstr ""
+"Veuillez sélectionner le code d'intégration proposé par votre fournisseur et "
+"le coller ici"
+
+#: src/pyams_content/component/video/provider/interfaces.py:40
+#: src/pyams_content/component/video/provider/interfaces.py:112
+#: src/pyams_content/component/video/provider/interfaces.py:180
+msgid "Video ID"
+msgstr "ID de la vidéo"
+
+#: src/pyams_content/component/video/provider/interfaces.py:41
+msgid ""
+"To get video ID, just use the 'Share' button in Youtube platform and copy/"
+"paste the given URL here"
+msgstr ""
+"Pour obtenir l'ID de la vidéo, utilisez le bouton 'Partager' sur Youtube et "
+"faites simplement un copier/coller de l'URL obtenue dans ce champ"
+
+#: src/pyams_content/component/video/provider/interfaces.py:45
+#: src/pyams_content/component/video/provider/interfaces.py:117
+msgid "Start at"
+msgstr "Démarrer à"
+
+#: src/pyams_content/component/video/provider/interfaces.py:46
+#: src/pyams_content/component/video/provider/interfaces.py:118
+msgid ""
+"Position at which to start video, in 'seconds' or 'minutes:seconds' format"
+msgstr ""
+"Position à laquelle démarrer la vidéo, en secondes ou sous la forme 'minutes:"
+"secondes'"
+
+#: src/pyams_content/component/video/provider/interfaces.py:50
+msgid "Stop at"
+msgstr "S'arrêter à"
+
+#: src/pyams_content/component/video/provider/interfaces.py:51
+msgid ""
+"Position at which to stop video, in 'seconds' or 'minutes:seconds' format"
+msgstr ""
+"Position à laquelle arrêter la vidéo, en secondes ou sous la forme 'minutes:"
+"secondes'"
+
+#: src/pyams_content/component/video/provider/interfaces.py:54
+#: src/pyams_content/component/video/provider/interfaces.py:122
+#: src/pyams_content/component/video/provider/interfaces.py:200
+msgid "Auto play?"
+msgstr "Lecture automatique ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:55
+#: src/pyams_content/component/video/provider/interfaces.py:123
+#: src/pyams_content/component/video/provider/interfaces.py:201
+msgid "If 'yes', video is started automatically on page load"
+msgstr ""
+"Si 'oui', la vidéo est démarrée automatiquement au chargement de la page"
+
+#: src/pyams_content/component/video/provider/interfaces.py:59
+#: src/pyams_content/component/video/provider/interfaces.py:205
+msgid "Loop playback?"
+msgstr "Lecture en boucle ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:60
+#: src/pyams_content/component/video/provider/interfaces.py:206
+msgid "If 'yes', video is played indefinitely"
+msgstr "Si 'oui', la vidéo est jouée indéfiniment"
+
+#: src/pyams_content/component/video/provider/interfaces.py:64
+#: src/pyams_content/component/video/provider/interfaces.py:127
+msgid "Show video info?"
+msgstr "Afficher les infos ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:65
+#: src/pyams_content/component/video/provider/interfaces.py:128
+msgid "If 'no', video title and information won't be displayed"
+msgstr ""
+"Si 'non', le titre et les informations de la vidéo ne sont pas affichés"
+
+#: src/pyams_content/component/video/provider/interfaces.py:69
+#: src/pyams_content/component/video/provider/interfaces.py:132
+msgid "Show commands?"
+msgstr "Afficher les commandes ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:70
+#: src/pyams_content/component/video/provider/interfaces.py:133
+msgid "Show video player commands"
+msgstr "Si 'non', les commandes du lecteur vidéo ne sont pas affichées"
+
+#: src/pyams_content/component/video/provider/interfaces.py:74
+msgid "Hide branding?"
+msgstr "Masquer la marque ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:75
+msgid "If 'no', Youtube branding will be displayed"
+msgstr "Si 'non', la marque 'Youtube' est affichée en bas de la vidéo"
+
+#: src/pyams_content/component/video/provider/interfaces.py:79
+msgid "Show related videos?"
+msgstr "Vidéos liées ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:80
+msgid "Show related videos when video end"
+msgstr ""
+"Si 'non', les vidéos liées ne sont pas affichées lorsque la vidéo se termine"
+
+#: src/pyams_content/component/video/provider/interfaces.py:84
+#: src/pyams_content/component/video/provider/interfaces.py:152
+#: src/pyams_content/component/video/provider/interfaces.py:210
+msgid "Allow full screen?"
+msgstr "Mode plein écran ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:85
+#: src/pyams_content/component/video/provider/interfaces.py:153
+#: src/pyams_content/component/video/provider/interfaces.py:211
+msgid "If 'yes', video can be displayed in full screen"
+msgstr "Si 'non', la vidéo ne peut pas être affichée en plein écran"
+
+#: src/pyams_content/component/video/provider/interfaces.py:89
+msgid "Disable keyboard?"
+msgstr "Clavier inactif ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:90
+msgid "If 'yes', video player can't be controlled via keyboard shortcuts"
+msgstr "Si 'oui', le lecteur vidéo ne peut pas être contrôlé avec le clavier"
+
+#: src/pyams_content/component/video/provider/interfaces.py:94
+#: src/pyams_content/component/video/provider/interfaces.py:162
+#: src/pyams_content/component/video/provider/interfaces.py:215
+msgid "Video width"
+msgstr "Largeur"
+
+#: src/pyams_content/component/video/provider/interfaces.py:95
+#: src/pyams_content/component/video/provider/interfaces.py:163
+#: src/pyams_content/component/video/provider/interfaces.py:216
+msgid ""
+"Initial video frame width; mandatory for old browsers but may be overridden "
+"by presentation skin"
+msgstr ""
+"Largeur initiale de la vidéo ; cette information peut être surchargée par le "
+"thème graphique mais elle est obligatoire pour les anciens navigateurs"
+
+#: src/pyams_content/component/video/provider/interfaces.py:101
+#: src/pyams_content/component/video/provider/interfaces.py:169
+#: src/pyams_content/component/video/provider/interfaces.py:222
+msgid "Video height"
+msgstr "Hauteur"
+
+#: src/pyams_content/component/video/provider/interfaces.py:102
+#: src/pyams_content/component/video/provider/interfaces.py:170
+#: src/pyams_content/component/video/provider/interfaces.py:223
+msgid ""
+"Initial video frame height; mandatory for old browsers but may be overridden "
+"by presentation skin"
+msgstr ""
+"Hauteur initiale de la vidéo ; cette information peut être surchargée par le "
+"thème graphique mais elle est obligatoire pour les anciens navigateurs"
+
+#: src/pyams_content/component/video/provider/interfaces.py:113
+msgid ""
+"To get video ID, just use the 'Share' button in Dailymotion platform, click "
+"on \"Copy link\" and paste the given URL here"
+msgstr ""
+"Pour obtenir l'ID de la vidéo, utilisez le bouton \"Partager\" sur "
+"Dailymotion, cliquez sur le lien \"Copy link\" et collez l'URL obtenue dans "
+"ce champ"
+
+#: src/pyams_content/component/video/provider/interfaces.py:137
+msgid "UI theme"
+msgstr "Thème graphique"
+
+#: src/pyams_content/component/video/provider/interfaces.py:138
+msgid "Default base color theme"
+msgstr "Couleur de base du thème graphique"
+
+#: src/pyams_content/component/video/provider/interfaces.py:142
+msgid "Show branding?"
+msgstr "Afficher la marque ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:143
+msgid "If 'yes', Dailymotion branding will be displayed"
+msgstr "Si 'oui', la marque 'Dailymotion' est affichée en bas de la vidéo"
+
+#: src/pyams_content/component/video/provider/interfaces.py:147
+msgid "Show end screen?"
+msgstr "Écran de fin ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:148
+msgid "Show end screen when video end"
+msgstr ""
+"Si 'non', les vidéos liées ne sont pas affichées lorsque la vidéo se termine"
+
+#: src/pyams_content/component/video/provider/interfaces.py:157
+msgid "Allow sharing?"
+msgstr "Autoriser le partage ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:158
+msgid "If 'no', video sharing will be disabled"
+msgstr "Si 'non', le partage de la vidéo ne sera pas autorisé"
+
+#: src/pyams_content/component/video/provider/interfaces.py:181
+msgid ""
+"To get video ID, just use the 'Share' button in Vimeo platform, click on "
+"\"Link\" entry and copy/paste the given URL here"
+msgstr ""
+"Pour obtenir l'ID de la vidéo, utilisez le bouton \"Partager\" sur Vimeo, "
+"cliquez sur l'entrée \"Lien\" et copiez/collez l'URL obtenue dans ce champ"
+
+#: src/pyams_content/component/video/provider/interfaces.py:185
+msgid "Show title?"
+msgstr "Afficher le titre ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:186
+msgid "If 'no', video title won't be displayed"
+msgstr "Si 'non', le titre de la vidéo ne sera pas affiché"
+
+#: src/pyams_content/component/video/provider/interfaces.py:190
+msgid "Show signature?"
+msgstr "Afficher la signature ?"
+
+#: src/pyams_content/component/video/provider/interfaces.py:191
+msgid "If 'no', video's author signature won't be displayed"
+msgstr "Si 'non', la signature de l'auteur de la vidéo n'est pas affichée"
+
+#: src/pyams_content/component/video/provider/interfaces.py:195
+msgid "Infos color"
+msgstr "Couleur des infos"
+
+#: src/pyams_content/component/video/provider/interfaces.py:196
+msgid "Color used for title and signature"
+msgstr ""
+"Couleur utilisée pour le titre, la signature et les commandes du lecteur"
+
+#: src/pyams_content/component/video/provider/youtube.py:96
+msgid "Youtube settings"
+msgstr "Paramétres Youtube"
+
+#: src/pyams_content/component/video/zmi/paragraph.py:62
+msgid "External video..."
+msgstr "Vidéo externe"
+
+#: src/pyams_content/component/video/zmi/paragraph.py:75
+msgid "Add new external video..."
+msgstr "Ajout d'une vidéo externe"
+
+#: src/pyams_content/component/video/zmi/paragraph.py:126
+msgid "Video provider is required"
+msgstr "Le nom du fournisseur est obligatoire"
+
+#: src/pyams_content/component/video/zmi/paragraph.py:175
+#: src/pyams_content/component/video/zmi/paragraph.py:229
+msgid "Video provider settings"
+msgstr "Paramètres liés au fournisseur"
+
+#: src/pyams_content/component/video/zmi/paragraph.py:155
+msgid "Other settings"
+msgstr "Autres paramètres"
+
+#: src/pyams_content/component/video/interfaces/__init__.py:56
+msgid "Video provider"
+msgstr "Fournisseur"
+
+#: src/pyams_content/component/video/interfaces/__init__.py:57
+msgid "Name of external platform providing selected video"
+msgstr "Nom de la plate-forme externe fournissant la vidéo à afficher"
+
+#: src/pyams_content/shared/common/__init__.py:237
+#: src/pyams_content/shared/common/zmi/properties.py:70
+#: src/pyams_content/shared/common/zmi/manager.py:96
+msgid "Properties"
+msgstr "Propriétés"
+
+#: src/pyams_content/shared/common/__init__.py:147
+#: src/pyams_content/shared/common/__init__.py:155
+#, python-format
+msgid "{date} by {principal}"
+msgstr "{date} par {principal}"
+
+#: src/pyams_content/shared/common/__init__.py:260
+#, python-format
+msgid "title length should be between 40 and 66 characters ({length} actually)"
+msgstr ""
+"Le titre devrait être composé de 40 à 66 caractères ({length} actuellement)"
+
+#: src/pyams_content/shared/common/zmi/search.py:92
+#: src/pyams_content/root/zmi/search.py:91
+msgid "Quick search results"
+msgstr "Résultats de la recherche rapide"
+
+#: src/pyams_content/shared/common/zmi/search.py:157
+#: src/pyams_content/shared/common/zmi/search.py:190
+#: src/pyams_content/root/zmi/search.py:147
+#: src/pyams_content/root/zmi/search.py:180
+msgid "Advanced search"
+msgstr "Recherche avancée"
+
+#: src/pyams_content/shared/common/zmi/search.py:282
+#: src/pyams_content/root/zmi/search.py:260
+msgid "Advanced search results"
+msgstr "Résultats de la recherche avancée"
+
+#: src/pyams_content/shared/common/zmi/search.py:165
+#: src/pyams_content/shared/common/zmi/dashboard.py:231
+#: src/pyams_content/root/zmi/search.py:159
+msgid "Owner"
+msgstr "Propriétaire"
+
+#: src/pyams_content/shared/common/zmi/search.py:168
+#: src/pyams_content/shared/common/zmi/dashboard.py:154
+msgid "Status"
+msgstr "Statut"
+
+#: src/pyams_content/shared/common/zmi/search.py:172
+#: src/pyams_content/root/zmi/search.py:162
+msgid "Created after..."
+msgstr "Créé entre le"
+
+#: src/pyams_content/shared/common/zmi/search.py:175
+#: src/pyams_content/root/zmi/search.py:165
+msgid "Created before..."
+msgstr "et le"
+
+#: src/pyams_content/shared/common/zmi/search.py:178
+#: src/pyams_content/root/zmi/search.py:168
+msgid "Modified after..."
+msgstr "Modifié entre le"
+
+#: src/pyams_content/shared/common/zmi/search.py:181
+#: src/pyams_content/root/zmi/search.py:171
+msgid "Modified before..."
+msgstr "et le"
+
+#: src/pyams_content/shared/common/zmi/properties.py:60
+msgid "Composition"
+msgstr "Composition"
+
+#: src/pyams_content/shared/common/zmi/properties.py:82
+msgid "Content properties"
+msgstr "Propriétés élémentaires"
+
+#: src/pyams_content/shared/common/zmi/types.py:67
+msgid "Data types"
+msgstr "Types de contenus"
+
+#: src/pyams_content/shared/common/zmi/types.py:145
+msgid "Data type label"
+msgstr "Libellé du type"
+
+#: src/pyams_content/shared/common/zmi/types.py:185
+#: src/pyams_content/shared/common/zmi/types.py:396
+msgid "Default associations"
+msgstr "Liens et pièces jointes par défaut"
+
+#: src/pyams_content/shared/common/zmi/types.py:213
+msgid "Content data types"
+msgstr "Types de contenus"
+
+#: src/pyams_content/shared/common/zmi/types.py:236
+msgid "Add data type"
+msgstr "Ajouter un type"
+
+#: src/pyams_content/shared/common/zmi/types.py:248
+msgid "Add new data type"
+msgstr "Ajout d'un type de contenu"
+
+#: src/pyams_content/shared/common/zmi/types.py:285
+msgid "Data type properties"
+msgstr "Propriétés du type de contenu"
+
+#: src/pyams_content/shared/common/zmi/types.py:359
+msgid "Subtype label"
+msgstr "Libellé du sous-type"
+
+#: src/pyams_content/shared/common/zmi/types.py:440
+msgid "Add subtype"
+msgstr "Ajouter un sous-type"
+
+#: src/pyams_content/shared/common/zmi/types.py:452
+msgid "Add new subtype"
+msgstr "Ajout d'un sous-type de contenu"
+
+#: src/pyams_content/shared/common/zmi/types.py:498
+msgid "Data subtype properties"
+msgstr "Propriétés du fichier standard"
+
+#: src/pyams_content/shared/common/zmi/types.py:112
+msgid "No currently defined data type."
+msgstr "Aucun type de contenu n'est actuellement défini."
+
+#: src/pyams_content/shared/common/zmi/types.py:275
+msgid "Specified type name is already used!"
+msgstr "Le nom indiqué pour ce type de contenu est déjà utilisé !"
+
+#: src/pyams_content/shared/common/zmi/types.py:474
+msgid "Subtype was correctly added."
+msgstr "Le sous-type a été ajouté."
+
+#: src/pyams_content/shared/common/zmi/types.py:488
+msgid "Specified subtype name is already used!"
+msgstr "Le nom indiqué pour ce sous-type de contenu est déjà utilisé !"
+
+#: src/pyams_content/shared/common/zmi/types.py:157
+msgid "Click to see subtypes"
+msgstr "Montrer ou caher les sous-types"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:844
+msgid "Prior checks"
+msgstr "Contrôles préalables : avez-vous ?"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:123
+msgid "Request publication"
+msgstr "Demander la publication"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:210
+#: src/pyams_content/workflow/__init__.py:315
+msgid "Cancel publication request"
+msgstr "Annuler la demande de publication"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:250
+msgid "Refuse publication request"
+msgstr "Refuser la demande de publication"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:304
+#: src/pyams_content/workflow/basic.py:196
+msgid "Publish"
+msgstr "Publier"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:393
+msgid "Request retire"
+msgstr "Demander le retrait"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:449
+msgid "Cancel retire request"
+msgstr "Annuler la demande de retrait"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:489
+msgid "Retire"
+msgstr "Retirer"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:530
+#: src/pyams_content/workflow/__init__.py:436
+msgid "Request archive"
+msgstr "Demander l'archivage"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:573
+msgid "Cancel archive request"
+msgstr "Annuler la demande d'archivage"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:613
+msgid "Archive"
+msgstr "Archiver"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:654
+#: src/pyams_content/workflow/__init__.py:501
+#: src/pyams_content/workflow/__init__.py:513
+#: src/pyams_content/workflow/__init__.py:525
+#: src/pyams_content/workflow/__init__.py:537
+#: src/pyams_content/workflow/__init__.py:549
+#: src/pyams_content/workflow/basic.py:224
+#: src/pyams_content/workflow/basic.py:236
+msgid "Create new version"
+msgstr "Créer une nouvelle version"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:705
+#: src/pyams_content/workflow/__init__.py:561
+#: src/pyams_content/workflow/basic.py:248
+msgid "Delete version"
+msgstr "Supprimer cette version"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:790
+msgid "Previewed content?"
+msgstr "Prévisualisé ce contenu ?"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:794
+msgid "Verified content?"
+msgstr "Audité ce contenu ?"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:180
+#: src/pyams_content/shared/common/zmi/workflow.py:362
+msgid "Publication start date is required"
+msgstr "La date de début de publication est obligatoire"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:273
+#: src/pyams_content/shared/common/zmi/workflow.py:419
+msgid "A comment is required"
+msgstr "Le commentaire est obligatoire"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:729
+msgid "Delete content"
+msgstr "Supprimer définitivement ce contenu"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:738
+msgid "Delete definitively"
+msgstr "Supprimer définitivement"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:860
+msgid ""
+"You must confirm that you previewed and checked this content before "
+"requesting publication!!"
+msgstr ""
+"Vous devez avoir prévisualisé et audité ce contenu avant de pouvoir le "
+"publier !!"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:87
+#, python-format
+msgid "{state} | by {principal}"
+msgstr "{state} | par {principal}"
+
+#: src/pyams_content/shared/common/zmi/workflow.py:83
+#: src/pyams_content/workflow/__init__.py:648
+#: src/pyams_content/workflow/__init__.py:619
+#: src/pyams_content/workflow/basic.py:315
+#: src/pyams_content/workflow/basic.py:286
+#, python-format
+msgid "{state} {date}"
+msgstr "{state} {date}"
+
+#: src/pyams_content/shared/common/zmi/__init__.py:265
+msgid "Duplicate content..."
+msgstr "Dupliquer le contenu"
+
+#: src/pyams_content/shared/common/zmi/__init__.py:285
+msgid "Duplicate content"
+msgstr "Dupliquer ce contenu"
+
+#: src/pyams_content/shared/common/zmi/__init__.py:84
+msgid "This title can be modified afterwards"
+msgstr "Pourra être modifié ultérieurement"
+
+#: src/pyams_content/shared/common/zmi/__init__.py:276
+msgid "Duplicate this content"
+msgstr "Dupliquer ce contenu"
+
+#: src/pyams_content/shared/common/zmi/__init__.py:337
+#, python-format
+msgid "Clone created from version {source} of {oid} (in « {state} » state)"
+msgstr ""
+"Duplication de la version {source} du contenu {oid} (alors en statut "
+"« {state} »)"
+
+#: src/pyams_content/shared/common/zmi/__init__.py:382
+msgid "Created or modified in this version"
+msgstr "Créé ou modifié dans cette version"
+
+#: src/pyams_content/shared/common/zmi/summary.py:50
+msgid "Display content summary"
+msgstr "Récapitulatif pour ce contenu"
+
+#: src/pyams_content/shared/common/zmi/summary.py:74
+msgid "Identity card"
+msgstr "Carte d'identité"
+
+#: src/pyams_content/shared/common/zmi/summary.py:86
+msgid "Requested action"
+msgstr "Évolution demandée"
+
+#: src/pyams_content/shared/common/zmi/summary.py:127
+msgid "Publication and retire dates"
+msgstr "Dates de publication et de retrait planifiées"
+
+#: src/pyams_content/shared/common/zmi/summary.py:146
+msgid "Current version"
+msgstr "À propos de cette version"
+
+#: src/pyams_content/shared/common/zmi/summary.py:176
+msgid "Content history"
+msgstr "Pour mémoire"
+
+#: src/pyams_content/shared/common/zmi/summary.py:117
+msgid "Associated comment"
+msgstr "Commentaire associé"
+
+#: src/pyams_content/shared/common/zmi/summary.py:158
+#: src/pyams_content/shared/common/zmi/dashboard.py:198
+msgid "Version"
+msgstr "Version"
+
+#: src/pyams_content/shared/common/zmi/summary.py:107
+#, python-format
+msgid "{state} {date} by {principal}"
+msgstr "{state} {date} par {principal}"
+
+#: src/pyams_content/shared/common/zmi/summary.py:164
+#, python-format
+msgid "{state} since {date}, by {principal}"
+msgstr "{state} depuis {date} par {principal}"
+
+#: src/pyams_content/shared/common/zmi/manager.py:107
+msgid "Shared tool properties"
+msgstr "Propriétés de l'outil"
+
+#: src/pyams_content/shared/common/zmi/manager.py:125
+msgid "WARNING"
+msgstr "ATTENTION"
+
+#: src/pyams_content/shared/common/zmi/manager.py:127
+msgid ""
+"Workflow shouldn't be modified if this tool already contains any shared "
+"content!"
+msgstr ""
+"Le workflow ne doit pas être modifié si cet outil renferme déjà des contenus "
+"partagés !"
+
+#: src/pyams_content/shared/common/zmi/manager.py:150
+msgid "Languages"
+msgstr "Langues"
+
+#: src/pyams_content/shared/common/zmi/manager.py:162
+msgid "Content languages"
+msgstr "Langues pour la traduction de cet outil"
+
+#: src/pyams_content/shared/common/zmi/manager.py:172
+msgid ""
+"Tool languages are used to translate own tool properties, and newly created "
+"contents will propose these languages by default"
+msgstr ""
+"Les langues sont utilisées pour traduire les propriétés de l'outil.\n"
+"\n"
+"Les nouveaux contenus proposeront également ces langues par défaut."
+
+#: src/pyams_content/shared/common/zmi/manager.py:80
+msgid "Content management"
+msgstr "Gérer ce gabarit"
+
+#: src/pyams_content/shared/common/zmi/manager.py:82
+msgid "Tool management"
+msgstr "Gérer l'outil partagé"
+
+#: src/pyams_content/shared/common/zmi/owner.py:50
+msgid "Change owner..."
+msgstr "Changer de propriétaire"
+
+#: src/pyams_content/shared/common/zmi/owner.py:83
+msgid "Change content's owner"
+msgstr "Changement de propriétaire"
+
+#: src/pyams_content/shared/common/zmi/owner.py:125
+msgid ""
+"All versions of this content which are not archived will be transferred to "
+"newly selected owner"
+msgstr ""
+"Toutes les versions non archivées de ce contenu seront transférées au "
+"nouveau propriétaire sélectionné"
+
+#: src/pyams_content/shared/common/zmi/owner.py:60
+msgid "New owner"
+msgstr "Nouveau propriétaire"
+
+#: src/pyams_content/shared/common/zmi/owner.py:61
+msgid "The selected user will become the new content's owner"
+msgstr "L'utilisateur sélectionné deviendra le nouveau propriétaire du contenu"
+
+#: src/pyams_content/shared/common/zmi/owner.py:63
+msgid "Keep previous owner as contributor"
+msgstr "L'ancien propriétaire reste contributeur"
+
+#: src/pyams_content/shared/common/zmi/owner.py:64
+msgid "If 'yes', the previous owner will still be able to modify this content"
+msgstr ""
+"Si 'oui', l'actuel propriétaire du contenu en restera contributeur et pourra "
+"donc continuer à le mettre à jour"
+
+#: src/pyams_content/shared/common/zmi/owner.py:74
+msgid "Change owner"
+msgstr "Changer le propriétaire"
+
+#: src/pyams_content/shared/common/zmi/site.py:38
+#, python-format
+msgid ""
+"SEARCH - Between all contents published into &laquo;&nbsp;{site}&nbsp;&raquo;"
+msgstr ""
+"RECHERCHE - Tous contenus présents dans &laquo;&nbsp;{site}&nbsp;&raquo; "
+"confondus"
+
+#: src/pyams_content/shared/common/zmi/portal.py:46
+msgid "Edit default template properties"
+msgstr "Modèle de présentation par défaut"
+
+#: src/pyams_content/shared/common/zmi/portal.py:56
+msgid ""
+"**This form allows you to select shared content default template.**\n"
+"\n"
+"If you choose to use a shared template, you can only adjust settings of each "
+"portlet individually but can't change portlets list or page configuration.\n"
+"\n"
+"If you use a local template, you can define a whole custom configuration but "
+"the template definition can't be reused anywhere..."
+msgstr ""
+"Vous pouvez modifier le modèle de présentation qui sera appliqué **par "
+"défaut** à tous les contenus de ce gabarit.\n"
+"\n"
+"Si vous choisissez d'utiliser un modèle de présentation partagé, vous "
+"pourrez ajuster les paramètres de chaque composant mais ne pourrez pas "
+"modifier la liste des composants ou leur position et la configuration de la "
+"page.\n"
+"\n"
+"Si vous choisissez d'utiliser un modèle de présentation \"local\", vous "
+"pourrez définir l'ensemble de la configuration mais le modèle de "
+"présentation ne pourra pas être réutilisé ailleurs que dans les contenus de "
+"ce gabarit."
+
+#: src/pyams_content/shared/common/zmi/portal.py:72
+msgid "Override tool default template"
+msgstr "Ne pas utiliser le modèle par défaut de ce gabarit"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:134
+msgid "Unique ID"
+msgstr "N° IN"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:181
+msgid "Status date"
+msgstr "En date du"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:213
+msgid "Status principal"
+msgstr "Intervenant"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:250
+msgid "Last modification"
+msgstr "Dernière modification"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:273
+#: src/pyams_content/root/zmi/__init__.py:110
+msgid "Dashboard"
+msgstr "Tableau de bord"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:283
+msgid "Contents dashboard"
+msgstr "Mon tableau de bord"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:329
+#: src/pyams_content/root/zmi/__init__.py:159
+#, python-format
+msgid "MANAGER - {0} content waiting for your action"
+msgstr "RESPONSABLE - {0} contenu en attente de votre intervention"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:330
+#: src/pyams_content/root/zmi/__init__.py:160
+#, python-format
+msgid "MANAGER - {0} contents waiting for your action"
+msgstr "RESPONSABLE - {0} contenus en attente de votre intervention"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:370
+#: src/pyams_content/root/zmi/__init__.py:203
+#, python-format
+msgid "CONTRIBUTOR - {0} content waiting for action"
+msgstr "CONTRIBUTEUR - {0} contenu soumis à un responsable"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:371
+#: src/pyams_content/root/zmi/__init__.py:204
+#, python-format
+msgid "CONTRIBUTOR - {0} contents waiting for action"
+msgstr "CONTRIBUTEUR - {0} contenus soumis à un responsable"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:402
+#: src/pyams_content/root/zmi/__init__.py:238
+#, python-format
+msgid "CONTRIBUTOR - {0} modified content"
+msgstr "CONTRIBUTEUR - {0} contenu modifié"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:443
+#: src/pyams_content/root/zmi/__init__.py:281
+msgid "My contents"
+msgstr "Mes contenus"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:458
+#: src/pyams_content/shared/common/zmi/templates/dashboard.pt:8
+#: src/pyams_content/root/zmi/__init__.py:296
+#: src/pyams_content/root/zmi/templates/dashboard.pt:8
+msgid "My favorites"
+msgstr "Mes favoris"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:467
+#: src/pyams_content/root/zmi/__init__.py:305
+#, python-format
+msgid "CONTRIBUTOR - {0} favorite"
+msgstr "CONTRIBUTEUR - {0} contenu favori"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:468
+#: src/pyams_content/root/zmi/__init__.py:306
+#, python-format
+msgid "CONTRIBUTOR - {0} favorites"
+msgstr "CONTRIBUTEUR - {0} contenus favoris"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:480
+#: src/pyams_content/shared/common/zmi/templates/header.pt:23
+msgid "Add/remove from favorites"
+msgstr "Ajouter/enlever des favoris"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:543
+#: src/pyams_content/root/zmi/__init__.py:344
+msgid "Your favorites"
+msgstr "Mes favoris"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:556
+#: src/pyams_content/root/zmi/__init__.py:357
+msgid "My preparations"
+msgstr "Mes préparations"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:565
+#: src/pyams_content/root/zmi/__init__.py:366
+#, python-format
+msgid "CONTRIBUTOR - {0} prepared content"
+msgstr "CONTRIBUTEUR - {0} contenu en préparation"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:566
+#: src/pyams_content/root/zmi/__init__.py:367
+#, python-format
+msgid "CONTRIBUTOR - {0} prepared contents"
+msgstr "CONTRIBUTEUR - {0} contenus en préparation"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:605
+#: src/pyams_content/root/zmi/__init__.py:405
+msgid "Your prepared contents"
+msgstr "Mes contenus en préparation"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:618
+#: src/pyams_content/root/zmi/__init__.py:418
+msgid "My submissions"
+msgstr "Mes demandes"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:627
+#: src/pyams_content/root/zmi/__init__.py:427
+#, python-format
+msgid "CONTRIBUTOR - {0} submitted content"
+msgstr "CONTRIBUTEUR - {0} contenu soumis à un responsable"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:628
+#: src/pyams_content/root/zmi/__init__.py:428
+#, python-format
+msgid "CONTRIBUTOR - {0} submitted contents"
+msgstr "CONTRIBUTEUR - {0} contenus soumis à un responsable"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:667
+#: src/pyams_content/root/zmi/__init__.py:466
+msgid "Your submitted contents"
+msgstr "Mes contenus soumis à un responsable"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:680
+#: src/pyams_content/root/zmi/__init__.py:479
+msgid "My publications"
+msgstr "Mes publications"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:689
+#: src/pyams_content/root/zmi/__init__.py:488
+#, python-format
+msgid "CONTRIBUTOR - {0} published content"
+msgstr "CONTRIBUTEUR - {0} contenu publié"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:690
+#: src/pyams_content/root/zmi/__init__.py:489
+#, python-format
+msgid "CONTRIBUTOR - {0} published contents"
+msgstr "CONTRIBUTEUR - {0} contenus publiés"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:729
+#: src/pyams_content/root/zmi/__init__.py:527
+msgid "Your published contents"
+msgstr "Mes contenus publiés"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:742
+#: src/pyams_content/root/zmi/__init__.py:540
+msgid "My retired contents"
+msgstr "Mes contenus retirés"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:751
+#: src/pyams_content/root/zmi/__init__.py:549
+#, python-format
+msgid "CONTRIBUTOR - {0} retired content"
+msgstr "CONTRIBUTEUR - {0} contenu retiré"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:752
+#: src/pyams_content/root/zmi/__init__.py:550
+#, python-format
+msgid "CONTRIBUTOR - {0} retired contents"
+msgstr "CONTRIBUTEUR - {0} contenus retirés"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:792
+#: src/pyams_content/root/zmi/__init__.py:589
+msgid "Your retired contents"
+msgstr "Mes contenus retirés"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:805
+#: src/pyams_content/root/zmi/__init__.py:602
+msgid "My archived contents"
+msgstr "Mes contenus archivés"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:814
+#: src/pyams_content/root/zmi/__init__.py:611
+#, python-format
+msgid "CONTRIBUTOR - {0} archived content"
+msgstr "CONTRIBUTEUR - {0} contenu archivé"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:815
+#: src/pyams_content/root/zmi/__init__.py:612
+#, python-format
+msgid "CONTRIBUTOR - {0} archived contents"
+msgstr "CONTRIBUTEUR - {0} contenus archivés"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:861
+#: src/pyams_content/root/zmi/__init__.py:657
+msgid "Your archived contents"
+msgstr "Mes contenus archivés"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:875
+#: src/pyams_content/root/zmi/__init__.py:671
+msgid "Other interventions"
+msgstr "Toutes les interventions"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:890
+#: src/pyams_content/root/zmi/__init__.py:686
+msgid "Last publications"
+msgstr "Dernières publications"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:899
+#: src/pyams_content/root/zmi/__init__.py:695
+#, python-format
+msgid "CONTRIBUTORS - {0} published content"
+msgstr "TOUS CONTRIBUTEURS - {0} contenu publié"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:945
+#: src/pyams_content/root/zmi/__init__.py:740
+msgid "Last published contents"
+msgstr "Derniers contenus publiés"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:958
+#: src/pyams_content/root/zmi/__init__.py:753
+msgid "Last updates"
+msgstr "Dernières modifications"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:967
+#: src/pyams_content/root/zmi/__init__.py:762
+#, python-format
+msgid "CONTRIBUTORS - {0} updated content"
+msgstr "TOUS CONTRIBUTEURS - {0} contenu modifié"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:1012
+#: src/pyams_content/root/zmi/__init__.py:806
+msgid "Last updated contents"
+msgstr "Derniers contenus modifiés"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:407
+#: src/pyams_content/root/zmi/__init__.py:243
+#, python-format
+msgid "CONTRIBUTOR - {0} modified contents"
+msgstr "CONTRIBUTEUR - {0} contenus modifiés"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:409
+#: src/pyams_content/root/zmi/__init__.py:245
+#, python-format
+msgid "CONTRIBUTOR - Last {0} modified contents"
+msgstr "CONTRIBUTEUR - Les {0} dernières modifications"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:904
+#: src/pyams_content/root/zmi/__init__.py:700
+#, python-format
+msgid "CONTRIBUTORS - Last {0} published contents"
+msgstr "TOUS CONTRIBUTEURS - Les {0} dernières publications"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:906
+#: src/pyams_content/root/zmi/__init__.py:702
+msgid "CONTRIBUTORS - Last published contents (in the limit of 50)"
+msgstr "TOUS CONTRIBUTEURS - Les {0} dernières publications"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:972
+#: src/pyams_content/root/zmi/__init__.py:767
+#, python-format
+msgid "CONTRIBUTORS - Last {0} updated contents"
+msgstr "TOUS CONTRIBUTEURS - Les {0} dernières modifications"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:974
+#: src/pyams_content/root/zmi/__init__.py:769
+msgid "CONTRIBUTORS - Last updated contents (in the limit of 50)"
+msgstr "TOUS CONTRIBUTEURS - Les {0} dernières modifications"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:306
+#, python-format
+msgid "SEARCH - Between all contents of type &laquo;&nbsp;{type}&nbsp;&raquo;"
+msgstr "RECHERCHE - Tous contenus &laquo;&nbsp;{type}&nbsp;&raquo; confondus"
+
+#: src/pyams_content/shared/common/zmi/dashboard.py:171
+#: src/pyams_content/shared/common/zmi/header.py:96
+msgid "Content publication start date is not passed yet"
+msgstr "La date de début de publication n'est pas encore atteinte"
+
+#: src/pyams_content/shared/common/zmi/security.py:64
+msgid "Contributors restrictions"
+msgstr "Paramètres des contributeurs"
+
+#: src/pyams_content/shared/common/zmi/security.py:73
+msgid "Content contributors restrictions"
+msgstr "Liste des contributeurs"
+
+#: src/pyams_content/shared/common/zmi/security.py:107
+msgid "Contributor name"
+msgstr "Nom du contributeur"
+
+#: src/pyams_content/shared/common/zmi/security.py:118
+#: src/pyams_content/shared/common/zmi/security.py:270
+#: src/pyams_content/shared/common/interfaces/__init__.py:260
+#: src/pyams_content/shared/common/interfaces/__init__.py:285
+msgid "Publication checks"
+msgstr "Activer le tunnel de publication"
+
+#: src/pyams_content/shared/common/zmi/security.py:218
+msgid "Managers restrictions"
+msgstr "Paramètres des responsables"
+
+#: src/pyams_content/shared/common/zmi/security.py:227
+msgid "Content managers restrictions"
+msgstr "Liste des responsables"
+
+#: src/pyams_content/shared/common/zmi/security.py:259
+msgid "Manager name"
+msgstr "Nom du responsable"
+
+#: src/pyams_content/shared/common/zmi/security.py:287
+msgid "Restricted"
+msgstr "Restrictions"
+
+#: src/pyams_content/shared/common/zmi/security.py:304
+msgid "Owners"
+msgstr "Propriétaires"
+
+#: src/pyams_content/shared/common/zmi/security.py:394
+msgid "Publication workflow"
+msgstr "Workflow de publication"
+
+#: src/pyams_content/shared/common/zmi/security.py:167
+#, python-format
+msgid "Edit contributor restrictions for « {0} »"
+msgstr "Gérer les paramètres d'intervention de « {0} »"
+
+#: src/pyams_content/shared/common/zmi/security.py:353
+#, python-format
+msgid "Edit manager restrictions for « {0} »"
+msgstr "Gérer les paramètres d'intervention de « {0} »"
+
+#: src/pyams_content/shared/common/zmi/security.py:400
+msgid "Apply contents restrictions"
+msgstr "Appliquer des restrictions d'accès"
+
+#: src/pyams_content/shared/common/zmi/security.py:402
+msgid ""
+"You can specify which contents this manager will be able to manage. If you "
+"specify several criteria, the manager will be able to manage contents for "
+"which at least one criteria is matching."
+msgstr ""
+"Vous pouvez indiquer les propriétés des contenus que ce responsable sera "
+"autorisé à gérer. Si vous indiquez plusieurs critères, il pourra gérer les "
+"contenus pour lesquels au moins l'un des critères correspond."
+
+#: src/pyams_content/shared/common/zmi/header.py:85
+#, python-format
+msgid "{state} by {principal}"
+msgstr "{state} par {principal}"
+
+#: src/pyams_content/shared/common/zmi/header.py:116
+#, python-format
+msgid "since {date}"
+msgstr "depuis {date}"
+
+#: src/pyams_content/shared/common/zmi/header.py:128
+msgid "access published version"
+msgstr "accéder à la version en ligne"
+
+#: src/pyams_content/shared/common/zmi/header.py:135
+msgid "access new version"
+msgstr "accéder à la version en préparation"
+
+#: src/pyams_content/shared/common/zmi/header.py:145
+msgid "access waiting version"
+msgstr "accéder à la version en attente"
+
+#: src/pyams_content/shared/common/zmi/header.py:156
+msgid "access retired version"
+msgstr "accéder à la version retirée"
+
+#: src/pyams_content/shared/common/zmi/header.py:166
+msgid "access archived version"
+msgstr "accéder à la version archivée"
+
+#: src/pyams_content/shared/common/zmi/templates/wf-retiring-message.pt:2
+msgid ""
+"You considerate that the currently published version should no more be "
+"publicly visible."
+msgstr ""
+"Vous considérez que la version actuellement en ligne ne doit plus être "
+"consultable."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-retiring-message.pt:3
+msgid ""
+"WARNING: the content will remain visible until a manager validate the "
+"request."
+msgstr ""
+"ATTENTION : ce contenu restera visible jusqu'à ce qu'un responsable prenne "
+"en charge votre demande."
+
+#: src/pyams_content/shared/common/zmi/templates/header.pt:6
+msgid "Back to previous page"
+msgstr "Revenir à la page précédente"
+
+#: src/pyams_content/shared/common/zmi/templates/header.pt:20
+msgid "by ${owner}"
+msgstr "de ${owner}"
+
+#: src/pyams_content/shared/common/zmi/templates/wf-archive-message.pt:2
+msgid "As a manager, you considerate that this content must be archived."
+msgstr ""
+"En tant que responsable, vous considérez que ce contenu doit être archivé."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-archive-message.pt:3
+#: src/pyams_content/shared/common/zmi/templates/wf-archiving-message.pt:3
+msgid ""
+"After archiving, it will be backed up but you will not be able to publish it "
+"again except by creating a new version."
+msgstr ""
+"L'archivage permet de conserver une version d'un contenu dans son état "
+"actuel ; il pourra ensuite à nouveau être publié, en créant une nouvelle "
+"version."
+
+#: src/pyams_content/shared/common/zmi/templates/check-input.pt:34
+#: src/pyams_content/shared/common/zmi/templates/preview-input.pt:34
+#: src/pyams_content/shared/common/interfaces/types.py:40
+#: src/pyams_content/shared/form/zmi/field.py:159
+#: src/pyams_content/shared/form/interfaces/__init__.py:62
+#: src/pyams_content/features/menu/zmi/__init__.py:208
+msgid "Label"
+msgstr "Libellé"
+
+#: src/pyams_content/shared/common/zmi/templates/check-input.pt:39
+#: src/pyams_content/features/checker/zmi/__init__.py:43
+msgid "Audit"
+msgstr "Audit"
+
+#: src/pyams_content/shared/common/zmi/templates/dashboard.pt:29
+#: src/pyams_content/root/zmi/templates/dashboard.pt:29
+msgid "Quick search..."
+msgstr "Recherche rapide..."
+
+#: src/pyams_content/shared/common/zmi/templates/dashboard.pt:35
+#: src/pyams_content/root/zmi/templates/dashboard.pt:35
+msgid "Advanced search..."
+msgstr "Recherche avancée..."
+
+#: src/pyams_content/shared/common/zmi/templates/dashboard.pt:49
+#: src/pyams_content/root/zmi/templates/dashboard.pt:49
+msgid "You are not actually concerned by any content."
+msgstr "Vous n'êtes actuellement concerné par aucun contenu."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-publish-message.pt:2
+msgid ""
+"As a manager, you considerate that this content is complete and can be "
+"published 'as is'."
+msgstr ""
+"En tant que responsable, vous considérez que ce contenu peut être publié en "
+"l'état."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-publish-message.pt:4
+msgid ""
+"This operation will make the content publicly available (except if "
+"restricted access has been set)."
+msgstr ""
+"Cette opération va rendre le contenu visible de tous, sauf si des "
+"restrictions d'accès lui ont été appliquées."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-create-message.pt:2
+msgid ""
+"This new content is going to be created in 'draft' mode, so that you can "
+"complete it before publication."
+msgstr ""
+"Ce nouveau contenu va être créé en statut 'Brouillon' pour vous permettre de "
+"le préparer."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-create-message.pt:4
+msgid ""
+"A unique number is also going to be assigned to it. This number will be "
+"shared by all content's versions."
+msgstr ""
+"Un numéro unique va lui être attribué ; il sera permanent, quelle que soit "
+"la version."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-operator-warning.pt:1
+msgid ""
+"WARNING: this request was made by a contributor which is not the owner of "
+"this content."
+msgstr ""
+"ATTENTION : cette demande est formulée par un contributeur habilité qui "
+"n'est pas le propriétaire."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-clone-message.pt:2
+msgid "You considerate that the currently published must evolve."
+msgstr "Vous considérez que la version actuelle de ce contenu doit évoluer."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-clone-message.pt:3
+msgid ""
+"By creating a new version, you can update it's content without impacting the "
+"currently published one."
+msgstr ""
+"En créant une nouvelle version, vous pourrez apporter des modifications sans "
+"impacter la version actuelle."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-clone-message.pt:5
+msgid ""
+"When the new version will be complete, you will be able to make a new "
+"publication request to replace the currently published version (which will "
+"be archived automatically)."
+msgstr ""
+"Lorsque la nouvelle version sera prête, vous demanderez sa publication (et "
+"la version actuelle sera automatiquement archivée)."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-propose-message.pt:1
+msgid ""
+"This publication request is going to be transmitted to a content manager."
+msgstr "Cette demande de publication va être soumise à un responsable."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-duplicate-message.pt:2
+msgid "You are going to duplicate a whole content."
+msgstr ""
+"Vous vous apprêtez à dupliquer une version de ce contenu pour en créer un "
+"nouveau."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-duplicate-message.pt:3
+msgid ""
+"The new copy is going to be created in 'draft' mode, so that you can modify "
+"it before publication."
+msgstr ""
+"Cette copie va être créée en statut 'Brouillon' pour vous permettre de la "
+"préparer."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-duplicate-message.pt:5
+msgid ""
+"A new unique number is also going to be assigned to it. This number will be "
+"shared by all content's versions."
+msgstr ""
+"Un numéro unique lui sera également attribué ; ce numéro sera conservé "
+"pendant toute la vie du contenu, quelle que soit la version."
+
+#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:128
+#: src/pyams_content/root/zmi/templates/advanced-search.pt:128
+msgid "Created between"
+msgstr "Créé entre le"
+
+#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:140
+#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:166
+#: src/pyams_content/root/zmi/templates/advanced-search.pt:140
+#: src/pyams_content/root/zmi/templates/advanced-search.pt:166
+msgid "and"
+msgstr "et le"
+
+#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:154
+#: src/pyams_content/root/zmi/templates/advanced-search.pt:154
+msgid "Modified between"
+msgstr "Modifié entre le"
+
+#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:202
+#: src/pyams_content/root/zmi/templates/advanced-search.pt:202
+msgid "Tab label"
+msgstr "Libellé de l'onglet"
+
+#: src/pyams_content/shared/common/zmi/templates/wf-refuse-propose-message.pt:2
+msgid ""
+"As a content manager, you considerate that this content can't be published "
+"'as is'."
+msgstr ""
+"En tant que responsable, vous considérez que ce contenu ne peut pas être "
+"publié en l'état."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-refuse-propose-message.pt:4
+msgid ""
+"The contributor will be notified of this and will be able to update the "
+"content before doing a new publication request."
+msgstr ""
+"Le contributeur qui vous a sollicité va être notifié de votre refus ; il "
+"pourra modifier ce contenu et effectuer une nouvelle demande de publication."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-cancel-archiving-message.pt:1
+msgid ""
+"After cancelling this request, the content will return to it's previous "
+"retired state."
+msgstr "En annulant cette demande, ce contenu va retourner en statut 'Retiré'."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-cancel-retiring-message.pt:1
+msgid ""
+"After cancelling this request, the content will return to it's normal "
+"published state."
+msgstr "En annulant cette demande, ce contenu va retourner en statut 'Publié'."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-retire-message.pt:2
+msgid ""
+"As a content manager, you considerate that this content should no longer be "
+"published."
+msgstr ""
+"En tant que responsable, vous considérez que ce contenu ne doit plus être "
+"publié."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-retire-message.pt:4
+msgid ""
+"Retired content won't be visible anymore, but it can be updated and "
+"published again, or archived."
+msgstr ""
+"Après ce retrait, il ne sera plus visible des internautes. Il pourra par "
+"contre être publié à nouveau, archivé, ou modifié en créant une nouvelle "
+"version."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-cancel-propose-message.pt:1
+msgid ""
+"After canceling the request, you will be able to update the content again."
+msgstr "En annulant cette demande, ce contenu pourra à nouveau être modifié."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-delete-message.pt:2
+msgid ""
+"This content was never published. If you confirm deletion, it won't be "
+"possible to restore it."
+msgstr ""
+"Ce contenu n'a jamais été publié. Une fois supprimé, il ne pourra pas être "
+"récupéré."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-delete-message.pt:6
+msgid ""
+"The content version is going to be definitely deleted. Will only remain the "
+"currently published version."
+msgstr ""
+"Cette version va être définitivement supprimée, pour revenir à la version "
+"précédente."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-owner-warning.pt:1
+msgid ""
+"RECALL: you are not the owner of the content on which you are intervening."
+msgstr ""
+"ATTENTION : vous intervenez sur un contenu dont vous n'êtes pas le "
+"propriétaire."
+
+#: src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:2
+msgid "FOR YOUR INFORMATION"
+msgstr "POUR VOTRE INFORMATION"
+
+#: src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:5
+msgid "Next step"
+msgstr "Étape suivante"
+
+#: src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:7
+msgid "Previous step"
+msgstr "Étape précédente"
+
+#: src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:10
+msgid "With this comment:"
+msgstr "Avec ce commentaire :"
+
+#: src/pyams_content/shared/common/zmi/templates/wf-archiving-message.pt:2
+msgid "This content is already retired and not visible."
+msgstr "Ce contenu est déjà retiré et n'est plus visible des internautes."
+
+#: src/pyams_content/shared/common/portlet/content/__init__.py:44
+msgid "Context content"
+msgstr "Contenu partagé"
+
+#: src/pyams_content/shared/common/portlet/content/zmi/preview.pt:2
+msgid "This is where the content will be displayed!!"
+msgstr "C'est ici que seront affichés les éléments du contenu."
+
+#: src/pyams_content/shared/common/portlet/content/skin/__init__.py:36
+msgid "Default content renderer"
+msgstr "Par défaut"
+
+#: src/pyams_content/shared/common/interfaces/types.py:36
+#: src/pyams_content/shared/form/zmi/field.py:148
+msgid "Name"
+msgstr "Nom"
+
+#: src/pyams_content/shared/common/interfaces/types.py:37
+msgid "Name of this data type; must be unique between all data types"
+msgstr "Nom de ce type de donnée ; doit être unique entre tous les types"
+
+#: src/pyams_content/shared/common/interfaces/types.py:43
+msgid "Navigation label"
+msgstr "Libellé de navigation"
+
+#: src/pyams_content/shared/common/interfaces/types.py:44
+msgid "Label used for navigation entries"
+msgstr "Libellé utilisé pour les entrées de navigation"
+
+#: src/pyams_content/shared/common/interfaces/types.py:47
+msgid "Tab-folder label"
+msgstr "Libellé d'un l'onglet"
+
+#: src/pyams_content/shared/common/interfaces/types.py:48
+msgid "Label used to include into tab folder"
+msgstr "Libellé utilisé pour l'affichage du type sous la forme d'un onglet"
+
+#: src/pyams_content/shared/common/interfaces/types.py:51
+msgid "'See also' label"
+msgstr "Libellé 'À voir aussi'"
+
+#: src/pyams_content/shared/common/interfaces/types.py:52
+msgid ""
+"This label can be used when contents of this type will be displayed in a "
+"'See also' entries block"
+msgstr ""
+"Ce libellé peut être utilisé lorsque des contenus de ce type sont affichés "
+"sous la forme d'un bloc 'À voir aussi'"
+
+#: src/pyams_content/shared/common/interfaces/types.py:56
+msgid "'Single value' label"
+msgstr "Libellé 'Valeur unique'"
+
+#: src/pyams_content/shared/common/interfaces/types.py:57
+msgid "Label given to this type when a single value is displayed"
+msgstr "Libellé utilisé pour ce type lorsqu'une seule valeur est affichée"
+
+#: src/pyams_content/shared/common/interfaces/types.py:60
+msgid "'Link to list' label"
+msgstr "Libellé 'Lien vers une liste'"
+
+#: src/pyams_content/shared/common/interfaces/types.py:61
+msgid "Label used to display a link to a list of items of this type"
+msgstr ""
+"Libellé utilisé lorsque l'on crée un lien vers uns liste de contenus de ce "
+"type"
+
+#: src/pyams_content/shared/common/interfaces/types.py:64
+msgid "Next content label"
+msgstr "Libellé du contenu suivant"
+
+#: src/pyams_content/shared/common/interfaces/types.py:65
+msgid "Label used to announce next date for this type"
+msgstr ""
+"Libellé utilisé pour afficher la prochaine date d'un événement pour ce type"
+
+#: src/pyams_content/shared/common/interfaces/types.py:69
+msgid "Image associated to this data type"
+msgstr "Image associée à ce type"
+
+#: src/pyams_content/shared/common/interfaces/types.py:82
+msgid "Field names"
+msgstr "Champs associés"
+
+#: src/pyams_content/shared/common/interfaces/types.py:83
+msgid "List of fields associated with this data type"
+msgstr "Liste des champs de saisie associés à ce type"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:46
+#: src/pyams_content/root/interfaces/__init__.py:40
+msgid "Webmasters"
+msgstr "Webmestres"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:47
+msgid "Webmasters can handle all contents, including published ones"
+msgstr ""
+"Les webmestres peuvent modifier et gérer tous les contenus, y compris ceux "
+"qui sont publiés et hormis ceux qui sont archivés"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:51
+msgid "Pilots"
+msgstr "Pilotes"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:52
+msgid ""
+"Pilots can handle tool configuration, manage access rules, grant users roles "
+"and manage managers restrictions"
+msgstr ""
+"Les pilotes gèrent la configuration des outils, désignent les responsables "
+"et les contributeurs, et limitent si nécessaire l'intervention des "
+"responsables à certains contenus"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:57
+#: src/pyams_content/shared/common/interfaces/__init__.py:182
+msgid "Managers"
+msgstr "Responsables"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:58
+#: src/pyams_content/shared/common/interfaces/__init__.py:183
+msgid ""
+"Managers can handle main operations in tool's workflow, like publish or "
+"retire contents"
+msgstr ""
+"Les responsables peuvent intervenir sur les étapes importantes du workflow "
+"(comme la publication ou le retrait des contenus), dans la limite des "
+"restrictions qui leur sont imposées"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:63
+#: src/pyams_content/shared/common/interfaces/__init__.py:188
+msgid "Contributors"
+msgstr "Contributeurs"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:64
+msgid "Contributors are users which are allowed to create new contents"
+msgstr "Les contributeurs sont autorisés à créer de nouveaux contenus"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:90
+msgid "Workflow name"
+msgstr "Nom du workflow"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:91
+msgid "Name of workflow utility used to manage tool contents"
+msgstr "Nom du workflow qui gère le cycle de vie des contenus de cet outil"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:119
+msgid "Content URL"
+msgstr "URL du contenu"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:120
+msgid ""
+"URL used to access this content; this is important for SEO and should "
+"include most important words describing content; spaces and underscores will "
+"be automatically replaced by hyphens"
+msgstr ""
+"<span>Texte utilisé dans l'URL d'accès au contenu ; cette information est "
+"importante pour le référencement : il faut utiliser des mots essentiels pour "
+"décrire ce contenu.</span><br /><strong>Remarque :</strong> le texte saisi "
+"est converti automatiquement en minuscules, les espaces et traits de "
+"soulignement (« underscores ») sont remplacés automatiquement par des traits "
+"d'union, les lettres accentuées par leur équivalent sans accent, et les mots "
+"de moins de trois lettres sont supprimés."
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:125
+msgid "Version creator"
+msgstr "À l'origine de cette version"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:126
+msgid ""
+"Name of content's version creator. The creator of the first version is also "
+"it's owner."
+msgstr ""
+"Nom du créateur de cette version. Le créateur de la première version d'un "
+"contenu est aussi son propriétaire."
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:130
+msgid "First owner"
+msgstr "Premier propriétaire"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:131
+msgid "Name of content's first version owner"
+msgstr "Nom de l'utilisateur ayant créé la première version"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:135
+msgid "Version creation"
+msgstr "Date de création"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:138
+msgid "Version modifiers"
+msgstr "Intervenants"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:139
+msgid "List of principals who modified this content"
+msgstr "Liste des utilisateurs qui sont intervenus sur cette version"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:142
+msgid "Last modifier"
+msgstr "Dernier intervenant"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:143
+msgid "Last principal who modified this content"
+msgstr "Dernier utilisateur étant intervenu sur ce contenu"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:146
+msgid "Last update"
+msgstr "Dernière modification"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:150
+msgid ""
+"The content's description is 'hidden' into HTML's page headers; but it can "
+"be seen, for example, in some search engines results as content's description"
+msgstr ""
+"La description du contenu est 'masquée' dans les en-têtes des pages HTML ; "
+"mais on peut la retrouver, par exemple, dans les listes de résultats des "
+"moteurs de recherche"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:155
+msgid "Keywords"
+msgstr "Mots-clés"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:156
+msgid "They will be included into HTML pages metadata"
+msgstr "Ces mots-clés seront intégrés dans les métadonnées des pages HTML"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:159
+#: src/pyams_content/shared/site/zmi/folder.py:78
+#: src/pyams_content/shared/site/interfaces/__init__.py:66
+msgid "Notepad"
+msgstr "Bloc-notes"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:160
+#: src/pyams_content/shared/site/zmi/folder.py:79
+#: src/pyams_content/shared/site/interfaces/__init__.py:67
+msgid "Internal information to be known about this content"
+msgstr ""
+"Pour prendre note d'informations internes utiles ou importantes à propos de "
+"ce contenu ; ces notes ne seront pas publiées sur internet."
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:175
+msgid "Content owner"
+msgstr "Propriétaire"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:176
+msgid ""
+"The owner is the creator of content's first version, except if it was "
+"transferred afterwards to another owner"
+msgstr ""
+"Le propriétaire est le créateur de la première version d'un contenu, sauf "
+"lorsque cette propriété a été transférée à un autre utilisateur après coup. "
+"Les contenus archivés ne sont plus transférables."
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:189
+msgid ""
+"Contributors are users which are allowed to update this content in addition "
+"to it's owner"
+msgstr ""
+"Les contributeurs sont autorisés, en plus du propriétaire, à modifier ce "
+"contenu"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:194
+msgid "Readers"
+msgstr "Relecteurs"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:195
+msgid ""
+"Readers are users which are asked to verify and comment contents before they "
+"are published"
+msgstr ""
+"Les relecteurs sont des utilisateurs qui sont sollicités pour vérifier et "
+"commenter un contenu avant sa publication"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:200
+msgid "Guests"
+msgstr "Invités"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:201
+msgid ""
+"Guests are users which are allowed to view contents with restricted access"
+msgstr ""
+"Les invités sont autorisés à consulter des contenus dont l'accès a été "
+"restreint"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:221
+msgid "Principal ID"
+msgstr "ID utilisateur"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:261
+msgid ""
+"If 'yes', this contributor will have to confirm that contents have been "
+"previewed and checked before asking for publication"
+msgstr ""
+"Si 'oui', ce contributeur devra confirmer qu'il a bien prévisualisé et "
+"audité chaque contenu avant de pouvoir effectuer une demande de publication"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:286
+msgid ""
+"If 'yes', this manager will have to confirm that contents have been "
+"previewed and checked before publishing a content"
+msgstr ""
+"Si 'oui', ce responsable devra confirmer qu'il a bien prévisualisé et audité "
+"chaque contenu avant de pouvoir effectuer une publication"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:291
+msgid "Restricted contents"
+msgstr "Accès restreints"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:292
+msgid ""
+"If 'yes', this manager will get restricted access to manage contents based "
+"on selected settings"
+msgstr ""
+"Si 'oui', ce responsable n'aura qu'un accès restreint à certains contenus en "
+"fonction de paramètres spécifiques"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:297
+msgid "Selected owners"
+msgstr "Propriétaires"
+
+#: src/pyams_content/shared/common/interfaces/__init__.py:298
+msgid "Manager will have access to contents owned by these principals"
+msgstr ""
+"Le responsable n'aura accès qu'aux contenus dont ces utilisateurs sont "
+"propriétaires"
+
+#: src/pyams_content/shared/form/__init__.py:99
+msgid "Form fields"
+msgstr "Champs de saisie"
+
+#: src/pyams_content/shared/form/__init__.py:100
+msgid "no field defined"
+msgstr "aucun champ défini"
+
+#: src/pyams_content/shared/form/handler.py:80
+msgid "Mailto form handler"
+msgstr "Envoi des données par mail"
+
+#: src/pyams_content/shared/form/handler.py:44
+msgid "No selected handler..."
+msgstr "Aucun gestionnaire sélectionné"
+
+#: src/pyams_content/shared/form/field.py:137
+msgid "Text"
+msgstr "Texte simple"
+
+#: src/pyams_content/shared/form/field.py:147
+msgid "Multi-lines text"
+msgstr "Texte multi-lignes"
+
+#: src/pyams_content/shared/form/field.py:157
+msgid "Boolean"
+msgstr "Booléen"
+
+#: src/pyams_content/shared/form/field.py:167
+msgid "Integer"
+msgstr "Nombre entier"
+
+#: src/pyams_content/shared/form/field.py:177
+msgid "Decimal"
+msgstr "Nombre décimal"
+
+#: src/pyams_content/shared/form/field.py:187
+msgid "E-mail address"
+msgstr "Adresse de messagerie"
+
+#: src/pyams_content/shared/form/field.py:197
+msgid "URI"
+msgstr "URI"
+
+#: src/pyams_content/shared/form/field.py:207
+msgid "Date"
+msgstr "Date"
+
+#: src/pyams_content/shared/form/field.py:221
+msgid "Choice"
+msgstr "Choix unique dans une liste"
+
+#: src/pyams_content/shared/form/field.py:241
+msgid "List"
+msgstr "Choix multiples dans une liste"
+
+#: src/pyams_content/shared/form/zmi/properties.py:41
+msgid "Main form settings"
+msgstr "Paramètres du formulaire"
+
+#: src/pyams_content/shared/form/zmi/properties.py:70
+msgid "Form handler settings"
+msgstr "Paramètres du gestionnaire"
+
+#: src/pyams_content/shared/form/zmi/__init__.py:44
+msgid "This form"
+msgstr "Ce formulaire"
+
+#: src/pyams_content/shared/form/zmi/__init__.py:63
+#: src/pyams_content/shared/form/zmi/__init__.py:74
+msgid "Add form"
+msgstr "Ajouter un formulaire"
+
+#: src/pyams_content/shared/form/zmi/__init__.py:54
+#, python-format
+msgid "Form « {title} »"
+msgstr "Formulaire « {title} »"
+
+#: src/pyams_content/shared/form/zmi/field.py:68
+msgid "Form fields..."
+msgstr "Champs de saisie"
+
+#: src/pyams_content/shared/form/zmi/field.py:170
+#: src/pyams_content/shared/form/interfaces/__init__.py:57
+msgid "Field type"
+msgstr "Type de champ"
+
+#: src/pyams_content/shared/form/zmi/field.py:203
+msgid "Form fields list"
+msgstr "Liste des champs du formulaire"
+
+#: src/pyams_content/shared/form/zmi/field.py:226
+#: src/pyams_content/shared/form/zmi/field.py:239
+msgid "Add form field"
+msgstr "Ajouter un champ"
+
+#: src/pyams_content/shared/form/zmi/field.py:281
+msgid "Edit form field properties"
+msgstr "Propriétés du champ"
+
+#: src/pyams_content/shared/form/zmi/field.py:179
+msgid "-- unknown field type --"
+msgstr "-- type de champ inconnu --"
+
+#: src/pyams_content/shared/form/zmi/field.py:114
+msgid "No currently defined form field."
+msgstr "Ce formulaire ne comporte aucun champ."
+
+#: src/pyams_content/shared/form/zmi/field.py:266
+msgid "Specified name is already used!"
+msgstr "Le nom indiqué pour ce champ est déjà utilisé !"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:35
+msgid "Form"
+msgstr "Formulaire"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:53
+msgid "Field name"
+msgstr "Nom du champ"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:54
+msgid "Field internal name; must be unique for a given form"
+msgstr ""
+"Nom interne du champ ; ce nom doit être unique pour un formulaire donné"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:58
+msgid "Selected field type"
+msgstr "Type de champ proposé à l'internaute"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:63
+msgid "User field label"
+msgstr "Libellé affiché à l'internaute"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:67
+msgid "Field description can be displayed as hint"
+msgstr ""
+"Description du champ, qui pourra être affichée sous la forme d'une info-bulle"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:70
+msgid "Placeholder"
+msgstr "Espace réservé"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:71
+msgid "Some field types like textline can display a placeholder"
+msgstr ""
+"Certains champs tels que les zones de texte peuvent afficher ce texte tant "
+"qu'aucune valeur n'y a été saisie"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:74
+msgid "Optional values"
+msgstr "Liste de valeurs"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:75
+msgid "List of available values (for 'choice' and 'list' field types)"
+msgstr ""
+"Liste des valeurs disponibles (pour les champs de types 'Sélection simple' "
+"ou 'Sélection multiple')"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:78
+msgid "Default value"
+msgstr "Valeur par défaut"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:79
+msgid "Give default value if field type can use it"
+msgstr ""
+"Donner la valeur par défaut du champ ; attention, tous les types de champs "
+"ne peuvent pas utiliser une valeur par défaut !"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:82
+msgid "Required?"
+msgstr "Obligatoire ?"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:83
+msgid "Select 'yes' to set field as mandatory"
+msgstr "Sélectionnez 'oui' pour que la saisie de ce champ soit obligatoire"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:88
+msgid "Select 'no' to hide given field..."
+msgstr "Sélectionnez 'non' pour masquer ce champ"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:122
+msgid "Form title"
+msgstr "Titre du formulaire"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:125
+msgid "Form header"
+msgstr "En-tête du formulaire"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:128
+msgid "Form handler"
+msgstr "Gestionnaire du formulaire"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:129
+msgid "Select how form data is transmitted"
+msgstr ""
+"Le gestionnaire sélectionné détermine la façon dont les données saisies par "
+"les internautes seront stockées ou envoyées"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:132
+msgid "Authenticated only?"
+msgstr "Authentification requise ?"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:133
+msgid "If 'yes', only authenticated users will be able to see and submit form"
+msgstr ""
+"Si 'oui', seuls les utilisateurs authentifiés pourront saisir des données "
+"dans le formulaire et les soumettre"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:137
+msgid "Use captcha?"
+msgstr "Ajouter un captcha ?"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:138
+msgid "If 'yes', a captcha will be added automatically to the form"
+msgstr "Si 'oui', un captcha sera ajouté automatiquement au formulaire"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:142
+msgid "Submit label"
+msgstr "Libellé de soumission"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:143
+msgid "Label of form submit button"
+msgstr "Libellé du bouton de soumission du formulaire"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:180
+msgid "Source address"
+msgstr "Adresse source"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:181
+msgid "Mail address from which form data is sent"
+msgstr "Adresse de messagerie émettrice des données"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:184
+msgid "Source name"
+msgstr "Nom de la source"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:185
+msgid "Name of mail data sender"
+msgstr "Nom de l'émetteur des données"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:188
+msgid "Recipient address"
+msgstr "Adresse de destination"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:189
+msgid "Mail address to which form data is sent"
+msgstr ""
+"Adresse d'envoi des données; vous pouvez indiquer plusieurs adresses en les "
+"séparant par des point-virgules"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:192
+msgid "Recipient name"
+msgstr "Nom du destinataire"
+
+#: src/pyams_content/shared/form/interfaces/__init__.py:193
+msgid "Name of data recipient"
+msgstr "Nom du destinataire des messages"
+
+#: src/pyams_content/shared/news/zmi/__init__.py:44
+msgid "This news topic"
+msgstr "Cette actualité"
+
+#: src/pyams_content/shared/news/zmi/__init__.py:63
+#: src/pyams_content/shared/news/zmi/__init__.py:74
+msgid "Add news topic"
+msgstr "Ajouter une actualité"
+
+#: src/pyams_content/shared/news/zmi/__init__.py:54
+#, python-format
+msgid "News topic « {title} »"
+msgstr "Actualité « {title} »"
+
+#: src/pyams_content/shared/news/interfaces/__init__.py:29
+msgid "News topic"
+msgstr "Actualité"
+
+#: src/pyams_content/shared/view/zmi/properties.py:40
+msgid "Main view settings"
+msgstr "Paramètres de la vue"
+
+#: src/pyams_content/shared/view/zmi/__init__.py:44
+msgid "This view"
+msgstr "Cette vue"
+
+#: src/pyams_content/shared/view/zmi/__init__.py:63
+#: src/pyams_content/shared/view/zmi/__init__.py:73
+msgid "Add view"
+msgstr "Ajouter une vue"
+
+#: src/pyams_content/shared/view/zmi/__init__.py:54
+#, python-format
+msgid "View « {title} »"
+msgstr "Vue « {title} »"
+
+#: src/pyams_content/shared/view/zmi/theme.py:59
+msgid "View themes settings"
+msgstr "Paramétrage des thèmes de la vue"
+
+#: src/pyams_content/shared/view/zmi/reference.py:52
+msgid "References..."
+msgstr "Références"
+
+#: src/pyams_content/shared/view/zmi/reference.py:63
+msgid "View internal references settings"
+msgstr "Références internes de la vue"
+
+#: src/pyams_content/shared/view/portlet/__init__.py:58
+msgid "View items"
+msgstr "Contenu d'une vue"
+
+#: src/pyams_content/shared/view/portlet/interfaces.py:31
+msgid "Selected view"
+msgstr "Vue sélectionnée"
+
+#: src/pyams_content/shared/view/portlet/interfaces.py:32
+msgid "Reference to the view from which items are extracted"
+msgstr "Référence de la vue depuis laquelle est extraite la liste de contenus"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:32
+msgid "View"
+msgstr "Vue"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:40
+#: src/pyams_content/interfaces/__init__.py:111
+#: src/pyams_content/features/review/interfaces.py:74
+msgid "Creation date"
+msgstr "Date de création"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:41
+msgid "Last update date"
+msgstr "Date de dernière modification"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:42
+msgid "Current publication date"
+msgstr "Date de publication de la version actuelle"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:43
+msgid "First publication date"
+msgstr "Date de première publication"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:148
+msgid "Always include selected internal references"
+msgstr "Toujours inclure toutes les références internes"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:149
+msgid "Include selected internal references only if empty"
+msgstr "Inclure les références internes seulement lorsque la vue est vide"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:60
+msgid "Select context type?"
+msgstr "Type du contexte ?"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:61
+msgid "If 'yes', content type will be extracted from context"
+msgstr ""
+"Si 'oui', seuls des contenus du même type que le contexte seront "
+"automatiquement sélectionnés"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:65
+msgid "Other content types"
+msgstr "Autres types de contenus"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:66
+msgid "Selected content types; leave empty for all"
+msgstr ""
+"Autres types de contenus sélectionnés ; si l'on n'extrait pas le type du "
+"contexte et si cette sélection est vide, tous les types seront pris en charge"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:73
+msgid "Order by"
+msgstr "Ordre de tri"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:74
+msgid "Property to use to sort results"
+msgstr "Propriété utilisée pour trier les résultats"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:79
+msgid "Reversed order?"
+msgstr "Ordre inverse ?"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:80
+msgid "If 'yes', items order will be reversed"
+msgstr "Si 'oui', le tri se fera en ordre descendant"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:84
+msgid "Results count limit"
+msgstr "Limite de résultats"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:85
+msgid "Maximum number of results that the view may retrieve"
+msgstr "Nombre maximal de résultats que la vue doit renvoyer"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:158
+msgid "Internal references usage"
+msgstr "Utilisation des références internes"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:159
+msgid "Specify how selected references are included into view results"
+msgstr ""
+"Indique comment les références internes indiquées seront intégrées à la "
+"liste des résultats"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:164
+msgid "Exclude context?"
+msgstr "Exclure le contexte ?"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:165
+msgid "If 'yes', context will be excluded from results list"
+msgstr ""
+"Si 'oui', le contexte d'application de la vue sera automatiquement exclus de "
+"la liste des résultats"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:176
+msgid "Select context themes?"
+msgstr "Thèmes du contexte ?"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:177
+msgid "If 'yes', themes will be extracted from context"
+msgstr ""
+"Si 'oui', les thèmes associés au contexte d'application de la vue seront "
+"automatiquement sélectionnés"
+
+#: src/pyams_content/shared/view/interfaces/__init__.py:181
+msgid "Other terms"
+msgstr "Autres thèmes"
+
+#: src/pyams_content/shared/imagemap/paragraph.py:91
+msgid "no selected image map"
+msgstr "aucune image cliquable sélectionnée"
+
+#: src/pyams_content/shared/imagemap/paragraph.py:97
+#, python-format
+msgid "image map '{0}' can't be found"
+msgstr "l'image cliquable '{0}' est introuvable"
+
+#: src/pyams_content/shared/imagemap/paragraph.py:105
+#, python-format
+msgid "image map '{0}' is not published"
+msgstr "l'image cliquable '{0}' n'est pas publiée"
+
+#: src/pyams_content/shared/imagemap/__init__.py:154
+msgid "no area defined"
+msgstr "aucune zone définie"
+
+#: src/pyams_content/shared/imagemap/zmi/paragraph.py:54
+msgid "Image map..."
+msgstr "Image cliquable"
+
+#: src/pyams_content/shared/imagemap/zmi/paragraph.py:67
+msgid "Add new image map"
+msgstr "Ajout d'une image cliquable"
+
+#: src/pyams_content/shared/imagemap/zmi/paragraph.py:94
+#: src/pyams_content/shared/logo/zmi/paragraph.py:93
+msgid "Edit paragraph properties"
+msgstr "Propriétés de l'image cliquable"
+
+#: src/pyams_content/shared/imagemap/zmi/properties.py:40
+msgid "Background image"
+msgstr "Image de fond"
+
+#: src/pyams_content/shared/imagemap/zmi/__init__.py:44
+msgid "This image map"
+msgstr "Cette image"
+
+#: src/pyams_content/shared/imagemap/zmi/__init__.py:63
+msgid "Add image map"
+msgstr "Ajouter une image"
+
+#: src/pyams_content/shared/imagemap/zmi/__init__.py:73
+msgid "Adding image map"
+msgstr "Ajout d'une image"
+
+#: src/pyams_content/shared/imagemap/zmi/__init__.py:54
+#, python-format
+msgid "Image map « {title} »"
+msgstr "Article de blog « {title} »"
+
+#: src/pyams_content/shared/imagemap/zmi/container.py:54
+msgid "Image areas"
+msgstr "Zones de l'image"
+
+#: src/pyams_content/shared/imagemap/zmi/container.py:65
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:70
+msgid "Image map areas"
+msgstr "Zones cliquables de l'images"
+
+#: src/pyams_content/shared/imagemap/zmi/container.py:140
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:49
+msgid "Link target"
+msgstr "Cible du lien"
+
+#: src/pyams_content/shared/imagemap/zmi/container.py:113
+msgid "No currently defined image."
+msgstr "Aucun image de fond n'est actuellement définie."
+
+#: src/pyams_content/shared/imagemap/zmi/container.py:115
+msgid "No currently defined area."
+msgstr "Aucune zone cliquable n'est actuellement définie."
+
+#: src/pyams_content/shared/imagemap/zmi/container.py:175
+#: src/pyams_content/root/zmi/sites.py:170
+msgid "No provided object_name argument!"
+msgstr "Argument 'object_name' non fourni !"
+
+#: src/pyams_content/shared/imagemap/zmi/container.py:194
+msgid "Given area name doesn't exist!"
+msgstr "La zone indiquée n'existe pas !"
+
+#: src/pyams_content/shared/imagemap/zmi/container.py:186
+msgid "Bad query object_name parameter value!"
+msgstr "Valeur incorrecte du paramètre object_name !"
+
+#: src/pyams_content/shared/imagemap/zmi/area.py:47
+msgid "Add image area"
+msgstr "Ajouter une zone"
+
+#: src/pyams_content/shared/imagemap/zmi/area.py:66
+msgid "Add new image area"
+msgstr "Ajout d'une zone cliquable"
+
+#: src/pyams_content/shared/imagemap/zmi/area.py:107
+msgid "Edit image map properties"
+msgstr "Propriétés de l'image"
+
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:35
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:88
+msgid "Image map"
+msgstr "Image cliquable"
+
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:50
+msgid "Internal or external link associated with this map area"
+msgstr "Lien interne ou externe associé à cette zone"
+
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:55
+msgid "Alternate label associated with this area"
+msgstr "Libellé de substitution associé à cette zone"
+
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:58
+msgid "Map area coordinates"
+msgstr "Coordonnées"
+
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:59
+msgid "List of coordinates of image area"
+msgstr "Positionnement de la zone cliquable sur l'image"
+
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:67
+msgid "Image supporting map areas"
+msgstr "Sélection de l'image qui supportera les zones cliquables"
+
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:71
+msgid "List of defined map areas"
+msgstr "Liste des zones cliquables définies sur l'image"
+
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:95
+#: src/pyams_content/features/alert/interfaces.py:73
+msgid "Internal reference"
+msgstr "Référence interne"
+
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:96
+msgid "Reference to image map object"
+msgstr ""
+"Référence interne de l'image cliquable. Vous pouvez la rechercher par des "
+"mots de son titre, ou par son numéro interne (précédé d'un '+')."
+
+#: src/pyams_content/shared/imagemap/interfaces/__init__.py:99
+msgid "Image map template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/shared/site/folder.py:59
+msgid "Site folder"
+msgstr "Rubrique"
+
+#: src/pyams_content/shared/site/link.py:46
+msgid "Content link"
+msgstr "Contenu lié"
+
+#: src/pyams_content/shared/site/manager.py:68
+#: src/pyams_content/shared/site/zmi/manager.py:125
+msgid "Site manager"
+msgstr "Site"
+
+#: src/pyams_content/shared/site/zmi/folder.py:61
+msgid "Add site folder..."
+msgstr "Ajouter une rubrique"
+
+#: src/pyams_content/shared/site/zmi/folder.py:93
+msgid "Add site folder"
+msgstr "Ajout d'une rubrique"
+
+#: src/pyams_content/shared/site/zmi/folder.py:162
+msgid "Site folder management"
+msgstr "Gérer cette rubrique"
+
+#: src/pyams_content/shared/site/zmi/folder.py:190
+msgid "Site folder properties"
+msgstr "Propriétés de la rubrique"
+
+#: src/pyams_content/shared/site/zmi/folder.py:71
+#: src/pyams_content/interfaces/__init__.py:100
+msgid "Visible label used to display content"
+msgstr "Le titre présenté aux internautes"
+
+#: src/pyams_content/shared/site/zmi/folder.py:74
+#: src/pyams_content/shared/site/zmi/__init__.py:72
+#: src/pyams_content/shared/site/zmi/link.py:66
+msgid "Parent"
+msgstr "Niveau parent"
+
+#: src/pyams_content/shared/site/zmi/folder.py:75
+#: src/pyams_content/shared/site/zmi/link.py:67
+msgid "Folder's parent"
+msgstr "Niveau de rattachement de cette rubrique"
+
+#: src/pyams_content/shared/site/zmi/folder.py:155
+msgid "You must provide a folder name for default server language!"
+msgstr ""
+"Vous devez fournir un nom pour ce dossier pour la langue par défaut du "
+"serveur !"
+
+#: src/pyams_content/shared/site/zmi/__init__.py:55
+msgid "This topic"
+msgstr "Cet article"
+
+#: src/pyams_content/shared/site/zmi/__init__.py:63
+msgid "Add topic..."
+msgstr "Ajouter un article"
+
+#: src/pyams_content/shared/site/zmi/__init__.py:86
+msgid "Add topic"
+msgstr "Ajout d'un article"
+
+#: src/pyams_content/shared/site/zmi/__init__.py:73
+msgid "Topic's parent"
+msgstr "Niveau parent"
+
+#: src/pyams_content/shared/site/zmi/link.py:57
+msgid "Rent content..."
+msgstr "Lier un contenu"
+
+#: src/pyams_content/shared/site/zmi/link.py:77
+msgid "Rent existing content"
+msgstr "Lier un contenu existant"
+
+#: src/pyams_content/shared/site/zmi/link.py:135
+msgid "Edit content link properties"
+msgstr "Propriétés du lien"
+
+#: src/pyams_content/shared/site/zmi/container.py:106
+#: src/pyams_content/shared/site/zmi/container.py:118
+#: src/pyams_content/shared/blog/zmi/manager.py:155
+#: src/pyams_content/shared/blog/zmi/manager.py:167
+msgid "Publication dates..."
+msgstr "Dates de publication"
+
+#: src/pyams_content/shared/site/zmi/container.py:132
+#: src/pyams_content/shared/blog/zmi/manager.py:181
+msgid "Update publication dates"
+msgstr "Dates de publication"
+
+#: src/pyams_content/shared/site/zmi/container.py:178
+#: src/pyams_content/shared/site/zmi/container.py:188
+#: src/pyams_content/root/zmi/sites.py:68
+msgid "Site tree"
+msgstr "Arborescence du site"
+
+#: src/pyams_content/shared/site/zmi/container.py:307
+#: src/pyams_content/shared/site/zmi/container.py:156
+msgid "Visible element?"
+msgstr "Élément visible ?"
+
+#: src/pyams_content/shared/site/zmi/container.py:308
+msgid "Switch element visibility"
+msgstr "Cliquez pour rendre l'élément visible ou non"
+
+#: src/pyams_content/shared/site/zmi/container.py:369
+msgid "Folders and topics"
+msgstr "Rubriquage"
+
+#: src/pyams_content/shared/site/zmi/container.py:405
+#: src/pyams_content/root/zmi/__init__.py:817
+msgid "Content"
+msgstr "Contenu"
+
+#: src/pyams_content/shared/site/zmi/container.py:501
+msgid "Delete site item"
+msgstr "Supprimer ce contenu"
+
+#: src/pyams_content/shared/site/zmi/container.py:378
+msgid "Click to open/close all folders"
+msgstr "Afficher/masquer toutes les rubriques"
+
+#: src/pyams_content/shared/site/zmi/container.py:394
+msgid "Click to show/hide inner folders"
+msgstr "Cliquer pour afficher ou cache les sous-niveaux"
+
+#: src/pyams_content/shared/site/zmi/container.py:264
+msgid "Can't reparent object to one of it's children. Reloading..."
+msgstr ""
+"Impossible de déplacer une rubrique dans l'une de ses sous-rubriques ou "
+"contenus ! Rechargement de la page..."
+
+#: src/pyams_content/shared/site/zmi/manager.py:57
+msgid "Site management"
+msgstr "Gérer ce site"
+
+#: src/pyams_content/shared/site/zmi/manager.py:112
+#: src/pyams_content/shared/site/zmi/manager.py:126
+msgid "Add site manager"
+msgstr "Ajouter un site"
+
+#: src/pyams_content/shared/site/zmi/manager.py:156
+#: src/pyams_content/shared/blog/zmi/manager.py:127
+msgid "You must provide a short name for default server language!"
+msgstr "Vous devez fournir un nom court pour la langue par défaut du serveur !"
+
+#: src/pyams_content/shared/site/zmi/manager.py:160
+msgid "Specified site manager name is already used!"
+msgstr "Le nom indiqué pour ce site existe déjà !"
+
+#: src/pyams_content/shared/site/zmi/manager.py:164
+msgid "A site manager is already registered with this name!!"
+msgstr "Un site est déjà inscrit dans le registre avec ce nom !"
+
+#: src/pyams_content/shared/site/interfaces/__init__.py:95
+msgid "Topic"
+msgstr "Article"
+
+#: src/pyams_content/shared/site/interfaces/__init__.py:58
+msgid "Heading"
+msgstr "Chapô"
+
+#: src/pyams_content/shared/site/interfaces/__init__.py:59
+msgid "Heading displayed according to presentation template"
+msgstr ""
+"Ce chapô pourra être affiché ou non en fonction du modèle de présentation "
+"retenu"
+
+#: src/pyams_content/shared/site/interfaces/__init__.py:62
+msgid "Navigation title"
+msgstr "Titre de navigation"
+
+#: src/pyams_content/shared/site/interfaces/__init__.py:63
+msgid "Title displayed in navigation items"
+msgstr ""
+"Libellé utilisé en lieu et place du titre dans les blocs de navigation, "
+"notamment dans les pages carrefours"
+
+#: src/pyams_content/shared/site/interfaces/__init__.py:114
+msgid "Content title, as shown in front-office"
+msgstr "Titre présenté aux internautes"
+
+#: src/pyams_content/shared/site/interfaces/__init__.py:118
+msgid "If 'no', link is not visible"
+msgstr "Si 'non', le lien ne sera pas visible"
+
+#: src/pyams_content/shared/logo/paragraph.py:95
+msgid "no selected logo"
+msgstr "aucun logo sélectionné"
+
+#: src/pyams_content/shared/logo/paragraph.py:101
+#, python-format
+msgid "logo '{0}' can't be found"
+msgstr "le logo '{0}' est introuvable"
+
+#: src/pyams_content/shared/logo/paragraph.py:109
+#, python-format
+msgid "logo '{0}' is not published"
+msgstr "le logo '{0}' n'est pas publié"
+
+#: src/pyams_content/shared/logo/__init__.py:67
+msgid "no image defined"
+msgstr "aucune image définie"
+
+#: src/pyams_content/shared/logo/__init__.py:70
+msgid "no URL defined"
+msgstr "aucune URL définie"
+
+#: src/pyams_content/shared/logo/zmi/paragraph.py:54
+msgid "Logos..."
+msgstr "Logos"
+
+#: src/pyams_content/shared/logo/zmi/paragraph.py:67
+msgid "Add new logos paragraph"
+msgstr "Ajout d'une sélection de logos"
+
+#: src/pyams_content/shared/logo/zmi/properties.py:40
+msgid "Main logo settings"
+msgstr "Propriétés du logo"
+
+#: src/pyams_content/shared/logo/zmi/__init__.py:45
+msgid "This logo"
+msgstr "Ce logo"
+
+#: src/pyams_content/shared/logo/zmi/__init__.py:64
+#: src/pyams_content/shared/logo/zmi/__init__.py:75
+msgid "Add logo"
+msgstr "Ajouter un logo"
+
+#: src/pyams_content/shared/logo/zmi/__init__.py:55
+#, python-format
+msgid "Logo « {title} »"
+msgstr "Logo « {title} »"
+
+#: src/pyams_content/shared/logo/interfaces/__init__.py:32
+msgid "Logo"
+msgstr "Logo"
+
+#: src/pyams_content/shared/logo/interfaces/__init__.py:64
+msgid "Logos"
+msgstr "Logos"
+
+#: src/pyams_content/shared/logo/interfaces/__init__.py:71
+msgid "Logos references"
+msgstr "Logos sélectionnés"
+
+#: src/pyams_content/shared/logo/interfaces/__init__.py:72
+msgid "List of internal logos references"
+msgstr "Liste de références internes vers les logos à afficher"
+
+#: src/pyams_content/shared/logo/interfaces/__init__.py:75
+msgid "Logos template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/shared/blog/zmi/__init__.py:52
+msgid "This blog post"
+msgstr "Cet article"
+
+#: src/pyams_content/shared/blog/zmi/__init__.py:71
+#: src/pyams_content/shared/blog/zmi/__init__.py:81
+msgid "Add blog post"
+msgstr "Ajouter un article"
+
+#: src/pyams_content/shared/blog/zmi/__init__.py:62
+#, python-format
+msgid "Blog post « {title} »"
+msgstr "Article de blog « {title} »"
+
+#: src/pyams_content/shared/blog/zmi/manager.py:60
+msgid "Blog management"
+msgstr "Gérer ce blog"
+
+#: src/pyams_content/shared/blog/zmi/manager.py:83
+#: src/pyams_content/shared/blog/zmi/manager.py:97
+msgid "Add blog manager"
+msgstr "Ajouter un blog"
+
+#: src/pyams_content/shared/blog/zmi/manager.py:96
+msgid "Blog manager"
+msgstr "Blog"
+
+#: src/pyams_content/shared/blog/zmi/manager.py:131
+msgid "Specified blog manager name is already used!"
+msgstr "Le nom indiqué pour ce blog existe déjà !"
+
+#: src/pyams_content/shared/blog/zmi/manager.py:135
+msgid "A blog manager is already registered with this name!!"
+msgstr "Un blog est déjà inscrit dans le registre avec ce nom !"
+
+#: src/pyams_content/shared/blog/interfaces/__init__.py:33
+msgid "Blog post"
+msgstr "Article de blog"
+
+#: src/pyams_content/profile/zmi/__init__.py:42
+msgid "Admin. profile"
+msgstr "Profil intervenant"
+
+#: src/pyams_content/profile/interfaces/__init__.py:33
+msgid "User favorites"
+msgstr "Favoris de l'utilisateur"
+
+#: src/pyams_content/profile/interfaces/__init__.py:34
+msgid "List of internal numbers of shared contents stored for quick access"
+msgstr "Liste des numéros internes des contenus mémorisés pour un accès rapide"
+
+#: src/pyams_content/profile/interfaces/__init__.py:37
+msgid "Default table length"
+msgstr "Longueur des tableaux"
+
+#: src/pyams_content/profile/interfaces/__init__.py:38
+msgid "Default length used for inner tables and dashboards"
+msgstr "Longueur par défaut des tableaux internes et des tableaux de bord"
+
+#: src/pyams_content/root/__init__.py:67
+msgid "Site root"
+msgstr "Racine du site"
+
+#: src/pyams_content/root/zmi/sites.py:78
+msgid "Blogs and shared sites"
+msgstr "Blogs et sites partagés"
+
+#: src/pyams_content/root/zmi/sites.py:108
+msgid "Visible site?"
+msgstr "Site visible ?"
+
+#: src/pyams_content/root/zmi/sites.py:133
+msgid "OID"
+msgstr "N° IN"
+
+#: src/pyams_content/root/zmi/sites.py:151
+msgid "Delete shared site"
+msgstr "Supprimer ce site"
+
+#: src/pyams_content/root/zmi/sites.py:179
+msgid "Given element name doesn't exist!"
+msgstr "Le nom de l'élément indiqué n'existe pas !"
+
+#: src/pyams_content/root/zmi/search.py:155
+msgid "Content types"
+msgstr "Types de contenus"
+
+#: src/pyams_content/root/zmi/__init__.py:78
+msgid "Home"
+msgstr "Accueil"
+
+#: src/pyams_content/root/zmi/templates/dashboard.pt:7
+msgid "Your contents dashboard"
+msgstr "Les contenus qui me concernent"
+
+#: src/pyams_content/root/zmi/templates/dashboard.pt:18
+msgid "SEARCH - Between all contents"
+msgstr "RECHERCHE - Tous contenus confondus"
+
+#: src/pyams_content/root/interfaces/__init__.py:36
+msgid "Site managers"
+msgstr "Administrateurs"
+
+#: src/pyams_content/root/interfaces/__init__.py:44
+msgid "Templates managers"
+msgstr "Designers"
+
+#: src/pyams_content/root/interfaces/__init__.py:48
+msgid "Operators group"
+msgstr "Groupe des opérateurs"
+
+#: src/pyams_content/root/interfaces/__init__.py:49
+msgid "Name of group containing all roles owners"
+msgstr ""
+"Tous les utilisateurs auxquels sera attribué un rôle seront placés dans ce "
+"groupe"
+
+#: src/pyams_content/workflow/__init__.py:70
+#: src/pyams_content/workflow/basic.py:53
+msgid "Draft"
+msgstr "Brouillon"
+
+#: src/pyams_content/workflow/__init__.py:71
+msgid "Proposed"
+msgstr "Publication demandée"
+
+#: src/pyams_content/workflow/__init__.py:72
+msgid "Canceled"
+msgstr "Annulé"
+
+#: src/pyams_content/workflow/__init__.py:73
+msgid "Refused"
+msgstr "Refusé"
+
+#: src/pyams_content/workflow/__init__.py:74
+#: src/pyams_content/workflow/basic.py:54
+msgid "Published"
+msgstr "Publié"
+
+#: src/pyams_content/workflow/__init__.py:75
+msgid "Retiring"
+msgstr "Retrait demandé"
+
+#: src/pyams_content/workflow/__init__.py:76
+msgid "Retired"
+msgstr "Retiré"
+
+#: src/pyams_content/workflow/__init__.py:77
+msgid "Archiving"
+msgstr "Archivage demandé"
+
+#: src/pyams_content/workflow/__init__.py:78
+#: src/pyams_content/workflow/basic.py:55
+msgid "Archived"
+msgstr "Archivé"
+
+#: src/pyams_content/workflow/__init__.py:79
+#: src/pyams_content/workflow/basic.py:56
+msgid "Deleted"
+msgstr "Supprimé"
+
+#: src/pyams_content/workflow/__init__.py:84
+#: src/pyams_content/workflow/basic.py:61
+msgid "draft created"
+msgstr "brouillon créé"
+
+#: src/pyams_content/workflow/__init__.py:85
+msgid "publication requested"
+msgstr "publication demandée"
+
+#: src/pyams_content/workflow/__init__.py:86
+#: src/pyams_content/workflow/basic.py:62
+msgid "published"
+msgstr "publié"
+
+#: src/pyams_content/workflow/__init__.py:87
+msgid "retiring requested"
+msgstr "retrait demandé"
+
+#: src/pyams_content/workflow/__init__.py:88
+msgid "retired"
+msgstr "retiré"
+
+#: src/pyams_content/workflow/__init__.py:89
+msgid "archiving requested"
+msgstr "archivage demandé"
+
+#: src/pyams_content/workflow/__init__.py:90
+#: src/pyams_content/workflow/basic.py:63
+msgid "archived"
+msgstr "archivé"
+
+#: src/pyams_content/workflow/__init__.py:279
+#: src/pyams_content/workflow/basic.py:190
+msgid "Initialize"
+msgstr "Création"
+
+#: src/pyams_content/workflow/__init__.py:282
+#: src/pyams_content/workflow/basic.py:193
+msgid "Draft creation"
+msgstr "Création du brouillon"
+
+#: src/pyams_content/workflow/__init__.py:285
+#: src/pyams_content/workflow/__init__.py:300
+msgid "Propose publication"
+msgstr "Demander la publication"
+
+#: src/pyams_content/workflow/__init__.py:292
+#: src/pyams_content/workflow/__init__.py:307
+msgid "Publication request"
+msgstr "Demande de publication"
+
+#: src/pyams_content/workflow/__init__.py:293
+#: src/pyams_content/workflow/__init__.py:308
+#: src/pyams_content/workflow/__init__.py:396
+#: src/pyams_content/workflow/__init__.py:443
+msgid ""
+"content managers authorized to take charge of your content are going to be "
+"notified of your request."
+msgstr ""
+"les responsables habilités à prendre en charge votre demande vont être "
+"sollicités."
+
+#: src/pyams_content/workflow/__init__.py:296
+#: src/pyams_content/workflow/__init__.py:311
+#, python-format
+msgid "submitted a publication request for content « {0} »"
+msgstr "a demandé la publication du contenu « {0} »"
+
+#: src/pyams_content/workflow/__init__.py:323
+msgid "Publication request canceled"
+msgstr "Annulation de la demande de publication"
+
+#: src/pyams_content/workflow/__init__.py:325
+#, python-format
+msgid "cancelled the publication request for content « {0} »"
+msgstr "a annulé la demande de publication du contenu « {0} »"
+
+#: src/pyams_content/workflow/__init__.py:329
+msgid "Reset canceled publication to draft"
+msgstr "Retour automatique en statut 'brouillon'"
+
+#: src/pyams_content/workflow/__init__.py:333
+#: src/pyams_content/workflow/__init__.py:363
+msgid "State reset to 'draft' (automatic)"
+msgstr "Retour automatique en statut 'brouillon'"
+
+#: src/pyams_content/workflow/__init__.py:337
+msgid "Reset canceled publication to retired"
+msgstr "Retour automatique en statut 'retiré'"
+
+#: src/pyams_content/workflow/__init__.py:341
+msgid "State reset to 'retired' (automatic)"
+msgstr "Retour automatique en statut 'retiré'"
+
+#: src/pyams_content/workflow/__init__.py:345
+msgid "Refuse publication"
+msgstr "Refuser la publication"
+
+#: src/pyams_content/workflow/__init__.py:353
+msgid "Publication refused"
+msgstr "Refus de publication"
+
+#: src/pyams_content/workflow/__init__.py:355
+#, python-format
+msgid "refused the publication request for content « {0} »"
+msgstr "a refusé la publication du contenu « {0} »"
+
+#: src/pyams_content/workflow/__init__.py:359
+msgid "Reset refused publication to draft"
+msgstr "Publication refusée"
+
+#: src/pyams_content/workflow/__init__.py:367
+msgid "Reset refused publication to retired"
+msgstr "Publication refusée"
+
+#: src/pyams_content/workflow/__init__.py:371
+msgid "State reset to 'refused' (automatic)"
+msgstr "Retour automatique en status 'refusé'"
+
+#: src/pyams_content/workflow/__init__.py:383
+#: src/pyams_content/workflow/basic.py:204
+msgid "Content published"
+msgstr "Publication"
+
+#: src/pyams_content/workflow/__init__.py:385
+#: src/pyams_content/workflow/basic.py:206
+#, python-format
+msgid "published the content « {0} »"
+msgstr "a publié le contenu « {0} »"
+
+#: src/pyams_content/workflow/__init__.py:389
+msgid "Request retiring"
+msgstr "Demander le retrait"
+
+#: src/pyams_content/workflow/__init__.py:395
+msgid "Retire request"
+msgstr "Demande de retrait"
+
+#: src/pyams_content/workflow/__init__.py:399
+#, python-format
+msgid "submitted a retire request for content « {0} »"
+msgstr "a demandé le retrait du contenu « {0} »"
+
+#: src/pyams_content/workflow/__init__.py:403
+msgid "Retired content"
+msgstr "Contenu retiré"
+
+#: src/pyams_content/workflow/__init__.py:407
+msgid "Content retired after passed expiration date"
+msgstr "Retrait automatique après la date de fin de publication"
+
+#: src/pyams_content/workflow/__init__.py:410
+msgid "Cancel retiring request"
+msgstr "Annuler la demande de retrait"
+
+#: src/pyams_content/workflow/__init__.py:417
+msgid "Retire request canceled"
+msgstr "Annulation de la demande de retrait"
+
+#: src/pyams_content/workflow/__init__.py:419
+#, python-format
+msgid "cancelled the retiring request for content « {0} »"
+msgstr "a annulé la demande de retrait du contenu « {0} »"
+
+#: src/pyams_content/workflow/__init__.py:423
+msgid "Retire content"
+msgstr "Retirer"
+
+#: src/pyams_content/workflow/__init__.py:430
+msgid "Content retired"
+msgstr "Retrait"
+
+#: src/pyams_content/workflow/__init__.py:432
+#, python-format
+msgid "retired content « {0} »"
+msgstr "a retiré le contenu « {0} »"
+
+#: src/pyams_content/workflow/__init__.py:442
+msgid "Archive request"
+msgstr "Demande d'archivage"
+
+#: src/pyams_content/workflow/__init__.py:446
+#, python-format
+msgid "submitted an archive request for content « {0} »"
+msgstr "a demandé l'archivage du contenu « {0} »"
+
+#: src/pyams_content/workflow/__init__.py:450
+msgid "Cancel archiving request"
+msgstr "Annuler la demande d'archivage"
+
+#: src/pyams_content/workflow/__init__.py:457
+msgid "Archive request canceled"
+msgstr "Annulation de la demande d'archivage"
+
+#: src/pyams_content/workflow/__init__.py:459
+#, python-format
+msgid "cancelled the archive request for content « {0} »"
+msgstr "a annulé la demande d'archivage du contenu « {0} »"
+
+#: src/pyams_content/workflow/__init__.py:463
+#: src/pyams_content/workflow/basic.py:210
+msgid "Archive content"
+msgstr "Archiver"
+
+#: src/pyams_content/workflow/__init__.py:471
+#: src/pyams_content/workflow/basic.py:218
+msgid "Content archived"
+msgstr "Archivage"
+
+#: src/pyams_content/workflow/__init__.py:473
+#: src/pyams_content/workflow/basic.py:220
+#, python-format
+msgid "archived content « {0} »"
+msgstr "a archivé le contenu « {0} »"
+
+#: src/pyams_content/workflow/__init__.py:477
+msgid "Archive published content"
+msgstr "Archivage automatique d'un contenu publié"
+
+#: src/pyams_content/workflow/__init__.py:481
+#: src/pyams_content/workflow/__init__.py:489
+#: src/pyams_content/workflow/__init__.py:497
+msgid "Content archived after version publication"
+msgstr "Archivage automatique après publication"
+
+#: src/pyams_content/workflow/__init__.py:485
+msgid "Archive retiring content"
+msgstr "Archivage automatique d'un contenu en attente de retrait"
+
+#: src/pyams_content/workflow/__init__.py:493
+msgid "Archive retired content"
+msgstr "Archivage automatique d'un contenu retiré"
+
+#: src/pyams_content/workflow/__init__.py:509
+#: src/pyams_content/workflow/__init__.py:521
+#: src/pyams_content/workflow/__init__.py:533
+#: src/pyams_content/workflow/__init__.py:545
+#: src/pyams_content/workflow/__init__.py:557
+#: src/pyams_content/workflow/basic.py:232
+#: src/pyams_content/workflow/basic.py:244
+msgid "New version created"
+msgstr "Création d'une nouvelle version"
+
+#: src/pyams_content/workflow/__init__.py:569
+#: src/pyams_content/workflow/basic.py:256
+msgid "Version deleted"
+msgstr "Version supprimée"
+
+#: src/pyams_content/workflow/__init__.py:622
+#: src/pyams_content/workflow/__init__.py:644
+#: src/pyams_content/workflow/basic.py:289
+#: src/pyams_content/workflow/basic.py:311
+msgid "Unknown state"
+msgstr "(statut inconnu)"
+
+#: src/pyams_content/workflow/__init__.py:646
+#: src/pyams_content/workflow/basic.py:313
+msgid "publication refused"
+msgstr "publication refusée"
+
+#: src/pyams_content/workflow/__init__.py:642
+#: src/pyams_content/workflow/basic.py:309
+msgid "new version created"
+msgstr "nouvelle version en préparation"
+
+#: src/pyams_content/workflow/__init__.py:249
+#: src/pyams_content/workflow/basic.py:160
+#, python-format
+msgid "Published version {0}"
+msgstr "Version {0} publiée"
+
+#: src/pyams_content/workflow/task.py:62
+msgid "Automatic contents withdrawal:\n"
+msgstr ""
+"Retrait automatique des contenus après la date de fin de publication :\n"
+
+#: src/pyams_content/workflow/zmi/task.py:42
+msgid "Add content archiver task..."
+msgstr "Ajouter une tâche d'archivage automatique"
+
+#: src/pyams_content/workflow/zmi/task.py:55
+msgid "Add automatic content archiver"
+msgstr "Ajout d'une tâche d'archivage automatique"
+
+#: src/pyams_content/skin/zmi/viewlet/toplinks/__init__.py:46
+msgid "Shared sites"
+msgstr "Sites et blogs"
+
+#: src/pyams_content/skin/zmi/viewlet/toplinks/__init__.py:67
+msgid "Shared contents"
+msgstr "Gabarits"
+
+#: src/pyams_content/skin/zmi/viewlet/toplinks/__init__.py:90
+msgid "Shared tools"
+msgstr "Outils"
+
+#: src/pyams_content/skin/zmi/viewlet/toplinks/__init__.py:113
+msgid "My roles"
+msgstr "Mes rôles"
+
+#: src/pyams_content/skin/zmi/viewlet/toplinks/templates/user-addings.pt:7
+msgid "Create new content"
+msgstr "Créer un nouveau contenu"
+
+#: src/pyams_content/interfaces/__init__.py:95
+msgid "Unique key"
+msgstr "Clé unique"
+
+#: src/pyams_content/interfaces/__init__.py:96
+msgid "WARNING: this key can't be modified after creation!!!"
+msgstr "ATTENTION : cette clé ne pourra plus être modifiée !!!"
+
+#: src/pyams_content/interfaces/__init__.py:103
+msgid "Short name"
+msgstr "Fil d'Ariane"
+
+#: src/pyams_content/interfaces/__init__.py:104
+msgid "Short name used in breadcrumbs"
+msgstr "Libellé utilisé dans le fil d'Ariane"
+
+#: src/pyams_content/interfaces/__init__.py:115
+msgid "Modification date"
+msgstr "Dernière modification apportée"
+
+#: src/pyams_content/reference/zmi/table.py:73
+msgid "Contents"
+msgstr "Contenu"
+
+#: src/pyams_content/reference/zmi/table.py:83
+msgid "Table contents"
+msgstr "Contenu de la table"
+
+#: src/pyams_content/reference/zmi/table.py:129
+#: src/pyams_content/reference/zmi/__init__.py:69
+msgid "References tables"
+msgstr "Tables de références"
+
+#: src/pyams_content/reference/zmi/table.py:143
+msgid "Properties..."
+msgstr "Propriétés"
+
+#: src/pyams_content/reference/zmi/table.py:157
+msgid "Edit table properties"
+msgstr "Propriétés de la table"
+
+#: src/pyams_content/reference/zmi/table.py:167
+msgid "Table management"
+msgstr "Gérer cette table"
+
+#: src/pyams_content/reference/zmi/__init__.py:51
+msgid "References"
+msgstr "Tables de réf."
+
+#: src/pyams_content/reference/pictograms/zmi/__init__.py:169
+#: src/pyams_content/reference/pictograms/zmi/widget.py:55
+msgid "Default header: --"
+msgstr "En-tête par défaut : --"
+
+#: src/pyams_content/reference/pictograms/zmi/manager.py:51
+msgid "Pictograms selection..."
+msgstr "Sélection de pictogrammes"
+
+#: src/pyams_content/reference/pictograms/zmi/manager.py:63
+#: src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:34
+#: src/pyams_content/reference/pictograms/interfaces/__init__.py:73
+msgid "Selected pictograms"
+msgstr "Pictogrammes sélectionnés"
+
+#: src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:7
+msgid "Available pictograms"
+msgstr "Pictogrammes disponibles"
+
+#: src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:21
+#: src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:48
+msgid "Display pictogram properties"
+msgstr "Propriétés du pictogramme"
+
+#: src/pyams_content/reference/pictograms/zmi/templates/pictogram-header.pt:6
+msgid "Default header: ${header}"
+msgstr "En-tête par défaut : ${header}"
+
+#: src/pyams_content/reference/pictograms/interfaces/__init__.py:45
+msgid "Pictogram content"
+msgstr "Utilisez le bouton \"Parcourir\" pour modifier le contenu de l'image"
+
+#. Default: Header
+#: src/pyams_content/reference/pictograms/interfaces/__init__.py:52
+msgid "pictogram-header"
+msgstr "En-tête par défaut"
+
+#: src/pyams_content/reference/pictograms/interfaces/__init__.py:53
+msgid "Default header associated with this pictogram"
+msgstr "En-tête par défaut associé à ce pictogramme"
+
+#: src/pyams_content/reference/pictograms/interfaces/__init__.py:74
+msgid "List of selected pictograms which will be available to shared contents"
+msgstr "Liste des pictogrammes proposés dans les contenus partagés"
+
+#: src/pyams_content/features/renderer/zmi/__init__.py:70
+#: src/pyams_content/features/renderer/zmi/templates/renderer-input.pt:4
+msgid "Edit renderer properties"
+msgstr "Propriétés du mode de rendu"
+
+#: src/pyams_content/features/renderer/skin/__init__.py:67
+msgid "Hidden content"
+msgstr "Contenu non affiché"
+
+#: src/pyams_content/features/checker/interfaces.py:27
+#, python-format
+msgid " - {field}: <span class=\"text-danger\">no value</span>"
+msgstr " - {field} : <span class=\"text-danger\">non renseigné</span>"
+
+#: src/pyams_content/features/checker/interfaces.py:28
+#, python-format
+msgid " - {field} ({lang}): <span class=\"text-danger\">no value</span>"
+msgstr " - {field} ({lang}) : <span class=\"text-danger\">non renseigné</span>"
+
+#: src/pyams_content/features/checker/interfaces.py:29
+#, python-format
+msgid " - {field}: <span class=\"text-danger\">{message}</span>"
+msgstr " - {field} : <span class=\"text-danger\">{message}</span>"
+
+#: src/pyams_content/features/checker/zmi/__init__.py:58
+msgid "Content check"
+msgstr "Audit du contenu"
+
+#: src/pyams_content/features/checker/zmi/__init__.py:82
+msgid "No checker available. This content is clean!"
+msgstr "Pas de vérificateur disponible. Ce contenu est propre !"
+
+#: src/pyams_content/features/checker/zmi/__init__.py:78
+#, python-format
+msgid "{0}:"
+msgstr "{0} :"
+
+#: src/pyams_content/features/preview/zmi/__init__.py:62
+msgid "Content preview"
+msgstr "Aperçu du contenu"
+
+#: src/pyams_content/features/preview/zmi/__init__.py:67
+#, python-format
+msgid "{title} ({preview})"
+msgstr "{title} ({preview})"
+
+#: src/pyams_content/features/preview/zmi/__init__.py:68
+msgid "preview"
+msgstr "aperçu"
+
+#: src/pyams_content/features/alert/interfaces.py:40
+msgid "Success"
+msgstr "Levée d'alerte"
+
+#: src/pyams_content/features/alert/interfaces.py:41
+msgid "Information"
+msgstr "Information"
+
+#: src/pyams_content/features/alert/interfaces.py:42
+msgid "Warning"
+msgstr "Avertissement"
+
+#: src/pyams_content/features/alert/interfaces.py:43
+msgid "Danger"
+msgstr "Danger !"
+
+#: src/pyams_content/features/alert/interfaces.py:55
+msgid "Is this alert visible in front-office?"
+msgstr "Si 'non', cette alerte ne sera pas présentée aux internautes"
+
+#: src/pyams_content/features/alert/interfaces.py:59
+msgid "Alert gravity"
+msgstr "Niveau de gravité"
+
+#: src/pyams_content/features/alert/interfaces.py:60
+msgid "Alert gravity will affect rendered alert style"
+msgstr "Le niveau de gravité choisi affectera le style de rendu de l'alerte"
+
+#. Default: Heading
+#: src/pyams_content/features/alert/interfaces.py:65
+#: src/pyams_content/features/alert/zmi/container.py:157
+msgid "alert-header"
+msgstr "En-tête"
+
+#: src/pyams_content/features/alert/interfaces.py:66
+msgid "Short alert header (Alert, Important...)"
+msgstr "En-tête de l'alerte (« Alerte », « Important », « Prudence »...)"
+
+#: src/pyams_content/features/alert/interfaces.py:69
+#: src/pyams_content/features/alert/zmi/container.py:169
+msgid "Message"
+msgstr "Message"
+
+#: src/pyams_content/features/alert/interfaces.py:70
+msgid "Alert message"
+msgstr "Le message d'alerte doit être assez court et explicite"
+
+#: src/pyams_content/features/alert/interfaces.py:74
+msgid ""
+"Internal link target reference. You can search a reference using '+' "
+"followed by internal number, of by entering text matching content title."
+msgstr ""
+"Référence interne vers la cible du lien. Vous pouvez la rechercher par des "
+"mots de son titre, ou par son numéro interne (précédé d'un '+') ; le titre "
+"d'origine peut être modifié en utilisant le titre de substitution."
+
+#: src/pyams_content/features/alert/interfaces.py:86
+msgid "Display start date"
+msgstr "Date d'affichage"
+
+#: src/pyams_content/features/alert/interfaces.py:87
+msgid "First date at which alert should be displayed"
+msgstr ""
+"Première date à laquelle l'alerte sera affichée. Laissez la zone vide pour "
+"qu'elle soit affichée immédiatement."
+
+#: src/pyams_content/features/alert/interfaces.py:90
+msgid "Display end date"
+msgstr "Date de retrait"
+
+#: src/pyams_content/features/alert/interfaces.py:91
+msgid "Last date at which alert should be displayed"
+msgstr ""
+"Dernière date à laquelle l'alerte sera affichée. Laissez la zone vide pour "
+"qu'elle ne soit pas retirée."
+
+#: src/pyams_content/features/alert/interfaces.py:94
+msgid "Maximum interval"
+msgstr "Intervalle d'affichage"
+
+#: src/pyams_content/features/alert/interfaces.py:95
+msgid ""
+"Maximum interval between alert displays on a given device, given in hours; "
+"set to 0 to always display the alert"
+msgstr ""
+"Cet intervalle est donné en heures ; passé ce délai, pour un internaute "
+"donné, l'alerte apparaîtra à nouveau. Si aucun intervalle n'est indiqué, "
+"l'alerte s'affichera en permanence."
+
+#: src/pyams_content/features/alert/zmi/__init__.py:45
+msgid "Add alert"
+msgstr "Ajouter une alerte"
+
+#: src/pyams_content/features/alert/zmi/__init__.py:56
+msgid "Add new alert"
+msgstr "Ajout d'une alerte"
+
+#: src/pyams_content/features/alert/zmi/__init__.py:79
+msgid "Edit alert properties"
+msgstr "Propriétés de l'alerte"
+
+#: src/pyams_content/features/alert/zmi/container.py:55
+msgid "Alerts"
+msgstr "Alertes"
+
+#: src/pyams_content/features/alert/zmi/container.py:191
+msgid "Alert list"
+msgstr "Liste des alertes"
+
+#: src/pyams_content/features/alert/zmi/container.py:90
+msgid "No currently defined alert."
+msgstr "Aucune alerte n'est définie actuellement."
+
+#: src/pyams_content/features/menu/zmi/__init__.py:81
+msgid "Add menu..."
+msgstr "Ajouter un menu"
+
+#: src/pyams_content/features/menu/zmi/__init__.py:92
+msgid "Add new menu"
+msgstr "Ajout d'un menu"
+
+#: src/pyams_content/features/menu/zmi/__init__.py:123
+msgid "Edit menu properties"
+msgstr "Propriétés du menu"
+
+#: src/pyams_content/features/menu/zmi/__init__.py:110
+msgid "Menu was correctly added."
+msgstr "Le menu a été ajouté."
+
+#: src/pyams_content/features/menu/zmi/__init__.py:388
+msgid "Link was correctly added."
+msgstr "Le lien a été ajouté."
+
+#: src/pyams_content/features/menu/zmi/templates/menu-name-cell.pt:7
+msgid "Click to see menu items"
+msgstr "Montrer ou cacher les éléments du menu"
+
+#: src/pyams_content/features/menu/portlet/navigation/simple.py:68
+msgid "Simple navigation"
+msgstr "Navigation à un niveau"
+
+#: src/pyams_content/features/menu/portlet/navigation/double.py:68
+msgid "Double navigation"
+msgstr "Navigation à deux niveaux"
+
+#: src/pyams_content/features/menu/portlet/navigation/zmi/simple.py:70
+msgid "Navigation links"
+msgstr "Liens de navigation"
+
+#: src/pyams_content/features/menu/portlet/navigation/zmi/double.py:70
+msgid "Navigation menus"
+msgstr "Menus de navigation"
+
+#: src/pyams_content/features/menu/portlet/navigation/zmi/templates/double-preview.pt:12
+#: src/pyams_content/features/menu/portlet/navigation/zmi/templates/simple-preview.pt:9
+msgid "Link target is not published!"
+msgstr "Le contenu ciblé n'est pas publié"
+
+#: src/pyams_content/features/menu/portlet/navigation/zmi/templates/simple-preview.pt:13
+msgid "Link has no illustration"
+msgstr "Le lien n'a pas d'illustration"
+
+#: src/pyams_content/features/menu/portlet/navigation/interfaces/simple.py:32
+#: src/pyams_content/features/menu/portlet/navigation/interfaces/double.py:32
+msgid "Portlet main title"
+msgstr "Titre du composant"
+
+#: src/pyams_content/features/menu/portlet/navigation/interfaces/simple.py:35
+#: src/pyams_content/features/menu/portlet/navigation/interfaces/double.py:35
+msgid "Subtitle"
+msgstr "Sous-titre"
+
+#: src/pyams_content/features/menu/portlet/navigation/interfaces/simple.py:36
+#: src/pyams_content/features/menu/portlet/navigation/interfaces/double.py:36
+msgid "Portlet subtitle"
+msgstr "Sous-titre du composant"
+
+#: src/pyams_content/features/menu/interfaces/__init__.py:63
+msgid "Menu title"
+msgstr "Libellé"
+
+#: src/pyams_content/features/menu/interfaces/__init__.py:64
+msgid "Displayed menu label"
+msgstr "Libellé du menu"
+
+#: src/pyams_content/features/footer/zmi/__init__.py:60
+msgid "Page footer"
+msgstr "Pied de pages"
+
+#: src/pyams_content/features/footer/zmi/__init__.py:78
+msgid "Edit footer settings"
+msgstr "Paramétrage des pieds de pages"
+
+#: src/pyams_content/features/footer/zmi/__init__.py:150
+msgid ""
+"WARNING: Footer properties are saved automatically when changing inherit "
+"mode!!"
+msgstr ""
+"ATTENTION : les propriétés du pied de page sont enregistrées automatiquement "
+"lorsque vous modifiez le mode d'héritage !!"
+
+#: src/pyams_content/features/footer/zmi/__init__.py:213
+msgid "Footer renderer settings"
+msgstr "Propriétés du mode de rendu"
+
+#: src/pyams_content/features/footer/zmi/__init__.py:105
+msgid "Don't inherit parent footer"
+msgstr "Ne pas hériter du pied de pages du parent"
+
+#: src/pyams_content/features/footer/skin/__init__.py:49
+msgid "Hidden footer"
+msgstr "Ne pas afficher de pied de pages"
+
+#: src/pyams_content/features/footer/interfaces/__init__.py:39
+msgid "Footer template"
+msgstr "Mode de rendu"
+
+#: src/pyams_content/features/footer/interfaces/__init__.py:40
+msgid "Presentation template used for this footer"
+msgstr "Mode de rendu utilisé par ce pied de page"
+
+#: src/pyams_content/features/review/__init__.py:181
+#, python-format
+msgid "Request comment: {comment}"
+msgstr "Commentaire joint : {comment}"
+
+#: src/pyams_content/features/review/__init__.py:211
+#, python-format
+msgid "A new comment was added on content « {0} »"
+msgstr "Un nouveau commentaire a été ajouté pour le contenu « {0} »"
+
+#: src/pyams_content/features/review/__init__.py:168
+#, python-format
+msgid "[{service_name}] A content review is requested"
+msgstr "[{service_name}] Demande de relecture"
+
+#: src/pyams_content/features/review/interfaces.py:32
+msgid "Review request"
+msgstr "Demande de relecture"
+
+#: src/pyams_content/features/review/interfaces.py:33
+msgid "Reviewer comment"
+msgstr "Commentaire"
+
+#: src/pyams_content/features/review/interfaces.py:56
+msgid "Comment writer"
+msgstr "Rédacteur"
+
+#: src/pyams_content/features/review/interfaces.py:59
+msgid "Content reviewers"
+msgstr "Relecteurs sollicités"
+
+#: src/pyams_content/features/review/interfaces.py:62
+msgid "Comment type"
+msgstr "Type de commentaire"
+
+#: src/pyams_content/features/review/interfaces.py:67
+msgid "Comment body"
+msgstr "Commentaire"
+
+#: src/pyams_content/features/review/interfaces.py:70
+msgid "Reviewer comment?"
+msgstr "Commentaire d'un relecteur ?"
+
+#: src/pyams_content/features/review/interfaces.py:86
+msgid "Reviewers list"
+msgstr "Liste des relecteurs"
+
+#: src/pyams_content/features/review/interfaces.py:87
+msgid "List of principals which reviewed the comment"
+msgstr "Liste des utilisateurs qui ont apporté des commentaires sur ce contenu"
+
+#: src/pyams_content/features/review/zmi/__init__.py:61
+msgid "Ask for review..."
+msgstr "Demander une relecture"
+
+#: src/pyams_content/features/review/zmi/__init__.py:100
+msgid "Content review request"
+msgstr "Demande de relecture"
+
+#: src/pyams_content/features/review/zmi/__init__.py:166
+msgid "Comments"
+msgstr "Commentaires"
+
+#: src/pyams_content/features/review/zmi/__init__.py:186
+msgid "Review comments"
+msgstr "Commentaires associés à cette version"
+
+#: src/pyams_content/features/review/zmi/__init__.py:71
+msgid "Sought principals"
+msgstr "Relecteurs sollicités"
+
+#: src/pyams_content/features/review/zmi/__init__.py:72
+msgid "List of principals from which a review is requested"
+msgstr ""
+"Liste des utilisateurs que vous souhaitez solliciter par mail pour relire ce "
+"contenu"
+
+#: src/pyams_content/features/review/zmi/__init__.py:75
+msgid "Comment"
+msgstr "Commentaire"
+
+#: src/pyams_content/features/review/zmi/__init__.py:76
+msgid "Comment associated with this request"
+msgstr ""
+"Ce commentaire associé à cette demande sera également transmis par mail"
+
+#: src/pyams_content/features/review/zmi/__init__.py:79
+msgid "Notify all reviewers"
+msgstr "Notifier tous les relecteurs"
+
+#: src/pyams_content/features/review/zmi/__init__.py:80
+msgid ""
+"If 'yes', selected reviewers will be notified by mail of your request, even "
+"if they were already members of the reviewers group. Otherwise, only new "
+"reviewers will be notified"
+msgstr ""
+"Si 'oui', tous les relecteurs sollicités seront notifiés par mail de votre "
+"demande, même s'ils avaient déjà été sollicités auparavant. Dans le cas "
+"contraire, seuls les nouveaux relecteurs seront notifiés."
+
+#: src/pyams_content/features/review/zmi/__init__.py:91
+msgid "Ask for content review"
+msgstr "Demander la relecture"
+
+#: src/pyams_content/features/review/zmi/__init__.py:147
+msgid "Request successful. No new notification have been sent"
+msgstr ""
+"Votre demande a été transmise. Aucune nouvelle notification n'a été envoyée."
+
+#: src/pyams_content/features/review/zmi/__init__.py:260
+msgid "Message is mandatory!"
+msgstr "Un commentaire est obligatoire !"
+
+#: src/pyams_content/features/review/zmi/__init__.py:135
+#, python-format
+msgid "Request successful. {count} new notification(s) have been sent"
+msgstr "Votre demande a été transmise. {count} notification(s) envoyée(s)."
+
+#: src/pyams_content/features/review/zmi/templates/review-comments.pt:32
+#: src/pyams_content/features/review/zmi/templates/review-comments-json.pt:15
+#: src/pyams_content/features/review/zmi/templates/review-add-comment.pt:14
+msgid "Review query from"
+msgstr "Demande de relecture de "
+
+#: src/pyams_content/features/review/zmi/templates/review-comments.pt:38
+#: src/pyams_content/features/review/zmi/templates/review-comments-json.pt:21
+#: src/pyams_content/features/review/zmi/templates/review-add-comment.pt:20
+msgid "(as reviewer)"
+msgstr "(relecteur)"
+
+#: src/pyams_content/features/review/zmi/templates/review-comments.pt:47
+#: src/pyams_content/features/review/zmi/templates/review-comments-json.pt:30
+msgid "Selected reviewers:"
+msgstr "Auprès de :"
+
+#: src/pyams_content/features/review/zmi/templates/review-comments.pt:64
+msgid "Add comment"
+msgstr "Déposer un commentaire"
+
+#: src/pyams_content/features/review/zmi/templates/review-comments.pt:67
+msgid "Add a comment..."
+msgstr "Votre commentaire..."
+
+#: src/pyams_content/features/review/zmi/templates/review-comments.pt:73
+msgid "Add this comment"
+msgstr "Ajouter ce commentaire"
+
+#: src/pyams_content/features/review/zmi/templates/review-add-comment.pt:22
+msgid "just now"
+msgstr "À l'instant !"
+
+#: src/pyams_content/features/review/zmi/templates/review-notification.pt:4
+msgid "[${service_name}] You are requested for a content review"
+msgstr "[${service_name}] Demande de relecture"
+
+#: src/pyams_content/features/review/zmi/templates/review-notification.pt:30
+msgid "Hello,"
+msgstr "Bonjour,"
+
+#: src/pyams_content/features/review/zmi/templates/review-notification.pt:31
+msgid ""
+"You have been requested by ${sender}, contributor of « ${service_name} » "
+"website, to make a review of a content."
+msgstr ""
+"Vous êtes sollicité par ${sender}, contributeur du site internet "
+"${service_name}, qui souhaite recueillir votre commentaire à propos d'un "
+"contenu."
+
+#: src/pyams_content/features/review/zmi/templates/review-notification.pt:36
+msgid "${sender} added the following message to his request:"
+msgstr "${sender} a accompagné sa demande de relecture du message suivant :"
+
+#: src/pyams_content/features/review/zmi/templates/review-notification.pt:41
+msgid ""
+"To review and comment this publication, please use the following link: "
+"${target}."
+msgstr "Pour accéder à cette contribution, cliquer ici : ${target}."
+
+#: src/pyams_content/features/review/zmi/templates/review-notification.pt:44
+msgid "After reading this content, please use the « Comments » menu entry."
+msgstr ""
+"Lorsque vous aurez pris connaissance du contenu, cliquez sur « Commentaires "
+"» dans le menu en colonne de gauche."
+
+#: src/pyams_content/features/review/zmi/templates/review-notification.pt:45
+msgid ""
+"If you don't want to reply to this request, please contact ${sender} "
+"directly by replying to this mail."
+msgstr ""
+"Si vous ne souhaitez pas donner suite à cette demande, vous pouvez répondre "
+"directement à ${sender} en lui adressant un message dans ce sens."
+
+#: src/pyams_content/features/review/zmi/templates/review-notification.pt:47
+msgid "Thank you."
+msgstr "Merci."
+
+#: src/pyams_content/features/header/zmi/__init__.py:66
+msgid "Page header"
+msgstr "En-tête de pages"
+
+#: src/pyams_content/features/header/zmi/__init__.py:84
+msgid "Edit header settings"
+msgstr "Paramétrage des en-têtes de pages"
+
+#: src/pyams_content/features/header/zmi/__init__.py:159
+msgid ""
+"WARNING: Header properties are saved automatically when changing inherit "
+"mode!!"
+msgstr ""
+"ATTENTION : les propriétés de l'en-tête sont enregistrées automatiquement "
+"lorsque vous modifiez le mode d'héritage !!"
+
+#: src/pyams_content/features/header/zmi/__init__.py:222
+msgid "Header renderer settings"
+msgstr "Propriétés du mode de rendu"
+
+#: src/pyams_content/features/header/zmi/__init__.py:111
+msgid "Don't inherit parent header"
+msgstr "Ne pas hériter de l'en-tête de pages du parent"
+
+#: src/pyams_content/features/header/skin/__init__.py:49
+msgid "Hidden header"
+msgstr "Ne pas afficher d'en-tête de pages"
+
+#~ msgid "View result items"
+#~ msgstr "Contenus extraits par la vue"
+
+#~ msgid "WARNING: items displayed in this preview are out of context!!"
+#~ msgstr ""
+#~ "ATTENTION : les résultats affichés dans cet aperçu ne tiennent pas compte "
+#~ "du contexte pouvant être paramétré dans la vue !!!"
+
+#~ msgid "Milestones paragraph"
+#~ msgstr "Chronologie"
+
+#~ msgid "Key points paragraph"
+#~ msgstr "Points clés"
+
+#~ msgid "Pictograms paragraph"
+#~ msgstr "Pictogrammes"
+
+#~ msgid "Key numbers paragraph"
+#~ msgstr "Chiffres-clés"
+
+#~ msgid "Framed text paragraph"
+#~ msgstr "Encadré"
+
+#~ msgid "Verbatim paragraph"
+#~ msgstr "Verbatim"
+
+#~ msgid "Raw HTML paragraph"
+#~ msgstr "Code HTML"
+
+#~ msgid "Rich text paragraph"
+#~ msgstr "Texte enrichi"
+
+#~ msgid "Header paragraph"
+#~ msgstr "Chapô"
+
+#~ msgid "File legend, as shown in front-office"
+#~ msgstr "Titre du fichier, tel que présenté aux internautes"
+
+#~ msgid "Check content..."
+#~ msgstr "Auditer le contenu"
+
+#~ msgid "Paragraphs types..."
+#~ msgstr "Types de paragraphes"
+
+#~ msgid "Paragraphs types"
+#~ msgstr "Types de paragraphes"
+
+#~ msgid "Paragraphs..."
+#~ msgstr "Paragraphes"
+
+#~ msgid "Paragraphs list"
+#~ msgstr "Liste des paragraphes"
+
+#~ msgid "Paragraphs associations"
+#~ msgstr "Associations par paragraphe"
+
+#~ msgid "Add illustration"
+#~ msgstr "Ajouter une illustration"
+
+#~ msgid "Given media name doesn't exist!"
+#~ msgstr "Le nom du média indiqué n'existe pas !"
+
+#~ msgid "Given association name doesn't exist!"
+#~ msgstr "Le nom d'association indiqué n'existe pas !"
+
+#~ msgid "Given data type doesn't exist!"
+#~ msgstr "Le type de contenu indiqué n'existe pas !"
+
+#~ msgid "Given data subtype doesn't exist!"
+#~ msgstr "Le sous-type de contenu indiqué n'existe pas !"
+
+#~ msgid "Switch field visibility"
+#~ msgstr "Cliquez pour rendre le champ visible ou non"
+
+#~ msgid "Given object name doesn't exist!"
+#~ msgstr "Le nom d'objet indiqué n'existe pas !"
+
+#~ msgid "Given site name doesn't exist!"
+#~ msgstr "Le nom de site indiqué n'existe pas !"
+
+#~ msgid "Switch milestone visibility"
+#~ msgstr "Cliquez pour rendre le jalon visible ou non"
+
+#~ msgid "Switch paragraph visibility"
+#~ msgstr "Cliquez pour rendre le paragraphe visible ou non"
+
+#~ msgid "Switch pictogram visibility"
+#~ msgstr "Cliquez pour rendre le paragraphe visible ou non"
+
+#~ msgid "Given pictogram name doesn't exist!"
+#~ msgstr "Le pictogramme indiqué n'existe pas !"
+
+#~ msgid "Switch association visibility"
+#~ msgstr "Cliquez pour rendre le lien visible ou non en pied de paragraphe"
+
+#~ msgid "Associated pictogram label"
+#~ msgstr "Libellé associé au pictogramme"
+
+#~ msgid "This content doesn't contain any paragraph."
+#~ msgstr "Aucun paragraphe n'est associé à ce contenu."
+
+#~ msgid ""
+#~ "This form allows you to select pictograms which will be available for "
+#~ "selection into your shared contents."
+#~ msgstr ""
+#~ "Ce formulaire vous permet d'effectuer la sélection des pictogrammes qui "
+#~ "seront disponibles pour être intégrés dans les contenus partagés."
+
+#~ msgid "Add medias gallery..."
+#~ msgstr "Galerie de médias"
+
+#~ msgid "Add header paragraph..."
+#~ msgstr "Chapô"
+
+#~ msgid "Add contact card..."
+#~ msgstr "Fiche contact"
+
+#~ msgid "Add raw HTML paragraph..."
+#~ msgstr "Code HTML"
+
+#~ msgid "Add rich text paragraph..."
+#~ msgstr "Texte enrichi"
+
+#~ msgid "Add associations paragraph..."
+#~ msgstr "Associations"
+
+#~ msgid "Centered illustration"
+#~ msgstr "Illustration centrée"
+
+#~ msgid "Small illustration on the left with zoom"
+#~ msgstr "Petite illustration sur la gauche avec zoom"
+
+#~ msgid "Small illustration on the right with zoom"
+#~ msgstr "Petite illustration sur la droite avec zoom"
+
+#~ msgid "Zoom on click?"
+#~ msgstr "Zoom sur clic ?"
+
+#~ msgid "If 'yes', a click on illustration thumbnail is required to zoom"
+#~ msgstr "Si 'oui', un clic sur l'illustration agrandit l'image"
+
+#~ msgid "Add illustration..."
+#~ msgstr "Illustration"
+
+#~ msgid "Add image map..."
+#~ msgstr "Image cliquable"
+
+#~ msgid "Add logos..."
+#~ msgstr "Logos"
+
+#~ msgid "Add new identity card paragraph"
+#~ msgstr "Ajout d'une vidéo"
+
+#~ msgid "internal reference is not defined"
+#~ msgstr "la référence interne n'est pas définie"
+
+#~ msgid "internal references are not defined"
+#~ msgstr "aucun logo sélectionné"
+
+#~ msgid "internal reference target is not published"
+#~ msgstr "l'image cliquable référencée n'est pas publiée"
+
+#~ msgid "Image style"
+#~ msgstr "Style de l'illustration"
+
+#~ msgid "Images gallery"
+#~ msgstr "Galeries d'images"
+
+#~ msgid "Given image name doesn't exist!"
+#~ msgstr "L'image spécifiée n'existe pas !"
+
+#~ msgid "Images data"
+#~ msgstr "Image(s) à ajouter"
+
+#~ msgid "Content type"
+#~ msgstr "Type de contenu"
+
+#~ msgid "A publication request has been submitted for content « {0} »"
+#~ msgstr "Une demande de publication a été soumise pour le contenu « {0} »"
+
+#~ msgid "A new publication request has been submitted for content « {0} »"
+#~ msgstr ""
+#~ "Une demande de nouvelle publication a été soumise pour le contenu « {0} »"
+
+#~ msgid "The publication request for content « {0} » has been cancelled"
+#~ msgstr "La demande de publication du contenu « {0} » a été annulée"
+
+#~ msgid "The content « {0} » has been published"
+#~ msgstr "Le contenu « {0} » a été publié"
+
+#~ msgid "The content « {0} » has been retired"
+#~ msgstr "Le contenu « {0} » a été retiré"
+
+#~ msgid "The content « {0} » has been archived"
+#~ msgstr "Le contenu « {0} » a été archivé"
+
+#~ msgid "Publication settings"
+#~ msgstr "Dates de publication et de retrait"
+
+#~ msgid "Add new data subtype"
+#~ msgstr "Ajout d'un sous-type"
+
+#~ msgid "Terms"
+#~ msgstr "Termes"
+
+#~ msgid "{header}: {status}"
+#~ msgstr "{header} : {status}"
+
+#~ msgid "- Illustration:"
+#~ msgstr "- Illustration :"
+
+#~ msgid "Properties:"
+#~ msgstr "Propriétés :"
+
+#~ msgid "<strong>Paragraphs</strong>:"
+#~ msgstr "<strong>Paragraphes</strong> :"
+
+#~ msgid "<strong>Properties</strong>:"
+#~ msgstr "<strong>Propriétés</strong> :"
+
+#~ msgid "<strong>Properties</strong>: <span class=\"text-success\">OK</span>"
+#~ msgstr ""
+#~ "<strong>Propriétés</strong> : <span class=\"text-success\">OK</span>"
+
+#~ msgid "Quick preview"
+#~ msgstr "Aperçu"
+
+#~ msgid "Image areas preview"
+#~ msgstr "Aperçu des zones de l'image"
+
+#~ msgid "Image title"
+#~ msgstr "Légende de l'image"
+
+#~ msgid "Links"
+#~ msgstr "Liens"
+
+#~ msgid "Paragraph title"
+#~ msgstr "Titre du paragraphe"
+
+#~ msgid "Duplicate content ({oid})"
+#~ msgstr "Contenu dupliqué ({oid})"
+
+#~ msgid "Default paragraphs..."
+#~ msgstr "Paragraphes par défaut"
+
+#~ msgid ""
+#~ "You have been requested by ${sender} to make a review of a content called "
+#~ "« ${title} » which has been created on publication platform « "
+#~ "${service_name} »."
+#~ msgstr ""
+#~ "Vous avez été sollicité par ${sender} pour relire un contenu intitulé « "
+#~ "${title} » qui a été créé sur la plate-forme de publication appelée « "
+#~ "${service_name} »."
+
+#~ msgid "Comment associated with this request is:"
+#~ msgstr "Le commentaire associé à cette demande est le suivant :"
+
+#~ msgid "Area title"
+#~ msgstr "Titre de la zone"
+
+#~ msgid "Add internal link..."
+#~ msgstr "Ajouter un lien interne..."
+
+#~ msgid "Add external link..."
+#~ msgstr "Ajouter un lien externe..."
+
+#~ msgid "Add mailto link..."
+#~ msgstr "Ajouter un lien « mailto »..."
+
+#~ msgid "Images galleries..."
+#~ msgstr "Galeries d'images"
+
+#~ msgid "Display gallery contents"
+#~ msgstr "Contenu de la galerie"
+
+#~ msgid "Edit galleries links"
+#~ msgstr "Galeries d'images associées"
+
+#~ msgid "Visible gallery?"
+#~ msgstr "Galerie visible ?"
+
+#~ msgid "If 'no', this gallery won't be displayed in front office"
+#~ msgstr "Si 'non', cette galerie ne sera pas affichée en front-office"
+
+#~ msgid "Contained galleries"
+#~ msgstr "Galeries d'images"
+
+#~ msgid "List of images galleries linked to this object"
+#~ msgstr "Liste des galeries d'images associées à cet objet"
+
+#~ msgid "Edit external files links"
+#~ msgstr "Fichiers joints associés"
+
+#~ msgid "Sounds"
+#~ msgstr "Sons"
+
+#~ msgid "No currently stored external file."
+#~ msgstr "Aucun fichier joint associé à ce contenu."
+
+#~ msgid "List of external files linked to this object"
+#~ msgstr "Liste des fichiers joints associés à cet objet"
+
+#~ msgid "Click and drag to sort paragraphs..."
+#~ msgstr "Utilisez le glisser/déposer pour ordonner les paragraphes..."
+
+#~ msgid "Useful links"
+#~ msgstr "Liens utiles"
+
+#~ msgid "Useful links..."
+#~ msgstr "Liens utiles"
+
+#~ msgid "Useful links list"
+#~ msgstr "Liste des liens utiles"
+
+#~ msgid "Edit useful links links"
+#~ msgstr "Liens utiles associés"
+
+#~ msgid "No currently defined link."
+#~ msgstr "Aucun lien utile asocié à ce contenu."
+
+#~ msgid "Contained links"
+#~ msgstr "Liens utiles"
+
+#~ msgid "List of internal or external links linked to this object"
+#~ msgstr "Liste des liens internes ou externes associés à cet objet"
+
+#~ msgid "Automatic content withdrawal"
+#~ msgstr "Retrait automatique après la date de fin de publication"
+
+#~ msgid "ZEO connection name"
+#~ msgstr "Nom de la connection ZEO"
+
+#~ msgid "Name of ZEO connection utility pointing to content database"
+#~ msgstr "Nom du workflow qui gère le cycle de vie des contenus de cet outil"
+
+#~ msgid "Creator (role)"
+#~ msgstr "Créateur (rôle)"
+
+#~ msgid "Workflow"
+#~ msgstr "Workflow"
+
+#~ msgid "Workflow details"
+#~ msgstr "Détails du workflow"
+
+#~ msgid "About this version"
+#~ msgstr "À propos de cette version"
+
+#~ msgid "Display current version date"
+#~ msgstr "Date de publication de cette version"
+
+#~ msgid "The matching date will be displayed in front-office"
+#~ msgstr "La date correspondante sera affichée en front-office"
+
+#~ msgid "Push end date"
+#~ msgstr "Pousser jusqu'au"
+
+#~ msgid ""
+#~ "Some contents can be pushed by components to front-office pages; if you "
+#~ "set a date here, this content will not be pushed anymore passed this "
+#~ "date, but will still be available via the search engine"
+#~ msgstr ""
+#~ "Certains composants peuvent 'pousser' des informations vers les pages du "
+#~ "front-office ; si vous indiquez une date ici, ce contenu ne sera plus "
+#~ "poussé au-delà de cette date, mais restera accessible via le moteur de "
+#~ "recherche (à la différence des contenus retirés ou archivés)"
+
+#~ msgid "Contents search settings"
+#~ msgstr "Paramètres de la vue"
+
+#~ msgid "Reset"
+#~ msgstr "Annuler"
+
+#~ msgid "Illustration properties"
+#~ msgstr "Propriétés d'une illustration"
+
+#~ msgid "Publisher"
+#~ msgstr "Publié"
+
+#~ msgid "Name of the manager who published the document"
+#~ msgstr "Nom du responsable ayant publié le document"
+
+#~ msgid "Last publication date and actor"
+#~ msgstr "Nom du responsable ayant effectué la dernière mise en ligne"
+
+#~ msgid "CONTRIBUTOR - Last modified contents (limited to {0})"
+#~ msgstr "CONTRIBUTEUR - {0} derniers contenus modifiés"
+
+#~ msgid "Urgent request !"
+#~ msgstr "Demande urgente !"
+
+#~ msgid "{state} by {{principal}}"
+#~ msgstr "{state} par {{principal}}"
+
+#~ msgid "draft created by {principal}"
+#~ msgstr "brouillon créé par {principal}"
+
+#~ msgid "publication requested by {principal}"
+#~ msgstr "publication demandée par {principal}"
+
+#~ msgid "published by {principal}"
+#~ msgstr "publié par {principal}"
+
+#~ msgid "retiring requested by {principal}"
+#~ msgstr "retrait demandé par {principal}"
+
+#~ msgid "retired by {principal}"
+#~ msgstr "retiré par {principal}"
+
+#~ msgid "archiving requested by {principal}"
+#~ msgstr "archivage demandé par {principal}"
+
+#~ msgid "archived by {principal}"
+#~ msgstr "archivé par {principal}"
+
+#~ msgid "publication refused by {principal}"
+#~ msgstr "publication refusée par {principal}"
+
+#~ msgid "Manage this content"
+#~ msgstr "Gérer ce contenu"
+
+#~ msgid "Summary"
+#~ msgstr "Récapitulatif"
+
+#~ msgid "Add new news topic"
+#~ msgstr "Ajout d'une brève"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/pyams_content/locales/pyams_content.pot.orig	Wed Jan 27 16:14:21 2021 +0100
@@ -0,0 +1,4782 @@
+#
+# SOME DESCRIPTIVE TITLE
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE 1.0\n"
+"POT-Creation-Date: 2018-06-20 17:59+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Lingua 3.10.dev0\n"
+
+#: ./src/pyams_content/__init__.py:37
+msgid "Manage site root"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:39
+msgid "Manage site"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:41
+msgid "Manage tool"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:43
+msgid "Create content"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:45
+msgid "Manage content"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:47
+msgid "Comment content"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:49
+#: ./src/pyams_content/workflow/__init__.py:375
+msgid "Publish content"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:53
+msgid "Webmaster (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:62
+msgid "Pilot (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:70
+msgid "Manager (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:77
+msgid "Owner (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:82
+msgid "Contributor (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:90
+msgid "Reader (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:96
+msgid "Operator (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:100
+msgid "Guest user (role)"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/__init__.py:154
+msgid "Gallery"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:57
+#: ./src/pyams_content/component/gallery/zmi/file.py:69
+#: ./src/pyams_content/component/gallery/zmi/paragraph.py:164
+msgid "Add media(s)"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:184
+msgid "Update media properties"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:238
+msgid "Remove media..."
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:148
+msgid "Show/hide media"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:211
+msgid "Audio content"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/paragraph.py:56
+msgid "Medias gallery..."
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/paragraph.py:69
+msgid "Add new gallery"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/paragraph.py:96
+msgid "Edit gallery properties"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/__init__.py:63
+msgid "Update gallery properties"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/__init__.py:95
+msgid "Update gallery contents"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:36
+msgid "Images or videos data"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:37
+msgid "You can upload a single file or choose to upload a whole ZIP archive"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:40
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:61
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:44
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:68
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:52
+#: ./src/pyams_content/component/paragraph/interfaces/audio.py:48
+#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:44
+#: ./src/pyams_content/component/video/interfaces/__init__.py:52
+msgid "Author"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:41
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:62
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:45
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:53
+#: ./src/pyams_content/component/paragraph/interfaces/audio.py:49
+#: ./src/pyams_content/component/video/interfaces/__init__.py:53
+msgid "Name of document's author"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:44
+msgid "Author comments"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:45
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:66
+msgid "Comments relatives to author's rights management"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:11
+msgid "Gallery medias"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:17
+msgid "Download medias"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:41
+msgid "Zoom image"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:130
+msgid "Medias gallery"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:47
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:46
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:105
+msgid "Image or video data"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:48
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:47
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:106
+msgid "Image or video content"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:51
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:53
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:45
+#: ./src/pyams_content/component/video/interfaces/__init__.py:75
+msgid "Legend"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:54
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:56
+#: ./src/pyams_content/reference/pictograms/interfaces/__init__.py:48
+msgid "Accessibility title"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:55
+msgid "Alternate title used to describe media content"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:58
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:98
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:40
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:64
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:48
+#: ./src/pyams_content/component/paragraph/interfaces/audio.py:44
+#: ./src/pyams_content/component/links/interfaces/__init__.py:39
+#: ./src/pyams_content/component/video/interfaces/__init__.py:48
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:149
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:66
+msgid "Description"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:65
+msgid "Author's comments"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:69
+msgid "Source ID"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:70
+msgid "Number used to identify media into it's original source"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:73
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:89
+#: ./src/pyams_content/component/paragraph/interfaces/audio.py:52
+msgid "Audio data"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:74
+msgid "Sound file associated with the current media"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:77
+msgid "Sound title"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:78
+msgid "Title of associated sound file"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:81
+msgid "Sound description"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:82
+msgid "Short description of associated sound file"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:85
+msgid "Visible media?"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:86
+msgid "If 'no', this media won't be displayed in front office"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:94
+#: ./src/pyams_content/component/keynumber/portlet/interfaces/__init__.py:30
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:231
+#: ./src/pyams_content/component/paragraph/zmi/container.py:223
+#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:45
+#: ./src/pyams_content/component/links/zmi/reverse.py:73
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:109
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:188
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:123
+#: ./src/pyams_content/shared/site/zmi/folder.py:70
+#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:188
+#: ./src/pyams_content/interfaces/__init__.py:99
+#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:150
+#: ./src/pyams_content/features/menu/portlet/navigation/interfaces/simple.py:31
+#: ./src/pyams_content/features/menu/portlet/navigation/interfaces/double.py:31
+msgid "Title"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:95
+msgid "Gallery title, as shown in front-office"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:99
+msgid "Gallery description displayed by front-office template"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:102
+msgid "Gallery template"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:103
+msgid "Presentation template used for this gallery"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/__init__.py:172
+#: ./src/pyams_content/component/extfile/__init__.py:176
+msgid "Standard file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/__init__.py:223
+#: ./src/pyams_content/component/extfile/__init__.py:238
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:66
+#: ./src/pyams_content/shared/logo/interfaces/__init__.py:46
+#: ./src/pyams_content/reference/pictograms/interfaces/__init__.py:44
+msgid "Image"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/__init__.py:253
+#: ./src/pyams_content/component/extfile/__init__.py:257
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:34
+msgid "Video"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/__init__.py:272
+#: ./src/pyams_content/component/extfile/__init__.py:276
+msgid "Audio file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:74
+msgid "External files"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:89
+msgid "Add external file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:103
+msgid "Add new external file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:138
+msgid "Update file properties"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:171
+msgid "Images"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:186
+msgid "Add image"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:200
+msgid "Add new image"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:231
+msgid "Update image properties"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:264
+msgid "Videos"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:279
+msgid "Add video"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:293
+msgid "Add new video"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:317
+msgid "Update video properties"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:343
+msgid "Audios files"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:358
+msgid "Add audio file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:372
+msgid "Add new audio file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:396
+msgid "Update audio file properties"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:50
+msgid "External file type"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:36
+#: ./src/pyams_content/component/links/interfaces/__init__.py:35
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:54
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:113
+msgid "Alternate title"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:37
+msgid "File title, as shown in front-office"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:41
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:49
+#: ./src/pyams_content/component/paragraph/interfaces/audio.py:45
+#: ./src/pyams_content/component/video/interfaces/__init__.py:49
+msgid "File description displayed by front-office template"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:48
+#: ./src/pyams_content/component/links/interfaces/__init__.py:68
+msgid "Language"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:49
+msgid "File's content language"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:53
+msgid "Save file as..."
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:54
+msgid "Name under which the file will be saved"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:61
+msgid "File data"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:62
+msgid "File content"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:73
+#: ./src/pyams_content/shared/logo/interfaces/__init__.py:47
+msgid "Image data"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:74
+msgid "Image content"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:81
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:41
+msgid "Video data"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:82
+msgid "Video content"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:90
+#: ./src/pyams_content/component/paragraph/interfaces/audio.py:53
+msgid "Audio file content"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/__init__.py:180
+#: ./src/pyams_content/component/keynumber/zmi/__init__.py:198
+#: ./src/pyams_content/component/keynumber/portlet/zmi/__init__.py:74
+#: ./src/pyams_content/component/paragraph/interfaces/keynumber.py:29
+msgid "Key numbers"
+msgstr ""
+
+#. Default: Header
+#: ./src/pyams_content/component/keynumber/zmi/__init__.py:146
+#: ./src/pyams_content/component/keynumber/interfaces/__init__.py:44
+msgid "key-number-label"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/zmi/__init__.py:158
+#: ./src/pyams_content/component/keynumber/interfaces/__init__.py:49
+msgid "Number"
+msgstr ""
+
+#. Default: Unit
+#: ./src/pyams_content/component/keynumber/zmi/__init__.py:167
+#: ./src/pyams_content/component/keynumber/interfaces/__init__.py:53
+msgid "key-number-unit"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/zmi/__init__.py:179
+#: ./src/pyams_content/component/keynumber/interfaces/__init__.py:57
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:267
+#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:58
+msgid "Associated text"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/zmi/__init__.py:217
+msgid "Add keynumber"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/zmi/__init__.py:230
+msgid "Add new keynumber"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/zmi/__init__.py:259
+msgid "Edit keynumber properties"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/zmi/__init__.py:245
+msgid "Key number was correctly added"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/portlet/__init__.py:52
+msgid "Key Numbers"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/portlet/interfaces/__init__.py:31
+msgid "Portlet title"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/portlet/interfaces/__init__.py:34
+msgid "Teaser"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/portlet/interfaces/__init__.py:35
+msgid "Short text displayed above key numbers"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/interfaces/__init__.py:39
+#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:40
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:44
+#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:41
+#: ./src/pyams_content/component/association/interfaces/__init__.py:42
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:87
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:117
+#: ./src/pyams_content/features/alert/interfaces.py:54
+#: ./src/pyams_content/features/menu/interfaces/__init__.py:58
+msgid "Visible?"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/interfaces/__init__.py:40
+msgid "Is this key number visible in front-office?"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/interfaces/__init__.py:45
+msgid ""
+"Small text to be displayed above number (according to selected renderer)"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/interfaces/__init__.py:50
+msgid "Key number value"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/interfaces/__init__.py:54
+msgid "Displayed unit"
+msgstr ""
+
+#: ./src/pyams_content/component/keynumber/interfaces/__init__.py:58
+msgid "The way this text will be rendered depends on presentation template"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/__init__.py:177
+#: ./src/pyams_content/component/illustration/zmi/paragraph.py:168
+#: ./src/pyams_content/component/illustration/zmi/__init__.py:56
+#: ./src/pyams_content/component/illustration/zmi/__init__.py:100
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:99
+msgid "Illustration"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/paragraph.py:60
+msgid "Illustration..."
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/paragraph.py:73
+msgid "Add new illustration"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/paragraph.py:103
+msgid "Edit illustration properties"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/__init__.py:155
+msgid "Navigation link illustration"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/__init__.py:102
+msgid "Header illustration"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:57
+#: ./src/pyams_content/reference/pictograms/interfaces/__init__.py:49
+msgid "Alternate title used to describe image content"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:69
+msgid "Name of picture's author"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:72
+msgid "Illustration template"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:73
+msgid "Presentation template used for illustration"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/milestone.py:140
+msgid "Selected paragraph is missing"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/milestone.py:143
+msgid "Selected paragraph is not visible"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/container.py:73
+msgid "Paragraphs"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/container.py:95
+msgid "no visible paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/pictogram.py:135
+msgid "Selected pictogram is missing"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:77
+msgid "Milestones..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:90
+msgid "Add new milestone paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:117
+msgid "Edit milestone paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:243
+#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:49
+msgid "Associated label"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:255
+#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:53
+msgid "Anchor"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:284
+#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:76
+msgid "Milestones"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:299
+msgid "Add milestone"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:312
+msgid "Add new milestone"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:339
+msgid "Edit milestone properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:327
+msgid "Milestone was correctly added"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/milestone.py:270
+msgid "(missing paragraph)"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/keypoint.py:51
+msgid "Key points..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/keypoint.py:64
+msgid "Add new key points paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/keypoint.py:91
+msgid "Edit key points paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/__init__.py:65
+msgid "Content block types..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/__init__.py:79
+msgid "Content block types"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/__init__.py:89
+msgid ""
+"You can define which types of paragraphs are allowed in this container.\n"
+"\n"
+"Default paragraphs will be added automatically (in selected order) to any new created content.\n"
+"\n"
+"NOTICE: removing types from allowed types list will have no effect on already created contents!"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/__init__.py:207
+#: ./src/pyams_content/shared/common/zmi/templates/preview-input.pt:39
+#: ./src/pyams_content/features/preview/zmi/__init__.py:45
+msgid "Preview"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/__init__.py:212
+#: ./src/pyams_content/shared/common/zmi/workflow.py:122
+#: ./src/pyams_content/shared/common/zmi/workflow.py:209
+#: ./src/pyams_content/shared/common/zmi/workflow.py:249
+#: ./src/pyams_content/shared/common/zmi/workflow.py:303
+#: ./src/pyams_content/shared/common/zmi/workflow.py:392
+#: ./src/pyams_content/shared/common/zmi/workflow.py:448
+#: ./src/pyams_content/shared/common/zmi/workflow.py:488
+#: ./src/pyams_content/shared/common/zmi/workflow.py:529
+#: ./src/pyams_content/shared/common/zmi/workflow.py:572
+#: ./src/pyams_content/shared/common/zmi/workflow.py:612
+#: ./src/pyams_content/shared/common/zmi/workflow.py:653
+#: ./src/pyams_content/shared/common/zmi/workflow.py:704
+#: ./src/pyams_content/shared/common/zmi/__init__.py:275
+#: ./src/pyams_content/shared/common/zmi/owner.py:73
+#: ./src/pyams_content/features/review/zmi/__init__.py:90
+msgid "Cancel"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/__init__.py:214
+msgid "Submit"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/__init__.py:195
+msgid "Paragraph was correctly added."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/video.py:53
+msgid "Video paragraph..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/video.py:66
+msgid "Add new video paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/video.py:94
+#: ./src/pyams_content/component/video/zmi/paragraph.py:192
+msgid "Edit video properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:74
+msgid "Contents..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:239
+msgid "Show/hide all paragraphs"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:287
+#: ./src/pyams_content/component/paragraph/zmi/container.py:296
+#: ./src/pyams_content/component/paragraph/zmi/container.py:309
+msgid "Content blocks"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:366
+msgid "Links and attachments..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:378
+msgid "Content blocks links and attachments"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:126
+msgid "No currently defined paragraph."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:248
+msgid "Click to open/close all paragraphs editors"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:261
+msgid "Click to open/close paragraph editor"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:132
+msgid "Check allowed paragraph types to be able to create new paragraphs."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:82
+msgid "Pictograms..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:95
+msgid "Add new pictogram paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:122
+msgid "Edit pictogram paragraph properties"
+msgstr ""
+
+#. Default: Header
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:252
+msgid "pictogram-item-header"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:289
+#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:80
+msgid "Pictograms"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:304
+#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:59
+msgid "Add pictogram"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:317
+#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:71
+msgid "Add new pictogram"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:359
+#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:95
+msgid "Edit pictogram properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:339
+msgid "Pictogram was correctly added"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:349
+#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:387
+msgid "You must select a pictogram!"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/audio.py:54
+msgid "Audio paragraph..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/audio.py:67
+msgid "Add new audio paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/audio.py:108
+msgid "Edit audio properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/audio.py:84
+#: ./src/pyams_content/component/paragraph/zmi/audio.py:128
+msgid "HTML content"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/keynumber.py:55
+msgid "Key numbers..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/keynumber.py:68
+msgid "Add new key number paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/keynumber.py:96
+msgid "Edit key number paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/frame.py:84
+msgid "Framed text..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/frame.py:98
+msgid "Add new framed text paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/frame.py:129
+msgid "Edit framed text paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/verbatim.py:56
+msgid "Verbatim..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/verbatim.py:69
+msgid "Add new verbatim paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/verbatim.py:96
+msgid "Edit verbatim paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/html.py:76
+msgid "Raw HTML..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/html.py:89
+msgid "Add new raw HTML paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/html.py:119
+msgid "Edit raw HTML paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/html.py:159
+msgid "Rich text..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/html.py:172
+msgid "Add new rich text paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/html.py:202
+msgid "Edit rich text paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/contact.py:53
+msgid "Contact card..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/contact.py:66
+msgid "Add new contact card"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/contact.py:94
+msgid "Edit contact card properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/header.py:50
+msgid "Header..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/header.py:63
+msgid "Add new header paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/header.py:90
+msgid "Edit header paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:41
+msgid "Is this milestone visible in front-office?"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:46
+msgid "Milestone title"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:50
+msgid "The way this label will be rendered depends on presentation template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:54
+msgid "Paragraph to which this milestone should lead"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:83
+msgid "Milestones template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:84
+msgid "Presentation template used for milestones"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/keypoint.py:33
+#: ./src/pyams_content/component/paragraph/interfaces/keypoint.py:40
+msgid "Key points"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/keypoint.py:41
+msgid "Enter one key point by line, without hyphen or prefix"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/keypoint.py:44
+msgid "Presentation template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/keypoint.py:45
+#: ./src/pyams_content/component/paragraph/interfaces/frame.py:44
+#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:53
+#: ./src/pyams_content/component/paragraph/interfaces/html.py:46
+#: ./src/pyams_content/component/paragraph/interfaces/html.py:67
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:100
+#: ./src/pyams_content/shared/logo/interfaces/__init__.py:76
+msgid "Presentation template used for this paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:45
+msgid "Is this paragraph visible in front-office?"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:49
+msgid "§ Title"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:80
+msgid "Allowed paragraphs"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:81
+msgid "List of paragraphs allowed for this content type"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:85
+#: ./src/pyams_content/shared/common/zmi/types.py:169
+#: ./src/pyams_content/shared/common/zmi/types.py:380
+msgid "Default paragraphs"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:86
+msgid "List of paragraphs automatically added to a new content"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:42
+msgid "Video file content"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:56
+#: ./src/pyams_content/component/video/interfaces/__init__.py:78
+msgid "Video template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:57
+#: ./src/pyams_content/component/video/interfaces/__init__.py:79
+msgid "Presentation template used for this video"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:42
+msgid "Is this pictogram visible in front-office?"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:46
+#: ./src/pyams_content/component/links/interfaces/__init__.py:43
+#: ./src/pyams_content/shared/common/interfaces/types.py:68
+#: ./src/pyams_content/features/alert/interfaces.py:79
+msgid "Pictogram"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:47
+#: ./src/pyams_content/features/alert/interfaces.py:80
+msgid "Name of the pictogram to select"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:53
+msgid "Alternate header"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:54
+msgid ""
+"Alternate pictogram label; if not specified, the pictogram header will be "
+"used"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:59
+msgid "Additional text associated to this pictogram"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:87
+msgid "Pictograms template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:88
+msgid "Presentation template used for pictograms"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/audio.py:34
+msgid "Audio"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/audio.py:41
+#: ./src/pyams_content/component/paragraph/interfaces/html.py:63
+msgid "Body"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/audio.py:56
+msgid "Audio template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/audio.py:57
+msgid "Presentation template used for this audio file"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/keynumber.py:36
+msgid "Key numbers template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/keynumber.py:37
+msgid "Presentation template used for key numbers"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/frame.py:33
+msgid "Framed text"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/frame.py:40
+msgid "Frame body"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/frame.py:43
+msgid "Text template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:33
+msgid "Verbatim"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:40
+msgid "Quoted text"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:41
+msgid "Quotation marks will be added automatically by presentation template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:45
+msgid "Name of the quote author"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:48
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:54
+msgid "In charge of"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:49
+msgid "Label of author function"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:52
+msgid "Verbatim template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/html.py:33
+msgid "Raw HTML "
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/html.py:56
+msgid "Rich text"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/html.py:40
+msgid "Raw HTML code"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/html.py:41
+msgid ""
+"This HTML code will be used 'as is', without any transformation. Use with "
+"care!!"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/html.py:45
+msgid "Raw HTML code template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/html.py:66
+msgid "Body template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:43
+msgid "Contact card"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:50
+msgid "Contact identity"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:51
+msgid "Name of the contact"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:55
+msgid "Label of contact function"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:58
+msgid "Email address"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:59
+msgid "Contact email address"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:62
+msgid "Contact form"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:63
+msgid "Reference of contact form"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:67
+msgid "Photo"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:68
+msgid "Use 'browse' button to select contact picture"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:76
+msgid "Address"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:79
+msgid "Contact template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:80
+msgid "Presentation template used for this contact"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:72
+msgid "GPS location"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/contact.py:73
+msgid "GPS coordinates used to locate contact"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/header.py:33
+#: ./src/pyams_content/component/paragraph/interfaces/header.py:40
+msgid "Header"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/header.py:43
+#: ./src/pyams_content/features/header/interfaces/__init__.py:39
+msgid "Header template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/header.py:44
+#: ./src/pyams_content/features/header/interfaces/__init__.py:40
+msgid "Presentation template used for this header"
+msgstr ""
+
+#: ./src/pyams_content/component/theme/__init__.py:65
+#: ./src/pyams_content/component/theme/zmi/portlet.py:40
+#: ./src/pyams_content/component/theme/interfaces/__init__.py:43
+msgid "Themes"
+msgstr ""
+
+#: ./src/pyams_content/component/theme/__init__.py:74
+msgid "no defined theme"
+msgstr ""
+
+#: ./src/pyams_content/component/theme/zmi/__init__.py:51
+#: ./src/pyams_content/shared/view/zmi/theme.py:48
+msgid "Themes..."
+msgstr ""
+
+#: ./src/pyams_content/component/theme/zmi/__init__.py:63
+msgid "Content themes"
+msgstr ""
+
+#: ./src/pyams_content/component/theme/zmi/manager.py:45
+msgid "Themes settings..."
+msgstr ""
+
+#: ./src/pyams_content/component/theme/zmi/manager.py:59
+msgid "Selected themes"
+msgstr ""
+
+#: ./src/pyams_content/component/association/container.py:88
+#: ./src/pyams_content/component/association/zmi/__init__.py:296
+#: ./src/pyams_content/component/association/interfaces/__init__.py:90
+msgid "Associations"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/paragraph.py:54
+#: ./src/pyams_content/component/association/zmi/__init__.py:96
+msgid "Associations..."
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/paragraph.py:67
+msgid "Add new association paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/paragraph.py:93
+msgid "Edit association paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:198
+msgid "Public title"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:216
+msgid "Inner title"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:232
+msgid "Size"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:273
+#: ./src/pyams_content/component/association/zmi/__init__.py:283
+msgid "Associations list"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:66
+msgid "Association was correctly added."
+msgstr ""
+
+#: ./src/pyams_content/component/association/interfaces/__init__.py:43
+#: ./src/pyams_content/features/menu/interfaces/__init__.py:59
+msgid "Is this item visible in front-office?"
+msgstr ""
+
+#: ./src/pyams_content/component/association/interfaces/__init__.py:97
+msgid "Associations template"
+msgstr ""
+
+#: ./src/pyams_content/component/association/interfaces/__init__.py:98
+msgid "Presentation template used for associations"
+msgstr ""
+
+#: ./src/pyams_content/component/links/__init__.py:124
+msgid "Internal link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/__init__.py:206
+msgid "External link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/__init__.py:259
+msgid "Mailto link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/__init__.py:193
+msgid "target is not published"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:60
+msgid "Internal links"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:75
+msgid "Add internal link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:89
+msgid "Add new internal link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:125
+msgid "Edit internal link properties"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:159
+msgid "External links"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:174
+msgid "Add external link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:188
+msgid "Add new external link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:224
+msgid "Edit external link properties"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:258
+msgid "Mailto links"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:273
+msgid "Add mailto link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:287
+msgid "Add new mailto link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:323
+msgid "Edit mailto link properties"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/reverse.py:57
+msgid "Reverse links"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/reverse.py:66
+msgid "Content's internal links"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:36
+msgid "Link title, as shown in front-office"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:40
+msgid "Link description displayed by front-office template"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:44
+msgid "Name of the pictogram associated with this link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:64
+#: ./src/pyams_content/shared/logo/interfaces/__init__.py:50
+msgid "Target URL"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:65
+#: ./src/pyams_content/shared/logo/interfaces/__init__.py:51
+msgid "URL used to access external resource"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:69
+msgid "Language used in this remote resource"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:77
+msgid "Target address"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:78
+msgid "Target email address"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:81
+msgid "Address name"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:82
+msgid "Address as displayed in address book"
+msgstr ""
+
+#: ./src/pyams_content/component/video/__init__.py:73
+#: ./src/pyams_content/component/video/interfaces/__init__.py:68
+msgid "External video"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/dailymotion.py:94
+msgid "Dailymotion settings"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/__init__.py:70
+msgid "Other provider"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/__init__.py:94
+msgid "Custom video settings"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/vimeo.py:92
+msgid "Vimeo settings"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:31
+msgid "Integration code"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:32
+msgid ""
+"Please select integration code provided by your video provider, and paste it "
+"here"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:40
+#: ./src/pyams_content/component/video/provider/interfaces.py:112
+#: ./src/pyams_content/component/video/provider/interfaces.py:180
+msgid "Video ID"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:41
+msgid ""
+"To get video ID, just use the 'Share' button in Youtube platform and "
+"copy/paste the given URL here"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:45
+#: ./src/pyams_content/component/video/provider/interfaces.py:117
+msgid "Start at"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:46
+#: ./src/pyams_content/component/video/provider/interfaces.py:118
+msgid ""
+"Position at which to start video, in 'seconds' or 'minutes:seconds' format"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:50
+msgid "Stop at"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:51
+msgid ""
+"Position at which to stop video, in 'seconds' or 'minutes:seconds' format"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:54
+#: ./src/pyams_content/component/video/provider/interfaces.py:122
+#: ./src/pyams_content/component/video/provider/interfaces.py:200
+msgid "Auto play?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:55
+#: ./src/pyams_content/component/video/provider/interfaces.py:123
+#: ./src/pyams_content/component/video/provider/interfaces.py:201
+msgid "If 'yes', video is started automatically on page load"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:59
+#: ./src/pyams_content/component/video/provider/interfaces.py:205
+msgid "Loop playback?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:60
+#: ./src/pyams_content/component/video/provider/interfaces.py:206
+msgid "If 'yes', video is played indefinitely"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:64
+#: ./src/pyams_content/component/video/provider/interfaces.py:127
+msgid "Show video info?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:65
+#: ./src/pyams_content/component/video/provider/interfaces.py:128
+msgid "If 'no', video title and information won't be displayed"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:69
+#: ./src/pyams_content/component/video/provider/interfaces.py:132
+msgid "Show commands?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:70
+#: ./src/pyams_content/component/video/provider/interfaces.py:133
+msgid "Show video player commands"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:74
+msgid "Hide branding?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:75
+msgid "If 'no', Youtube branding will be displayed"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:79
+msgid "Show related videos?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:80
+msgid "Show related videos when video end"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:84
+#: ./src/pyams_content/component/video/provider/interfaces.py:152
+#: ./src/pyams_content/component/video/provider/interfaces.py:210
+msgid "Allow full screen?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:85
+#: ./src/pyams_content/component/video/provider/interfaces.py:153
+#: ./src/pyams_content/component/video/provider/interfaces.py:211
+msgid "If 'yes', video can be displayed in full screen"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:89
+msgid "Disable keyboard?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:90
+msgid "If 'yes', video player can't be controlled via keyboard shortcuts"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:94
+#: ./src/pyams_content/component/video/provider/interfaces.py:162
+#: ./src/pyams_content/component/video/provider/interfaces.py:215
+msgid "Video width"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:95
+#: ./src/pyams_content/component/video/provider/interfaces.py:163
+#: ./src/pyams_content/component/video/provider/interfaces.py:216
+msgid ""
+"Initial video frame width; mandatory for old browsers but may be overridden "
+"by presentation skin"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:101
+#: ./src/pyams_content/component/video/provider/interfaces.py:169
+#: ./src/pyams_content/component/video/provider/interfaces.py:222
+msgid "Video height"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:102
+#: ./src/pyams_content/component/video/provider/interfaces.py:170
+#: ./src/pyams_content/component/video/provider/interfaces.py:223
+msgid ""
+"Initial video frame height; mandatory for old browsers but may be overridden "
+"by presentation skin"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:113
+msgid ""
+"To get video ID, just use the 'Share' button in Dailymotion platform, click "
+"on \"Copy link\" and paste the given URL here"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:137
+msgid "UI theme"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:138
+msgid "Default base color theme"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:142
+msgid "Show branding?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:143
+msgid "If 'yes', Dailymotion branding will be displayed"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:147
+msgid "Show end screen?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:148
+msgid "Show end screen when video end"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:157
+msgid "Allow sharing?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:158
+msgid "If 'no', video sharing will be disabled"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:181
+msgid ""
+"To get video ID, just use the 'Share' button in Vimeo platform, click on "
+"\"Link\" entry and copy/paste the given URL here"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:185
+msgid "Show title?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:186
+msgid "If 'no', video title won't be displayed"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:190
+msgid "Show signature?"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:191
+msgid "If 'no', video's author signature won't be displayed"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:195
+msgid "Infos color"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/interfaces.py:196
+msgid "Color used for title and signature"
+msgstr ""
+
+#: ./src/pyams_content/component/video/provider/youtube.py:96
+msgid "Youtube settings"
+msgstr ""
+
+#: ./src/pyams_content/component/video/zmi/paragraph.py:62
+msgid "External video..."
+msgstr ""
+
+#: ./src/pyams_content/component/video/zmi/paragraph.py:75
+msgid "Add new external video..."
+msgstr ""
+
+#: ./src/pyams_content/component/video/zmi/paragraph.py:126
+msgid "Video provider is required"
+msgstr ""
+
+#: ./src/pyams_content/component/video/zmi/paragraph.py:175
+#: ./src/pyams_content/component/video/zmi/paragraph.py:229
+msgid "Video provider settings"
+msgstr ""
+
+#: ./src/pyams_content/component/video/zmi/paragraph.py:155
+msgid "Other settings"
+msgstr ""
+
+#: ./src/pyams_content/component/video/interfaces/__init__.py:56
+msgid "Video provider"
+msgstr ""
+
+#: ./src/pyams_content/component/video/interfaces/__init__.py:57
+msgid "Name of external platform providing selected video"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/__init__.py:237
+#: ./src/pyams_content/shared/common/zmi/properties.py:70
+#: ./src/pyams_content/shared/common/zmi/manager.py:96
+msgid "Properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/__init__.py:147
+#: ./src/pyams_content/shared/common/__init__.py:155
+#, python-format
+msgid "{date} by {principal}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/__init__.py:260
+#, python-format
+msgid "title length should be between 40 and 66 characters ({length} actually)"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:92
+#: ./src/pyams_content/root/zmi/search.py:91
+msgid "Quick search results"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:157
+#: ./src/pyams_content/shared/common/zmi/search.py:190
+#: ./src/pyams_content/root/zmi/search.py:147
+#: ./src/pyams_content/root/zmi/search.py:180
+msgid "Advanced search"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:282
+#: ./src/pyams_content/root/zmi/search.py:260
+msgid "Advanced search results"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:165
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:231
+#: ./src/pyams_content/root/zmi/search.py:159
+msgid "Owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:168
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:154
+msgid "Status"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:172
+#: ./src/pyams_content/root/zmi/search.py:162
+msgid "Created after..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:175
+#: ./src/pyams_content/root/zmi/search.py:165
+msgid "Created before..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:178
+#: ./src/pyams_content/root/zmi/search.py:168
+msgid "Modified after..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:181
+#: ./src/pyams_content/root/zmi/search.py:171
+msgid "Modified before..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/properties.py:60
+msgid "Composition"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/properties.py:82
+msgid "Content properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:67
+msgid "Data types"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:145
+msgid "Data type label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:185
+#: ./src/pyams_content/shared/common/zmi/types.py:396
+msgid "Default associations"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:213
+msgid "Content data types"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:236
+msgid "Add data type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:248
+msgid "Add new data type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:285
+msgid "Data type properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:359
+msgid "Subtype label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:440
+msgid "Add subtype"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:452
+msgid "Add new subtype"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:498
+msgid "Data subtype properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:112
+msgid "No currently defined data type."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:275
+msgid "Specified type name is already used!"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:474
+msgid "Subtype was correctly added."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:488
+msgid "Specified subtype name is already used!"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:157
+msgid "Click to see subtypes"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:844
+msgid "Prior checks"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:123
+msgid "Request publication"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:210
+#: ./src/pyams_content/workflow/__init__.py:315
+msgid "Cancel publication request"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:250
+msgid "Refuse publication request"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:304
+#: ./src/pyams_content/workflow/basic.py:196
+msgid "Publish"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:393
+msgid "Request retire"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:449
+msgid "Cancel retire request"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:489
+msgid "Retire"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:530
+#: ./src/pyams_content/workflow/__init__.py:436
+msgid "Request archive"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:573
+msgid "Cancel archive request"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:613
+msgid "Archive"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:654
+#: ./src/pyams_content/workflow/__init__.py:501
+#: ./src/pyams_content/workflow/__init__.py:513
+#: ./src/pyams_content/workflow/__init__.py:525
+#: ./src/pyams_content/workflow/__init__.py:537
+#: ./src/pyams_content/workflow/__init__.py:549
+#: ./src/pyams_content/workflow/basic.py:224
+#: ./src/pyams_content/workflow/basic.py:236
+msgid "Create new version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:705
+#: ./src/pyams_content/workflow/__init__.py:561
+#: ./src/pyams_content/workflow/basic.py:248
+msgid "Delete version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:790
+msgid "Previewed content?"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:794
+msgid "Verified content?"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:180
+#: ./src/pyams_content/shared/common/zmi/workflow.py:362
+msgid "Publication start date is required"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:273
+#: ./src/pyams_content/shared/common/zmi/workflow.py:419
+msgid "A comment is required"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:729
+msgid "Delete content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:738
+msgid "Delete definitively"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:860
+msgid ""
+"You must confirm that you previewed and checked this content before "
+"requesting publication!!"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:87
+#, python-format
+msgid "{state} | by {principal}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:83
+#: ./src/pyams_content/workflow/__init__.py:648
+#: ./src/pyams_content/workflow/__init__.py:619
+#: ./src/pyams_content/workflow/basic.py:315
+#: ./src/pyams_content/workflow/basic.py:286
+#, python-format
+msgid "{state} {date}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:265
+msgid "Duplicate content..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:285
+msgid "Duplicate content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:84
+msgid "This title can be modified afterwards"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:276
+msgid "Duplicate this content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:337
+#, python-format
+msgid "Clone created from version {source} of {oid} (in « {state} » state)"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:382
+msgid "Created or modified in this version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:50
+msgid "Display content summary"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:74
+msgid "Identity card"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:86
+msgid "Requested action"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:127
+msgid "Publication and retire dates"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:146
+msgid "Current version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:176
+msgid "Content history"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:117
+msgid "Associated comment"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:158
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:198
+msgid "Version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:107
+#, python-format
+msgid "{state} {date} by {principal}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:164
+#, python-format
+msgid "{state} since {date}, by {principal}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:107
+msgid "Shared tool properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:125
+msgid "WARNING"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:127
+msgid ""
+"Workflow shouldn't be modified if this tool already contains any shared "
+"content!"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:150
+msgid "Languages"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:162
+msgid "Content languages"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:172
+msgid ""
+"Tool languages are used to translate own tool properties, and newly created "
+"contents will propose these languages by default"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:80
+msgid "Content management"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:82
+msgid "Tool management"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:50
+msgid "Change owner..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:83
+msgid "Change content's owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:125
+msgid ""
+"All versions of this content which are not archived will be transferred to "
+"newly selected owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:60
+msgid "New owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:61
+msgid "The selected user will become the new content's owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:63
+msgid "Keep previous owner as contributor"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:64
+msgid "If 'yes', the previous owner will still be able to modify this content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:74
+msgid "Change owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/site.py:38
+#, python-format
+msgid ""
+"SEARCH - Between all contents published into &laquo;&nbsp;{site}&nbsp;&raquo;"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/portal.py:46
+msgid "Edit default template properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/portal.py:56
+msgid ""
+"**This form allows you to select shared content default template.**\n"
+"\n"
+"If you choose to use a shared template, you can only adjust settings of each portlet individually but can't change portlets list or page configuration.\n"
+"\n"
+"If you use a local template, you can define a whole custom configuration but the template definition can't be reused anywhere..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/portal.py:72
+msgid "Override tool default template"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:134
+msgid "Unique ID"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:181
+msgid "Status date"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:213
+msgid "Status principal"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:250
+msgid "Last modification"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:273
+#: ./src/pyams_content/root/zmi/__init__.py:110
+msgid "Dashboard"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:283
+msgid "Contents dashboard"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:329
+#: ./src/pyams_content/root/zmi/__init__.py:159
+#, python-format
+msgid "MANAGER - {0} content waiting for your action"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:330
+#: ./src/pyams_content/root/zmi/__init__.py:160
+#, python-format
+msgid "MANAGER - {0} contents waiting for your action"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:370
+#: ./src/pyams_content/root/zmi/__init__.py:203
+#, python-format
+msgid "CONTRIBUTOR - {0} content waiting for action"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:371
+#: ./src/pyams_content/root/zmi/__init__.py:204
+#, python-format
+msgid "CONTRIBUTOR - {0} contents waiting for action"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:402
+#: ./src/pyams_content/root/zmi/__init__.py:238
+#, python-format
+msgid "CONTRIBUTOR - {0} modified content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:443
+#: ./src/pyams_content/root/zmi/__init__.py:281
+msgid "My contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:458
+#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:8
+#: ./src/pyams_content/root/zmi/__init__.py:296
+#: ./src/pyams_content/root/zmi/templates/dashboard.pt:8
+msgid "My favorites"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:467
+#: ./src/pyams_content/root/zmi/__init__.py:305
+#, python-format
+msgid "CONTRIBUTOR - {0} favorite"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:468
+#: ./src/pyams_content/root/zmi/__init__.py:306
+#, python-format
+msgid "CONTRIBUTOR - {0} favorites"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:480
+#: ./src/pyams_content/shared/common/zmi/templates/header.pt:23
+msgid "Add/remove from favorites"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:543
+#: ./src/pyams_content/root/zmi/__init__.py:344
+msgid "Your favorites"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:556
+#: ./src/pyams_content/root/zmi/__init__.py:357
+msgid "My preparations"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:565
+#: ./src/pyams_content/root/zmi/__init__.py:366
+#, python-format
+msgid "CONTRIBUTOR - {0} prepared content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:566
+#: ./src/pyams_content/root/zmi/__init__.py:367
+#, python-format
+msgid "CONTRIBUTOR - {0} prepared contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:605
+#: ./src/pyams_content/root/zmi/__init__.py:405
+msgid "Your prepared contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:618
+#: ./src/pyams_content/root/zmi/__init__.py:418
+msgid "My submissions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:627
+#: ./src/pyams_content/root/zmi/__init__.py:427
+#, python-format
+msgid "CONTRIBUTOR - {0} submitted content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:628
+#: ./src/pyams_content/root/zmi/__init__.py:428
+#, python-format
+msgid "CONTRIBUTOR - {0} submitted contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:667
+#: ./src/pyams_content/root/zmi/__init__.py:466
+msgid "Your submitted contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:680
+#: ./src/pyams_content/root/zmi/__init__.py:479
+msgid "My publications"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:689
+#: ./src/pyams_content/root/zmi/__init__.py:488
+#, python-format
+msgid "CONTRIBUTOR - {0} published content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:690
+#: ./src/pyams_content/root/zmi/__init__.py:489
+#, python-format
+msgid "CONTRIBUTOR - {0} published contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:729
+#: ./src/pyams_content/root/zmi/__init__.py:527
+msgid "Your published contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:742
+#: ./src/pyams_content/root/zmi/__init__.py:540
+msgid "My retired contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:751
+#: ./src/pyams_content/root/zmi/__init__.py:549
+#, python-format
+msgid "CONTRIBUTOR - {0} retired content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:752
+#: ./src/pyams_content/root/zmi/__init__.py:550
+#, python-format
+msgid "CONTRIBUTOR - {0} retired contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:792
+#: ./src/pyams_content/root/zmi/__init__.py:589
+msgid "Your retired contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:805
+#: ./src/pyams_content/root/zmi/__init__.py:602
+msgid "My archived contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:814
+#: ./src/pyams_content/root/zmi/__init__.py:611
+#, python-format
+msgid "CONTRIBUTOR - {0} archived content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:815
+#: ./src/pyams_content/root/zmi/__init__.py:612
+#, python-format
+msgid "CONTRIBUTOR - {0} archived contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:861
+#: ./src/pyams_content/root/zmi/__init__.py:657
+msgid "Your archived contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:875
+#: ./src/pyams_content/root/zmi/__init__.py:671
+msgid "Other interventions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:890
+#: ./src/pyams_content/root/zmi/__init__.py:686
+msgid "Last publications"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:899
+#: ./src/pyams_content/root/zmi/__init__.py:695
+#, python-format
+msgid "CONTRIBUTORS - {0} published content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:945
+#: ./src/pyams_content/root/zmi/__init__.py:740
+msgid "Last published contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:958
+#: ./src/pyams_content/root/zmi/__init__.py:753
+msgid "Last updates"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:967
+#: ./src/pyams_content/root/zmi/__init__.py:762
+#, python-format
+msgid "CONTRIBUTORS - {0} updated content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:1012
+#: ./src/pyams_content/root/zmi/__init__.py:806
+msgid "Last updated contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:407
+#: ./src/pyams_content/root/zmi/__init__.py:243
+#, python-format
+msgid "CONTRIBUTOR - {0} modified contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:409
+#: ./src/pyams_content/root/zmi/__init__.py:245
+#, python-format
+msgid "CONTRIBUTOR - Last {0} modified contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:904
+#: ./src/pyams_content/root/zmi/__init__.py:700
+#, python-format
+msgid "CONTRIBUTORS - Last {0} published contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:906
+#: ./src/pyams_content/root/zmi/__init__.py:702
+msgid "CONTRIBUTORS - Last published contents (in the limit of 50)"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:972
+#: ./src/pyams_content/root/zmi/__init__.py:767
+#, python-format
+msgid "CONTRIBUTORS - Last {0} updated contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:974
+#: ./src/pyams_content/root/zmi/__init__.py:769
+msgid "CONTRIBUTORS - Last updated contents (in the limit of 50)"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:306
+#, python-format
+msgid "SEARCH - Between all contents of type &laquo;&nbsp;{type}&nbsp;&raquo;"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:171
+#: ./src/pyams_content/shared/common/zmi/header.py:96
+msgid "Content publication start date is not passed yet"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:64
+msgid "Contributors restrictions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:73
+msgid "Content contributors restrictions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:107
+msgid "Contributor name"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:118
+#: ./src/pyams_content/shared/common/zmi/security.py:270
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:260
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:285
+msgid "Publication checks"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:218
+msgid "Managers restrictions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:227
+msgid "Content managers restrictions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:259
+msgid "Manager name"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:287
+msgid "Restricted"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:304
+msgid "Owners"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:394
+msgid "Publication workflow"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:167
+#, python-format
+msgid "Edit contributor restrictions for « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:353
+#, python-format
+msgid "Edit manager restrictions for « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:400
+msgid "Apply contents restrictions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:402
+msgid ""
+"You can specify which contents this manager will be able to manage. If you "
+"specify several criteria, the manager will be able to manage contents for "
+"which at least one criteria is matching."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:85
+#, python-format
+msgid "{state} by {principal}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:116
+#, python-format
+msgid "since {date}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:128
+msgid "access published version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:135
+msgid "access new version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:145
+msgid "access waiting version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:156
+msgid "access retired version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:166
+msgid "access archived version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-retiring-message.pt:2
+msgid ""
+"You considerate that the currently published version should no more be "
+"publicly visible."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-retiring-message.pt:3
+msgid ""
+"WARNING: the content will remain visible until a manager validate the "
+"request."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/header.pt:6
+msgid "Back to previous page"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/header.pt:20
+msgid "by ${owner}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-archive-message.pt:2
+msgid "As a manager, you considerate that this content must be archived."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-archive-message.pt:3
+#: ./src/pyams_content/shared/common/zmi/templates/wf-archiving-message.pt:3
+msgid ""
+"After archiving, it will be backed up but you will not be able to publish it "
+"again except by creating a new version."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/check-input.pt:34
+#: ./src/pyams_content/shared/common/zmi/templates/preview-input.pt:34
+#: ./src/pyams_content/shared/common/interfaces/types.py:40
+#: ./src/pyams_content/shared/form/zmi/field.py:159
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:62
+#: ./src/pyams_content/features/menu/zmi/__init__.py:208
+msgid "Label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/check-input.pt:39
+#: ./src/pyams_content/features/checker/zmi/__init__.py:43
+msgid "Audit"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:29
+#: ./src/pyams_content/root/zmi/templates/dashboard.pt:29
+msgid "Quick search..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:35
+#: ./src/pyams_content/root/zmi/templates/dashboard.pt:35
+msgid "Advanced search..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:49
+#: ./src/pyams_content/root/zmi/templates/dashboard.pt:49
+msgid "You are not actually concerned by any content."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-publish-message.pt:2
+msgid ""
+"As a manager, you considerate that this content is complete and can be "
+"published 'as is'."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-publish-message.pt:4
+msgid ""
+"This operation will make the content publicly available (except if restricted"
+" access has been set)."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-create-message.pt:2
+msgid ""
+"This new content is going to be created in 'draft' mode, so that you can "
+"complete it before publication."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-create-message.pt:4
+msgid ""
+"A unique number is also going to be assigned to it. This number will be "
+"shared by all content's versions."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-operator-warning.pt:1
+msgid ""
+"WARNING: this request was made by a contributor which is not the owner of "
+"this content."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-clone-message.pt:2
+msgid "You considerate that the currently published must evolve."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-clone-message.pt:3
+msgid ""
+"By creating a new version, you can update it's content without impacting the "
+"currently published one."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-clone-message.pt:5
+msgid ""
+"When the new version will be complete, you will be able to make a new "
+"publication request to replace the currently published version (which will be"
+" archived automatically)."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-propose-message.pt:1
+msgid ""
+"This publication request is going to be transmitted to a content manager."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-duplicate-message.pt:2
+msgid "You are going to duplicate a whole content."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-duplicate-message.pt:3
+msgid ""
+"The new copy is going to be created in 'draft' mode, so that you can modify "
+"it before publication."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-duplicate-message.pt:5
+msgid ""
+"A new unique number is also going to be assigned to it. This number will be "
+"shared by all content's versions."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:128
+#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:128
+msgid "Created between"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:140
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:166
+#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:140
+#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:166
+msgid "and"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:154
+#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:154
+msgid "Modified between"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:202
+#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:202
+msgid "Tab label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-refuse-propose-message.pt:2
+msgid ""
+"As a content manager, you considerate that this content can't be published "
+"'as is'."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-refuse-propose-message.pt:4
+msgid ""
+"The contributor will be notified of this and will be able to update the "
+"content before doing a new publication request."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-cancel-archiving-message.pt:1
+msgid ""
+"After cancelling this request, the content will return to it's previous "
+"retired state."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-cancel-retiring-message.pt:1
+msgid ""
+"After cancelling this request, the content will return to it's normal "
+"published state."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-retire-message.pt:2
+msgid ""
+"As a content manager, you considerate that this content should no longer be "
+"published."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-retire-message.pt:4
+msgid ""
+"Retired content won't be visible anymore, but it can be updated and published"
+" again, or archived."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-cancel-propose-message.pt:1
+msgid ""
+"After canceling the request, you will be able to update the content again."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-delete-message.pt:2
+msgid ""
+"This content was never published. If you confirm deletion, it won't be "
+"possible to restore it."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-delete-message.pt:6
+msgid ""
+"The content version is going to be definitely deleted. Will only remain the "
+"currently published version."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-owner-warning.pt:1
+msgid ""
+"RECALL: you are not the owner of the content on which you are intervening."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:2
+msgid "FOR YOUR INFORMATION"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:5
+msgid "Next step"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:7
+msgid "Previous step"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:10
+msgid "With this comment:"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-archiving-message.pt:2
+msgid "This content is already retired and not visible."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/portlet/content/__init__.py:44
+msgid "Context content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/portlet/content/zmi/preview.pt:2
+msgid "This is where the content will be displayed!!"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/portlet/content/skin/__init__.py:36
+msgid "Default content renderer"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:36
+#: ./src/pyams_content/shared/form/zmi/field.py:148
+msgid "Name"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:37
+msgid "Name of this data type; must be unique between all data types"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:43
+msgid "Navigation label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:44
+msgid "Label used for navigation entries"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:47
+msgid "Tab-folder label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:48
+msgid "Label used to include into tab folder"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:51
+msgid "'See also' label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:52
+msgid ""
+"This label can be used when contents of this type will be displayed in a 'See"
+" also' entries block"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:56
+msgid "'Single value' label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:57
+msgid "Label given to this type when a single value is displayed"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:60
+msgid "'Link to list' label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:61
+msgid "Label used to display a link to a list of items of this type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:64
+msgid "Next content label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:65
+msgid "Label used to announce next date for this type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:69
+msgid "Image associated to this data type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:82
+msgid "Field names"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:83
+msgid "List of fields associated with this data type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:46
+#: ./src/pyams_content/root/interfaces/__init__.py:40
+msgid "Webmasters"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:47
+msgid "Webmasters can handle all contents, including published ones"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:51
+msgid "Pilots"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:52
+msgid ""
+"Pilots can handle tool configuration, manage access rules, grant users roles "
+"and manage managers restrictions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:57
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:182
+msgid "Managers"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:58
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:183
+msgid ""
+"Managers can handle main operations in tool's workflow, like publish or "
+"retire contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:63
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:188
+msgid "Contributors"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:64
+msgid "Contributors are users which are allowed to create new contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:90
+msgid "Workflow name"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:91
+msgid "Name of workflow utility used to manage tool contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:119
+msgid "Content URL"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:120
+msgid ""
+"URL used to access this content; this is important for SEO and should include"
+" most important words describing content; spaces and underscores will be "
+"automatically replaced by hyphens"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:125
+msgid "Version creator"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:126
+msgid ""
+"Name of content's version creator. The creator of the first version is also "
+"it's owner."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:130
+msgid "First owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:131
+msgid "Name of content's first version owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:135
+msgid "Version creation"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:138
+msgid "Version modifiers"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:139
+msgid "List of principals who modified this content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:142
+msgid "Last modifier"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:143
+msgid "Last principal who modified this content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:146
+msgid "Last update"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:150
+msgid ""
+"The content's description is 'hidden' into HTML's page headers; but it can be"
+" seen, for example, in some search engines results as content's description"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:155
+msgid "Keywords"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:156
+msgid "They will be included into HTML pages metadata"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:159
+#: ./src/pyams_content/shared/site/zmi/folder.py:78
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:66
+msgid "Notepad"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:160
+#: ./src/pyams_content/shared/site/zmi/folder.py:79
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:67
+msgid "Internal information to be known about this content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:175
+msgid "Content owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:176
+msgid ""
+"The owner is the creator of content's first version, except if it was "
+"transferred afterwards to another owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:189
+msgid ""
+"Contributors are users which are allowed to update this content in addition "
+"to it's owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:194
+msgid "Readers"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:195
+msgid ""
+"Readers are users which are asked to verify and comment contents before they "
+"are published"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:200
+msgid "Guests"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:201
+msgid ""
+"Guests are users which are allowed to view contents with restricted access"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:221
+msgid "Principal ID"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:261
+msgid ""
+"If 'yes', this contributor will have to confirm that contents have been "
+"previewed and checked before asking for publication"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:286
+msgid ""
+"If 'yes', this manager will have to confirm that contents have been previewed"
+" and checked before publishing a content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:291
+msgid "Restricted contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:292
+msgid ""
+"If 'yes', this manager will get restricted access to manage contents based on"
+" selected settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:297
+msgid "Selected owners"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:298
+msgid "Manager will have access to contents owned by these principals"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/__init__.py:99
+msgid "Form fields"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/__init__.py:100
+msgid "no field defined"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/handler.py:80
+msgid "Mailto form handler"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/handler.py:44
+msgid "No selected handler..."
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:137
+msgid "Text"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:147
+msgid "Multi-lines text"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:157
+msgid "Boolean"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:167
+msgid "Integer"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:177
+msgid "Decimal"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:187
+msgid "E-mail address"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:197
+msgid "URI"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:207
+msgid "Date"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:221
+msgid "Choice"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:241
+msgid "List"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/properties.py:41
+msgid "Main form settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/properties.py:70
+msgid "Form handler settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/__init__.py:44
+msgid "This form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/__init__.py:63
+#: ./src/pyams_content/shared/form/zmi/__init__.py:74
+msgid "Add form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/__init__.py:54
+#, python-format
+msgid "Form « {title} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:68
+msgid "Form fields..."
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:170
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:57
+msgid "Field type"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:203
+msgid "Form fields list"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:226
+#: ./src/pyams_content/shared/form/zmi/field.py:239
+msgid "Add form field"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:281
+msgid "Edit form field properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:179
+msgid "-- unknown field type --"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:114
+msgid "No currently defined form field."
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:266
+msgid "Specified name is already used!"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:35
+msgid "Form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:53
+msgid "Field name"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:54
+msgid "Field internal name; must be unique for a given form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:58
+msgid "Selected field type"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:63
+msgid "User field label"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:67
+msgid "Field description can be displayed as hint"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:70
+msgid "Placeholder"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:71
+msgid "Some field types like textline can display a placeholder"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:74
+msgid "Optional values"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:75
+msgid "List of available values (for 'choice' and 'list' field types)"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:78
+msgid "Default value"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:79
+msgid "Give default value if field type can use it"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:82
+msgid "Required?"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:83
+msgid "Select 'yes' to set field as mandatory"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:88
+msgid "Select 'no' to hide given field..."
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:122
+msgid "Form title"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:125
+msgid "Form header"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:128
+msgid "Form handler"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:129
+msgid "Select how form data is transmitted"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:132
+msgid "Authenticated only?"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:133
+msgid "If 'yes', only authenticated users will be able to see and submit form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:137
+msgid "Use captcha?"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:138
+msgid "If 'yes', a captcha will be added automatically to the form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:142
+msgid "Submit label"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:143
+msgid "Label of form submit button"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:180
+msgid "Source address"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:181
+msgid "Mail address from which form data is sent"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:184
+msgid "Source name"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:185
+msgid "Name of mail data sender"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:188
+msgid "Recipient address"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:189
+msgid "Mail address to which form data is sent"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:192
+msgid "Recipient name"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:193
+msgid "Name of data recipient"
+msgstr ""
+
+#: ./src/pyams_content/shared/news/zmi/__init__.py:44
+msgid "This news topic"
+msgstr ""
+
+#: ./src/pyams_content/shared/news/zmi/__init__.py:63
+#: ./src/pyams_content/shared/news/zmi/__init__.py:74
+msgid "Add news topic"
+msgstr ""
+
+#: ./src/pyams_content/shared/news/zmi/__init__.py:54
+#, python-format
+msgid "News topic « {title} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/news/interfaces/__init__.py:29
+msgid "News topic"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/properties.py:40
+msgid "Main view settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/__init__.py:44
+msgid "This view"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/__init__.py:63
+#: ./src/pyams_content/shared/view/zmi/__init__.py:73
+msgid "Add view"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/__init__.py:54
+#, python-format
+msgid "View « {title} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/theme.py:59
+msgid "View themes settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/reference.py:52
+msgid "References..."
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/reference.py:63
+msgid "View internal references settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/portlet/__init__.py:58
+msgid "View items"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/portlet/interfaces.py:31
+msgid "Selected view"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/portlet/interfaces.py:32
+msgid "Reference to the view from which items are extracted"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:32
+msgid "View"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:40
+#: ./src/pyams_content/interfaces/__init__.py:111
+#: ./src/pyams_content/features/review/interfaces.py:74
+msgid "Creation date"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:41
+msgid "Last update date"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:42
+msgid "Current publication date"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:43
+msgid "First publication date"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:148
+msgid "Always include selected internal references"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:149
+msgid "Include selected internal references only if empty"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:60
+msgid "Select context type?"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:61
+msgid "If 'yes', content type will be extracted from context"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:65
+msgid "Other content types"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:66
+msgid "Selected content types; leave empty for all"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:73
+msgid "Order by"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:74
+msgid "Property to use to sort results"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:79
+msgid "Reversed order?"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:80
+msgid "If 'yes', items order will be reversed"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:84
+msgid "Results count limit"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:85
+msgid "Maximum number of results that the view may retrieve"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:158
+msgid "Internal references usage"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:159
+msgid "Specify how selected references are included into view results"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:164
+msgid "Exclude context?"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:165
+msgid "If 'yes', context will be excluded from results list"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:176
+msgid "Select context themes?"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:177
+msgid "If 'yes', themes will be extracted from context"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:181
+msgid "Other terms"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/paragraph.py:91
+msgid "no selected image map"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/paragraph.py:97
+#, python-format
+msgid "image map '{0}' can't be found"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/paragraph.py:105
+#, python-format
+msgid "image map '{0}' is not published"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/__init__.py:154
+msgid "no area defined"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:54
+msgid "Image map..."
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:67
+msgid "Add new image map"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:94
+#: ./src/pyams_content/shared/logo/zmi/paragraph.py:93
+msgid "Edit paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/properties.py:40
+msgid "Background image"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/__init__.py:44
+msgid "This image map"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/__init__.py:63
+msgid "Add image map"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/__init__.py:73
+msgid "Adding image map"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/__init__.py:54
+#, python-format
+msgid "Image map « {title} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:54
+msgid "Image areas"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:65
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:70
+msgid "Image map areas"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:140
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:49
+msgid "Link target"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:113
+msgid "No currently defined image."
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:115
+msgid "No currently defined area."
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:175
+#: ./src/pyams_content/root/zmi/sites.py:170
+msgid "No provided object_name argument!"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:194
+msgid "Given area name doesn't exist!"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:186
+msgid "Bad query object_name parameter value!"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/area.py:47
+msgid "Add image area"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/area.py:66
+msgid "Add new image area"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/area.py:107
+msgid "Edit image map properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:35
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:88
+msgid "Image map"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:50
+msgid "Internal or external link associated with this map area"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:55
+msgid "Alternate label associated with this area"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:58
+msgid "Map area coordinates"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:59
+msgid "List of coordinates of image area"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:67
+msgid "Image supporting map areas"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:71
+msgid "List of defined map areas"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:95
+#: ./src/pyams_content/features/alert/interfaces.py:73
+msgid "Internal reference"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:96
+msgid "Reference to image map object"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:99
+msgid "Image map template"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/folder.py:59
+msgid "Site folder"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/link.py:46
+msgid "Content link"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/manager.py:68
+#: ./src/pyams_content/shared/site/zmi/manager.py:125
+msgid "Site manager"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:61
+msgid "Add site folder..."
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:93
+msgid "Add site folder"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:162
+msgid "Site folder management"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:190
+msgid "Site folder properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:71
+#: ./src/pyams_content/interfaces/__init__.py:100
+msgid "Visible label used to display content"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:74
+#: ./src/pyams_content/shared/site/zmi/__init__.py:72
+#: ./src/pyams_content/shared/site/zmi/link.py:66
+msgid "Parent"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:75
+#: ./src/pyams_content/shared/site/zmi/link.py:67
+msgid "Folder's parent"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:155
+msgid "You must provide a folder name for default server language!"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/__init__.py:55
+msgid "This topic"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/__init__.py:63
+msgid "Add topic..."
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/__init__.py:86
+msgid "Add topic"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/__init__.py:73
+msgid "Topic's parent"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/link.py:57
+msgid "Rent content..."
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/link.py:77
+msgid "Rent existing content"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/link.py:135
+msgid "Edit content link properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:106
+#: ./src/pyams_content/shared/site/zmi/container.py:118
+#: ./src/pyams_content/shared/blog/zmi/manager.py:155
+#: ./src/pyams_content/shared/blog/zmi/manager.py:167
+msgid "Publication dates..."
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:132
+#: ./src/pyams_content/shared/blog/zmi/manager.py:181
+msgid "Update publication dates"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:178
+#: ./src/pyams_content/shared/site/zmi/container.py:188
+#: ./src/pyams_content/root/zmi/sites.py:68
+msgid "Site tree"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:307
+#: ./src/pyams_content/shared/site/zmi/container.py:156
+msgid "Visible element?"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:308
+msgid "Switch element visibility"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:369
+msgid "Folders and topics"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:405
+#: ./src/pyams_content/root/zmi/__init__.py:817
+msgid "Content"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:501
+msgid "Delete site item"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:378
+msgid "Click to open/close all folders"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:394
+msgid "Click to show/hide inner folders"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:264
+msgid "Can't reparent object to one of it's children. Reloading..."
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/manager.py:57
+msgid "Site management"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/manager.py:112
+#: ./src/pyams_content/shared/site/zmi/manager.py:126
+msgid "Add site manager"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/manager.py:156
+#: ./src/pyams_content/shared/blog/zmi/manager.py:127
+msgid "You must provide a short name for default server language!"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/manager.py:160
+msgid "Specified site manager name is already used!"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/manager.py:164
+msgid "A site manager is already registered with this name!!"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:95
+msgid "Topic"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:58
+msgid "Heading"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:59
+msgid "Heading displayed according to presentation template"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:62
+msgid "Navigation title"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:63
+msgid "Title displayed in navigation items"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:114
+msgid "Content title, as shown in front-office"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:118
+msgid "If 'no', link is not visible"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/paragraph.py:95
+msgid "no selected logo"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/paragraph.py:101
+#, python-format
+msgid "logo '{0}' can't be found"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/paragraph.py:109
+#, python-format
+msgid "logo '{0}' is not published"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/__init__.py:67
+msgid "no image defined"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/__init__.py:70
+msgid "no URL defined"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/zmi/paragraph.py:54
+msgid "Logos..."
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/zmi/paragraph.py:67
+msgid "Add new logos paragraph"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/zmi/properties.py:40
+msgid "Main logo settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/zmi/__init__.py:45
+msgid "This logo"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/zmi/__init__.py:64
+#: ./src/pyams_content/shared/logo/zmi/__init__.py:75
+msgid "Add logo"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/zmi/__init__.py:55
+#, python-format
+msgid "Logo « {title} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/interfaces/__init__.py:32
+msgid "Logo"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/interfaces/__init__.py:64
+msgid "Logos"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/interfaces/__init__.py:71
+msgid "Logos references"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/interfaces/__init__.py:72
+msgid "List of internal logos references"
+msgstr ""
+
+#: ./src/pyams_content/shared/logo/interfaces/__init__.py:75
+msgid "Logos template"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/__init__.py:52
+msgid "This blog post"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/__init__.py:71
+#: ./src/pyams_content/shared/blog/zmi/__init__.py:81
+msgid "Add blog post"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/__init__.py:62
+#, python-format
+msgid "Blog post « {title} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/manager.py:60
+msgid "Blog management"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/manager.py:83
+#: ./src/pyams_content/shared/blog/zmi/manager.py:97
+msgid "Add blog manager"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/manager.py:96
+msgid "Blog manager"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/manager.py:131
+msgid "Specified blog manager name is already used!"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/manager.py:135
+msgid "A blog manager is already registered with this name!!"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/interfaces/__init__.py:33
+msgid "Blog post"
+msgstr ""
+
+#: ./src/pyams_content/profile/zmi/__init__.py:42
+msgid "Admin. profile"
+msgstr ""
+
+#: ./src/pyams_content/profile/interfaces/__init__.py:33
+msgid "User favorites"
+msgstr ""
+
+#: ./src/pyams_content/profile/interfaces/__init__.py:34
+msgid "List of internal numbers of shared contents stored for quick access"
+msgstr ""
+
+#: ./src/pyams_content/profile/interfaces/__init__.py:37
+msgid "Default table length"
+msgstr ""
+
+#: ./src/pyams_content/profile/interfaces/__init__.py:38
+msgid "Default length used for inner tables and dashboards"
+msgstr ""
+
+#: ./src/pyams_content/root/__init__.py:67
+msgid "Site root"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/sites.py:78
+msgid "Blogs and shared sites"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/sites.py:108
+msgid "Visible site?"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/sites.py:133
+msgid "OID"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/sites.py:151
+msgid "Delete shared site"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/sites.py:179
+msgid "Given element name doesn't exist!"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/search.py:155
+msgid "Content types"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/__init__.py:78
+msgid "Home"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/templates/dashboard.pt:7
+msgid "Your contents dashboard"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/templates/dashboard.pt:18
+msgid "SEARCH - Between all contents"
+msgstr ""
+
+#: ./src/pyams_content/root/interfaces/__init__.py:36
+msgid "Site managers"
+msgstr ""
+
+#: ./src/pyams_content/root/interfaces/__init__.py:44
+msgid "Templates managers"
+msgstr ""
+
+#: ./src/pyams_content/root/interfaces/__init__.py:48
+msgid "Operators group"
+msgstr ""
+
+#: ./src/pyams_content/root/interfaces/__init__.py:49
+msgid "Name of group containing all roles owners"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:70
+#: ./src/pyams_content/workflow/basic.py:53
+msgid "Draft"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:71
+msgid "Proposed"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:72
+msgid "Canceled"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:73
+msgid "Refused"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:74
+#: ./src/pyams_content/workflow/basic.py:54
+msgid "Published"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:75
+msgid "Retiring"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:76
+msgid "Retired"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:77
+msgid "Archiving"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:78
+#: ./src/pyams_content/workflow/basic.py:55
+msgid "Archived"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:79
+#: ./src/pyams_content/workflow/basic.py:56
+msgid "Deleted"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:84
+#: ./src/pyams_content/workflow/basic.py:61
+msgid "draft created"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:85
+msgid "publication requested"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:86
+#: ./src/pyams_content/workflow/basic.py:62
+msgid "published"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:87
+msgid "retiring requested"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:88
+msgid "retired"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:89
+msgid "archiving requested"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:90
+#: ./src/pyams_content/workflow/basic.py:63
+msgid "archived"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:279
+#: ./src/pyams_content/workflow/basic.py:190
+msgid "Initialize"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:282
+#: ./src/pyams_content/workflow/basic.py:193
+msgid "Draft creation"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:285
+#: ./src/pyams_content/workflow/__init__.py:300
+msgid "Propose publication"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:292
+#: ./src/pyams_content/workflow/__init__.py:307
+msgid "Publication request"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:293
+#: ./src/pyams_content/workflow/__init__.py:308
+#: ./src/pyams_content/workflow/__init__.py:396
+#: ./src/pyams_content/workflow/__init__.py:443
+msgid ""
+"content managers authorized to take charge of your content are going to be "
+"notified of your request."
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:296
+#: ./src/pyams_content/workflow/__init__.py:311
+#, python-format
+msgid "submitted a publication request for content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:323
+msgid "Publication request canceled"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:325
+#, python-format
+msgid "cancelled the publication request for content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:329
+msgid "Reset canceled publication to draft"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:333
+#: ./src/pyams_content/workflow/__init__.py:363
+msgid "State reset to 'draft' (automatic)"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:337
+msgid "Reset canceled publication to retired"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:341
+msgid "State reset to 'retired' (automatic)"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:345
+msgid "Refuse publication"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:353
+msgid "Publication refused"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:355
+#, python-format
+msgid "refused the publication request for content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:359
+msgid "Reset refused publication to draft"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:367
+msgid "Reset refused publication to retired"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:371
+msgid "State reset to 'refused' (automatic)"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:383
+#: ./src/pyams_content/workflow/basic.py:204
+msgid "Content published"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:385
+#: ./src/pyams_content/workflow/basic.py:206
+#, python-format
+msgid "published the content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:389
+msgid "Request retiring"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:395
+msgid "Retire request"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:399
+#, python-format
+msgid "submitted a retire request for content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:403
+msgid "Retired content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:407
+msgid "Content retired after passed expiration date"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:410
+msgid "Cancel retiring request"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:417
+msgid "Retire request canceled"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:419
+#, python-format
+msgid "cancelled the retiring request for content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:423
+msgid "Retire content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:430
+msgid "Content retired"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:432
+#, python-format
+msgid "retired content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:442
+msgid "Archive request"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:446
+#, python-format
+msgid "submitted an archive request for content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:450
+msgid "Cancel archiving request"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:457
+msgid "Archive request canceled"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:459
+#, python-format
+msgid "cancelled the archive request for content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:463
+#: ./src/pyams_content/workflow/basic.py:210
+msgid "Archive content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:471
+#: ./src/pyams_content/workflow/basic.py:218
+msgid "Content archived"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:473
+#: ./src/pyams_content/workflow/basic.py:220
+#, python-format
+msgid "archived content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:477
+msgid "Archive published content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:481
+#: ./src/pyams_content/workflow/__init__.py:489
+#: ./src/pyams_content/workflow/__init__.py:497
+msgid "Content archived after version publication"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:485
+msgid "Archive retiring content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:493
+msgid "Archive retired content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:509
+#: ./src/pyams_content/workflow/__init__.py:521
+#: ./src/pyams_content/workflow/__init__.py:533
+#: ./src/pyams_content/workflow/__init__.py:545
+#: ./src/pyams_content/workflow/__init__.py:557
+#: ./src/pyams_content/workflow/basic.py:232
+#: ./src/pyams_content/workflow/basic.py:244
+msgid "New version created"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:569
+#: ./src/pyams_content/workflow/basic.py:256
+msgid "Version deleted"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:622
+#: ./src/pyams_content/workflow/__init__.py:644
+#: ./src/pyams_content/workflow/basic.py:289
+#: ./src/pyams_content/workflow/basic.py:311
+msgid "Unknown state"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:646
+#: ./src/pyams_content/workflow/basic.py:313
+msgid "publication refused"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:642
+#: ./src/pyams_content/workflow/basic.py:309
+msgid "new version created"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:249
+#: ./src/pyams_content/workflow/basic.py:160
+#, python-format
+msgid "Published version {0}"
+msgstr ""
+
+#: ./src/pyams_content/workflow/task.py:62
+msgid "Automatic contents withdrawal:\n"
+msgstr ""
+
+#: ./src/pyams_content/workflow/zmi/task.py:42
+msgid "Add content archiver task..."
+msgstr ""
+
+#: ./src/pyams_content/workflow/zmi/task.py:55
+msgid "Add automatic content archiver"
+msgstr ""
+
+#: ./src/pyams_content/skin/zmi/viewlet/toplinks/__init__.py:46
+msgid "Shared sites"
+msgstr ""
+
+#: ./src/pyams_content/skin/zmi/viewlet/toplinks/__init__.py:67
+msgid "Shared contents"
+msgstr ""
+
+#: ./src/pyams_content/skin/zmi/viewlet/toplinks/__init__.py:90
+msgid "Shared tools"
+msgstr ""
+
+#: ./src/pyams_content/skin/zmi/viewlet/toplinks/__init__.py:113
+msgid "My roles"
+msgstr ""
+
+#: ./src/pyams_content/skin/zmi/viewlet/toplinks/templates/user-addings.pt:7
+msgid "Create new content"
+msgstr ""
+
+#: ./src/pyams_content/interfaces/__init__.py:95
+msgid "Unique key"
+msgstr ""
+
+#: ./src/pyams_content/interfaces/__init__.py:96
+msgid "WARNING: this key can't be modified after creation!!!"
+msgstr ""
+
+#: ./src/pyams_content/interfaces/__init__.py:103
+msgid "Short name"
+msgstr ""
+
+#: ./src/pyams_content/interfaces/__init__.py:104
+msgid "Short name used in breadcrumbs"
+msgstr ""
+
+#: ./src/pyams_content/interfaces/__init__.py:115
+msgid "Modification date"
+msgstr ""
+
+#: ./src/pyams_content/reference/zmi/table.py:73
+msgid "Contents"
+msgstr ""
+
+#: ./src/pyams_content/reference/zmi/table.py:83
+msgid "Table contents"
+msgstr ""
+
+#: ./src/pyams_content/reference/zmi/table.py:129
+#: ./src/pyams_content/reference/zmi/__init__.py:69
+msgid "References tables"
+msgstr ""
+
+#: ./src/pyams_content/reference/zmi/table.py:143
+msgid "Properties..."
+msgstr ""
+
+#: ./src/pyams_content/reference/zmi/table.py:157
+msgid "Edit table properties"
+msgstr ""
+
+#: ./src/pyams_content/reference/zmi/table.py:167
+msgid "Table management"
+msgstr ""
+
+#: ./src/pyams_content/reference/zmi/__init__.py:51
+msgid "References"
+msgstr ""
+
+#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:169
+#: ./src/pyams_content/reference/pictograms/zmi/widget.py:55
+msgid "Default header: --"
+msgstr ""
+
+#: ./src/pyams_content/reference/pictograms/zmi/manager.py:51
+msgid "Pictograms selection..."
+msgstr ""
+
+#: ./src/pyams_content/reference/pictograms/zmi/manager.py:63
+#: ./src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:34
+#: ./src/pyams_content/reference/pictograms/interfaces/__init__.py:73
+msgid "Selected pictograms"
+msgstr ""
+
+#: ./src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:7
+msgid "Available pictograms"
+msgstr ""
+
+#: ./src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:21
+#: ./src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:48
+msgid "Display pictogram properties"
+msgstr ""
+
+#: ./src/pyams_content/reference/pictograms/zmi/templates/pictogram-header.pt:6
+msgid "Default header: ${header}"
+msgstr ""
+
+#: ./src/pyams_content/reference/pictograms/interfaces/__init__.py:45
+msgid "Pictogram content"
+msgstr ""
+
+#. Default: Header
+#: ./src/pyams_content/reference/pictograms/interfaces/__init__.py:52
+msgid "pictogram-header"
+msgstr ""
+
+#: ./src/pyams_content/reference/pictograms/interfaces/__init__.py:53
+msgid "Default header associated with this pictogram"
+msgstr ""
+
+#: ./src/pyams_content/reference/pictograms/interfaces/__init__.py:74
+msgid "List of selected pictograms which will be available to shared contents"
+msgstr ""
+
+#: ./src/pyams_content/features/renderer/zmi/__init__.py:70
+#: ./src/pyams_content/features/renderer/zmi/templates/renderer-input.pt:4
+msgid "Edit renderer properties"
+msgstr ""
+
+#: ./src/pyams_content/features/renderer/skin/__init__.py:67
+msgid "Hidden content"
+msgstr ""
+
+#: ./src/pyams_content/features/checker/interfaces.py:27
+#, python-format
+msgid " - {field}: <span class=\"text-danger\">no value</span>"
+msgstr ""
+
+#: ./src/pyams_content/features/checker/interfaces.py:28
+#, python-format
+msgid " - {field} ({lang}): <span class=\"text-danger\">no value</span>"
+msgstr ""
+
+#: ./src/pyams_content/features/checker/interfaces.py:29
+#, python-format
+msgid " - {field}: <span class=\"text-danger\">{message}</span>"
+msgstr ""
+
+#: ./src/pyams_content/features/checker/zmi/__init__.py:58
+msgid "Content check"
+msgstr ""
+
+#: ./src/pyams_content/features/checker/zmi/__init__.py:82
+msgid "No checker available. This content is clean!"
+msgstr ""
+
+#: ./src/pyams_content/features/checker/zmi/__init__.py:78
+#, python-format
+msgid "{0}:"
+msgstr ""
+
+#: ./src/pyams_content/features/preview/zmi/__init__.py:62
+msgid "Content preview"
+msgstr ""
+
+#: ./src/pyams_content/features/preview/zmi/__init__.py:67
+#, python-format
+msgid "{title} ({preview})"
+msgstr ""
+
+#: ./src/pyams_content/features/preview/zmi/__init__.py:68
+msgid "preview"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:40
+msgid "Success"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:41
+msgid "Information"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:42
+msgid "Warning"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:43
+msgid "Danger"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:55
+msgid "Is this alert visible in front-office?"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:59
+msgid "Alert gravity"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:60
+msgid "Alert gravity will affect rendered alert style"
+msgstr ""
+
+#. Default: Heading
+#: ./src/pyams_content/features/alert/interfaces.py:65
+#: ./src/pyams_content/features/alert/zmi/container.py:157
+msgid "alert-header"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:66
+msgid "Short alert header (Alert, Important...)"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:69
+#: ./src/pyams_content/features/alert/zmi/container.py:169
+msgid "Message"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:70
+msgid "Alert message"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:74
+msgid ""
+"Internal link target reference. You can search a reference using '+' followed"
+" by internal number, of by entering text matching content title."
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:86
+msgid "Display start date"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:87
+msgid "First date at which alert should be displayed"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:90
+msgid "Display end date"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:91
+msgid "Last date at which alert should be displayed"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:94
+msgid "Maximum interval"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/interfaces.py:95
+msgid ""
+"Maximum interval between alert displays on a given device, given in hours; "
+"set to 0 to always display the alert"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/zmi/__init__.py:45
+msgid "Add alert"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/zmi/__init__.py:56
+msgid "Add new alert"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/zmi/__init__.py:79
+msgid "Edit alert properties"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/zmi/container.py:55
+msgid "Alerts"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/zmi/container.py:191
+msgid "Alert list"
+msgstr ""
+
+#: ./src/pyams_content/features/alert/zmi/container.py:90
+msgid "No currently defined alert."
+msgstr ""
+
+#: ./src/pyams_content/features/menu/zmi/__init__.py:81
+msgid "Add menu..."
+msgstr ""
+
+#: ./src/pyams_content/features/menu/zmi/__init__.py:92
+msgid "Add new menu"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/zmi/__init__.py:123
+msgid "Edit menu properties"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/zmi/__init__.py:110
+msgid "Menu was correctly added."
+msgstr ""
+
+#: ./src/pyams_content/features/menu/zmi/__init__.py:388
+msgid "Link was correctly added."
+msgstr ""
+
+#: ./src/pyams_content/features/menu/zmi/templates/menu-name-cell.pt:7
+msgid "Click to see menu items"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/portlet/navigation/simple.py:68
+msgid "Simple navigation"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/portlet/navigation/double.py:68
+msgid "Double navigation"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/portlet/navigation/zmi/simple.py:70
+msgid "Navigation links"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/portlet/navigation/zmi/double.py:70
+msgid "Navigation menus"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/portlet/navigation/zmi/templates/double-preview.pt:12
+#: ./src/pyams_content/features/menu/portlet/navigation/zmi/templates/simple-preview.pt:9
+msgid "Link target is not published!"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/portlet/navigation/zmi/templates/simple-preview.pt:13
+msgid "Link has no illustration"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/portlet/navigation/interfaces/simple.py:32
+#: ./src/pyams_content/features/menu/portlet/navigation/interfaces/double.py:32
+msgid "Portlet main title"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/portlet/navigation/interfaces/simple.py:35
+#: ./src/pyams_content/features/menu/portlet/navigation/interfaces/double.py:35
+msgid "Subtitle"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/portlet/navigation/interfaces/simple.py:36
+#: ./src/pyams_content/features/menu/portlet/navigation/interfaces/double.py:36
+msgid "Portlet subtitle"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/interfaces/__init__.py:63
+msgid "Menu title"
+msgstr ""
+
+#: ./src/pyams_content/features/menu/interfaces/__init__.py:64
+msgid "Displayed menu label"
+msgstr ""
+
+#: ./src/pyams_content/features/footer/zmi/__init__.py:60
+msgid "Page footer"
+msgstr ""
+
+#: ./src/pyams_content/features/footer/zmi/__init__.py:78
+msgid "Edit footer settings"
+msgstr ""
+
+#: ./src/pyams_content/features/footer/zmi/__init__.py:150
+msgid ""
+"WARNING: Footer properties are saved automatically when changing inherit "
+"mode!!"
+msgstr ""
+
+#: ./src/pyams_content/features/footer/zmi/__init__.py:213
+msgid "Footer renderer settings"
+msgstr ""
+
+#: ./src/pyams_content/features/footer/zmi/__init__.py:105
+msgid "Don't inherit parent footer"
+msgstr ""
+
+#: ./src/pyams_content/features/footer/skin/__init__.py:49
+msgid "Hidden footer"
+msgstr ""
+
+#: ./src/pyams_content/features/footer/interfaces/__init__.py:39
+msgid "Footer template"
+msgstr ""
+
+#: ./src/pyams_content/features/footer/interfaces/__init__.py:40
+msgid "Presentation template used for this footer"
+msgstr ""
+
+#: ./src/pyams_content/features/review/__init__.py:181
+#, python-format
+msgid "Request comment: {comment}"
+msgstr ""
+
+#: ./src/pyams_content/features/review/__init__.py:211
+#, python-format
+msgid "A new comment was added on content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/features/review/__init__.py:168
+#, python-format
+msgid "[{service_name}] A content review is requested"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:32
+msgid "Review request"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:33
+msgid "Reviewer comment"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:56
+msgid "Comment writer"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:59
+msgid "Content reviewers"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:62
+msgid "Comment type"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:67
+msgid "Comment body"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:70
+msgid "Reviewer comment?"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:86
+msgid "Reviewers list"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:87
+msgid "List of principals which reviewed the comment"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:61
+msgid "Ask for review..."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:100
+msgid "Content review request"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:166
+msgid "Comments"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:186
+msgid "Review comments"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:71
+msgid "Sought principals"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:72
+msgid "List of principals from which a review is requested"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:75
+msgid "Comment"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:76
+msgid "Comment associated with this request"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:79
+msgid "Notify all reviewers"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:80
+msgid ""
+"If 'yes', selected reviewers will be notified by mail of your request, even "
+"if they were already members of the reviewers group. Otherwise, only new "
+"reviewers will be notified"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:91
+msgid "Ask for content review"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:147
+msgid "Request successful. No new notification have been sent"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:260
+msgid "Message is mandatory!"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:135
+#, python-format
+msgid "Request successful. {count} new notification(s) have been sent"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:32
+#: ./src/pyams_content/features/review/zmi/templates/review-comments-json.pt:15
+#: ./src/pyams_content/features/review/zmi/templates/review-add-comment.pt:14
+msgid "Review query from"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:38
+#: ./src/pyams_content/features/review/zmi/templates/review-comments-json.pt:21
+#: ./src/pyams_content/features/review/zmi/templates/review-add-comment.pt:20
+msgid "(as reviewer)"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:47
+#: ./src/pyams_content/features/review/zmi/templates/review-comments-json.pt:30
+msgid "Selected reviewers:"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:64
+msgid "Add comment"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:67
+msgid "Add a comment..."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:73
+msgid "Add this comment"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-add-comment.pt:22
+msgid "just now"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:4
+msgid "[${service_name}] You are requested for a content review"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:30
+msgid "Hello,"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:31
+msgid ""
+"You have been requested by ${sender}, contributor of « ${service_name} » "
+"website, to make a review of a content."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:36
+msgid "${sender} added the following message to his request:"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:41
+msgid ""
+"To review and comment this publication, please use the following link: "
+"${target}."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:44
+msgid "After reading this content, please use the « Comments » menu entry."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:45
+msgid ""
+"If you don't want to reply to this request, please contact ${sender} directly"
+" by replying to this mail."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:47
+msgid "Thank you."
+msgstr ""
+
+#: ./src/pyams_content/features/header/zmi/__init__.py:66
+msgid "Page header"
+msgstr ""
+
+#: ./src/pyams_content/features/header/zmi/__init__.py:84
+msgid "Edit header settings"
+msgstr ""
+
+#: ./src/pyams_content/features/header/zmi/__init__.py:159
+msgid ""
+"WARNING: Header properties are saved automatically when changing inherit "
+"mode!!"
+msgstr ""
+
+#: ./src/pyams_content/features/header/zmi/__init__.py:222
+msgid "Header renderer settings"
+msgstr ""
+
+#: ./src/pyams_content/features/header/zmi/__init__.py:111
+msgid "Don't inherit parent header"
+msgstr ""
+
+#: ./src/pyams_content/features/header/skin/__init__.py:49
+msgid "Hidden header"
+msgstr ""
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/pyams_content/locales/pyams_content.pot~	Wed Jan 27 16:14:21 2021 +0100
@@ -0,0 +1,3359 @@
+#
+# SOME DESCRIPTIVE TITLE
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE 1.0\n"
+"POT-Creation-Date: 2017-11-25 21:28+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Lingua 3.10.dev0\n"
+
+#: ./src/pyams_content/__init__.py:37
+msgid "Manage site root"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:39
+msgid "Manage site"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:41
+msgid "Manage tool"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:43
+msgid "Create content"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:45
+msgid "Manage content"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:47
+msgid "Comment content"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:49
+#: ./src/pyams_content/workflow/__init__.py:368
+msgid "Publish content"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:53
+msgid "Webmaster (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:62
+msgid "Pilot (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:70
+msgid "Manager (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:77
+msgid "Owner (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:82
+msgid "Contributor (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:90
+msgid "Reader (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:96
+msgid "Operator (role)"
+msgstr ""
+
+#: ./src/pyams_content/__init__.py:100
+msgid "Guest user (role)"
+msgstr ""
+
+#: ./src/pyams_content/shared/news/zmi/__init__.py:44
+msgid "This news topic"
+msgstr ""
+
+#: ./src/pyams_content/shared/news/zmi/__init__.py:63
+#: ./src/pyams_content/shared/news/zmi/__init__.py:74
+msgid "Add news topic"
+msgstr ""
+
+#: ./src/pyams_content/shared/news/zmi/__init__.py:54
+#, python-format
+msgid "News topic « {title} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/news/interfaces/__init__.py:27
+msgid "News topic"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/handler.py:85
+msgid "Mailto form handler"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/handler.py:45
+msgid "No selected handler..."
+msgstr ""
+
+#: ./src/pyams_content/shared/form/__init__.py:94
+msgid "Form fields"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/__init__.py:95
+msgid "no field defined"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:148
+msgid "Text"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:158
+msgid "Multi-lines text"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:168
+msgid "Boolean"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:178
+msgid "Integer"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:188
+msgid "Decimal"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:198
+msgid "E-mail address"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:208
+msgid "URI"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:218
+msgid "Date"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:232
+msgid "Choice"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/field.py:252
+msgid "List"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/properties.py:39
+msgid "Main form settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/properties.py:64
+msgid "Form handler settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/__init__.py:44
+msgid "This form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/__init__.py:63
+#: ./src/pyams_content/shared/form/zmi/__init__.py:74
+msgid "Add form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/__init__.py:54
+#, python-format
+msgid "Form « {title} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:65
+msgid "Form fields..."
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:127
+msgid "Switch field visibility"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:158
+#: ./src/pyams_content/shared/common/interfaces/types.py:35
+msgid "Name"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:169
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:57
+#: ./src/pyams_content/shared/common/interfaces/types.py:39
+msgid "Label"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:180
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:52
+msgid "Field type"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:213
+msgid "Form fields list"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:249
+#: ./src/pyams_content/shared/form/zmi/field.py:260
+msgid "Add form field"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:306
+msgid "Edit form field properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:189
+msgid "-- unknown field type --"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:108
+msgid "No currently defined form field."
+msgstr ""
+
+#: ./src/pyams_content/shared/form/zmi/field.py:285
+msgid "Specified name is already used!"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:34
+msgid "Form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:48
+msgid "Field name"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:49
+msgid "Field internal name; must be unique for a given form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:53
+msgid "Selected field type"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:58
+msgid "User field label"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:61
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:129
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:53
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:93
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:48
+#: ./src/pyams_content/component/links/interfaces/__init__.py:38
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:39
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:40
+msgid "Description"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:62
+msgid "Field description can be displayed as hint"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:65
+msgid "Placeholder"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:66
+msgid "Some field types like textline can display a placeholder"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:69
+msgid "Optional values"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:70
+msgid "List of available values (for 'choice' and 'list' field types)"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:73
+msgid "Default value"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:74
+msgid "Give default value if field type can use it"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:77
+msgid "Required?"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:78
+msgid "Select 'yes' to set field as mandatory"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:82
+#: ./src/pyams_content/component/association/interfaces/__init__.py:42
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:43
+msgid "Visible?"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:83
+msgid "Select 'no' to hide given field..."
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:117
+msgid "Form title"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:120
+msgid "Form header"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:123
+msgid "Form handler"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:124
+msgid "Select how form data is transmitted"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:127
+msgid "Authenticated only?"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:128
+msgid "If 'yes', only authenticated users will be able to see and submit form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:132
+msgid "Use captcha?"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:133
+msgid "If 'yes', a captcha will be added automatically to the form"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:137
+msgid "Submit label"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:138
+msgid "Label of form submit button"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:171
+msgid "Source address"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:172
+msgid "Mail address from which form data is sent"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:175
+msgid "Source name"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:176
+msgid "Name of mail data sender"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:179
+msgid "Recipient address"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:180
+msgid "Mail address to which form data is sent"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:183
+msgid "Recipient name"
+msgstr ""
+
+#: ./src/pyams_content/shared/form/interfaces/__init__.py:184
+msgid "Name of data recipient"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/link.py:59
+msgid "Rent content..."
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/link.py:78
+msgid "Rent existing content"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/link.py:139
+msgid "Edit content link properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/link.py:68
+#: ./src/pyams_content/shared/site/zmi/__init__.py:61
+#: ./src/pyams_content/shared/site/zmi/folder.py:67
+msgid "Parent"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/link.py:69
+#: ./src/pyams_content/shared/site/zmi/folder.py:68
+msgid "Folder's parent"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/manager.py:79
+#: ./src/pyams_content/shared/site/zmi/manager.py:91
+msgid "Add site manager"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/manager.py:90
+msgid "Site manager"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/manager.py:121
+#: ./src/pyams_content/shared/blog/zmi/manager.py:111
+msgid "You must provide a short name for default server language!"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/manager.py:125
+msgid "Specified site manager name is already used!"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/manager.py:129
+msgid "A site manager is already registered with this name!!"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:97
+#: ./src/pyams_content/shared/site/zmi/container.py:109
+#: ./src/pyams_content/shared/blog/zmi/manager.py:145
+msgid "Publication dates..."
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:120
+#: ./src/pyams_content/shared/blog/zmi/manager.py:156
+msgid "Update publication dates"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:169
+#: ./src/pyams_content/shared/site/zmi/container.py:179
+#: ./src/pyams_content/root/zmi/sites.py:62
+msgid "Site tree"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:246
+#: ./src/pyams_content/shared/site/zmi/container.py:144
+msgid "Visible element?"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:273
+msgid "Folders and topics"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:309
+#: ./src/pyams_content/root/zmi/sites.py:117
+msgid "OID"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:327
+#: ./src/pyams_content/shared/common/zmi/search.py:139
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:150
+msgid "Status"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:341
+#: ./src/pyams_content/shared/common/zmi/summary.py:152
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:193
+msgid "Version"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:355
+msgid "Delete site item"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:282
+msgid "Click to open/close all folders"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:298
+msgid "Click to show/hide inner folders"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:489
+#: ./src/pyams_content/shared/common/zmi/types.py:205
+#: ./src/pyams_content/shared/common/zmi/types.py:454
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:169
+#: ./src/pyams_content/root/zmi/sites.py:176
+#: ./src/pyams_content/component/gallery/zmi/file.py:250
+#: ./src/pyams_content/component/association/zmi/__init__.py:284
+msgid "No provided object_name argument!"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/container.py:493
+msgid "Given object name doesn't exist!"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/__init__.py:52
+msgid "Add topic..."
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/__init__.py:73
+msgid "Add topic"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/__init__.py:62
+msgid "Topic's parent"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:54
+msgid "Add site folder..."
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:85
+msgid "Add site folder"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:63
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:109
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:188
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:119
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:89
+#: ./src/pyams_content/component/links/zmi/reverse.py:71
+#: ./src/pyams_content/component/paragraph/zmi/container.py:220
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:36
+#: ./src/pyams_content/interfaces/__init__.py:99
+msgid "Title"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:64
+#: ./src/pyams_content/interfaces/__init__.py:100
+msgid "Visible label used to display content"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:71
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:57
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:139
+msgid "Notepad"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:72
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:58
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:140
+msgid "Internal information to be known about this content"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/zmi/folder.py:137
+msgid "You must provide a folder name for default server language!"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:78
+msgid "Topic"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:92
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:81
+#: ./src/pyams_content/component/links/interfaces/__init__.py:49
+msgid "Internal reference"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:93
+#: ./src/pyams_content/component/links/interfaces/__init__.py:50
+msgid ""
+"Internal link target reference. You can search a reference using '+' followed"
+" by internal number, of by entering text matching content title."
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:98
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:49
+#: ./src/pyams_content/component/links/interfaces/__init__.py:34
+msgid "Alternate title"
+msgstr ""
+
+#: ./src/pyams_content/shared/site/interfaces/__init__.py:99
+msgid "Content title, as shown in front-office"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/__init__.py:230
+#: ./src/pyams_content/shared/common/zmi/manager.py:89
+#: ./src/pyams_content/shared/common/zmi/properties.py:65
+msgid "Properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/__init__.py:144
+#: ./src/pyams_content/shared/common/__init__.py:152
+#, python-format
+msgid "{date} by {principal}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:61
+msgid "Managers restrictions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:70
+msgid "Content managers restrictions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:102
+msgid "Manager name"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:112
+msgid "Restricted"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:129
+msgid "Owners"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:176
+#, python-format
+msgid "Edit manager restrictions for « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:213
+msgid "Apply contents restrictions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/security.py:215
+msgid ""
+"You can specify which contents this manager will be able to manage. If you "
+"specify several criteria, the manager will be able to manage contents for "
+"which at least one criteria is matching."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:75
+msgid "Tool management"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:99
+msgid "Shared tool properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:119
+msgid "WARNING"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:121
+msgid ""
+"Workflow shouldn't be modified if this tool already contains any shared "
+"content!"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:144
+msgid "Languages"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:155
+msgid "Content languages"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/manager.py:172
+msgid ""
+"Tool languages are used to translate own tool properties, and newly created "
+"contents will propose these languages by default"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/site.py:38
+#, python-format
+msgid ""
+"SEARCH - Between all contents published into &laquo;&nbsp;{site}&nbsp;&raquo;"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:62
+msgid "Data types"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:129
+msgid "Data type label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:151
+#: ./src/pyams_content/shared/common/zmi/types.py:393
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:83
+msgid "Default paragraphs"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:167
+#: ./src/pyams_content/shared/common/zmi/types.py:409
+msgid "Default associations"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:188
+msgid "Content data types"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:242
+msgid "Add data type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:253
+msgid "Add new data type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:297
+msgid "Data type properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:372
+msgid "Subtype label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:474
+msgid "Add subtype"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:485
+msgid "Add new subtype"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:542
+msgid "Data subtype properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:105
+msgid "No currently defined data type."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:281
+msgid "Specified type name is already used!"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:513
+msgid "Specified subtype name is already used!"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:526
+msgid "Subtype was correctly added."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:139
+msgid "Click to see subtypes"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:209
+msgid "Given data type doesn't exist!"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/types.py:458
+msgid "Given data subtype doesn't exist!"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:51
+msgid "Change owner..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:83
+msgid "Change content's owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:131
+msgid ""
+"All versions of this content which are not archived will be transferred to "
+"newly selected owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:61
+msgid "New owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:62
+msgid "The selected user will become the new content's owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:64
+msgid "Keep previous owner as contributor"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:65
+msgid "If 'yes', the previous owner will still be able to modify this content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:74
+#: ./src/pyams_content/shared/common/zmi/workflow.py:115
+#: ./src/pyams_content/shared/common/zmi/workflow.py:200
+#: ./src/pyams_content/shared/common/zmi/workflow.py:245
+#: ./src/pyams_content/shared/common/zmi/workflow.py:303
+#: ./src/pyams_content/shared/common/zmi/workflow.py:383
+#: ./src/pyams_content/shared/common/zmi/workflow.py:443
+#: ./src/pyams_content/shared/common/zmi/workflow.py:488
+#: ./src/pyams_content/shared/common/zmi/workflow.py:534
+#: ./src/pyams_content/shared/common/zmi/workflow.py:582
+#: ./src/pyams_content/shared/common/zmi/workflow.py:627
+#: ./src/pyams_content/shared/common/zmi/workflow.py:673
+#: ./src/pyams_content/shared/common/zmi/workflow.py:726
+#: ./src/pyams_content/shared/common/zmi/__init__.py:269
+#: ./src/pyams_content/features/review/zmi/__init__.py:89
+msgid "Cancel"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/owner.py:75
+msgid "Change owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/properties.py:55
+msgid "Composition"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/properties.py:76
+msgid "Content properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/properties.py:115
+msgid "Publication settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:116
+msgid "Request publication"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:171
+#: ./src/pyams_content/shared/common/zmi/workflow.py:170
+#: ./src/pyams_content/shared/common/zmi/workflow.py:273
+#: ./src/pyams_content/shared/common/zmi/workflow.py:414
+msgid "A comment is required"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:201
+#: ./src/pyams_content/workflow/__init__.py:310
+msgid "Cancel publication request"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:246
+msgid "Refuse publication request"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:304
+msgid "Publish"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:384
+msgid "Request retire"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:444
+msgid "Cancel retire request"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:489
+msgid "Retire"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:535
+#: ./src/pyams_content/workflow/__init__.py:429
+msgid "Request archive"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:583
+msgid "Cancel archive request"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:628
+msgid "Archive"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:674
+#: ./src/pyams_content/workflow/__init__.py:494
+#: ./src/pyams_content/workflow/__init__.py:506
+#: ./src/pyams_content/workflow/__init__.py:518
+#: ./src/pyams_content/workflow/__init__.py:530
+#: ./src/pyams_content/workflow/__init__.py:542
+msgid "Create new version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:727
+#: ./src/pyams_content/workflow/__init__.py:554
+msgid "Delete version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:167
+#: ./src/pyams_content/shared/common/zmi/workflow.py:353
+msgid "Publication start date is required"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:750
+msgid "Delete content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:759
+msgid "Delete definitively"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:80
+#, python-format
+msgid "{state} | by {principal}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/workflow.py:76
+#: ./src/pyams_content/workflow/__init__.py:610
+#: ./src/pyams_content/workflow/__init__.py:633
+#, python-format
+msgid "{state} {date}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:85
+#, python-format
+msgid "{state} by {principal}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:116
+#, python-format
+msgid "since {date}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:96
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:166
+msgid "Content publication start date is not passed yet"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:129
+msgid "access new version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:141
+msgid "access published version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:135
+msgid "access waiting version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:150
+msgid "access retired version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/header.py:159
+msgid "access archived version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:83
+msgid "Quick search results"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:161
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:1014
+msgid "Advanced search"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:253
+msgid "Advanced search results"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:136
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:226
+msgid "Owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:143
+msgid "Created after..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:146
+msgid "Created before..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:149
+msgid "Modified after..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/search.py:152
+msgid "Modified before..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:259
+msgid "Duplicate content..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:278
+msgid "Duplicate content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:82
+msgid "This title can be modified afterwards"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:270
+msgid "Duplicate this content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:326
+#, python-format
+msgid "Clone created from version {source} of {oid} (in « {state} » state)"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/__init__.py:375
+msgid "Created or modified in this version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:50
+msgid "Display content summary"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:74
+msgid "Identity card"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:86
+msgid "Requested action"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:127
+msgid "Publication and retire dates"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:140
+msgid "Current version"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:170
+msgid "Content history"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:117
+msgid "Associated comment"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:107
+#, python-format
+msgid "{state} {date} by {principal}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/summary.py:158
+#, python-format
+msgid "{state} since {date}, by {principal}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:134
+msgid "Unique ID"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:176
+msgid "Status date"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:208
+msgid "Status principal"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:245
+msgid "Last modification"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:263
+#: ./src/pyams_content/root/zmi/__init__.py:91
+msgid "Dashboard"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:273
+msgid "Contents dashboard"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:319
+#: ./src/pyams_content/root/zmi/__init__.py:140
+#, python-format
+msgid "MANAGER - {0} content waiting for your action"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:320
+#: ./src/pyams_content/root/zmi/__init__.py:141
+#, python-format
+msgid "MANAGER - {0} contents waiting for your action"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:360
+#: ./src/pyams_content/root/zmi/__init__.py:184
+#, python-format
+msgid "CONTRIBUTOR - {0} content waiting for action"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:361
+#: ./src/pyams_content/root/zmi/__init__.py:185
+#, python-format
+msgid "CONTRIBUTOR - {0} contents waiting for action"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:392
+#: ./src/pyams_content/root/zmi/__init__.py:219
+#, python-format
+msgid "CONTRIBUTOR - {0} modified content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:433
+#: ./src/pyams_content/root/zmi/__init__.py:262
+msgid "My contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:448
+#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:8
+#: ./src/pyams_content/root/zmi/__init__.py:277
+#: ./src/pyams_content/root/zmi/templates/dashboard.pt:8
+msgid "My favorites"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:457
+#: ./src/pyams_content/root/zmi/__init__.py:286
+#, python-format
+msgid "CONTRIBUTOR - {0} favorite"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:458
+#: ./src/pyams_content/root/zmi/__init__.py:287
+#, python-format
+msgid "CONTRIBUTOR - {0} favorites"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:470
+#: ./src/pyams_content/shared/common/zmi/templates/header.pt:23
+msgid "Add/remove from favorites"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:533
+#: ./src/pyams_content/root/zmi/__init__.py:325
+msgid "Your favorites"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:546
+#: ./src/pyams_content/root/zmi/__init__.py:338
+msgid "My preparations"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:555
+#: ./src/pyams_content/root/zmi/__init__.py:347
+#, python-format
+msgid "CONTRIBUTOR - {0} prepared content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:556
+#: ./src/pyams_content/root/zmi/__init__.py:348
+#, python-format
+msgid "CONTRIBUTOR - {0} prepared contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:595
+#: ./src/pyams_content/root/zmi/__init__.py:386
+msgid "Your prepared contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:608
+#: ./src/pyams_content/root/zmi/__init__.py:399
+msgid "My submissions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:617
+#: ./src/pyams_content/root/zmi/__init__.py:408
+#, python-format
+msgid "CONTRIBUTOR - {0} submitted content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:618
+#: ./src/pyams_content/root/zmi/__init__.py:409
+#, python-format
+msgid "CONTRIBUTOR - {0} submitted contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:657
+#: ./src/pyams_content/root/zmi/__init__.py:447
+msgid "Your submitted contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:670
+#: ./src/pyams_content/root/zmi/__init__.py:460
+msgid "My publications"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:679
+#: ./src/pyams_content/root/zmi/__init__.py:469
+#, python-format
+msgid "CONTRIBUTOR - {0} published content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:680
+#: ./src/pyams_content/root/zmi/__init__.py:470
+#, python-format
+msgid "CONTRIBUTOR - {0} published contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:719
+#: ./src/pyams_content/root/zmi/__init__.py:508
+msgid "Your published contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:732
+#: ./src/pyams_content/root/zmi/__init__.py:521
+msgid "My retired contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:741
+#: ./src/pyams_content/root/zmi/__init__.py:530
+#, python-format
+msgid "CONTRIBUTOR - {0} retired content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:742
+#: ./src/pyams_content/root/zmi/__init__.py:531
+#, python-format
+msgid "CONTRIBUTOR - {0} retired contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:782
+#: ./src/pyams_content/root/zmi/__init__.py:570
+msgid "Your retired contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:795
+#: ./src/pyams_content/root/zmi/__init__.py:583
+msgid "My archived contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:804
+#: ./src/pyams_content/root/zmi/__init__.py:592
+#, python-format
+msgid "CONTRIBUTOR - {0} archived content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:805
+#: ./src/pyams_content/root/zmi/__init__.py:593
+#, python-format
+msgid "CONTRIBUTOR - {0} archived contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:851
+#: ./src/pyams_content/root/zmi/__init__.py:638
+msgid "Your archived contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:865
+#: ./src/pyams_content/root/zmi/__init__.py:652
+msgid "Other interventions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:880
+#: ./src/pyams_content/root/zmi/__init__.py:667
+msgid "Last publications"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:889
+#: ./src/pyams_content/root/zmi/__init__.py:676
+#, python-format
+msgid "CONTRIBUTORS - {0} published content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:935
+#: ./src/pyams_content/root/zmi/__init__.py:721
+msgid "Last published contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:948
+#: ./src/pyams_content/root/zmi/__init__.py:734
+msgid "Last updates"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:957
+#: ./src/pyams_content/root/zmi/__init__.py:743
+#, python-format
+msgid "CONTRIBUTORS - {0} updated content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:1002
+#: ./src/pyams_content/root/zmi/__init__.py:787
+msgid "Last updated contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:397
+#: ./src/pyams_content/root/zmi/__init__.py:224
+#, python-format
+msgid "CONTRIBUTOR - {0} modified contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:399
+#: ./src/pyams_content/root/zmi/__init__.py:226
+#, python-format
+msgid "CONTRIBUTOR - Last {0} modified contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:894
+#: ./src/pyams_content/root/zmi/__init__.py:681
+#, python-format
+msgid "CONTRIBUTORS - Last {0} published contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:896
+#: ./src/pyams_content/root/zmi/__init__.py:683
+msgid "CONTRIBUTORS - Last published contents (in the limit of 50)"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:962
+#: ./src/pyams_content/root/zmi/__init__.py:748
+#, python-format
+msgid "CONTRIBUTORS - Last {0} updated contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:964
+#: ./src/pyams_content/root/zmi/__init__.py:750
+msgid "CONTRIBUTORS - Last updated contents (in the limit of 50)"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/dashboard.py:296
+#, python-format
+msgid "SEARCH - Between all contents of type &laquo;&nbsp;{type}&nbsp;&raquo;"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-archiving-message.pt:2
+msgid "This content is already retired and not visible."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-archiving-message.pt:3
+#: ./src/pyams_content/shared/common/zmi/templates/wf-archive-message.pt:3
+msgid ""
+"After archiving, it will be backed up but you will not be able to publish it "
+"again except by creating a new version."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-cancel-retiring-message.pt:1
+msgid ""
+"After cancelling this request, the content will return to it's normal "
+"published state."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-publish-message.pt:2
+msgid ""
+"As a manager, you considerate that this content is complete and can be "
+"published 'as is'."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-publish-message.pt:4
+msgid ""
+"This operation will make the content publicly available (except if restricted"
+" access has been set)."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-duplicate-message.pt:2
+msgid "You are going to duplicate a whole content."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-duplicate-message.pt:3
+msgid ""
+"The new copy is going to be created in 'draft' mode, so that you can modify "
+"it before publication."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-duplicate-message.pt:5
+msgid ""
+"A new unique number is also going to be assigned to it. This number will be "
+"shared by all content's versions."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-archive-message.pt:2
+msgid "As a manager, you considerate that this content must be archived."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-delete-message.pt:2
+msgid ""
+"This content was never published. If you confirm deletion, it won't be "
+"possible to restore it."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-delete-message.pt:6
+msgid ""
+"The content version is going to be definitely deleted. Will only remain the "
+"currently published version."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:2
+msgid "FOR YOUR INFORMATION"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:5
+msgid "Next step"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:7
+msgid "Previous step"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-transition-info.pt:10
+msgid "With this comment:"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-retiring-message.pt:2
+msgid ""
+"You considerate that the currently published version should no more be "
+"publicly visible."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-retiring-message.pt:3
+msgid ""
+"WARNING: the content will remain visible until a manager validate the "
+"request."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-owner-warning.pt:1
+msgid ""
+"RECALL: you are not the owner of the content on which you are intervening."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-operator-warning.pt:1
+msgid ""
+"WARNING: this request was made by a contributor which is not the owner of "
+"this content."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-refuse-propose-message.pt:2
+msgid ""
+"As a content manager, you considerate that this content can't be published "
+"'as is'."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-refuse-propose-message.pt:4
+msgid ""
+"The contributor will be notified of this and will be able to update the "
+"content before doing a new publication request."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-clone-message.pt:2
+msgid "You considerate that the currently published must evolve."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-clone-message.pt:3
+msgid ""
+"By creating a new version, you can update it's content without impacting the "
+"currently published one."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-clone-message.pt:5
+msgid ""
+"When the new version will be complete, you will be able to make a new "
+"publication request to replace the currently published version (which will be"
+" archived automatically)."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/header.pt:6
+msgid "Back to previous page"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/header.pt:20
+msgid "by ${owner}"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-cancel-propose-message.pt:1
+msgid ""
+"After canceling the request, you will be able to update the content again."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-create-message.pt:2
+msgid ""
+"This new content is going to be created in 'draft' mode, so that you can "
+"complete it before publication."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-create-message.pt:4
+msgid ""
+"A unique number is also going to be assigned to it. This number will be "
+"shared by all content's versions."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:128
+msgid "Created between"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:140
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:166
+msgid "and"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:154
+msgid "Modified between"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:202
+msgid "Tab label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-cancel-archiving-message.pt:1
+msgid ""
+"After cancelling this request, the content will return to it's previous "
+"retired state."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-retire-message.pt:2
+msgid ""
+"As a content manager, you considerate that this content should no longer be "
+"published."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-retire-message.pt:4
+msgid ""
+"Retired content won't be visible anymore, but it can be updated and published"
+" again, or archived."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:28
+msgid "Quick search..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:33
+msgid "Advanced search..."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:46
+#: ./src/pyams_content/root/zmi/templates/dashboard.pt:23
+msgid "You are not actually concerned by any content."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/zmi/templates/wf-propose-message.pt:1
+msgid ""
+"This publication request is going to be transmitted to a content manager."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:36
+msgid "Name of this data type; must be unique between all data types"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:42
+msgid "Navigation label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:43
+msgid "Label used for navigation entries"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:46
+msgid "Tab-folder label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:47
+msgid "Label used to include into tab folder"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:50
+msgid "'See also' label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:51
+msgid ""
+"This label can be used when contents of this type will be displayed in a 'See"
+" also' entries block"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:55
+msgid "'Single value' label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:56
+msgid "Label given to this type when a single value is displayed"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:59
+msgid "'Link to list' label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:60
+msgid "Label used to display a link to a list of items of this type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:63
+msgid "Next content label"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:64
+msgid "Label used to announce next date for this type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:67
+msgid "Pictogram"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:68
+msgid "Image associated to this data type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:81
+msgid "Field names"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/types.py:82
+msgid "List of fields associated with this data type"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:39
+#: ./src/pyams_content/root/interfaces/__init__.py:40
+msgid "Webmasters"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:40
+msgid "Webmasters can handle all contents, including published ones"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:44
+msgid "Pilots"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:45
+msgid ""
+"Pilots can handle tool configuration, manage access rules, grant users roles "
+"and manage managers restrictions"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:50
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:154
+msgid "Managers"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:51
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:155
+msgid ""
+"Managers can handle main operations in tool's workflow, like publish or "
+"retire contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:56
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:160
+msgid "Contributors"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:57
+msgid "Contributors are users which are allowed to create new contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:80
+msgid "Workflow name"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:81
+msgid "Name of workflow utility used to manage tool contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:105
+msgid "Version creator"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:106
+msgid ""
+"Name of content's version creator. The creator of the first version is also "
+"it's owner."
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:110
+msgid "First owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:111
+msgid "Name of content's first version owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:115
+msgid "Version creation"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:118
+msgid "Version modifiers"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:119
+msgid "List of principals who modified this content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:122
+msgid "Last modifier"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:123
+msgid "Last principal who modified this content"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:126
+msgid "Last update"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:130
+msgid ""
+"The content's description is 'hidden' into HTML's page headers; but it can be"
+" seen, for example, in some search engines results as content's description"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:135
+msgid "Keywords"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:136
+msgid "They will be included into HTML pages metadata"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:147
+msgid "Content owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:148
+msgid ""
+"The owner is the creator of content's first version, except if it was "
+"transferred afterwards to another owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:161
+msgid ""
+"Contributors are users which are allowed to update this content in addition "
+"to it's owner"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:166
+msgid "Readers"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:167
+msgid ""
+"Readers are users which are asked to verify and comment contents before they "
+"are published"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:172
+msgid "Guests"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:173
+msgid ""
+"Guests are users which are allowed to view contents with restricted access"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:192
+msgid "Principal ID"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:197
+msgid "Restricted contents"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:198
+msgid ""
+"If 'yes', this manager will get restricted access to manage contents based on"
+" selected settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:203
+msgid "Selected owners"
+msgstr ""
+
+#: ./src/pyams_content/shared/common/interfaces/__init__.py:204
+msgid "Manager will have access to contents owned by these principals"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/theme.py:49
+#: ./src/pyams_content/component/theme/zmi/manager.py:45
+#: ./src/pyams_content/component/theme/zmi/__init__.py:52
+msgid "Themes..."
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/theme.py:59
+msgid "View themes settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/properties.py:38
+msgid "Main view settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/reference.py:54
+msgid "References..."
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/reference.py:64
+msgid "View internal references settings"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/__init__.py:44
+msgid "This view"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/__init__.py:63
+#: ./src/pyams_content/shared/view/zmi/__init__.py:73
+msgid "Add view"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/__init__.py:54
+#, python-format
+msgid "View « {title} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/templates/preview.pt:2
+msgid "View result items"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/zmi/templates/preview.pt:3
+msgid "WARNING: items displayed in this preview are out of context!!"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:32
+msgid "View"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:40
+#: ./src/pyams_content/features/review/interfaces.py:67
+#: ./src/pyams_content/interfaces/__init__.py:111
+msgid "Creation date"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:41
+msgid "Last update date"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:42
+msgid "Current publication date"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:43
+msgid "First publication date"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:124
+msgid "Always include selected internal references"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:125
+msgid "Include selected internal references only if empty"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:56
+msgid "Content types"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:57
+msgid "Selected content types; leave empty for all"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:61
+msgid "Order by"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:62
+msgid "Property to use to sort results"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:67
+msgid "Reversed order?"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:68
+msgid "If 'yes', items order will be reversed"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:72
+msgid "Results count limit"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:73
+msgid "Maximum number of results that the view may retrieve"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:134
+msgid "Internal references usage"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:135
+msgid "Specify how selected references are included into view results"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:147
+msgid "Select context themes?"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:148
+msgid "If 'yes', themes will be extracted from context"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/interfaces/__init__.py:152
+msgid "Other terms"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/portlet/interfaces.py:31
+msgid "Selected view"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/portlet/interfaces.py:32
+msgid "Reference to the view from which items are extracted"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/portlet/__init__.py:60
+msgid "View items"
+msgstr ""
+
+#: ./src/pyams_content/shared/view/portlet/__init__.py:73
+msgid "Simple list view"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/__init__.py:149
+msgid "no area defined"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/paragraph.py:42
+#: ./src/pyams_content/shared/imagemap/paragraph.py:54
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:34
+msgid "Image map"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/paragraph.py:85
+#: ./src/pyams_content/component/links/__init__.py:163
+msgid "target is not published"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:54
+msgid "Image areas"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:65
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:65
+msgid "Image map areas"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:136
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:44
+msgid "Link target"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:109
+msgid "No currently defined image."
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:111
+msgid "No currently defined area."
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:180
+msgid "Given area name doesn't exist!"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/container.py:176
+msgid "Bad query object_name parameter value!"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/properties.py:38
+msgid "Background image"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/__init__.py:44
+msgid "This image map"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/__init__.py:63
+msgid "Add image map"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/__init__.py:73
+msgid "Adding image map"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/__init__.py:54
+#, python-format
+msgid "Image map « {title} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:54
+msgid "Add image map..."
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:65
+msgid "Add new image map"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:95
+msgid "Edit paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/area.py:46
+msgid "Add image area"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/area.py:64
+msgid "Add new image area"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/zmi/area.py:106
+msgid "Edit image map properties"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:45
+msgid "Internal or external link associated with this map area"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:50
+msgid "Alternate label associated with this area"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:53
+msgid "Map area coordinates"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:54
+msgid "List of coordinates of image area"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:61
+#: ./src/pyams_content/component/extfile/__init__.py:219
+#: ./src/pyams_content/component/extfile/__init__.py:236
+msgid "Image"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:62
+msgid "Image supporting map areas"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:66
+msgid "List of defined map areas"
+msgstr ""
+
+#: ./src/pyams_content/shared/imagemap/interfaces/__init__.py:82
+msgid "Reference to image map object"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/manager.py:73
+#: ./src/pyams_content/shared/blog/zmi/manager.py:85
+msgid "Add blog manager"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/manager.py:84
+msgid "Blog manager"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/manager.py:115
+msgid "Specified blog manager name is already used!"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/manager.py:119
+msgid "A blog manager is already registered with this name!!"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/__init__.py:50
+msgid "This blog post"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/__init__.py:69
+#: ./src/pyams_content/shared/blog/zmi/__init__.py:79
+msgid "Add blog post"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/zmi/__init__.py:60
+#, python-format
+msgid "Blog post « {title} »"
+msgstr ""
+
+#: ./src/pyams_content/shared/blog/interfaces/__init__.py:31
+msgid "Blog post"
+msgstr ""
+
+#: ./src/pyams_content/profile/zmi/__init__.py:40
+msgid "Admin. profile"
+msgstr ""
+
+#: ./src/pyams_content/profile/interfaces/__init__.py:33
+msgid "User favorites"
+msgstr ""
+
+#: ./src/pyams_content/profile/interfaces/__init__.py:34
+msgid "List of internal numbers of shared contents stored for quick access"
+msgstr ""
+
+#: ./src/pyams_content/profile/interfaces/__init__.py:37
+msgid "Default table length"
+msgstr ""
+
+#: ./src/pyams_content/profile/interfaces/__init__.py:38
+msgid "Default length used for inner tables and dashboards"
+msgstr ""
+
+#: ./src/pyams_content/features/preview/zmi/__init__.py:42
+msgid "Preview"
+msgstr ""
+
+#: ./src/pyams_content/features/preview/zmi/__init__.py:57
+msgid "Content preview"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:32
+msgid "Review request"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:33
+msgid "Reviewer comment"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:56
+msgid "Comment writer"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:59
+msgid "Comment body"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:62
+msgid "Comment type"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:79
+msgid "Reviewers list"
+msgstr ""
+
+#: ./src/pyams_content/features/review/interfaces.py:80
+msgid "List of principals which reviewed the comment"
+msgstr ""
+
+#: ./src/pyams_content/features/review/__init__.py:210
+#, python-format
+msgid "A new comment was added on content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/features/review/__init__.py:167
+#, python-format
+msgid "[{service_name}] A content review is requested"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:60
+msgid "Ask for review..."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:98
+msgid "Content review request"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:166
+msgid "Comments"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:186
+msgid "Review comments"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:215
+msgid "Add comment..."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:70
+msgid "Sought principals"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:71
+msgid "List of principals from which a review is requested"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:74
+msgid "Comment"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:75
+msgid "Comment associated with this request"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:78
+msgid "Notify all reviewers"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:79
+msgid ""
+"If 'yes', selected reviewers will be notified by mail of your request, even "
+"if they were already members of the reviewers group. Otherwise, only new "
+"reviewers will be notified"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:90
+msgid "Ask for content review"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:148
+msgid "Request successful. No new notification have been sent"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:269
+msgid "Message is mandatory!"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/__init__.py:138
+#, python-format
+msgid "Request successful. {count} new notification(s) have been sent"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:32
+#: ./src/pyams_content/features/review/zmi/templates/review-add-comment.pt:14
+#: ./src/pyams_content/features/review/zmi/templates/review-comments-json.pt:15
+msgid "Review query from"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:38
+#: ./src/pyams_content/features/review/zmi/templates/review-add-comment.pt:20
+#: ./src/pyams_content/features/review/zmi/templates/review-comments-json.pt:21
+msgid "(as reviewer)"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:57
+msgid "Add a comment..."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:63
+msgid "Add comment"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-add-comment.pt:22
+msgid "just now"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:4
+msgid "[${service_name}] You are requested for a content review"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:30
+msgid "Hello,"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:31
+msgid ""
+"You have been requested by ${sender}, contributor of « ${service_name} » "
+"website, to make a review of a content."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:36
+msgid "${sender} added the following message to his request:"
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:41
+msgid ""
+"To review and comment this publication, please use the following link: "
+"${target}."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:44
+msgid "After reading this content, please use the « Comments » menu entry."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:45
+msgid ""
+"If you don't want to reply to this request, please contact ${sender} directly"
+" by replying to this mail."
+msgstr ""
+
+#: ./src/pyams_content/features/review/zmi/templates/review-notification.pt:47
+msgid "Thank you."
+msgstr ""
+
+#: ./src/pyams_content/features/checker/interfaces.py:27
+#, python-format
+msgid " - {field}: <span class=\"text-danger\">no value</span>"
+msgstr ""
+
+#: ./src/pyams_content/features/checker/interfaces.py:28
+#, python-format
+msgid " - {field} ({lang}): <span class=\"text-danger\">no value</span>"
+msgstr ""
+
+#: ./src/pyams_content/features/checker/interfaces.py:29
+#, python-format
+msgid " - {field}: <span class=\"text-danger\">{message}</span>"
+msgstr ""
+
+#: ./src/pyams_content/features/checker/zmi/__init__.py:43
+msgid "Check content..."
+msgstr ""
+
+#: ./src/pyams_content/features/checker/zmi/__init__.py:55
+msgid "Content check"
+msgstr ""
+
+#: ./src/pyams_content/features/checker/zmi/__init__.py:79
+msgid "No checker available. This content is clean!"
+msgstr ""
+
+#: ./src/pyams_content/features/checker/zmi/__init__.py:75
+#, python-format
+msgid "{0}:"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/__init__.py:77
+msgid "Home"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/__init__.py:798
+msgid "Content"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/sites.py:72
+msgid "Blogs and shared sites"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/sites.py:92
+msgid "Visible site?"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/sites.py:135
+msgid "Delete shared site"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/sites.py:180
+msgid "Given site name doesn't exist!"
+msgstr ""
+
+#: ./src/pyams_content/root/zmi/templates/dashboard.pt:7
+msgid "Your contents dashboard"
+msgstr ""
+
+#: ./src/pyams_content/root/interfaces/__init__.py:36
+msgid "Site managers"
+msgstr ""
+
+#: ./src/pyams_content/root/interfaces/__init__.py:44
+msgid "Templates managers"
+msgstr ""
+
+#: ./src/pyams_content/root/interfaces/__init__.py:48
+msgid "Operators group"
+msgstr ""
+
+#: ./src/pyams_content/root/interfaces/__init__.py:49
+msgid "Name of group containing all roles owners"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:70
+msgid "Draft"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:71
+msgid "Proposed"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:72
+msgid "Canceled"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:73
+msgid "Refused"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:74
+msgid "Published"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:75
+msgid "Retiring"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:76
+msgid "Retired"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:77
+msgid "Archiving"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:78
+msgid "Archived"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:79
+msgid "Deleted"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:84
+msgid "draft created"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:85
+msgid "publication requested"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:86
+msgid "published"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:87
+msgid "retiring requested"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:88
+msgid "retired"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:89
+msgid "archiving requested"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:90
+msgid "archived"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:274
+msgid "Initialize"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:277
+msgid "Draft creation"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:280
+#: ./src/pyams_content/workflow/__init__.py:295
+msgid "Propose publication"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:287
+#: ./src/pyams_content/workflow/__init__.py:302
+msgid "Publication request"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:288
+#: ./src/pyams_content/workflow/__init__.py:303
+#: ./src/pyams_content/workflow/__init__.py:389
+#: ./src/pyams_content/workflow/__init__.py:436
+msgid ""
+"content managers authorized to take charge of your content are going to be "
+"notified of your request."
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:291
+#, python-format
+msgid "A publication request has been submitted for content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:306
+#, python-format
+msgid "A new publication request has been submitted for content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:317
+msgid "Publication request canceled"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:319
+#, python-format
+msgid "The publication request for content « {0} » has been cancelled"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:323
+msgid "Reset canceled publication to draft"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:327
+#: ./src/pyams_content/workflow/__init__.py:356
+msgid "State reset to 'draft' (automatic)"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:331
+msgid "Reset canceled publication to retired"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:335
+msgid "State reset to 'retired' (automatic)"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:339
+msgid "Refuse publication"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:346
+msgid "Publication refused"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:348
+#, python-format
+msgid "The publication request for content « {0} » has been refused"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:352
+msgid "Reset refused publication to draft"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:360
+msgid "Reset refused publication to retired"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:364
+msgid "State reset to 'refused' (automatic)"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:376
+msgid "Content published"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:378
+#, python-format
+msgid "The content « {0} » has been published"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:382
+msgid "Request retiring"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:388
+msgid "Retire request"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:392
+#, python-format
+msgid "A retire request has been submitted for content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:396
+msgid "Retired content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:400
+msgid "Content retired after passed expiration date"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:403
+msgid "Cancel retiring request"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:410
+msgid "Retire request canceled"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:412
+#, python-format
+msgid "The retiring request for content « {0} » has been cancelled"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:416
+msgid "Retire content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:423
+msgid "Content retired"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:425
+#, python-format
+msgid "The content « {0} » has been retired"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:435
+msgid "Archive request"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:439
+#, python-format
+msgid "An archive request has been submitted for content « {0} »"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:443
+msgid "Cancel archiving request"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:450
+msgid "Archive request canceled"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:452
+#, python-format
+msgid "The archive request for content « {0} » has been cancelled"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:456
+msgid "Archive content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:464
+msgid "Content archived"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:466
+#, python-format
+msgid "The content « {0} » has been archived"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:470
+msgid "Archive published content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:474
+#: ./src/pyams_content/workflow/__init__.py:482
+#: ./src/pyams_content/workflow/__init__.py:490
+msgid "Content archived after version publication"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:478
+msgid "Archive retiring content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:486
+msgid "Archive retired content"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:502
+#: ./src/pyams_content/workflow/__init__.py:514
+#: ./src/pyams_content/workflow/__init__.py:526
+#: ./src/pyams_content/workflow/__init__.py:538
+#: ./src/pyams_content/workflow/__init__.py:550
+msgid "New version created"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:562
+msgid "Version deleted"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:631
+msgid "publication refused"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:629
+msgid "new version created"
+msgstr ""
+
+#: ./src/pyams_content/workflow/__init__.py:244
+#, python-format
+msgid "Published version {0}"
+msgstr ""
+
+#: ./src/pyams_content/workflow/task.py:61
+msgid "Automatic contents withdrawal:\n"
+msgstr ""
+
+#: ./src/pyams_content/workflow/zmi/task.py:43
+msgid "Add content archiver task..."
+msgstr ""
+
+#: ./src/pyams_content/workflow/zmi/task.py:54
+msgid "Add automatic content archiver"
+msgstr ""
+
+#: ./src/pyams_content/zmi/viewlet/toplinks/__init__.py:47
+msgid "Shared sites"
+msgstr ""
+
+#: ./src/pyams_content/zmi/viewlet/toplinks/__init__.py:66
+msgid "Shared contents"
+msgstr ""
+
+#: ./src/pyams_content/zmi/viewlet/toplinks/__init__.py:87
+msgid "My roles"
+msgstr ""
+
+#: ./src/pyams_content/zmi/viewlet/toplinks/templates/user-addings.pt:7
+msgid "Create new content"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/__init__.py:144
+msgid "Gallery"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/paragraph.py:40
+#: ./src/pyams_content/component/gallery/paragraph.py:47
+msgid "Images gallery"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:36
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:56
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:52
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:43
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:44
+msgid "Author"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:37
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:57
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:44
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:45
+msgid "Name of document's author"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:40
+msgid "Author comments"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:41
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:61
+msgid "Comments relatives to author's rights management"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:44
+msgid "Images data"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/interfaces.py:45
+msgid "You can upload a single file or choose to upload a whole ZIP archive"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/__init__.py:53
+msgid "Update gallery properties"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/__init__.py:88
+msgid "Update gallery contents"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/__init__.py:161
+msgid "Default gallery renderer"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:55
+#: ./src/pyams_content/component/gallery/zmi/file.py:66
+#: ./src/pyams_content/component/gallery/zmi/paragraph.py:168
+msgid "Add image(s)"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:136
+msgid "Show/hide image"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:163
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:249
+msgid "Update image properties"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:220
+msgid "Download image..."
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:234
+msgid "Remove image..."
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:188
+msgid "Audio content"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/file.py:254
+msgid "Given image name doesn't exist!"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/paragraph.py:54
+msgid "Add images gallery..."
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/paragraph.py:65
+msgid "Add new gallery"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/paragraph.py:95
+msgid "Edit gallery properties"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/templates/gallery-images.pt:10
+msgid "Gallery images"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/zmi/templates/gallery-images.pt:33
+msgid "Zoom image"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:42
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:41
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:73
+msgid "Legend"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:45
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:44
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:77
+msgid "Accessibility title"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:46
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:45
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:78
+msgid "Alternate title used to describe image content"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:49
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:56
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:86
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:81
+msgid "Image data"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:50
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:57
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:87
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:82
+msgid "Image content"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:60
+msgid "Author's comments"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:64
+msgid "PIF number"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:65
+msgid "Number used to identify media into national library database"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:68
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:97
+msgid "Audio data"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:69
+msgid "Sound file associated with the current media"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:72
+msgid "Sound title"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:73
+msgid "Title of associated sound file"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:76
+msgid "Sound description"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:77
+msgid "Short description of associated sound file"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:80
+msgid "Visible image?"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:81
+msgid "If 'no', this image won't be displayed in front office"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:90
+msgid "Gallery title, as shown in front-office"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:94
+msgid "Gallery description displayed by front-office template"
+msgstr ""
+
+#: ./src/pyams_content/component/gallery/interfaces/__init__.py:97
+msgid "Gallery style"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/__init__.py:141
+#: ./src/pyams_content/component/illustration/paragraph.py:40
+#: ./src/pyams_content/component/illustration/paragraph.py:47
+#: ./src/pyams_content/component/illustration/zmi/__init__.py:99
+#: ./src/pyams_content/component/illustration/zmi/__init__.py:122
+msgid "Illustration"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/__init__.py:64
+msgid "Centered illustration"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/__init__.py:73
+msgid "Small illustration on the left with zoom"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/__init__.py:82
+msgid "Small illustration on the right with zoom"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/__init__.py:180
+msgid "Add illustration"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/paragraph.py:55
+msgid "Add illustration..."
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/paragraph.py:66
+msgid "Add new illustration"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/zmi/paragraph.py:97
+msgid "Edit illustration properties"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:53
+msgid "Name of picture's author"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:60
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:90
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:53
+msgid "Save file as..."
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:61
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:91
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:54
+msgid "Name under which the file will be saved"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:64
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:94
+msgid "Image style"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:67
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:97
+#: ./src/pyams_content/component/links/interfaces/__init__.py:66
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:48
+msgid "Language"
+msgstr ""
+
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:68
+#: ./src/pyams_content/component/illustration/interfaces/__init__.py:98
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:49
+msgid "File's content language"
+msgstr ""
+
+#: ./src/pyams_content/component/links/__init__.py:101
+msgid "Internal link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/__init__.py:176
+msgid "External link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/__init__.py:222
+msgid "Mailto link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:56
+msgid "Internal links"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:69
+msgid "Add internal link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:81
+msgid "Add new internal link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:126
+msgid "Edit internal link properties"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:164
+msgid "External links"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:177
+msgid "Add external link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:189
+msgid "Add new external link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:234
+msgid "Edit external link properties"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:272
+msgid "Mailto links"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:285
+msgid "Add mailto link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:297
+msgid "Add new mailto link"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/__init__.py:342
+msgid "Edit mailto link properties"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/reverse.py:55
+msgid "Reverse links"
+msgstr ""
+
+#: ./src/pyams_content/component/links/zmi/reverse.py:64
+msgid "Content's internal links"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:35
+msgid "Link title, as shown in front-office"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:39
+msgid "Link description displayed by front-office template"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:62
+msgid "Target URL"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:63
+msgid "URL used to access external resource"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:67
+msgid "Language used in this remote resource"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:75
+msgid "Target address"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:76
+msgid "Target email address"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:79
+msgid "Address name"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:80
+msgid "Address as displayed in address book"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:91
+msgid "Internal references"
+msgstr ""
+
+#: ./src/pyams_content/component/links/interfaces/__init__.py:92
+msgid "List of internal references"
+msgstr ""
+
+#: ./src/pyams_content/component/association/container.py:92
+#: ./src/pyams_content/component/association/zmi/templates/associations.pt:6
+msgid "Associations"
+msgstr ""
+
+#: ./src/pyams_content/component/association/paragraph.py:42
+#: ./src/pyams_content/component/association/paragraph.py:49
+msgid "Associations paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:102
+#: ./src/pyams_content/component/paragraph/zmi/container.py:390
+msgid "Associations..."
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:175
+msgid "Switch association visibility"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:226
+msgid "Public title"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:240
+msgid "Inner title"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:255
+msgid "Size"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:310
+#: ./src/pyams_content/component/association/zmi/__init__.py:320
+msgid "Associations list"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:63
+msgid "Association was correctly added."
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/__init__.py:288
+msgid "Given association name doesn't exist!"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/paragraph.py:55
+msgid "Add associations paragraph..."
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/paragraph.py:66
+msgid "Add new association paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/association/zmi/paragraph.py:96
+msgid "Edit association paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/association/interfaces/__init__.py:43
+msgid "Is this item visible in front-office?"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/container.py:82
+#: ./src/pyams_content/component/paragraph/zmi/templates/paragraphs.pt:6
+msgid "Paragraphs"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/container.py:104
+msgid "no visible paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/html.py:57
+#: ./src/pyams_content/component/paragraph/html.py:66
+msgid "HTML paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/video.py:46
+#: ./src/pyams_content/component/paragraph/video.py:58
+#: ./src/pyams_content/component/extfile/__init__.py:251
+#: ./src/pyams_content/component/extfile/__init__.py:256
+msgid "Video"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/header.py:41
+#: ./src/pyams_content/component/paragraph/interfaces/header.py:34
+msgid "Header"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/header.py:55
+msgid "Header paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:68
+msgid "Paragraphs..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:157
+msgid "Switch paragraph visibility"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:236
+msgid "Show/hide all paragraphs"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:282
+#: ./src/pyams_content/component/paragraph/zmi/container.py:291
+msgid "Paragraphs list"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:402
+msgid "Paragraphs associations"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:118
+msgid "No currently defined paragraph."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:245
+msgid "Click to open/close all paragraphs editors"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:258
+msgid "Click to open/close paragraph editor"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/container.py:122
+msgid "Check allowed paragraph types to be able to create new paragraphs."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/html.py:66
+msgid "Add HTML paragraph..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/html.py:77
+msgid "Add new HTML paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/html.py:110
+msgid "Edit HTML paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/video.py:56
+msgid "Add video paragraph..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/video.py:67
+msgid "Add new video paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/video.py:109
+msgid "Edit video properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/video.py:83
+#: ./src/pyams_content/component/paragraph/zmi/video.py:126
+msgid "HTML content"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/header.py:51
+msgid "Add header paragraph..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/header.py:62
+msgid "Add new header paragraph"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/header.py:92
+msgid "Edit header paragraph properties"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/__init__.py:57
+msgid "Paragraphs types..."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/__init__.py:68
+msgid "Paragraphs types"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/__init__.py:85
+msgid ""
+"You can define which types of paragraphs are allowed in this container.\n"
+"\n"
+"Default paragraphs will be added automatically (in selected order) to any new created content.\n"
+"\n"
+"NOTICE: removing types from allowed types list will have no effect on already created contents!"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/__init__.py:119
+msgid "Paragraph was correctly added."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/zmi/templates/preview.pt:7
+#: ./src/pyams_content/component/paragraph/zmi/templates/preview.pt:30
+msgid "This content doesn't contain any paragraph."
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/html.py:34
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:36
+msgid "Body"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:40
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:41
+msgid "File description displayed by front-office template"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:47
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:89
+msgid "Video data"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/video.py:48
+msgid "Video file content"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:44
+msgid "Is this paragraph visible in front-office?"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:48
+msgid "§ Title"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:78
+msgid "Allowed paragraphs"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:79
+msgid "List of paragraphs allowed for this content type"
+msgstr ""
+
+#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:84
+msgid "List of paragraphs automatically added to a new content"
+msgstr ""
+
+#: ./src/pyams_content/component/theme/__init__.py:81
+#: ./src/pyams_content/component/theme/zmi/portlet.py:39
+#: ./src/pyams_content/component/theme/interfaces/__init__.py:43
+msgid "Themes"
+msgstr ""
+
+#: ./src/pyams_content/component/theme/__init__.py:90
+msgid "no defined theme"
+msgstr ""
+
+#: ./src/pyams_content/component/theme/zmi/manager.py:56
+msgid "Selected themes"
+msgstr ""
+
+#: ./src/pyams_content/component/theme/zmi/__init__.py:63
+msgid "Content themes"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/__init__.py:168
+#: ./src/pyams_content/component/extfile/__init__.py:172
+msgid "Standard file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/__init__.py:271
+#: ./src/pyams_content/component/extfile/__init__.py:276
+msgid "Audio file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:73
+msgid "External files"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:86
+msgid "Add external file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:98
+msgid "Add new external file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:145
+msgid "Update file properties"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:185
+msgid "Images"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:198
+msgid "Add image"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:210
+msgid "Add new image"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:282
+msgid "Videos"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:295
+msgid "Add video"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:307
+msgid "Add new video"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:345
+msgid "Update video properties"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:377
+msgid "Audios files"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:390
+msgid "Add audio file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:402
+msgid "Add new audio file"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:440
+msgid "Update audio file properties"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/zmi/__init__.py:49
+msgid "External file type"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:37
+msgid "File title, as shown in front-office"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:61
+msgid "File data"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:62
+msgid "File content"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:74
+msgid "File legend, as shown in front-office"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:90
+msgid "Video content"
+msgstr ""
+
+#: ./src/pyams_content/component/extfile/interfaces/__init__.py:98
+msgid "Audio file content"
+msgstr ""
+
+#: ./src/pyams_content/interfaces/__init__.py:95
+msgid "Unique key"
+msgstr ""
+
+#: ./src/pyams_content/interfaces/__init__.py:96
+msgid "WARNING: this key can't be modified after creation!!!"
+msgstr ""
+
+#: ./src/pyams_content/interfaces/__init__.py:103
+msgid "Short name"
+msgstr ""
+
+#: ./src/pyams_content/interfaces/__init__.py:104
+msgid "Short name used in breadcrumbs"
+msgstr ""
+
+#: ./src/pyams_content/interfaces/__init__.py:115
+msgid "Modification date"
+msgstr ""