# HG changeset patch # User Thierry Florac # Date 1542184408 -3600 # Node ID c83faa4b4559af76ae1479562e6761be424e2684 # Parent 85f4724e0c1dffbe53605ffea53ef73d467e649c# Parent 978a2b9123b9d0ea24e785da58ffd431cd8beecf Merge branch dev-dc (contact card evolution) diff -r 85f4724e0c1d -r c83faa4b4559 src/pyams_content/component/paragraph/contact.py --- a/src/pyams_content/component/paragraph/contact.py Tue Nov 13 16:42:27 2018 +0100 +++ b/src/pyams_content/component/paragraph/contact.py Wed Nov 14 09:33:28 2018 +0100 @@ -46,8 +46,10 @@ name = FieldProperty(IContactParagraph['name']) charge = FieldProperty(IContactParagraph['charge']) + company = FieldProperty(IContactParagraph['company']) contact_email = FieldProperty(IContactParagraph['contact_email']) contact_form = FieldProperty(IContactParagraph['contact_form']) + phone_number = FieldProperty(IContactParagraph['phone_number']) _photo = FileProperty(IContactParagraph['photo']) if have_gis: diff -r 85f4724e0c1d -r c83faa4b4559 src/pyams_content/component/paragraph/interfaces/contact.py --- a/src/pyams_content/component/paragraph/interfaces/contact.py Tue Nov 13 16:42:27 2018 +0100 +++ b/src/pyams_content/component/paragraph/interfaces/contact.py Wed Nov 14 09:33:28 2018 +0100 @@ -12,15 +12,16 @@ __docformat__ = 'restructuredtext' +from zope.schema import Choice, Text, TextLine -# import standard library - -# import interfaces from pyams_content.component.paragraph import IBaseParagraph from pyams_content.shared.form.interfaces import FORM_CONTENT_TYPE +from pyams_file.schema import ImageField +from pyams_i18n.schema import I18nTextLineField +from pyams_sequence.schema import InternalReferenceField +from pyams_utils.schema import MailAddressField -# import packages -from pyams_file.schema import ImageField + try: from pyams_gis.schema import GeoPointField except ImportError: @@ -28,10 +29,6 @@ have_gis = False else: have_gis = True -from pyams_i18n.schema import I18nTextLineField -from pyams_sequence.schema import InternalReferenceField -from pyams_utils.schema import MailAddressField -from zope.schema import TextLine, Text, Choice from pyams_content import _ @@ -50,12 +47,16 @@ name = TextLine(title=_("Contact identity"), description=_("Name of the contact"), - required=True) + required=False) charge = I18nTextLineField(title=_("In charge of"), description=_("Label of contact function"), required=False) + company = TextLine(title=_("Company"), + description=_("Business name of the employer"), + required=False) + contact_email = MailAddressField(title=_("Email address"), description=_("Contact email address"), required=False) @@ -65,6 +66,10 @@ required=False, content_type=FORM_CONTENT_TYPE) + phone_number = TextLine(title=_('Phone number'), + description=_('Phone number in international format.\n E.g. +33 ....'), + required=False, ) + photo = ImageField(title=_("Photo"), description=_("Use 'browse' button to select contact picture"), required=False) diff -r 85f4724e0c1d -r c83faa4b4559 src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.mo Binary file src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.mo has changed diff -r 85f4724e0c1d -r c83faa4b4559 src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.po --- a/src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.po Tue Nov 13 16:42:27 2018 +0100 +++ b/src/pyams_content/locales/fr/LC_MESSAGES/pyams_content.po Wed Nov 14 09:33:28 2018 +0100 @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE 1.0\n" -"POT-Creation-Date: 2018-11-13 16:14+0100\n" +"POT-Creation-Date: 2018-11-14 08:59+0100\n" "PO-Revision-Date: 2015-09-10 10:42+0200\n" "Last-Translator: Thierry Florac \n" "Language-Team: French\n" @@ -80,6 +80,275 @@ msgid "Guest user (role)" msgstr "Invité (rôle)" +#: src/pyams_content/reference/zmi/__init__.py:50 +msgid "References" +msgstr "Tables de réf." + +#: src/pyams_content/reference/zmi/__init__.py:68 +#: src/pyams_content/reference/zmi/table.py:129 +msgid "References tables" +msgstr "Tables de références" + +#: 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: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/pictograms/interfaces.py:44 +#: src/pyams_content/component/extfile/__init__.py:225 +#: src/pyams_content/component/extfile/__init__.py:241 +#: src/pyams_content/shared/imagemap/interfaces.py:67 +msgid "Image" +msgstr "Image" + +#: src/pyams_content/reference/pictograms/interfaces.py:45 +msgid "Pictogram content" +msgstr "Utilisez le bouton \"Parcourir\" pour modifier le contenu de l'image" + +#: src/pyams_content/reference/pictograms/interfaces.py:48 +#: src/pyams_content/component/gallery/interfaces.py:49 +#: src/pyams_content/component/illustration/interfaces.py:50 +msgid "Accessibility title" +msgstr "Alternative (accessibilité)" + +#: src/pyams_content/reference/pictograms/interfaces.py:49 +#: src/pyams_content/component/illustration/interfaces.py:51 +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é." + +#. Default: Header +#: src/pyams_content/reference/pictograms/interfaces.py:52 +msgid "pictogram-header" +msgstr "En-tête par défaut" + +#: src/pyams_content/reference/pictograms/interfaces.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.py:73 +#: src/pyams_content/reference/pictograms/zmi/manager.py:60 +#: src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:35 +msgid "Selected pictograms" +msgstr "Pictogrammes sélectionnés" + +#: src/pyams_content/reference/pictograms/interfaces.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/reference/pictograms/zmi/widget.py:36 +msgid "No selected pictogram" +msgstr "Aucun pictogramme sélectionné" + +#: src/pyams_content/reference/pictograms/zmi/widget.py:55 +#: src/pyams_content/reference/pictograms/zmi/__init__.py:169 +msgid "Default header: --" +msgstr "En-tête par défaut : --" + +#: src/pyams_content/reference/pictograms/zmi/manager.py:48 +msgid "Pictograms selection..." +msgstr "Sélection de pictogrammes" + +#: src/pyams_content/reference/pictograms/zmi/__init__.py:59 +#: src/pyams_content/component/paragraph/zmi/pictogram.py:310 +msgid "Add pictogram" +msgstr "Ajouter un pictogramme" + +#: src/pyams_content/reference/pictograms/zmi/__init__.py:71 +#: src/pyams_content/component/paragraph/zmi/pictogram.py:323 +msgid "Add new pictogram" +msgstr "Ajout d'un pictogramme" + +#: src/pyams_content/reference/pictograms/zmi/__init__.py:95 +#: src/pyams_content/component/paragraph/zmi/pictogram.py:365 +msgid "Edit pictogram properties" +msgstr "Propriétés du pictogramme" + +#: src/pyams_content/reference/pictograms/zmi/__init__.py:150 +#: src/pyams_content/component/keynumber/portlet/interfaces.py:31 +#: src/pyams_content/component/gallery/interfaces.py:106 +#: src/pyams_content/component/paragraph/interfaces/milestone.py:43 +#: src/pyams_content/component/paragraph/zmi/container.py:266 +#: src/pyams_content/component/paragraph/zmi/milestone.py:235 +#: src/pyams_content/interfaces/__init__.py:101 +#: src/pyams_content/features/menu/portlet/navigation/interfaces/simple.py:31 +#: src/pyams_content/features/menu/portlet/navigation/interfaces/double.py:31 +#: src/pyams_content/root/zmi/templates/advanced-search.pt:197 +#: src/pyams_content/shared/view/portlet/interfaces.py:56 +#: src/pyams_content/shared/common/zmi/dashboard.py:104 +#: src/pyams_content/shared/common/zmi/reverse.py:73 +#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:200 +#: src/pyams_content/shared/site/zmi/folder.py:66 +#: src/pyams_content/shared/imagemap/zmi/container.py:123 +#: src/pyams_content/shared/logo/interfaces.py:46 +msgid "Title" +msgstr "Titre" + +#: 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:49 +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/component/keynumber/__init__.py:189 +#: src/pyams_content/component/keynumber/interfaces.py:83 +#: src/pyams_content/component/keynumber/portlet/zmi/__init__.py:74 +#: src/pyams_content/component/keynumber/zmi/__init__.py:212 +msgid "Key numbers" +msgstr "Chiffres-clés" + +#: src/pyams_content/component/keynumber/interfaces.py:40 +#: src/pyams_content/component/paragraph/interfaces/pictogram.py:41 +#: src/pyams_content/component/paragraph/interfaces/milestone.py:38 +#: src/pyams_content/component/paragraph/interfaces/__init__.py:42 +#: src/pyams_content/component/association/interfaces.py:42 +#: src/pyams_content/features/alert/interfaces.py:54 +#: src/pyams_content/features/menu/interfaces.py:55 +#: src/pyams_content/shared/form/interfaces.py:85 +#: src/pyams_content/shared/site/interfaces.py:170 +msgid "Visible?" +msgstr "Visible ?" + +#: src/pyams_content/component/keynumber/interfaces.py:41 +msgid "Is this key number visible in front-office?" +msgstr "Si 'non', ce chiffre-clé ne sera pas présenté aux internautes" + +#. Default: Header +#: src/pyams_content/component/keynumber/interfaces.py:45 +#: src/pyams_content/component/keynumber/zmi/__init__.py:160 +msgid "key-number-label" +msgstr "En-tête" + +#: src/pyams_content/component/keynumber/interfaces.py:46 +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.py:50 +#: src/pyams_content/component/keynumber/zmi/__init__.py:172 +msgid "Number" +msgstr "Chiffre" + +#: src/pyams_content/component/keynumber/interfaces.py:51 +msgid "Key number value" +msgstr "Chiffre" + +#. Default: Unit +#: src/pyams_content/component/keynumber/interfaces.py:54 +#: src/pyams_content/component/keynumber/zmi/__init__.py:181 +msgid "key-number-unit" +msgstr "Unité" + +#: src/pyams_content/component/keynumber/interfaces.py:55 +msgid "Displayed unit" +msgstr "Unité affichée" + +#: src/pyams_content/component/keynumber/interfaces.py:58 +#: src/pyams_content/component/keynumber/zmi/__init__.py:193 +#: src/pyams_content/component/video/interfaces.py:46 +#: src/pyams_content/component/paragraph/interfaces/video.py:50 +#: src/pyams_content/component/paragraph/interfaces/pictogram.py:58 +#: src/pyams_content/component/paragraph/interfaces/milestone.py:81 +#: src/pyams_content/component/paragraph/zmi/pictogram.py:273 +#: src/pyams_content/component/illustration/interfaces.py:62 +msgid "Associated text" +msgstr "Texte associé" + +#: src/pyams_content/component/keynumber/interfaces.py:59 +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/keynumber/interfaces.py:94 +msgid "Key numbers template" +msgstr "Mode de rendu" + +#: src/pyams_content/component/keynumber/interfaces.py:95 +msgid "Presentation template used for key numbers" +msgstr "Modèle de présentation utilisé par ce bloc de contenu" + +#: src/pyams_content/component/keynumber/portlet/__init__.py:71 +msgid "Key Numbers" +msgstr "Chiffres-clés" + +#: src/pyams_content/component/keynumber/portlet/interfaces.py:32 +msgid "Portlet title" +msgstr "Titre" + +#: src/pyams_content/component/keynumber/portlet/interfaces.py:35 +msgid "Teaser" +msgstr "Accroche" + +#: src/pyams_content/component/keynumber/portlet/interfaces.py:36 +msgid "Short text displayed above key numbers" +msgstr "Texte d'introduction des chiffres-clés" + +#: src/pyams_content/component/keynumber/portlet/zmi/__init__.py:97 +#: src/pyams_content/component/keynumber/portlet/zmi/templates/keynumber-preview.pt:26 +msgid "Associated links" +msgstr "Liens associés" + +#: src/pyams_content/component/keynumber/portlet/zmi/templates/keynumber-preview.pt:31 +#: src/pyams_content/features/menu/portlet/navigation/zmi/templates/double-preview.pt:10 +#: src/pyams_content/features/menu/portlet/navigation/zmi/templates/simple-preview.pt:7 +msgid "Link target is not published!" +msgstr "Le contenu ciblé n'est pas publié" + +#: src/pyams_content/component/keynumber/zmi/__init__.py:231 +msgid "Add keynumber" +msgstr "Ajouter un chiffre-clé" + +#: src/pyams_content/component/keynumber/zmi/__init__.py:243 +msgid "Add new keynumber" +msgstr "Ajout d'un chiffre-clé" + +#: src/pyams_content/component/keynumber/zmi/__init__.py:272 +msgid "Edit keynumber properties" +msgstr "Propriétés du chiffre-clé" + +#: src/pyams_content/component/keynumber/zmi/__init__.py:258 +msgid "Key number was correctly added" +msgstr "Le chiffre-clé a été ajouté." + +#: src/pyams_content/component/keynumber/zmi/paragraph.py:49 +msgid "Key numbers..." +msgstr "Chiffres-clés" + +#: src/pyams_content/component/keynumber/zmi/paragraph.py:62 +msgid "Add new key number paragraph" +msgstr "Ajout de chiffres-clés" + +#: src/pyams_content/component/keynumber/zmi/paragraph.py:90 +msgid "Edit key number paragraph properties" +msgstr "Propriétés des chiffres-clés" + #: src/pyams_content/component/gallery/__init__.py:155 msgid "Gallery" msgstr "Galerie de médias" @@ -102,19 +371,13 @@ "Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu..." #: src/pyams_content/component/gallery/interfaces.py:46 -#: src/pyams_content/component/illustration/interfaces.py:47 +#: src/pyams_content/component/video/interfaces.py:69 #: src/pyams_content/component/paragraph/interfaces/video.py:43 #: src/pyams_content/component/paragraph/interfaces/audio.py:43 -#: src/pyams_content/component/video/interfaces.py:69 +#: src/pyams_content/component/illustration/interfaces.py:47 msgid "Legend" msgstr "Légende" -#: src/pyams_content/component/gallery/interfaces.py:49 -#: src/pyams_content/component/illustration/interfaces.py:50 -#: src/pyams_content/reference/pictograms/interfaces.py:48 -msgid "Accessibility title" -msgstr "Alternative (accessibilité)" - #: src/pyams_content/component/gallery/interfaces.py:50 msgid "Alternate title used to describe media content" msgstr "" @@ -125,36 +388,36 @@ #: src/pyams_content/component/gallery/interfaces.py:53 #: src/pyams_content/component/gallery/interfaces.py:110 -#: src/pyams_content/component/extfile/interfaces.py:36 +#: src/pyams_content/component/links/interfaces.py:39 #: src/pyams_content/component/paragraph/interfaces/audio.py:50 -#: src/pyams_content/component/links/interfaces.py:39 +#: src/pyams_content/component/extfile/interfaces.py:36 #: src/pyams_content/shared/form/interfaces.py:64 msgid "Description" msgstr "Description" #: src/pyams_content/component/gallery/interfaces.py:56 #: src/pyams_content/component/gallery/zmi/interfaces.py:39 +#: src/pyams_content/component/video/interfaces.py:42 +#: src/pyams_content/component/paragraph/interfaces/video.py:46 +#: src/pyams_content/component/paragraph/interfaces/verbatim.py:44 +#: src/pyams_content/component/paragraph/interfaces/audio.py:46 #: src/pyams_content/component/extfile/interfaces.py:40 #: src/pyams_content/component/illustration/interfaces.py:54 -#: src/pyams_content/component/paragraph/interfaces/video.py:46 -#: src/pyams_content/component/paragraph/interfaces/audio.py:46 -#: src/pyams_content/component/paragraph/interfaces/verbatim.py:44 -#: src/pyams_content/component/video/interfaces.py:42 msgid "Author" msgstr "Auteur" #: src/pyams_content/component/gallery/interfaces.py:57 #: src/pyams_content/component/gallery/zmi/interfaces.py:40 -#: src/pyams_content/component/extfile/interfaces.py:41 +#: src/pyams_content/component/video/interfaces.py:43 #: src/pyams_content/component/paragraph/interfaces/video.py:47 #: src/pyams_content/component/paragraph/interfaces/audio.py:47 -#: src/pyams_content/component/video/interfaces.py:43 +#: src/pyams_content/component/extfile/interfaces.py:41 msgid "Name of document's author" msgstr "Sous la forme \"Prénom Nom / Organisme\"" #: src/pyams_content/component/gallery/interfaces.py:60 +#: src/pyams_content/component/paragraph/interfaces/audio.py:39 #: src/pyams_content/component/extfile/interfaces.py:85 -#: src/pyams_content/component/paragraph/interfaces/audio.py:39 msgid "Audio data" msgstr "Fichier" @@ -197,26 +460,6 @@ ">ATTENTION : certains modes de rendu ne prennent en charge " "que certains types de médias !!" -#: src/pyams_content/component/gallery/interfaces.py:106 -#: src/pyams_content/component/keynumber/portlet/interfaces.py:31 -#: src/pyams_content/component/paragraph/zmi/milestone.py:235 -#: src/pyams_content/component/paragraph/zmi/container.py:266 -#: src/pyams_content/component/paragraph/interfaces/milestone.py:43 -#: src/pyams_content/shared/common/zmi/reverse.py:73 -#: src/pyams_content/shared/common/zmi/dashboard.py:104 -#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:200 -#: src/pyams_content/shared/view/portlet/interfaces.py:56 -#: src/pyams_content/shared/imagemap/zmi/container.py:123 -#: src/pyams_content/shared/site/zmi/folder.py:66 -#: src/pyams_content/shared/logo/interfaces.py:46 -#: src/pyams_content/root/zmi/templates/advanced-search.pt:197 -#: src/pyams_content/interfaces/__init__.py:101 -#: 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.py:107 msgid "Gallery title, as shown in front-office" msgstr "Titre de la galerie présenté aux internautes" @@ -247,6 +490,24 @@ msgid "Audio content" msgstr "Contenu audio associé" +#: src/pyams_content/component/gallery/zmi/__init__.py:61 +msgid "Update gallery properties" +msgstr "Propriétés de la galerie de médias" + +#: src/pyams_content/component/gallery/zmi/__init__.py:88 +msgid "Update gallery contents" +msgstr "Contenu de la galerie de médias" + +#: src/pyams_content/component/gallery/zmi/interfaces.py:35 +msgid "Images or videos data" +msgstr "Fichier" + +#: src/pyams_content/component/gallery/zmi/interfaces.py:36 +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/paragraph.py:63 msgid "Medias gallery..." msgstr "Galerie de médias" @@ -267,29 +528,6 @@ msgid "Media(s) successfully added" msgstr "Les médias ont été ajoutés dans la galerie." -#: src/pyams_content/component/gallery/zmi/__init__.py:61 -msgid "Update gallery properties" -msgstr "Propriétés de la galerie de médias" - -#: src/pyams_content/component/gallery/zmi/__init__.py:88 -msgid "Update gallery contents" -msgstr "Contenu de la galerie de médias" - -#: src/pyams_content/component/gallery/zmi/interfaces.py:35 -msgid "Images or videos data" -msgstr "Fichier" - -#: src/pyams_content/component/gallery/zmi/interfaces.py:36 -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/templates/gallery-media.pt:9 -#: src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:42 -msgid "Zoom image" -msgstr "Agrandir l'image" - #: src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:12 msgid "Gallery medias" msgstr "Contenu de la galerie" @@ -298,1469 +536,23 @@ msgid "Download medias" msgstr "Enregistrer tous les médias sous..." -#: src/pyams_content/component/extfile/__init__.py:173 -#: src/pyams_content/component/extfile/__init__.py:178 -msgid "Standard file" -msgstr "Fichier" - -#: src/pyams_content/component/extfile/__init__.py:225 -#: src/pyams_content/component/extfile/__init__.py:241 -#: src/pyams_content/shared/imagemap/interfaces.py:67 -#: src/pyams_content/reference/pictograms/interfaces.py:44 -msgid "Image" -msgstr "Image" - -#: src/pyams_content/component/extfile/__init__.py:256 -#: src/pyams_content/component/extfile/__init__.py:261 -#: src/pyams_content/component/paragraph/interfaces/video.py:32 -msgid "Video" -msgstr "Vidéo" - -#: src/pyams_content/component/extfile/__init__.py:276 -#: src/pyams_content/component/extfile/__init__.py:281 -msgid "Audio file" -msgstr "Fichier audio" - -#: src/pyams_content/component/extfile/interfaces.py:32 -msgid "Download link label" -msgstr "Intitulé du lien" - -#: src/pyams_content/component/extfile/interfaces.py:33 -msgid "Label of download link, as shown in front-office" -msgstr "" -"Intitulé du lien présenté aux internautes pour leur permettre de télécharger " -"le fichier. Si le responsable du site a choisi de préfixer automatiquement " -"tous les liens avec un texte de son choix, celui-ci est indiqué ci-dessous " -"et votre libellé ne sera indiqué que pour compléter ce libellé par défaut." - -#: src/pyams_content/component/extfile/interfaces.py:37 -#: src/pyams_content/component/paragraph/interfaces/audio.py:51 -msgid "File description displayed by front-office template" -msgstr "Description du fichier, présentée aux internautes" - -#: src/pyams_content/component/extfile/interfaces.py:44 -#: src/pyams_content/component/links/interfaces.py:65 -msgid "Language" -msgstr "Langue" - -#: src/pyams_content/component/extfile/interfaces.py:45 -msgid "File's content language" -msgstr "Langue du fichier" - -#: src/pyams_content/component/extfile/interfaces.py:49 -msgid "Save file as..." -msgstr "Nom du fichier" - -#: src/pyams_content/component/extfile/interfaces.py:50 -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.py:57 -msgid "File data" -msgstr "Fichier" - -#: src/pyams_content/component/extfile/interfaces.py:58 -msgid "File content" -msgstr "" -"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu" - -#: src/pyams_content/component/extfile/interfaces.py:69 -#: src/pyams_content/shared/logo/interfaces.py:59 -msgid "Image data" -msgstr "Fichier" - -#: src/pyams_content/component/extfile/interfaces.py:70 -msgid "Image content" -msgstr "" -"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu..." - -#: src/pyams_content/component/extfile/interfaces.py:77 -#: src/pyams_content/component/paragraph/interfaces/video.py:39 -msgid "Video data" -msgstr "Fichier" - -#: src/pyams_content/component/extfile/interfaces.py:78 -msgid "Video content" -msgstr "" -"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu" - -#: src/pyams_content/component/extfile/interfaces.py:86 -#: src/pyams_content/component/paragraph/interfaces/audio.py:40 -msgid "Audio file content" -msgstr "" -"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu" - -#: src/pyams_content/component/extfile/interfaces.py:104 -msgid "Default title prefix" -msgstr "Préfixe par défaut" - -#: src/pyams_content/component/extfile/interfaces.py:105 -msgid "" -"If used, this prefix will be automatically added to download link's label of " -"all files" -msgstr "" -"Si vous indiquez un texte ici, celui-ci sera utilisé automatiquement comme " -"préfixe de tous les liens de téléchargement de pièces jointes" - -#: src/pyams_content/component/extfile/zmi/__init__.py:70 -msgid "External files" -msgstr "Fichiers" - -#: src/pyams_content/component/extfile/zmi/__init__.py:85 -msgid "Add external file" -msgstr "Fichier" - -#: src/pyams_content/component/extfile/zmi/__init__.py:99 -msgid "Add new external file" -msgstr "Ajout d'un fichier" - -#: src/pyams_content/component/extfile/zmi/__init__.py:131 -msgid "Update file properties" -msgstr "Propriétés du fichier" - -#: src/pyams_content/component/extfile/zmi/__init__.py:159 -msgid "Images" -msgstr "Images" - -#: src/pyams_content/component/extfile/zmi/__init__.py:174 -msgid "Add image" -msgstr "Image téléchargeable" - -#: src/pyams_content/component/extfile/zmi/__init__.py:188 -msgid "Add new image" -msgstr "Ajout d'une image téléchargeable" - -#: src/pyams_content/component/extfile/zmi/__init__.py:220 -msgid "Update image properties" -msgstr "Propriétés de l'image téléchargeable" - -#: src/pyams_content/component/extfile/zmi/__init__.py:252 -msgid "Videos" -msgstr "Vidéos" - -#: src/pyams_content/component/extfile/zmi/__init__.py:267 -msgid "Add video" -msgstr "Vidéo téléchargeable" - -#: src/pyams_content/component/extfile/zmi/__init__.py:281 -msgid "Add new video" -msgstr "Ajout d'une vidéo téléchargeable" - -#: src/pyams_content/component/extfile/zmi/__init__.py:306 -msgid "Update video properties" -msgstr "Propriétés de la vidéo téléchargeable" - -#: src/pyams_content/component/extfile/zmi/__init__.py:331 -msgid "Audios files" -msgstr "Fichiers audios" - -#: src/pyams_content/component/extfile/zmi/__init__.py:346 -msgid "Add audio file" -msgstr "Bande son téléchargeable" - -#: src/pyams_content/component/extfile/zmi/__init__.py:360 -msgid "Add new audio file" -msgstr "Ajout d'une bande son téléchargeable" - -#: src/pyams_content/component/extfile/zmi/__init__.py:385 -msgid "Update audio file properties" -msgstr "Propriétés de la bande son téléchargeable" - -#: src/pyams_content/component/extfile/zmi/__init__.py:46 -msgid "External file type" -msgstr "Type de fichier joint" - -#: src/pyams_content/component/extfile/zmi/manager.py:37 -msgid "External files..." -msgstr "Gestion des pièces jointes" - -#: src/pyams_content/component/extfile/zmi/manager.py:51 -msgid "External files properties" -msgstr "Propriétés des pièces jointes" - -#: src/pyams_content/component/keynumber/__init__.py:189 -#: src/pyams_content/component/keynumber/interfaces.py:83 -#: src/pyams_content/component/keynumber/zmi/__init__.py:212 -#: src/pyams_content/component/keynumber/portlet/zmi/__init__.py:74 -msgid "Key numbers" -msgstr "Chiffres-clés" - -#: src/pyams_content/component/keynumber/interfaces.py:40 -#: src/pyams_content/component/paragraph/interfaces/milestone.py:38 -#: src/pyams_content/component/paragraph/interfaces/__init__.py:42 -#: src/pyams_content/component/paragraph/interfaces/pictogram.py:41 -#: src/pyams_content/component/association/interfaces.py:42 -#: src/pyams_content/shared/form/interfaces.py:85 -#: src/pyams_content/shared/site/interfaces.py:170 -#: src/pyams_content/features/alert/interfaces.py:54 -#: src/pyams_content/features/menu/interfaces.py:55 -msgid "Visible?" -msgstr "Visible ?" - -#: src/pyams_content/component/keynumber/interfaces.py:41 -msgid "Is this key number visible in front-office?" -msgstr "Si 'non', ce chiffre-clé ne sera pas présenté aux internautes" - -#. Default: Header -#: src/pyams_content/component/keynumber/interfaces.py:45 -#: src/pyams_content/component/keynumber/zmi/__init__.py:160 -msgid "key-number-label" -msgstr "En-tête" - -#: src/pyams_content/component/keynumber/interfaces.py:46 -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.py:50 -#: src/pyams_content/component/keynumber/zmi/__init__.py:172 -msgid "Number" -msgstr "Chiffre" - -#: src/pyams_content/component/keynumber/interfaces.py:51 -msgid "Key number value" -msgstr "Chiffre" - -#. Default: Unit -#: src/pyams_content/component/keynumber/interfaces.py:54 -#: src/pyams_content/component/keynumber/zmi/__init__.py:181 -msgid "key-number-unit" -msgstr "Unité" - -#: src/pyams_content/component/keynumber/interfaces.py:55 -msgid "Displayed unit" -msgstr "Unité affichée" - -#: src/pyams_content/component/keynumber/interfaces.py:58 -#: src/pyams_content/component/keynumber/zmi/__init__.py:193 -#: src/pyams_content/component/illustration/interfaces.py:62 -#: src/pyams_content/component/paragraph/zmi/pictogram.py:273 -#: src/pyams_content/component/paragraph/interfaces/milestone.py:81 -#: src/pyams_content/component/paragraph/interfaces/video.py:50 -#: src/pyams_content/component/paragraph/interfaces/pictogram.py:58 -#: src/pyams_content/component/video/interfaces.py:46 -msgid "Associated text" -msgstr "Texte associé" - -#: src/pyams_content/component/keynumber/interfaces.py:59 -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/keynumber/interfaces.py:94 -msgid "Key numbers template" -msgstr "Mode de rendu" - -#: src/pyams_content/component/keynumber/interfaces.py:95 -msgid "Presentation template used for key numbers" -msgstr "Modèle de présentation utilisé par ce bloc de contenu" - -#: src/pyams_content/component/keynumber/zmi/paragraph.py:49 -msgid "Key numbers..." -msgstr "Chiffres-clés" - -#: src/pyams_content/component/keynumber/zmi/paragraph.py:62 -msgid "Add new key number paragraph" -msgstr "Ajout de chiffres-clés" - -#: src/pyams_content/component/keynumber/zmi/paragraph.py:90 -msgid "Edit key number paragraph properties" -msgstr "Propriétés des chiffres-clés" - -#: src/pyams_content/component/keynumber/zmi/__init__.py:231 -msgid "Add keynumber" -msgstr "Ajouter un chiffre-clé" - -#: src/pyams_content/component/keynumber/zmi/__init__.py:243 -msgid "Add new keynumber" -msgstr "Ajout d'un chiffre-clé" - -#: src/pyams_content/component/keynumber/zmi/__init__.py:272 -msgid "Edit keynumber properties" -msgstr "Propriétés du chiffre-clé" - -#: src/pyams_content/component/keynumber/zmi/__init__.py:258 -msgid "Key number was correctly added" -msgstr "Le chiffre-clé a été ajouté." - -#: src/pyams_content/component/keynumber/portlet/__init__.py:71 -msgid "Key Numbers" -msgstr "Chiffres-clés" - -#: src/pyams_content/component/keynumber/portlet/interfaces.py:32 -msgid "Portlet title" -msgstr "Titre" - -#: src/pyams_content/component/keynumber/portlet/interfaces.py:35 -msgid "Teaser" -msgstr "Accroche" - -#: src/pyams_content/component/keynumber/portlet/interfaces.py:36 -msgid "Short text displayed above key numbers" -msgstr "Texte d'introduction des chiffres-clés" - -#: src/pyams_content/component/keynumber/portlet/zmi/__init__.py:97 -#: src/pyams_content/component/keynumber/portlet/zmi/templates/keynumber-preview.pt:26 -msgid "Associated links" -msgstr "Liens associés" - -#: src/pyams_content/component/keynumber/portlet/zmi/templates/keynumber-preview.pt:31 -#: src/pyams_content/features/menu/portlet/navigation/zmi/templates/double-preview.pt:10 -#: src/pyams_content/features/menu/portlet/navigation/zmi/templates/simple-preview.pt:7 -msgid "Link target is not published!" -msgstr "Le contenu ciblé n'est pas publié" - -#: src/pyams_content/component/illustration/__init__.py:172 -#: src/pyams_content/component/illustration/thesaurus.py:32 -#: src/pyams_content/component/illustration/interfaces.py:97 -#: src/pyams_content/component/illustration/zmi/paragraph.py:155 -#: src/pyams_content/component/illustration/zmi/__init__.py:56 -#: src/pyams_content/component/illustration/zmi/__init__.py:126 -msgid "Illustration" -msgstr "Illustration" - -#: src/pyams_content/component/illustration/interfaces.py:51 -#: src/pyams_content/reference/pictograms/interfaces.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.py:55 -msgid "Name of picture's author" -msgstr "Sous la forme \"Prénom Nom / Organisme\"" - -#: src/pyams_content/component/illustration/interfaces.py:63 -msgid "Illustration description displayed in front-office templates" -msgstr "" -"Le texte accompagne l'illustration, en complément de la légende. Attention : " -"sa présence et sa mise en forme dépendent du mode de rendu choisi." - -#: src/pyams_content/component/illustration/interfaces.py:66 -msgid "Illustration template" -msgstr "Mode de rendu" - -#: src/pyams_content/component/illustration/interfaces.py:67 -msgid "Presentation template used for illustration" -msgstr "" -"Modèle de présentation utilisé par cette illustration.
ATTENTION : certains modes de rendu ne prennent pas en " -"compte tous les types de médias !
" - -#: src/pyams_content/component/illustration/zmi/paragraph.py:55 -msgid "Illustration..." -msgstr "Illustration" - -#: src/pyams_content/component/illustration/zmi/paragraph.py:68 -msgid "Add new illustration" -msgstr "Ajout d'une illustration" - -#: src/pyams_content/component/illustration/zmi/paragraph.py:93 -#: src/pyams_content/component/illustration/zmi/thesaurus.py:42 -msgid "Edit illustration properties" -msgstr "Propriétés de l'illustration" - -#: src/pyams_content/component/illustration/zmi/__init__.py:151 -msgid "Navigation link illustration" -msgstr "Illustration de navigation" - -#: src/pyams_content/component/illustration/zmi/__init__.py:168 -msgid "Add illustration" -msgstr "Ajouter une illustration" - -#: src/pyams_content/component/illustration/zmi/__init__.py:128 -msgid "Header illustration" -msgstr "Illustration d'en-tête" - -#: src/pyams_content/component/paragraph/milestone.py:138 -msgid "Selected paragraph is missing" -msgstr "le bloc sélectionné est introuvable" - -#: src/pyams_content/component/paragraph/milestone.py:141 -msgid "Selected paragraph is not visible" -msgstr "le bloc sélectionné n'est pas visible" - -#: src/pyams_content/component/paragraph/container.py:94 -msgid "Paragraphs" -msgstr "Blocs de contenu" - -#: src/pyams_content/component/paragraph/container.py:116 -msgid "no visible paragraph" -msgstr "aucun bloc de contenu visible" - -#: src/pyams_content/component/paragraph/pictogram.py:130 -msgid "Selected pictogram is missing" -msgstr "le pictogramme sélectionné est introuvable" - -#: src/pyams_content/component/paragraph/header.py:62 -msgid "This paragraph type is deprecated and should be removed!" -msgstr "Ce type de paragraphe a été supprimé et ne doit plus être utilisé !" - -#: src/pyams_content/component/paragraph/zmi/milestone.py:74 -msgid "Milestones..." -msgstr "Chronologie" - -#: src/pyams_content/component/paragraph/zmi/milestone.py:87 -msgid "Add new milestone paragraph" -msgstr "Ajout d'une chronologie" - -#: src/pyams_content/component/paragraph/zmi/milestone.py:114 -msgid "Edit milestone paragraph properties" -msgstr "Propriétés de la chronologie" - -#: src/pyams_content/component/paragraph/zmi/milestone.py:247 -#: src/pyams_content/component/paragraph/interfaces/milestone.py:47 -msgid "Associated label" -msgstr "Information associée" - -#: src/pyams_content/component/paragraph/zmi/milestone.py:259 -#: src/pyams_content/component/paragraph/interfaces/milestone.py:51 -msgid "Anchor" -msgstr "Ancre" - -#: src/pyams_content/component/paragraph/zmi/milestone.py:288 -#: src/pyams_content/component/paragraph/interfaces/milestone.py:74 -msgid "Milestones" -msgstr "Chronologie" - -#: src/pyams_content/component/paragraph/zmi/milestone.py:303 -msgid "Add milestone" -msgstr "Ajouter un jalon" - -#: src/pyams_content/component/paragraph/zmi/milestone.py:316 -msgid "Add new milestone" -msgstr "Ajout d'un jalon" - -#: src/pyams_content/component/paragraph/zmi/milestone.py:343 -msgid "Edit milestone properties" -msgstr "Propriétés du jalon" - -#: src/pyams_content/component/paragraph/zmi/milestone.py:331 -msgid "Milestone was correctly added" -msgstr "Le jalon a été ajouté." - -#: src/pyams_content/component/paragraph/zmi/milestone.py:274 -msgid "(missing paragraph)" -msgstr "(paragraphe supprimé)" - -#: src/pyams_content/component/paragraph/zmi/keypoint.py:46 -msgid "Key points..." -msgstr "Points clés" - -#: src/pyams_content/component/paragraph/zmi/keypoint.py:59 -msgid "Add new key points paragraph" -msgstr "Ajout de points clés" - -#: src/pyams_content/component/paragraph/zmi/keypoint.py:86 -msgid "Edit key points paragraph properties" -msgstr "Propriétés des points clés" - -#: src/pyams_content/component/paragraph/zmi/__init__.py:60 -msgid "Content block types..." -msgstr "Types de blocs de contenu" - -#: src/pyams_content/component/paragraph/zmi/__init__.py:74 -msgid "Content block types" -msgstr "Types de blocs de contenu" - -#: src/pyams_content/component/paragraph/zmi/__init__.py:84 -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:209 -#: src/pyams_content/component/paragraph/zmi/__init__.py:222 -#: 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:214 -#: src/pyams_content/component/paragraph/zmi/__init__.py:227 -#: src/pyams_content/shared/common/zmi/workflow.py:119 -#: src/pyams_content/shared/common/zmi/workflow.py:206 -#: src/pyams_content/shared/common/zmi/workflow.py:246 -#: src/pyams_content/shared/common/zmi/workflow.py:300 -#: src/pyams_content/shared/common/zmi/workflow.py:391 -#: src/pyams_content/shared/common/zmi/workflow.py:447 -#: src/pyams_content/shared/common/zmi/workflow.py:487 -#: src/pyams_content/shared/common/zmi/workflow.py:528 -#: src/pyams_content/shared/common/zmi/workflow.py:571 -#: src/pyams_content/shared/common/zmi/workflow.py:611 -#: src/pyams_content/shared/common/zmi/workflow.py:652 -#: src/pyams_content/shared/common/zmi/workflow.py:703 -#: 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:84 -msgid "Cancel" -msgstr "Annuler" - -#: src/pyams_content/component/paragraph/zmi/__init__.py:216 -#: src/pyams_content/component/paragraph/zmi/__init__.py:229 -msgid "Submit" -msgstr "Enregistrer" - -#: src/pyams_content/component/paragraph/zmi/__init__.py:197 -msgid "Paragraph was correctly added." -msgstr "Le bloc a été ajouté." - -#: src/pyams_content/component/paragraph/zmi/__init__.py:269 -msgid "" -"You changed renderer selection. Don't omit to update new renderer " -"properties..." -msgstr "" -"Vous avez changé de mode de rendu. N'oubliez pas de vérifier les propriétés " -"du nouveau mode de rendu sélectionné..." - -#: src/pyams_content/component/paragraph/zmi/map.py:50 -msgid "Location map..." -msgstr "Carte de situation" - -#: src/pyams_content/component/paragraph/zmi/map.py:63 -msgid "Add new location map" -msgstr "Ajout d'une carte de situation" - -#: src/pyams_content/component/paragraph/zmi/map.py:86 -msgid "Edit location map properties" -msgstr "Propriétés de la carte" - -#: src/pyams_content/component/paragraph/zmi/video.py:50 -msgid "Video paragraph..." -msgstr "Vidéo" - -#: src/pyams_content/component/paragraph/zmi/video.py:63 -msgid "Add new video paragraph" -msgstr "Ajout d'une vidéo" - -#: src/pyams_content/component/paragraph/zmi/video.py:86 -#: src/pyams_content/component/video/zmi/paragraph.py:183 -msgid "Edit video properties" -msgstr "Propriétés de la vidéo" - -#: src/pyams_content/component/paragraph/zmi/container.py:70 -msgid "Contents..." -msgstr "Blocs de contenu" - -#: src/pyams_content/component/paragraph/zmi/container.py:211 -msgid "Set navigation anchor" -msgstr "Ancre de navigation" - -#: src/pyams_content/component/paragraph/zmi/container.py:285 -msgid "Show/hide all paragraphs" -msgstr "Afficher/masquer tous les blocs" - -#: src/pyams_content/component/paragraph/zmi/container.py:333 -#: src/pyams_content/component/paragraph/zmi/container.py:342 -#: src/pyams_content/component/paragraph/zmi/container.py:355 -msgid "Content blocks" -msgstr "Blocs de contenu" - -#: src/pyams_content/component/paragraph/zmi/container.py:412 -msgid "Links and attachments..." -msgstr "Récap. liens et PJ" - -#: src/pyams_content/component/paragraph/zmi/container.py:424 -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:141 -msgid "No currently defined paragraph." -msgstr "Aucun bloc n'est associé à ce contenu." - -#: src/pyams_content/component/paragraph/zmi/container.py:294 -msgid "Click to open/close all paragraphs editors" -msgstr "Afficher/masquer tous les blocs" - -#: src/pyams_content/component/paragraph/zmi/container.py:307 -msgid "Click to open/close paragraph editor" -msgstr "Afficher/masquer ce bloc" - -#: src/pyams_content/component/paragraph/zmi/container.py:147 -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:79 -msgid "Pictograms..." -msgstr "Pictogrammes" - -#: src/pyams_content/component/paragraph/zmi/pictogram.py:92 -msgid "Add new pictogram paragraph" -msgstr "Ajout de pictogrammes" - -#: src/pyams_content/component/paragraph/zmi/pictogram.py:119 -msgid "Edit pictogram paragraph properties" -msgstr "Propriétés des pictogrammes" - -#. Default: Header -#: src/pyams_content/component/paragraph/zmi/pictogram.py:256 -msgid "pictogram-item-header" -msgstr "En-tête" - -#: src/pyams_content/component/paragraph/zmi/pictogram.py:295 -#: src/pyams_content/component/paragraph/interfaces/pictogram.py:80 -msgid "Pictograms" -msgstr "Pictogrammes" - -#: src/pyams_content/component/paragraph/zmi/pictogram.py:310 -#: src/pyams_content/reference/pictograms/zmi/__init__.py:59 -msgid "Add pictogram" -msgstr "Ajouter un pictogramme" - -#: src/pyams_content/component/paragraph/zmi/pictogram.py:323 -#: 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:365 -#: 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:345 -msgid "Pictogram was correctly added" -msgstr "Le pictogramme a été ajouté." - -#: src/pyams_content/component/paragraph/zmi/pictogram.py:355 -#: src/pyams_content/component/paragraph/zmi/pictogram.py:393 -msgid "You must select a pictogram!" -msgstr "Vous devez sélectionner un pictogramme !" - -#: src/pyams_content/component/paragraph/zmi/audio.py:50 -msgid "Audio paragraph..." -msgstr "Bande son" - -#: src/pyams_content/component/paragraph/zmi/audio.py:63 -msgid "Add new audio paragraph" -msgstr "Ajout d'une bande son" - -#: src/pyams_content/component/paragraph/zmi/audio.py:85 -msgid "Edit audio properties" -msgstr "Propriétés de la bande son" - -#: src/pyams_content/component/paragraph/zmi/frame.py:96 -msgid "Framed text..." -msgstr "Encadré" - -#: src/pyams_content/component/paragraph/zmi/frame.py:110 -msgid "Add new framed text paragraph" -msgstr "Ajout d'un encadré" - -#: src/pyams_content/component/paragraph/zmi/frame.py:136 -msgid "Edit framed text paragraph properties" -msgstr "Propriétés de l'encadré" - -#: src/pyams_content/component/paragraph/zmi/verbatim.py:55 -msgid "Verbatim..." -msgstr "Verbatim" - -#: src/pyams_content/component/paragraph/zmi/verbatim.py:68 -msgid "Add new verbatim paragraph" -msgstr "Ajout d'un verbatim" - -#: src/pyams_content/component/paragraph/zmi/verbatim.py:107 -msgid "Edit verbatim paragraph properties" -msgstr "Propriétés du verbatim" - -#: src/pyams_content/component/paragraph/zmi/html.py:74 -msgid "Raw HTML..." -msgstr "Code HTML" - -#: src/pyams_content/component/paragraph/zmi/html.py:87 -msgid "Add new raw HTML paragraph" -msgstr "Ajout d'un bloc de code HTML" - -#: src/pyams_content/component/paragraph/zmi/html.py:117 -msgid "Edit raw HTML paragraph properties" -msgstr "Propriétés du code HTML" - -#: src/pyams_content/component/paragraph/zmi/html.py:157 -msgid "Rich text..." -msgstr "Texte enrichi" - -#: src/pyams_content/component/paragraph/zmi/html.py:170 -msgid "Add new rich text paragraph" -msgstr "Ajout d'un bloc de texte enrichi" - -#: src/pyams_content/component/paragraph/zmi/html.py:207 -msgid "Edit rich text paragraph properties" -msgstr "Propriétés du texte enrichi" - -#: src/pyams_content/component/paragraph/zmi/contact.py:48 -msgid "Contact card..." -msgstr "Fiche contact" - -#: src/pyams_content/component/paragraph/zmi/contact.py:61 -msgid "Add new contact card" -msgstr "Ajout d'une fiche contact" - -#: src/pyams_content/component/paragraph/zmi/contact.py:84 -msgid "Edit contact card properties" -msgstr "Propriétés de la fiche contact" - -#: src/pyams_content/component/paragraph/zmi/header.py:44 -msgid "Edit header paragraph properties" -msgstr "Propriétés du chapô" - -#: src/pyams_content/component/paragraph/portlet/__init__.py:83 -msgid "Content paragraphs" -msgstr "Blocs de contenu" - -#: src/pyams_content/component/paragraph/portlet/__init__.py:135 -msgid "Paragraphs navigation anchors" -msgstr "Navigation au sein des blocs" - -#: src/pyams_content/component/paragraph/portlet/interfaces.py:30 -#: src/pyams_content/component/paragraph/portlet/interfaces.py:52 -msgid "Selected paragraphs" -msgstr "Blocs sélectionnés" - -#: src/pyams_content/component/paragraph/portlet/interfaces.py:31 -msgid "" -"List of selected paragraphs; an empty selection means that all paragraphs " -"will be selectable by following filters; otherwise, this selection will have " -"priority" -msgstr "" -"Liste des blocs sélectionnés ; si la sélection est vide, tous les blocs de " -"contenu pourront être sélectionnés via les filtres ci-dessous ; dans le cas " -"contraire, cette sélection devient prioritaire et les autres filtres ne sont " -"pas appliqués" - -#: src/pyams_content/component/paragraph/portlet/interfaces.py:37 -#: src/pyams_content/component/paragraph/portlet/interfaces.py:59 -msgid "Paragraph types" -msgstr "Types de blocs" - -#: src/pyams_content/component/paragraph/portlet/interfaces.py:38 -msgid "" -"Select list of paragraph types you want to include; an empty selection means " -"that all paragraphs types will be selected" -msgstr "" -"Liste des types de blocs que vous souhaitez sélectionner ; si la sélection " -"est vide, tous les types de blocs seront pris en compte" - -#: src/pyams_content/component/paragraph/portlet/interfaces.py:43 -#: src/pyams_content/component/paragraph/portlet/interfaces.py:65 -msgid "Anchors only?" -msgstr "Ancres seulement ?" - -#: src/pyams_content/component/paragraph/portlet/interfaces.py:44 -msgid "If 'yes', only paragraphs set as 'anchors' will be selected" -msgstr "" -"Si 'oui', seuls les blocs définis comme ancres de navigation seront " -"sélectionnés" - -#: src/pyams_content/component/paragraph/portlet/interfaces.py:53 -msgid "" -"List of paragraphs selected for navigation; an empty selection means that " -"all paragraphs will be selectable by following filters; otherwise, this " -"selection will have priority" -msgstr "" -"Liste des blocs sélectionnés pour la navigation ; si la sélection est vide, " -"tous les blocs de contenu pourront être sélectionnés via les filtres ci-" -"dessous ; dans le cas contraire, cette sélection devient prioritaire et les " -"autres filtres ne sont pas appliqués" - -#: src/pyams_content/component/paragraph/portlet/interfaces.py:60 -msgid "" -"Select list of paragraph types you want to use for navigation; an empty " -"selection means that all paragraphs types will be selected" -msgstr "" -"Liste des types de blocs que vous souhaitez sélectionner pour la " -"navigation ; si la sélection est vide, tous les types de blocs seront pris " -"en compte" - -#: src/pyams_content/component/paragraph/portlet/interfaces.py:66 -msgid "If 'no', all paragraphs will be used as navigation anchors" -msgstr "" -"Si 'non', tous les blocs seront utilisés comme liens de navigation même si " -"ce ne sont pas des ancres" - -#: src/pyams_content/component/paragraph/portlet/zmi/__init__.py:67 -#: src/pyams_content/component/paragraph/portlet/zmi/__init__.py:122 -msgid "No filter, all paragraphs selected" -msgstr "Pas de filtre, tous les blocs sont acceptés" - -#: src/pyams_content/component/paragraph/portlet/zmi/__init__.py:74 -#: src/pyams_content/component/paragraph/portlet/zmi/__init__.py:129 -msgid "No filter, all paragraph types selected" -msgstr "Pas de filtre, tous les types de blocs sont acceptés" - -#: src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:4 -#: src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:4 -msgid "Selected paragraphs:" -msgstr "Blocs sélectionnés :" - -#: src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:10 -#: src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:10 -msgid "Paragraphs filters:" -msgstr "Filtrage des blocs :" - -#: src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:13 -#: src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:13 -msgid "Selected paragraph types:" -msgstr "Types de blocs :" - -#: src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:18 -#: src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:18 -msgid "Only display anchors" -msgstr "Ne sélectionner que les ancres" - -#: src/pyams_content/component/paragraph/interfaces/milestone.py:39 -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:44 -msgid "Milestone title" -msgstr "Libellé associé au jalon" - -#: src/pyams_content/component/paragraph/interfaces/milestone.py:48 -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:52 -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:82 -msgid "Additional text associated to this milestone paragraph" -msgstr "Texte complémentaire associé à ce bloc" - -#: src/pyams_content/component/paragraph/interfaces/milestone.py:85 -msgid "Milestones template" -msgstr "Mode de rendu" - -#: src/pyams_content/component/paragraph/interfaces/milestone.py:86 -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.py:101 -#: src/pyams_content/shared/logo/interfaces.py:89 -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:43 -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:47 -msgid "Anchor?" -msgstr "Ancre ?" - -#: src/pyams_content/component/paragraph/interfaces/__init__.py:48 -msgid "Is this paragraph a navigation anchor?" -msgstr "" -"Si 'oui', ce bloc pourra recevoir une ancre de navigation au sein du contenu" - -#: src/pyams_content/component/paragraph/interfaces/__init__.py:52 -msgid "§ Title" -msgstr "Titre §" - -#: src/pyams_content/component/paragraph/interfaces/__init__.py:92 -msgid "Allowed paragraphs" -msgstr "Types de blocs autorisés" - -#: src/pyams_content/component/paragraph/interfaces/__init__.py:93 -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:97 -#: src/pyams_content/shared/common/zmi/types.py:171 -#: src/pyams_content/shared/common/zmi/types.py:411 -msgid "Default paragraphs" -msgstr "Types de blocs par défaut" - -#: src/pyams_content/component/paragraph/interfaces/__init__.py:98 -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/map.py:41 -msgid "Location map" -msgstr "Carte" - -#: src/pyams_content/component/paragraph/interfaces/map.py:48 -#: src/pyams_content/component/paragraph/interfaces/contact.py:73 -msgid "GPS location" -msgstr "Position GPS" - -#: src/pyams_content/component/paragraph/interfaces/map.py:49 -msgid "GPS coordinates used to locate map" -msgstr "Coordonnées GPS de situation de la carte" - -#: src/pyams_content/component/paragraph/interfaces/map.py:52 -msgid "Display location mark?" -msgstr "Marqueur de position ?" - -#: src/pyams_content/component/paragraph/interfaces/map.py:53 -msgid "If 'yes', a location marker will be displayed on map" -msgstr "Si 'oui', un marqueur de position sera placé sur la carte" - -#: src/pyams_content/component/paragraph/interfaces/map.py:57 -msgid "Map template" -msgstr "Mode de rendu" - -#: src/pyams_content/component/paragraph/interfaces/map.py:58 -msgid "Presentation template used for this map" -msgstr "Mode de rendu utilisé par cette carte" - -#: src/pyams_content/component/paragraph/interfaces/video.py:40 -msgid "Video file content" -msgstr "" -"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu" - -#: src/pyams_content/component/paragraph/interfaces/video.py:51 -#: src/pyams_content/component/video/interfaces.py:47 -msgid "Video description displayed by front-office template" -msgstr "" -"Le texte accompagne la vidéo, en complément de la légende. Attention : sa " -"présence et sa mise en forme dépendent du mode de rendu choisi." - -#: src/pyams_content/component/paragraph/interfaces/video.py:54 -#: src/pyams_content/component/video/interfaces.py:72 -msgid "Video template" -msgstr "Mode de rendu" - -#: src/pyams_content/component/paragraph/interfaces/video.py:55 -#: src/pyams_content/component/video/interfaces.py:73 -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.py:43 -#: src/pyams_content/shared/common/interfaces/types.py:75 -#: src/pyams_content/features/menu/interfaces.py:68 -msgid "Pictogram" -msgstr "Pictogramme" - -#: src/pyams_content/component/paragraph/interfaces/pictogram.py:47 -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:32 -msgid "Audio" -msgstr "Bande son" - -#: src/pyams_content/component/paragraph/interfaces/audio.py:54 -msgid "Audio template" -msgstr "Mode de rendu" - -#: src/pyams_content/component/paragraph/interfaces/audio.py:55 -msgid "Presentation template used for this audio file" -msgstr "Mode de rendu utilisé pour cette bande son" - -#: 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:55 -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:63 -msgid "Body" -msgstr "Contenu HTML" - -#: src/pyams_content/component/paragraph/interfaces/html.py:66 -msgid "Body template" -msgstr "Mode de rendu" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:44 -msgid "Contact card" -msgstr "Fiche contact" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:51 -msgid "Contact identity" -msgstr "Nom du contact" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:52 -msgid "Name of the contact" -msgstr "Nom complet du contact" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:56 -msgid "Label of contact function" -msgstr "Fonction du contact" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:59 -msgid "Email address" -msgstr "Adresse de messagerie" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:60 -msgid "Contact email address" -msgstr "Adresse de messagerie \"stricte\", soit uniquement \"xxx@yyy.com\"" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:63 -msgid "Contact form" -msgstr "Formulaire de contact" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:64 -msgid "Reference of contact form" -msgstr "Référence d'un formulaire de contact" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:68 -msgid "Photo" -msgstr "Photo" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:69 -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:77 -msgid "Address" -msgstr "Adresse" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:80 -msgid "Contact template" -msgstr "Mode de rendu" - -#: src/pyams_content/component/paragraph/interfaces/contact.py:81 -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:74 -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 -#: src/pyams_content/shared/common/interfaces/__init__.py:151 -#: src/pyams_content/shared/site/interfaces.py:82 -msgid "Header" -msgstr "Chapô" - -#: src/pyams_content/component/paragraph/interfaces/header.py:43 -#: src/pyams_content/features/header/interfaces.py:39 -msgid "Header template" -msgstr "Mode de rendu" - -#: src/pyams_content/component/paragraph/interfaces/header.py:44 -#: src/pyams_content/features/header/interfaces.py:40 -msgid "Presentation template used for this header" -msgstr "Mode de rendu utilisé par ce chapô" - -#: src/pyams_content/component/theme/__init__.py:74 -#: src/pyams_content/component/theme/interfaces.py:64 -#: src/pyams_content/component/theme/interfaces.py:78 -#: src/pyams_content/component/theme/zmi/portlet.py:40 -#: src/pyams_content/shared/common/zmi/search.py:189 -#: src/pyams_content/root/zmi/search.py:179 -#: src/pyams_content/root/zmi/templates/advanced-search.pt:181 -msgid "Tags" -msgstr "Tags" - -#: src/pyams_content/component/theme/__init__.py:122 -#: src/pyams_content/component/theme/interfaces.py:105 -#: src/pyams_content/component/theme/interfaces.py:119 -#: src/pyams_content/component/theme/zmi/portlet.py:55 -#: src/pyams_content/shared/common/zmi/search.py:192 -msgid "Themes" -msgstr "Thèmes" - -#: src/pyams_content/component/theme/__init__.py:170 -#: src/pyams_content/component/theme/interfaces.py:146 -#: src/pyams_content/component/theme/interfaces.py:160 -#: src/pyams_content/component/theme/zmi/portlet.py:70 -#: src/pyams_content/shared/common/zmi/search.py:195 -msgid "Collections" -msgstr "Collections" - -#: src/pyams_content/component/theme/__init__.py:83 -msgid "no defined tag" -msgstr "aucun tag défini" - -#: src/pyams_content/component/theme/__init__.py:131 -msgid "no defined theme" -msgstr "aucun thème défini" - -#: src/pyams_content/component/theme/__init__.py:179 -msgid "no defined collection" -msgstr "aucune collection définie" - -#: src/pyams_content/component/theme/interfaces.py:41 -msgid "Enable search by tag?" -msgstr "Activer la recherche par tag ?" - -#: src/pyams_content/component/theme/interfaces.py:42 -msgid "" -"If 'yes', displayed tags will lead to a search engine displaying contents " -"matching given tag" -msgstr "" -"Si 'oui', un clic sur un tag permet d'accéder à une page de résultat de " -"recherche portant sur le tag sélectionné" - -#: src/pyams_content/component/theme/interfaces.py:47 -msgid "Tags search target" -msgstr "Cible de la recherche" - -#: src/pyams_content/component/theme/interfaces.py:48 -msgid "Site or folder where tags search is displayed" -msgstr "Site ou rubrique où la recherche par tags s'effectue" - -#: src/pyams_content/component/theme/interfaces.py:54 -msgid "You must specify search target when activating search by tags!" -msgstr "" -"Vous devez indiquer la cible de la recherche lorsque vous activez la " -"recherche par tags !" - -#: src/pyams_content/component/theme/zmi/__init__.py:55 -#: src/pyams_content/shared/view/zmi/theme.py:56 -msgid "Tags..." -msgstr "Tags" - -#: src/pyams_content/component/theme/zmi/__init__.py:66 -msgid "Content tags" -msgstr "Tags du contenu" - -#: src/pyams_content/component/theme/zmi/__init__.py:99 -#: src/pyams_content/shared/view/zmi/theme.py:102 -msgid "Themes..." -msgstr "Thèmes" - -#: src/pyams_content/component/theme/zmi/__init__.py:107 -msgid "Content themes" -msgstr "Thèmes du contenu" - -#: src/pyams_content/component/theme/zmi/__init__.py:159 -#: src/pyams_content/shared/view/zmi/theme.py:148 -msgid "Collections..." -msgstr "Collections" - -#: src/pyams_content/component/theme/zmi/__init__.py:172 -msgid "Content collections" -msgstr "Collections associées au contenu" - -#: src/pyams_content/component/theme/zmi/manager.py:58 -msgid "Tags settings..." -msgstr "Paramétrage des tags" - -#: src/pyams_content/component/theme/zmi/manager.py:72 -msgid "Selected tags" -msgstr "Tags sélectionnés" - -#: src/pyams_content/component/theme/zmi/manager.py:109 -msgid "Themes settings..." -msgstr "Paramétrage des thèmes" - -#: src/pyams_content/component/theme/zmi/manager.py:123 -msgid "Selected themes" -msgstr "Thèmes sélectionnés" - -#: src/pyams_content/component/theme/zmi/manager.py:159 -msgid "Collections settings..." -msgstr "Paramétrage des collections" - -#: src/pyams_content/component/theme/zmi/manager.py:173 -msgid "Selected collections" -msgstr "Collections sélectionnées" - -#: src/pyams_content/component/association/container.py:91 -#: src/pyams_content/component/association/interfaces.py:93 -#: src/pyams_content/component/association/zmi/__init__.py:313 -msgid "Associations" -msgstr "Liens et pièces jointes" - -#: src/pyams_content/component/association/interfaces.py:43 -#: src/pyams_content/features/menu/interfaces.py:56 -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.py:100 -msgid "Associations template" -msgstr "Mode de rendu" - -#: src/pyams_content/component/association/interfaces.py:101 -msgid "Presentation template used for associations" -msgstr "Modèle de présentation utilisé par ce bloc de contenu" - -#: 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:209 -msgid "Public title" -msgstr "Libellé public" - -#: src/pyams_content/component/association/zmi/__init__.py:229 -msgid "Inner title" -msgstr "Contenu interne" - -#: src/pyams_content/component/association/zmi/__init__.py:247 -msgid "Size" -msgstr "Taille" - -#: src/pyams_content/component/association/zmi/__init__.py:290 -#: src/pyams_content/component/association/zmi/__init__.py:300 -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/links/__init__.py:144 -msgid "Internal link" -msgstr "Lien interne" - -#: src/pyams_content/component/links/__init__.py:230 -msgid "External link" -msgstr "Lien externe" - -#: src/pyams_content/component/links/__init__.py:283 -msgid "Mailto link" -msgstr "Lien mailto" - -#: src/pyams_content/component/links/__init__.py:217 -msgid "target is not published" -msgstr "le contenu ciblé n'est pas publié" - -#: src/pyams_content/component/links/interfaces.py:35 -#: src/pyams_content/shared/imagemap/interfaces.py:55 -msgid "Alternate title" -msgstr "Titre de substitution" - -#: src/pyams_content/component/links/interfaces.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.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.py:44 -msgid "Name of the pictogram associated with this link" -msgstr "" -"Pictogramme à associer à ce lien. ATTENTION: ce pictogramme n'est affiché " -"que par certains modes de rendu !!" - -#: src/pyams_content/component/links/interfaces.py:61 -#: src/pyams_content/shared/logo/interfaces.py:54 -#: src/pyams_content/features/redirect/interfaces.py:68 -msgid "Target URL" -msgstr "URL cible" - -#: src/pyams_content/component/links/interfaces.py:62 -#: src/pyams_content/shared/logo/interfaces.py:55 -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.py:66 -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.py:74 -msgid "Target address" -msgstr "Adresse mail" - -#: src/pyams_content/component/links/interfaces.py:75 -msgid "Target email address" -msgstr "Adresse de messagerie \"stricte\", soit uniquement \"xxx@yyy.com\"" - -#: src/pyams_content/component/links/interfaces.py:78 -msgid "Address name" -msgstr "Nom de messagerie" - -#: src/pyams_content/component/links/interfaces.py:79 -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/links/zmi/__init__.py:54 -msgid "Internal links" -msgstr "Liens internes" - -#: src/pyams_content/component/links/zmi/__init__.py:69 -msgid "Add internal link" -msgstr "Lien interne" - -#: src/pyams_content/component/links/zmi/__init__.py:83 -msgid "Add new internal link" -msgstr "Ajout d'un lien interne" - -#: src/pyams_content/component/links/zmi/__init__.py:114 -msgid "Edit internal link properties" -msgstr "Propriétés du lien interne" - -#: src/pyams_content/component/links/zmi/__init__.py:142 -msgid "External links" -msgstr "Liens externes" - -#: src/pyams_content/component/links/zmi/__init__.py:157 -msgid "Add external link" -msgstr "Lien externe" - -#: src/pyams_content/component/links/zmi/__init__.py:171 -msgid "Add new external link" -msgstr "Ajout d'un lien externe" - -#: src/pyams_content/component/links/zmi/__init__.py:202 -msgid "Edit external link properties" -msgstr "Propriétés du lien externe" - -#: src/pyams_content/component/links/zmi/__init__.py:230 -msgid "Mailto links" -msgstr "Liens mailto" - -#: src/pyams_content/component/links/zmi/__init__.py:245 -msgid "Add mailto link" -msgstr "Lien mailto" - -#: src/pyams_content/component/links/zmi/__init__.py:259 -msgid "Add new mailto link" -msgstr "Ajout d'un lien « mailto »" - -#: src/pyams_content/component/links/zmi/__init__.py:290 -msgid "Edit mailto link properties" -msgstr "Propriétés du lien « mailto »" +#: src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:42 +#: src/pyams_content/component/gallery/zmi/templates/gallery-media.pt:9 +msgid "Zoom image" +msgstr "Agrandir l'image" #: src/pyams_content/component/video/__init__.py:67 #: src/pyams_content/component/video/interfaces.py:62 msgid "External video" msgstr "Vidéo externe" +#: src/pyams_content/component/video/interfaces.py:47 +#: src/pyams_content/component/paragraph/interfaces/video.py:51 +msgid "Video description displayed by front-office template" +msgstr "" +"Le texte accompagne la vidéo, en complément de la légende. Attention : sa " +"présence et sa mise en forme dépendent du mode de rendu choisi." + #: src/pyams_content/component/video/interfaces.py:50 msgid "Video provider" msgstr "Fournisseur" @@ -1769,10 +561,24 @@ msgid "Name of external platform providing selected video" msgstr "Nom de la plate-forme externe fournissant la vidéo à afficher" +#: src/pyams_content/component/video/interfaces.py:72 +#: src/pyams_content/component/paragraph/interfaces/video.py:54 +msgid "Video template" +msgstr "Mode de rendu" + +#: src/pyams_content/component/video/interfaces.py:73 +#: src/pyams_content/component/paragraph/interfaces/video.py:55 +msgid "Presentation template used for this video" +msgstr "Mode de rendu utilisé par cette vidéo" + #: src/pyams_content/component/video/provider/dailymotion.py:94 msgid "Dailymotion settings" msgstr "Paramètres Dailymotion" +#: src/pyams_content/component/video/provider/vimeo.py:92 +msgid "Vimeo settings" +msgstr "Paramètres Vimeo" + #: src/pyams_content/component/video/provider/__init__.py:63 msgid "Other provider" msgstr "Autre fournisseur" @@ -1781,10 +587,6 @@ 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" @@ -2035,6 +837,11 @@ msgid "Add new external video..." msgstr "Ajout d'une vidéo externe" +#: src/pyams_content/component/video/zmi/paragraph.py:183 +#: src/pyams_content/component/paragraph/zmi/video.py:86 +msgid "Edit video properties" +msgstr "Propriétés de la vidéo" + #: src/pyams_content/component/video/zmi/paragraph.py:118 msgid "Video provider is required" msgstr "Le nom du fournisseur est obligatoire" @@ -2048,1307 +855,2034 @@ msgid "Other settings" msgstr "Autres paramètres" -#: src/pyams_content/shared/common/__init__.py:243 -#: src/pyams_content/shared/common/zmi/properties.py:69 -#: src/pyams_content/shared/common/zmi/manager.py:96 -msgid "Properties" -msgstr "Propriétés" - -#: src/pyams_content/shared/common/__init__.py:153 -#: src/pyams_content/shared/common/__init__.py:161 -#, python-format -msgid "{date} by {principal}" -msgstr "{date} par {principal}" - -#: src/pyams_content/shared/common/__init__.py:266 -#, 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:96 -#: src/pyams_content/root/zmi/search.py:95 -msgid "Quick search results" -msgstr "Résultats de la recherche rapide" - -#: src/pyams_content/shared/common/zmi/search.py:162 -#: src/pyams_content/shared/common/zmi/search.py:204 -#: src/pyams_content/root/zmi/search.py:152 -#: src/pyams_content/root/zmi/search.py:188 -msgid "Advanced search" -msgstr "Recherche avancée" - -#: src/pyams_content/shared/common/zmi/search.py:332 -#: src/pyams_content/root/zmi/search.py:280 -msgid "Advanced search results" -msgstr "Résultats de la recherche avancée" - -#: src/pyams_content/shared/common/zmi/search.py:170 -#: src/pyams_content/shared/common/zmi/dashboard.py:226 -#: src/pyams_content/root/zmi/search.py:164 -msgid "Owner" -msgstr "Propriétaire" - -#: src/pyams_content/shared/common/zmi/search.py:173 -#: src/pyams_content/shared/common/zmi/dashboard.py:149 -msgid "Status" -msgstr "Statut" - -#: src/pyams_content/shared/common/zmi/search.py:177 -#: src/pyams_content/root/zmi/search.py:167 -msgid "Created after..." -msgstr "Créé entre le" - -#: src/pyams_content/shared/common/zmi/search.py:180 -#: src/pyams_content/root/zmi/search.py:170 -msgid "Created before..." -msgstr "et le" - -#: src/pyams_content/shared/common/zmi/search.py:183 -#: src/pyams_content/root/zmi/search.py:173 -msgid "Modified after..." -msgstr "Modifié entre le" - -#: src/pyams_content/shared/common/zmi/search.py:186 -#: src/pyams_content/root/zmi/search.py:176 -msgid "Modified before..." -msgstr "et le" - -#: src/pyams_content/shared/common/zmi/properties.py:59 -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:69 -msgid "Data types" -msgstr "Types de contenus" - -#: src/pyams_content/shared/common/zmi/types.py:147 -msgid "Data type label" -msgstr "Libellé du type" - -#: src/pyams_content/shared/common/zmi/types.py:187 -#: src/pyams_content/shared/common/zmi/types.py:427 -msgid "Default associations" -msgstr "Liens et pièces jointes par défaut" - -#: src/pyams_content/shared/common/zmi/types.py:203 -msgid "Default themes" -msgstr "Thèmes par défaut" - -#: src/pyams_content/shared/common/zmi/types.py:231 -msgid "Content data types" -msgstr "Types de contenus" - -#: src/pyams_content/shared/common/zmi/types.py:254 -msgid "Add data type" -msgstr "Ajouter un type" - -#: src/pyams_content/shared/common/zmi/types.py:266 -msgid "Add new data type" -msgstr "Ajout d'un type de contenu" - -#: src/pyams_content/shared/common/zmi/types.py:309 -msgid "Data type properties" -msgstr "Propriétés du type de contenu" - -#: src/pyams_content/shared/common/zmi/types.py:390 -msgid "Subtype label" -msgstr "Libellé du sous-type" - -#: src/pyams_content/shared/common/zmi/types.py:471 -msgid "Add subtype" -msgstr "Ajouter un sous-type" - -#: src/pyams_content/shared/common/zmi/types.py:483 -msgid "Add new subtype" -msgstr "Ajout d'un sous-type de contenu" - -#: src/pyams_content/shared/common/zmi/types.py:530 -msgid "Data subtype properties" -msgstr "Propriétés du fichier standard" - -#: src/pyams_content/shared/common/zmi/types.py:572 -msgid "Select content type..." -msgstr "Sélectionnez un type de contenu..." - -#: src/pyams_content/shared/common/zmi/types.py:114 -msgid "No currently defined data type." -msgstr "Aucun type de contenu n'est actuellement défini." - -#: src/pyams_content/shared/common/zmi/types.py:299 -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:506 -msgid "Subtype was correctly added." -msgstr "Le sous-type a été ajouté." - -#: src/pyams_content/shared/common/zmi/types.py:520 -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:159 -msgid "Click to see subtypes" -msgstr "Montrer ou caher les sous-types" - -#: src/pyams_content/shared/common/zmi/types.py:610 -#, python-format -msgid "Custom properties for type « {0} »" -msgstr "Propriétés spécifiques au type « {0} »" - -#: src/pyams_content/shared/common/zmi/workflow.py:845 -msgid "Prior checks" -msgstr "Contrôles préalables : avez-vous ?" - -#: src/pyams_content/shared/common/zmi/workflow.py:120 -msgid "Request publication" -msgstr "Demander la publication" - -#: src/pyams_content/shared/common/zmi/workflow.py:207 -#: src/pyams_content/workflow/__init__.py:316 -msgid "Cancel publication request" -msgstr "Annuler la demande de publication" - -#: src/pyams_content/shared/common/zmi/workflow.py:247 -msgid "Refuse publication request" -msgstr "Refuser la demande de publication" - -#: src/pyams_content/shared/common/zmi/workflow.py:301 -#: src/pyams_content/workflow/basic.py:197 -msgid "Publish" -msgstr "Publier" - -#: src/pyams_content/shared/common/zmi/workflow.py:392 -msgid "Request retire" -msgstr "Demander le retrait" - -#: src/pyams_content/shared/common/zmi/workflow.py:448 -msgid "Cancel retire request" -msgstr "Annuler la demande de retrait" - -#: src/pyams_content/shared/common/zmi/workflow.py:488 -msgid "Retire" -msgstr "Retirer" - -#: src/pyams_content/shared/common/zmi/workflow.py:529 -#: src/pyams_content/workflow/__init__.py:437 -msgid "Request archive" -msgstr "Demander l'archivage" - -#: src/pyams_content/shared/common/zmi/workflow.py:572 -msgid "Cancel archive request" -msgstr "Annuler la demande d'archivage" - -#: src/pyams_content/shared/common/zmi/workflow.py:612 -msgid "Archive" -msgstr "Archiver" - -#: src/pyams_content/shared/common/zmi/workflow.py:653 -#: 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 -#: src/pyams_content/workflow/basic.py:225 -#: src/pyams_content/workflow/basic.py:237 -msgid "Create new version" -msgstr "Créer une nouvelle version" - -#: src/pyams_content/shared/common/zmi/workflow.py:704 -#: src/pyams_content/workflow/__init__.py:562 -#: src/pyams_content/workflow/basic.py:249 -msgid "Delete version" -msgstr "Supprimer cette version" - -#: src/pyams_content/shared/common/zmi/workflow.py:791 -msgid "Previewed content?" -msgstr "Prévisualisé ce contenu ?" - -#: src/pyams_content/shared/common/zmi/workflow.py:795 -msgid "Verified content?" -msgstr "Audité ce contenu ?" - -#: src/pyams_content/shared/common/zmi/workflow.py:177 -#: src/pyams_content/shared/common/zmi/workflow.py:361 -msgid "Publication start date is required" -msgstr "La date de début de publication est obligatoire" - -#: src/pyams_content/shared/common/zmi/workflow.py:270 -#: src/pyams_content/shared/common/zmi/workflow.py:418 -msgid "A comment is required" -msgstr "Le commentaire est obligatoire" - -#: src/pyams_content/shared/common/zmi/workflow.py:730 -msgid "Delete content" -msgstr "Supprimer définitivement ce contenu" - -#: src/pyams_content/shared/common/zmi/workflow.py:739 -msgid "Delete definitively" -msgstr "Supprimer définitivement" - -#: src/pyams_content/shared/common/zmi/workflow.py:868 +#: src/pyams_content/component/links/__init__.py:144 +msgid "Internal link" +msgstr "Lien interne" + +#: src/pyams_content/component/links/__init__.py:230 +msgid "External link" +msgstr "Lien externe" + +#: src/pyams_content/component/links/__init__.py:283 +msgid "Mailto link" +msgstr "Lien mailto" + +#: src/pyams_content/component/links/__init__.py:217 +msgid "target is not published" +msgstr "le contenu ciblé n'est pas publié" + +#: src/pyams_content/component/links/interfaces.py:35 +#: src/pyams_content/shared/imagemap/interfaces.py:55 +msgid "Alternate title" +msgstr "Titre de substitution" + +#: src/pyams_content/component/links/interfaces.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.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.py:43 +#: src/pyams_content/component/paragraph/interfaces/pictogram.py:46 +#: src/pyams_content/features/menu/interfaces.py:68 +#: src/pyams_content/shared/common/interfaces/types.py:75 +msgid "Pictogram" +msgstr "Pictogramme" + +#: src/pyams_content/component/links/interfaces.py:44 +msgid "Name of the pictogram associated with this link" +msgstr "" +"Pictogramme à associer à ce lien. ATTENTION: ce pictogramme n'est affiché " +"que par certains modes de rendu !!" + +#: src/pyams_content/component/links/interfaces.py:61 +#: src/pyams_content/features/redirect/interfaces.py:68 +#: src/pyams_content/shared/logo/interfaces.py:54 +msgid "Target URL" +msgstr "URL cible" + +#: src/pyams_content/component/links/interfaces.py:62 +#: src/pyams_content/shared/logo/interfaces.py:55 +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.py:65 +#: src/pyams_content/component/extfile/interfaces.py:44 +msgid "Language" +msgstr "Langue" + +#: src/pyams_content/component/links/interfaces.py:66 +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.py:74 +msgid "Target address" +msgstr "Adresse mail" + +#: src/pyams_content/component/links/interfaces.py:75 +msgid "Target email address" +msgstr "Adresse de messagerie \"stricte\", soit uniquement \"xxx@yyy.com\"" + +#: src/pyams_content/component/links/interfaces.py:78 +msgid "Address name" +msgstr "Nom de messagerie" + +#: src/pyams_content/component/links/interfaces.py:79 +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/links/zmi/__init__.py:54 +msgid "Internal links" +msgstr "Liens internes" + +#: src/pyams_content/component/links/zmi/__init__.py:69 +msgid "Add internal link" +msgstr "Lien interne" + +#: src/pyams_content/component/links/zmi/__init__.py:83 +msgid "Add new internal link" +msgstr "Ajout d'un lien interne" + +#: src/pyams_content/component/links/zmi/__init__.py:114 +msgid "Edit internal link properties" +msgstr "Propriétés du lien interne" + +#: src/pyams_content/component/links/zmi/__init__.py:142 +msgid "External links" +msgstr "Liens externes" + +#: src/pyams_content/component/links/zmi/__init__.py:157 +msgid "Add external link" +msgstr "Lien externe" + +#: src/pyams_content/component/links/zmi/__init__.py:171 +msgid "Add new external link" +msgstr "Ajout d'un lien externe" + +#: src/pyams_content/component/links/zmi/__init__.py:202 +msgid "Edit external link properties" +msgstr "Propriétés du lien externe" + +#: src/pyams_content/component/links/zmi/__init__.py:230 +msgid "Mailto links" +msgstr "Liens mailto" + +#: src/pyams_content/component/links/zmi/__init__.py:245 +msgid "Add mailto link" +msgstr "Lien mailto" + +#: src/pyams_content/component/links/zmi/__init__.py:259 +msgid "Add new mailto link" +msgstr "Ajout d'un lien « mailto »" + +#: src/pyams_content/component/links/zmi/__init__.py:290 +msgid "Edit mailto link properties" +msgstr "Propriétés du lien « mailto »" + +#: src/pyams_content/component/paragraph/header.py:62 +msgid "This paragraph type is deprecated and should be removed!" +msgstr "Ce type de paragraphe a été supprimé et ne doit plus être utilisé !" + +#: src/pyams_content/component/paragraph/container.py:94 +msgid "Paragraphs" +msgstr "Blocs de contenu" + +#: src/pyams_content/component/paragraph/container.py:116 +msgid "no visible paragraph" +msgstr "aucun bloc de contenu visible" + +#: src/pyams_content/component/paragraph/pictogram.py:130 +msgid "Selected pictogram is missing" +msgstr "le pictogramme sélectionné est introuvable" + +#: src/pyams_content/component/paragraph/milestone.py:138 +msgid "Selected paragraph is missing" +msgstr "le bloc sélectionné est introuvable" + +#: src/pyams_content/component/paragraph/milestone.py:141 +msgid "Selected paragraph is not visible" +msgstr "le bloc sélectionné n'est pas visible" + +#: src/pyams_content/component/paragraph/interfaces/header.py:33 +#: src/pyams_content/component/paragraph/interfaces/header.py:40 +#: src/pyams_content/shared/common/interfaces/__init__.py:151 +#: src/pyams_content/shared/site/interfaces.py:82 +msgid "Header" +msgstr "Chapô" + +#: src/pyams_content/component/paragraph/interfaces/header.py:43 +#: src/pyams_content/features/header/interfaces.py:39 +msgid "Header template" +msgstr "Mode de rendu" + +#: src/pyams_content/component/paragraph/interfaces/header.py:44 +#: src/pyams_content/features/header/interfaces.py:40 +msgid "Presentation template used for this header" +msgstr "Mode de rendu utilisé par ce chapô" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:41 +msgid "Contact card" +msgstr "Fiche contact" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:48 +msgid "Contact identity" +msgstr "Nom du contact" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:49 +msgid "Name of the contact" +msgstr "Nom complet du contact" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:52 +#: src/pyams_content/component/paragraph/interfaces/verbatim.py:48 +msgid "In charge of" +msgstr "Fonction" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:53 +msgid "Label of contact function" +msgstr "Fonction du contact" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:56 +msgid "Company" +msgstr "" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:57 +msgid "Business name of the employer" +msgstr "" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:60 +msgid "Email address" +msgstr "Adresse de messagerie" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:61 +msgid "Contact email address" +msgstr "Adresse de messagerie \"stricte\", soit uniquement \"xxx@yyy.com\"" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:64 +msgid "Contact form" +msgstr "Formulaire de contact" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:65 +msgid "Reference of contact form" +msgstr "Référence d'un formulaire de contact" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:69 +msgid "Phone number" +msgstr "Téléphone" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:70 +msgid "" +"Phone number in international format.\n" +" E.g. +33 ...." +msgstr "" +"Numéro de téléphone, au format international si besoin (+33...) " + +#: src/pyams_content/component/paragraph/interfaces/contact.py:73 +msgid "Photo" +msgstr "Photo" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:74 +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:82 +msgid "Address" +msgstr "Adresse" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:85 +msgid "Contact template" +msgstr "Mode de rendu" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:86 +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:78 +#: src/pyams_content/component/paragraph/interfaces/map.py:48 +msgid "GPS location" +msgstr "Position GPS" + +#: src/pyams_content/component/paragraph/interfaces/contact.py:79 +msgid "GPS coordinates used to locate contact" +msgstr "Coordonnées GPS de situation du contact" + +#: src/pyams_content/component/paragraph/interfaces/video.py:32 +#: src/pyams_content/component/extfile/__init__.py:256 +#: src/pyams_content/component/extfile/__init__.py:261 +msgid "Video" +msgstr "Vidéo" + +#: src/pyams_content/component/paragraph/interfaces/video.py:39 +#: src/pyams_content/component/extfile/interfaces.py:77 +msgid "Video data" +msgstr "Fichier" + +#: src/pyams_content/component/paragraph/interfaces/video.py:40 +msgid "Video file content" +msgstr "" +"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu" + +#: src/pyams_content/component/paragraph/interfaces/pictogram.py:80 +#: src/pyams_content/component/paragraph/zmi/pictogram.py:295 +msgid "Pictograms" +msgstr "Pictogrammes" + +#: 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:47 +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 "" -"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:84 -#, python-format -msgid "{state} | by {principal}" -msgstr "{state} | par {principal}" - -#: src/pyams_content/shared/common/zmi/workflow.py:871 +"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/milestone.py:74 +#: src/pyams_content/component/paragraph/zmi/milestone.py:288 +msgid "Milestones" +msgstr "Chronologie" + +#: src/pyams_content/component/paragraph/interfaces/milestone.py:39 +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:44 +msgid "Milestone title" +msgstr "Libellé associé au jalon" + +#: src/pyams_content/component/paragraph/interfaces/milestone.py:47 +#: src/pyams_content/component/paragraph/zmi/milestone.py:247 +msgid "Associated label" +msgstr "Information associée" + +#: src/pyams_content/component/paragraph/interfaces/milestone.py:48 +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:51 +#: src/pyams_content/component/paragraph/zmi/milestone.py:259 +msgid "Anchor" +msgstr "Ancre" + +#: src/pyams_content/component/paragraph/interfaces/milestone.py:52 +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:82 +msgid "Additional text associated to this milestone paragraph" +msgstr "Texte complémentaire associé à ce bloc" + +#: src/pyams_content/component/paragraph/interfaces/milestone.py:85 +msgid "Milestones template" +msgstr "Mode de rendu" + +#: src/pyams_content/component/paragraph/interfaces/milestone.py:86 +msgid "Presentation template used for milestones" +msgstr "Modèle de présentation utilisé par ce bloc de contenu" + +#: 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:46 +#: src/pyams_content/component/paragraph/interfaces/html.py:67 +#: src/pyams_content/component/paragraph/interfaces/verbatim.py:53 +#: src/pyams_content/component/paragraph/interfaces/keypoint.py:45 +#: src/pyams_content/component/paragraph/interfaces/frame.py:44 +#: src/pyams_content/shared/imagemap/interfaces.py:101 +#: src/pyams_content/shared/logo/interfaces.py:89 +msgid "Presentation template used for this paragraph" +msgstr "Mode de rendu utilisé par ce bloc de contenu" + +#: src/pyams_content/component/paragraph/interfaces/html.py:63 +msgid "Body" +msgstr "Contenu HTML" + +#: src/pyams_content/component/paragraph/interfaces/html.py:66 +msgid "Body 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: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/__init__.py:43 +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:47 +msgid "Anchor?" +msgstr "Ancre ?" + +#: src/pyams_content/component/paragraph/interfaces/__init__.py:48 +msgid "Is this paragraph a navigation anchor?" +msgstr "" +"Si 'oui', ce bloc pourra recevoir une ancre de navigation au sein du contenu" + +#: src/pyams_content/component/paragraph/interfaces/__init__.py:52 +msgid "§ Title" +msgstr "Titre §" + +#: src/pyams_content/component/paragraph/interfaces/__init__.py:92 +msgid "Allowed paragraphs" +msgstr "Types de blocs autorisés" + +#: src/pyams_content/component/paragraph/interfaces/__init__.py:93 +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:97 +#: src/pyams_content/shared/common/zmi/types.py:171 +#: src/pyams_content/shared/common/zmi/types.py:411 +msgid "Default paragraphs" +msgstr "Types de blocs par défaut" + +#: src/pyams_content/component/paragraph/interfaces/__init__.py:98 +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/map.py:41 +msgid "Location map" +msgstr "Carte" + +#: src/pyams_content/component/paragraph/interfaces/map.py:49 +msgid "GPS coordinates used to locate map" +msgstr "Coordonnées GPS de situation de la carte" + +#: src/pyams_content/component/paragraph/interfaces/map.py:52 +msgid "Display location mark?" +msgstr "Marqueur de position ?" + +#: src/pyams_content/component/paragraph/interfaces/map.py:53 +msgid "If 'yes', a location marker will be displayed on map" +msgstr "Si 'oui', un marqueur de position sera placé sur la carte" + +#: src/pyams_content/component/paragraph/interfaces/map.py:57 +msgid "Map template" +msgstr "Mode de rendu" + +#: src/pyams_content/component/paragraph/interfaces/map.py:58 +msgid "Presentation template used for this map" +msgstr "Mode de rendu utilisé par cette carte" + +#: 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/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/audio.py:32 +msgid "Audio" +msgstr "Bande son" + +#: src/pyams_content/component/paragraph/interfaces/audio.py:40 +#: src/pyams_content/component/extfile/interfaces.py:86 +msgid "Audio file content" +msgstr "" +"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu" + +#: src/pyams_content/component/paragraph/interfaces/audio.py:51 +#: src/pyams_content/component/extfile/interfaces.py:37 +msgid "File description displayed by front-office template" +msgstr "Description du fichier, présentée aux internautes" + +#: src/pyams_content/component/paragraph/interfaces/audio.py:54 +msgid "Audio template" +msgstr "Mode de rendu" + +#: src/pyams_content/component/paragraph/interfaces/audio.py:55 +msgid "Presentation template used for this audio file" +msgstr "Mode de rendu utilisé pour cette bande son" + +#: src/pyams_content/component/paragraph/portlet/__init__.py:83 +msgid "Content paragraphs" +msgstr "Blocs de contenu" + +#: src/pyams_content/component/paragraph/portlet/__init__.py:135 +msgid "Paragraphs navigation anchors" +msgstr "Navigation au sein des blocs" + +#: src/pyams_content/component/paragraph/portlet/interfaces.py:30 +#: src/pyams_content/component/paragraph/portlet/interfaces.py:52 +msgid "Selected paragraphs" +msgstr "Blocs sélectionnés" + +#: src/pyams_content/component/paragraph/portlet/interfaces.py:31 +msgid "" +"List of selected paragraphs; an empty selection means that all paragraphs " +"will be selectable by following filters; otherwise, this selection will have " +"priority" +msgstr "" +"Liste des blocs sélectionnés ; si la sélection est vide, tous les blocs de " +"contenu pourront être sélectionnés via les filtres ci-dessous ; dans le cas " +"contraire, cette sélection devient prioritaire et les autres filtres ne sont " +"pas appliqués" + +#: src/pyams_content/component/paragraph/portlet/interfaces.py:37 +#: src/pyams_content/component/paragraph/portlet/interfaces.py:59 +msgid "Paragraph types" +msgstr "Types de blocs" + +#: src/pyams_content/component/paragraph/portlet/interfaces.py:38 +msgid "" +"Select list of paragraph types you want to include; an empty selection means " +"that all paragraphs types will be selected" +msgstr "" +"Liste des types de blocs que vous souhaitez sélectionner ; si la sélection " +"est vide, tous les types de blocs seront pris en compte" + +#: src/pyams_content/component/paragraph/portlet/interfaces.py:43 +#: src/pyams_content/component/paragraph/portlet/interfaces.py:65 +msgid "Anchors only?" +msgstr "Ancres seulement ?" + +#: src/pyams_content/component/paragraph/portlet/interfaces.py:44 +msgid "If 'yes', only paragraphs set as 'anchors' will be selected" +msgstr "" +"Si 'oui', seuls les blocs définis comme ancres de navigation seront " +"sélectionnés" + +#: src/pyams_content/component/paragraph/portlet/interfaces.py:53 +msgid "" +"List of paragraphs selected for navigation; an empty selection means that " +"all paragraphs will be selectable by following filters; otherwise, this " +"selection will have priority" +msgstr "" +"Liste des blocs sélectionnés pour la navigation ; si la sélection est vide, " +"tous les blocs de contenu pourront être sélectionnés via les filtres ci-" +"dessous ; dans le cas contraire, cette sélection devient prioritaire et les " +"autres filtres ne sont pas appliqués" + +#: src/pyams_content/component/paragraph/portlet/interfaces.py:60 msgid "" -"You must confirm that you checked this content before requesting " -"publication!!" -msgstr "Vous devez avoir audité ce contenu avant de pouvoir le publier !!" - -#: src/pyams_content/shared/common/zmi/workflow.py:80 -#: src/pyams_content/workflow/__init__.py:649 -#: src/pyams_content/workflow/__init__.py:620 -#: src/pyams_content/workflow/basic.py:316 -#: src/pyams_content/workflow/basic.py:287 -#, 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:86 -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:332 -#, 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:377 -msgid "Created or modified in this version" -msgstr "Créé ou modifié dans cette version" - -#: src/pyams_content/shared/common/zmi/summary.py:47 -msgid "Display content summary" -msgstr "Récapitulatif pour ce contenu" - -#: src/pyams_content/shared/common/zmi/summary.py:71 -msgid "Identity card" -msgstr "Carte d'identité" - -#: src/pyams_content/shared/common/zmi/summary.py:89 -msgid "Requested action" -msgstr "Évolution demandée" - -#: src/pyams_content/shared/common/zmi/summary.py:130 -msgid "Publication and retire dates" -msgstr "Dates de publication et de retrait planifiées" - -#: src/pyams_content/shared/common/zmi/summary.py:149 -msgid "Current version" -msgstr "À propos de cette version" - -#: src/pyams_content/shared/common/zmi/summary.py:185 -msgid "Content history" -msgstr "Pour mémoire" - -#: src/pyams_content/shared/common/zmi/summary.py:120 -msgid "Associated comment" -msgstr "Commentaire associé" - -#: src/pyams_content/shared/common/zmi/summary.py:167 -#: src/pyams_content/shared/common/zmi/dashboard.py:193 -msgid "Version" -msgstr "Version" - -#: src/pyams_content/shared/common/zmi/summary.py:110 -#, python-format -msgid "{state} {date} by {principal}" -msgstr "{state} {date} par {principal}" - -#: src/pyams_content/shared/common/zmi/summary.py:173 -#, 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 +"Select list of paragraph types you want to use for navigation; an empty " +"selection means that all paragraphs types will be selected" +msgstr "" +"Liste des types de blocs que vous souhaitez sélectionner pour la " +"navigation ; si la sélection est vide, tous les types de blocs seront pris " +"en compte" + +#: src/pyams_content/component/paragraph/portlet/interfaces.py:66 +msgid "If 'no', all paragraphs will be used as navigation anchors" +msgstr "" +"Si 'non', tous les blocs seront utilisés comme liens de navigation même si " +"ce ne sont pas des ancres" + +#: src/pyams_content/component/paragraph/portlet/zmi/__init__.py:67 +#: src/pyams_content/component/paragraph/portlet/zmi/__init__.py:122 +msgid "No filter, all paragraphs selected" +msgstr "Pas de filtre, tous les blocs sont acceptés" + +#: src/pyams_content/component/paragraph/portlet/zmi/__init__.py:74 +#: src/pyams_content/component/paragraph/portlet/zmi/__init__.py:129 +msgid "No filter, all paragraph types selected" +msgstr "Pas de filtre, tous les types de blocs sont acceptés" + +#: src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:4 +#: src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:4 +msgid "Selected paragraphs:" +msgstr "Blocs sélectionnés :" + +#: src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:10 +#: src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:10 +msgid "Paragraphs filters:" +msgstr "Filtrage des blocs :" + +#: src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:13 +#: src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:13 +msgid "Selected paragraph types:" +msgstr "Types de blocs :" + +#: src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:18 +#: src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:18 +msgid "Only display anchors" +msgstr "Ne sélectionner que les ancres" + +#: src/pyams_content/component/paragraph/zmi/header.py:44 +msgid "Edit header paragraph properties" +msgstr "Propriétés du chapô" + +#: src/pyams_content/component/paragraph/zmi/container.py:70 +msgid "Contents..." +msgstr "Blocs de contenu" + +#: src/pyams_content/component/paragraph/zmi/container.py:211 +msgid "Set navigation anchor" +msgstr "Ancre de navigation" + +#: src/pyams_content/component/paragraph/zmi/container.py:285 +msgid "Show/hide all paragraphs" +msgstr "Afficher/masquer tous les blocs" + +#: src/pyams_content/component/paragraph/zmi/container.py:333 +#: src/pyams_content/component/paragraph/zmi/container.py:342 +#: src/pyams_content/component/paragraph/zmi/container.py:355 +msgid "Content blocks" +msgstr "Blocs de contenu" + +#: src/pyams_content/component/paragraph/zmi/container.py:412 +msgid "Links and attachments..." +msgstr "Récap. liens et PJ" + +#: src/pyams_content/component/paragraph/zmi/container.py:424 +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:141 +msgid "No currently defined paragraph." +msgstr "Aucun bloc n'est associé à ce contenu." + +#: src/pyams_content/component/paragraph/zmi/container.py:294 +msgid "Click to open/close all paragraphs editors" +msgstr "Afficher/masquer tous les blocs" + +#: src/pyams_content/component/paragraph/zmi/container.py:307 +msgid "Click to open/close paragraph editor" +msgstr "Afficher/masquer ce bloc" + +#: src/pyams_content/component/paragraph/zmi/container.py:147 +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/contact.py:48 +msgid "Contact card..." +msgstr "Fiche contact" + +#: src/pyams_content/component/paragraph/zmi/contact.py:61 +msgid "Add new contact card" +msgstr "Ajout d'une fiche contact" + +#: src/pyams_content/component/paragraph/zmi/contact.py:84 +msgid "Edit contact card properties" +msgstr "Propriétés de la fiche contact" + +#: src/pyams_content/component/paragraph/zmi/video.py:50 +msgid "Video paragraph..." +msgstr "Vidéo" + +#: src/pyams_content/component/paragraph/zmi/video.py:63 +msgid "Add new video paragraph" +msgstr "Ajout d'une vidéo" + +#: src/pyams_content/component/paragraph/zmi/pictogram.py:79 +msgid "Pictograms..." +msgstr "Pictogrammes" + +#: src/pyams_content/component/paragraph/zmi/pictogram.py:92 +msgid "Add new pictogram paragraph" +msgstr "Ajout de pictogrammes" + +#: src/pyams_content/component/paragraph/zmi/pictogram.py:119 +msgid "Edit pictogram paragraph properties" +msgstr "Propriétés des pictogrammes" + +#. Default: Header +#: src/pyams_content/component/paragraph/zmi/pictogram.py:256 +msgid "pictogram-item-header" +msgstr "En-tête" + +#: src/pyams_content/component/paragraph/zmi/pictogram.py:345 +msgid "Pictogram was correctly added" +msgstr "Le pictogramme a été ajouté." + +#: src/pyams_content/component/paragraph/zmi/pictogram.py:355 +#: src/pyams_content/component/paragraph/zmi/pictogram.py:393 +msgid "You must select a pictogram!" +msgstr "Vous devez sélectionner un pictogramme !" + +#: src/pyams_content/component/paragraph/zmi/milestone.py:74 +msgid "Milestones..." +msgstr "Chronologie" + +#: src/pyams_content/component/paragraph/zmi/milestone.py:87 +msgid "Add new milestone paragraph" +msgstr "Ajout d'une chronologie" + +#: src/pyams_content/component/paragraph/zmi/milestone.py:114 +msgid "Edit milestone paragraph properties" +msgstr "Propriétés de la chronologie" + +#: src/pyams_content/component/paragraph/zmi/milestone.py:303 +msgid "Add milestone" +msgstr "Ajouter un jalon" + +#: src/pyams_content/component/paragraph/zmi/milestone.py:316 +msgid "Add new milestone" +msgstr "Ajout d'un jalon" + +#: src/pyams_content/component/paragraph/zmi/milestone.py:343 +msgid "Edit milestone properties" +msgstr "Propriétés du jalon" + +#: src/pyams_content/component/paragraph/zmi/milestone.py:331 +msgid "Milestone was correctly added" +msgstr "Le jalon a été ajouté." + +#: src/pyams_content/component/paragraph/zmi/milestone.py:274 +msgid "(missing paragraph)" +msgstr "(paragraphe supprimé)" + +#: src/pyams_content/component/paragraph/zmi/html.py:74 +msgid "Raw HTML..." +msgstr "Code HTML" + +#: src/pyams_content/component/paragraph/zmi/html.py:87 +msgid "Add new raw HTML paragraph" +msgstr "Ajout d'un bloc de code HTML" + +#: src/pyams_content/component/paragraph/zmi/html.py:117 +msgid "Edit raw HTML paragraph properties" +msgstr "Propriétés du code HTML" + +#: src/pyams_content/component/paragraph/zmi/html.py:157 +msgid "Rich text..." +msgstr "Texte enrichi" + +#: src/pyams_content/component/paragraph/zmi/html.py:170 +msgid "Add new rich text paragraph" +msgstr "Ajout d'un bloc de texte enrichi" + +#: src/pyams_content/component/paragraph/zmi/html.py:207 +msgid "Edit rich text paragraph properties" +msgstr "Propriétés du texte enrichi" + +#: src/pyams_content/component/paragraph/zmi/verbatim.py:55 +msgid "Verbatim..." +msgstr "Verbatim" + +#: src/pyams_content/component/paragraph/zmi/verbatim.py:68 +msgid "Add new verbatim paragraph" +msgstr "Ajout d'un verbatim" + +#: src/pyams_content/component/paragraph/zmi/verbatim.py:107 +msgid "Edit verbatim paragraph properties" +msgstr "Propriétés du verbatim" + +#: src/pyams_content/component/paragraph/zmi/__init__.py:60 +msgid "Content block types..." +msgstr "Types de blocs de contenu" + +#: src/pyams_content/component/paragraph/zmi/__init__.py:74 +msgid "Content block types" +msgstr "Types de blocs de contenu" + +#: src/pyams_content/component/paragraph/zmi/__init__.py:84 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 +"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:209 +#: src/pyams_content/component/paragraph/zmi/__init__.py:222 +#: src/pyams_content/features/preview/zmi/__init__.py:45 +#: src/pyams_content/shared/common/zmi/templates/preview-input.pt:39 +msgid "Preview" +msgstr "Aperçu" + +#: src/pyams_content/component/paragraph/zmi/__init__.py:214 +#: src/pyams_content/component/paragraph/zmi/__init__.py:227 +#: src/pyams_content/features/review/zmi/__init__.py:84 +#: src/pyams_content/shared/common/zmi/__init__.py:275 +#: src/pyams_content/shared/common/zmi/owner.py:73 +#: src/pyams_content/shared/common/zmi/workflow.py:119 +#: src/pyams_content/shared/common/zmi/workflow.py:206 +#: src/pyams_content/shared/common/zmi/workflow.py:246 +#: src/pyams_content/shared/common/zmi/workflow.py:300 +#: src/pyams_content/shared/common/zmi/workflow.py:391 +#: src/pyams_content/shared/common/zmi/workflow.py:447 +#: src/pyams_content/shared/common/zmi/workflow.py:487 +#: src/pyams_content/shared/common/zmi/workflow.py:528 +#: src/pyams_content/shared/common/zmi/workflow.py:571 +#: src/pyams_content/shared/common/zmi/workflow.py:611 +#: src/pyams_content/shared/common/zmi/workflow.py:652 +#: src/pyams_content/shared/common/zmi/workflow.py:703 +msgid "Cancel" +msgstr "Annuler" + +#: src/pyams_content/component/paragraph/zmi/__init__.py:216 +#: src/pyams_content/component/paragraph/zmi/__init__.py:229 +msgid "Submit" +msgstr "Enregistrer" + +#: src/pyams_content/component/paragraph/zmi/__init__.py:197 +msgid "Paragraph was correctly added." +msgstr "Le bloc a été ajouté." + +#: src/pyams_content/component/paragraph/zmi/__init__.py:269 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 cet outil" - -#: 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 +"You changed renderer selection. Don't omit to update new renderer " +"properties..." +msgstr "" +"Vous avez changé de mode de rendu. N'oubliez pas de vérifier les propriétés " +"du nouveau mode de rendu sélectionné..." + +#: src/pyams_content/component/paragraph/zmi/map.py:50 +msgid "Location map..." +msgstr "Carte de situation" + +#: src/pyams_content/component/paragraph/zmi/map.py:63 +msgid "Add new location map" +msgstr "Ajout d'une carte de situation" + +#: src/pyams_content/component/paragraph/zmi/map.py:86 +msgid "Edit location map properties" +msgstr "Propriétés de la carte" + +#: src/pyams_content/component/paragraph/zmi/keypoint.py:46 +msgid "Key points..." +msgstr "Points clés" + +#: src/pyams_content/component/paragraph/zmi/keypoint.py:59 +msgid "Add new key points paragraph" +msgstr "Ajout de points clés" + +#: src/pyams_content/component/paragraph/zmi/keypoint.py:86 +msgid "Edit key points paragraph properties" +msgstr "Propriétés des points clés" + +#: src/pyams_content/component/paragraph/zmi/frame.py:96 +msgid "Framed text..." +msgstr "Encadré" + +#: src/pyams_content/component/paragraph/zmi/frame.py:110 +msgid "Add new framed text paragraph" +msgstr "Ajout d'un encadré" + +#: src/pyams_content/component/paragraph/zmi/frame.py:136 +msgid "Edit framed text paragraph properties" +msgstr "Propriétés de l'encadré" + +#: src/pyams_content/component/paragraph/zmi/audio.py:50 +msgid "Audio paragraph..." +msgstr "Bande son" + +#: src/pyams_content/component/paragraph/zmi/audio.py:63 +msgid "Add new audio paragraph" +msgstr "Ajout d'une bande son" + +#: src/pyams_content/component/paragraph/zmi/audio.py:85 +msgid "Edit audio properties" +msgstr "Propriétés de la bande son" + +#: src/pyams_content/component/association/container.py:91 +#: src/pyams_content/component/association/interfaces.py:93 +#: src/pyams_content/component/association/zmi/__init__.py:313 +msgid "Associations" +msgstr "Liens et pièces jointes" + +#: src/pyams_content/component/association/interfaces.py:43 +#: src/pyams_content/features/menu/interfaces.py:56 +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.py:100 +msgid "Associations template" +msgstr "Mode de rendu" + +#: src/pyams_content/component/association/interfaces.py:101 +msgid "Presentation template used for associations" +msgstr "Modèle de présentation utilisé par ce bloc de contenu" + +#: src/pyams_content/component/association/zmi/__init__.py:96 +#: src/pyams_content/component/association/zmi/paragraph.py:54 +msgid "Associations..." +msgstr "Liens et pièces jointes" + +#: src/pyams_content/component/association/zmi/__init__.py:209 +msgid "Public title" +msgstr "Libellé public" + +#: src/pyams_content/component/association/zmi/__init__.py:229 +msgid "Inner title" +msgstr "Contenu interne" + +#: src/pyams_content/component/association/zmi/__init__.py:247 +msgid "Size" +msgstr "Taille" + +#: src/pyams_content/component/association/zmi/__init__.py:290 +#: src/pyams_content/component/association/zmi/__init__.py:300 +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/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/extfile/__init__.py:173 +#: src/pyams_content/component/extfile/__init__.py:178 +msgid "Standard file" +msgstr "Fichier" + +#: src/pyams_content/component/extfile/__init__.py:276 +#: src/pyams_content/component/extfile/__init__.py:281 +msgid "Audio file" +msgstr "Fichier audio" + +#: src/pyams_content/component/extfile/interfaces.py:32 +msgid "Download link label" +msgstr "Intitulé du lien" + +#: src/pyams_content/component/extfile/interfaces.py:33 +msgid "Label of download link, as shown in front-office" +msgstr "" +"Intitulé du lien présenté aux internautes pour leur permettre de télécharger " +"le fichier. Si le responsable du site a choisi de préfixer automatiquement " +"tous les liens avec un texte de son choix, celui-ci est indiqué ci-dessous " +"et votre libellé ne sera indiqué que pour compléter ce libellé par défaut." + +#: src/pyams_content/component/extfile/interfaces.py:45 +msgid "File's content language" +msgstr "Langue du fichier" + +#: src/pyams_content/component/extfile/interfaces.py:49 +msgid "Save file as..." +msgstr "Nom du fichier" + +#: src/pyams_content/component/extfile/interfaces.py:50 +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.py:57 +msgid "File data" +msgstr "Fichier" + +#: src/pyams_content/component/extfile/interfaces.py:58 +msgid "File content" +msgstr "" +"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu" + +#: src/pyams_content/component/extfile/interfaces.py:69 +#: src/pyams_content/shared/logo/interfaces.py:59 +msgid "Image data" +msgstr "Fichier" + +#: src/pyams_content/component/extfile/interfaces.py:70 +msgid "Image content" +msgstr "" +"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu..." + +#: src/pyams_content/component/extfile/interfaces.py:78 +msgid "Video content" +msgstr "" +"Cliquez sur le bouton 'Parcourir...' pour sélectionner un nouveau contenu" + +#: src/pyams_content/component/extfile/interfaces.py:104 +msgid "Default title prefix" +msgstr "Préfixe par défaut" + +#: src/pyams_content/component/extfile/interfaces.py:105 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/rename.py:58 -msgid "Change URL..." -msgstr "Changer d'URL" - -#: src/pyams_content/shared/common/zmi/rename.py:75 -msgid "Change item URL" -msgstr "Modification de l'URL" - -#: src/pyams_content/shared/common/zmi/rename.py:82 -msgid "Item URL part" -msgstr "URL du contenu" - -#: src/pyams_content/shared/common/zmi/rename.py:83 -msgid "URL part used to access this content" -msgstr "Portion de l'URL utilisée pour accéder à ce contenu" - -#: src/pyams_content/shared/common/zmi/rename.py:123 -msgid "You must provide an URL for this item!" -msgstr "Vous devez fournir une URL pour ce contenu !" - -#: src/pyams_content/shared/common/zmi/reverse.py:57 -msgid "Reverse links" -msgstr "Liens amont" - -#: src/pyams_content/shared/common/zmi/reverse.py:66 -msgid "Content's internal links" -msgstr "Autres contenus qui pointent vers ce contenu" - -#: src/pyams_content/shared/common/zmi/site.py:38 -#, python-format +"If used, this prefix will be automatically added to download link's label of " +"all files" +msgstr "" +"Si vous indiquez un texte ici, celui-ci sera utilisé automatiquement comme " +"préfixe de tous les liens de téléchargement de pièces jointes" + +#: src/pyams_content/component/extfile/zmi/manager.py:37 +msgid "External files..." +msgstr "Gestion des pièces jointes" + +#: src/pyams_content/component/extfile/zmi/manager.py:51 +msgid "External files properties" +msgstr "Propriétés des pièces jointes" + +#: src/pyams_content/component/extfile/zmi/__init__.py:70 +msgid "External files" +msgstr "Fichiers" + +#: src/pyams_content/component/extfile/zmi/__init__.py:85 +msgid "Add external file" +msgstr "Fichier" + +#: src/pyams_content/component/extfile/zmi/__init__.py:99 +msgid "Add new external file" +msgstr "Ajout d'un fichier" + +#: src/pyams_content/component/extfile/zmi/__init__.py:131 +msgid "Update file properties" +msgstr "Propriétés du fichier" + +#: src/pyams_content/component/extfile/zmi/__init__.py:159 +msgid "Images" +msgstr "Images" + +#: src/pyams_content/component/extfile/zmi/__init__.py:174 +msgid "Add image" +msgstr "Image téléchargeable" + +#: src/pyams_content/component/extfile/zmi/__init__.py:188 +msgid "Add new image" +msgstr "Ajout d'une image téléchargeable" + +#: src/pyams_content/component/extfile/zmi/__init__.py:220 +msgid "Update image properties" +msgstr "Propriétés de l'image téléchargeable" + +#: src/pyams_content/component/extfile/zmi/__init__.py:252 +msgid "Videos" +msgstr "Vidéos" + +#: src/pyams_content/component/extfile/zmi/__init__.py:267 +msgid "Add video" +msgstr "Vidéo téléchargeable" + +#: src/pyams_content/component/extfile/zmi/__init__.py:281 +msgid "Add new video" +msgstr "Ajout d'une vidéo téléchargeable" + +#: src/pyams_content/component/extfile/zmi/__init__.py:306 +msgid "Update video properties" +msgstr "Propriétés de la vidéo téléchargeable" + +#: src/pyams_content/component/extfile/zmi/__init__.py:331 +msgid "Audios files" +msgstr "Fichiers audios" + +#: src/pyams_content/component/extfile/zmi/__init__.py:346 +msgid "Add audio file" +msgstr "Bande son téléchargeable" + +#: src/pyams_content/component/extfile/zmi/__init__.py:360 +msgid "Add new audio file" +msgstr "Ajout d'une bande son téléchargeable" + +#: src/pyams_content/component/extfile/zmi/__init__.py:385 +msgid "Update audio file properties" +msgstr "Propriétés de la bande son téléchargeable" + +#: src/pyams_content/component/extfile/zmi/__init__.py:46 +msgid "External file type" +msgstr "Type de fichier joint" + +#: src/pyams_content/component/illustration/__init__.py:172 +#: src/pyams_content/component/illustration/interfaces.py:97 +#: src/pyams_content/component/illustration/thesaurus.py:32 +#: src/pyams_content/component/illustration/zmi/__init__.py:56 +#: src/pyams_content/component/illustration/zmi/__init__.py:126 +#: src/pyams_content/component/illustration/zmi/paragraph.py:155 +msgid "Illustration" +msgstr "Illustration" + +#: src/pyams_content/component/illustration/interfaces.py:55 +msgid "Name of picture's author" +msgstr "Sous la forme \"Prénom Nom / Organisme\"" + +#: src/pyams_content/component/illustration/interfaces.py:63 +msgid "Illustration description displayed in front-office templates" +msgstr "" +"Le texte accompagne l'illustration, en complément de la légende. Attention : " +"sa présence et sa mise en forme dépendent du mode de rendu choisi." + +#: src/pyams_content/component/illustration/interfaces.py:66 +msgid "Illustration template" +msgstr "Mode de rendu" + +#: src/pyams_content/component/illustration/interfaces.py:67 +msgid "Presentation template used for illustration" +msgstr "" +"Modèle de présentation utilisé par cette illustration.
ATTENTION : certains modes de rendu ne prennent pas en " +"compte tous les types de médias !
" + +#: src/pyams_content/component/illustration/zmi/__init__.py:151 +msgid "Navigation link illustration" +msgstr "Illustration de navigation" + +#: src/pyams_content/component/illustration/zmi/__init__.py:168 +msgid "Add illustration" +msgstr "Ajouter une illustration" + +#: src/pyams_content/component/illustration/zmi/__init__.py:128 +msgid "Header illustration" +msgstr "Illustration d'en-tête" + +#: src/pyams_content/component/illustration/zmi/thesaurus.py:42 +#: src/pyams_content/component/illustration/zmi/paragraph.py:93 +msgid "Edit illustration properties" +msgstr "Propriétés de l'illustration" + +#: src/pyams_content/component/illustration/zmi/paragraph.py:55 +msgid "Illustration..." +msgstr "Illustration" + +#: src/pyams_content/component/illustration/zmi/paragraph.py:68 +msgid "Add new illustration" +msgstr "Ajout d'une illustration" + +#: src/pyams_content/component/theme/__init__.py:74 +#: src/pyams_content/component/theme/interfaces.py:64 +#: src/pyams_content/component/theme/interfaces.py:78 +#: src/pyams_content/component/theme/zmi/portlet.py:40 +#: src/pyams_content/root/zmi/search.py:179 +#: src/pyams_content/root/zmi/templates/advanced-search.pt:181 +#: src/pyams_content/shared/common/zmi/search.py:189 +msgid "Tags" +msgstr "Tags" + +#: src/pyams_content/component/theme/__init__.py:122 +#: src/pyams_content/component/theme/interfaces.py:105 +#: src/pyams_content/component/theme/interfaces.py:119 +#: src/pyams_content/component/theme/zmi/portlet.py:55 +#: src/pyams_content/shared/common/zmi/search.py:192 +msgid "Themes" +msgstr "Thèmes" + +#: src/pyams_content/component/theme/__init__.py:170 +#: src/pyams_content/component/theme/interfaces.py:146 +#: src/pyams_content/component/theme/interfaces.py:160 +#: src/pyams_content/component/theme/zmi/portlet.py:70 +#: src/pyams_content/shared/common/zmi/search.py:195 +msgid "Collections" +msgstr "Collections" + +#: src/pyams_content/component/theme/__init__.py:83 +msgid "no defined tag" +msgstr "aucun tag défini" + +#: src/pyams_content/component/theme/__init__.py:131 +msgid "no defined theme" +msgstr "aucun thème défini" + +#: src/pyams_content/component/theme/__init__.py:179 +msgid "no defined collection" +msgstr "aucune collection définie" + +#: src/pyams_content/component/theme/interfaces.py:41 +msgid "Enable search by tag?" +msgstr "Activer la recherche par tag ?" + +#: src/pyams_content/component/theme/interfaces.py:42 msgid "" -"SEARCH - Between all contents published into « {site} »" -msgstr "" -"RECHERCHE - Tous contenus présents dans « {site} » " -"confondus" - -#: src/pyams_content/shared/common/zmi/portal.py:44 -msgid "Edit default template properties" -msgstr "Modèle de présentation par défaut" - -#: src/pyams_content/shared/common/zmi/portal.py:54 +"If 'yes', displayed tags will lead to a search engine displaying contents " +"matching given tag" +msgstr "" +"Si 'oui', un clic sur un tag permet d'accéder à une page de résultat de " +"recherche portant sur le tag sélectionné" + +#: src/pyams_content/component/theme/interfaces.py:47 +msgid "Tags search target" +msgstr "Cible de la recherche" + +#: src/pyams_content/component/theme/interfaces.py:48 +msgid "Site or folder where tags search is displayed" +msgstr "Site ou rubrique où la recherche par tags s'effectue" + +#: src/pyams_content/component/theme/interfaces.py:54 +msgid "You must specify search target when activating search by tags!" +msgstr "" +"Vous devez indiquer la cible de la recherche lorsque vous activez la " +"recherche par tags !" + +#: src/pyams_content/component/theme/zmi/manager.py:58 +msgid "Tags settings..." +msgstr "Paramétrage des tags" + +#: src/pyams_content/component/theme/zmi/manager.py:72 +msgid "Selected tags" +msgstr "Tags sélectionnés" + +#: src/pyams_content/component/theme/zmi/manager.py:109 +msgid "Themes settings..." +msgstr "Paramétrage des thèmes" + +#: src/pyams_content/component/theme/zmi/manager.py:123 +msgid "Selected themes" +msgstr "Thèmes sélectionnés" + +#: src/pyams_content/component/theme/zmi/manager.py:159 +msgid "Collections settings..." +msgstr "Paramétrage des collections" + +#: src/pyams_content/component/theme/zmi/manager.py:173 +msgid "Selected collections" +msgstr "Collections sélectionnées" + +#: src/pyams_content/component/theme/zmi/__init__.py:55 +#: src/pyams_content/shared/view/zmi/theme.py:56 +msgid "Tags..." +msgstr "Tags" + +#: src/pyams_content/component/theme/zmi/__init__.py:66 +msgid "Content tags" +msgstr "Tags du contenu" + +#: src/pyams_content/component/theme/zmi/__init__.py:99 +#: src/pyams_content/shared/view/zmi/theme.py:102 +msgid "Themes..." +msgstr "Thèmes" + +#: src/pyams_content/component/theme/zmi/__init__.py:107 +msgid "Content themes" +msgstr "Thèmes du contenu" + +#: src/pyams_content/component/theme/zmi/__init__.py:159 +#: src/pyams_content/shared/view/zmi/theme.py:148 +msgid "Collections..." +msgstr "Collections" + +#: src/pyams_content/component/theme/zmi/__init__.py:172 +msgid "Content collections" +msgstr "Collections associées au 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!!! Spaces, uppercase " +"letters ou accentuated characters will be replaced automatically." +msgstr "" +"ATTENTION : cette clé ne pourra plus être modifiée après sa création. Les " +"espaces, les majuscules, les lettres accentuées et les caractères spéciaux " +"seront remplacées automatiquement." + +#: src/pyams_content/interfaces/__init__.py:102 +#: src/pyams_content/shared/site/zmi/folder.py:67 +msgid "Visible label used to display content" +msgstr "Le titre présenté aux internautes" + +#: src/pyams_content/interfaces/__init__.py:105 +msgid "Short name" +msgstr "Fil d'Ariane" + +#: src/pyams_content/interfaces/__init__.py:106 +msgid "Short name used in breadcrumbs" +msgstr "Libellé utilisé dans le fil d'Ariane" + +#: src/pyams_content/interfaces/__init__.py:113 +#: src/pyams_content/features/review/interfaces.py:74 +#: src/pyams_content/shared/view/interfaces.py:37 +msgid "Creation date" +msgstr "Date de création" + +#: src/pyams_content/interfaces/__init__.py:117 +msgid "Modification date" +msgstr "Dernière modification apportée" + +#: src/pyams_content/features/alert/interfaces.py:39 +msgid "Alert" +msgstr "Alerte" + +#: src/pyams_content/features/alert/interfaces.py:40 +msgid "End of alert" +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 "Recommendation" +msgstr "Recommandation" + +#: 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" + +#: src/pyams_content/features/alert/interfaces.py:65 +#: src/pyams_content/features/alert/zmi/container.py:143 +msgid "Message" +msgstr "Message" + +#: src/pyams_content/features/alert/interfaces.py:66 +msgid "Alert message" +msgstr "Le message d'alerte doit être assez court et explicite" + +#: src/pyams_content/features/alert/interfaces.py:69 +#: src/pyams_content/features/menu/interfaces.py:64 +#: src/pyams_content/shared/imagemap/interfaces.py:96 +msgid "Internal reference" +msgstr "Référence interne" + +#: src/pyams_content/features/alert/interfaces.py:70 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" +"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:75 +msgid "Display start date" +msgstr "Date d'affichage" + +#: src/pyams_content/features/alert/interfaces.py:76 +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:79 +msgid "Display end date" +msgstr "Date de retrait" + +#: src/pyams_content/features/alert/interfaces.py:80 +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:83 +msgid "Maximum interval" +msgstr "Intervalle d'affichage" + +#: src/pyams_content/features/alert/interfaces.py:84 +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/container.py:53 +msgid "Alerts" +msgstr "Alertes" + +#: src/pyams_content/features/alert/zmi/container.py:165 +msgid "Alert list" +msgstr "Liste des alertes" + +#: src/pyams_content/features/alert/zmi/container.py:95 +msgid "No currently defined alert." +msgstr "Aucune alerte n'est définie actuellement." + +#: 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/redirect/container.py:81 +msgid "not matching" +msgstr "pas de correspondance" + +#: src/pyams_content/features/redirect/interfaces.py:39 +msgid "Active rule?" +msgstr "Règle active ?" + +#: src/pyams_content/features/redirect/interfaces.py:40 +msgid "If 'no', selected rule is inactive" +msgstr "Si 'non', la règle est inactive" + +#: src/pyams_content/features/redirect/interfaces.py:44 +msgid "Chained rule?" +msgstr "Règle chaînée ?" + +#: src/pyams_content/features/redirect/interfaces.py:45 +msgid "" +"If 'no', and if this rule is matching received request URL, the rule returns " +"a redirection response; otherwise, the rule just rewrites the input URL " +"which is forwarded to the next rule" +msgstr "" +"Si 'non', et si cette règle correspond à l'URL reçue en entrée, une réponde " +"de redirection est renvoyée directement ; dans le cas contraire, l'URL " +"générée par cette règle est passée en entrée de la règle suivante" + +#: src/pyams_content/features/redirect/interfaces.py:51 +msgid "Permanent redirect?" +msgstr "Redirection permanente ?" + +#: src/pyams_content/features/redirect/interfaces.py:52 +msgid "Define if this redirection should be permanent or temporary" +msgstr "" +"Indique si cette redirection doit être considérée comme permanente ou " +"temporaire" + +#: src/pyams_content/features/redirect/interfaces.py:56 +#: src/pyams_content/features/redirect/zmi/container.py:206 +#: src/pyams_content/features/redirect/zmi/container.py:365 +msgid "URL pattern" +msgstr "Schéma d'URL" + +#: src/pyams_content/features/redirect/interfaces.py:57 +msgid "Regexp pattern of matching URLs for this redirection rule" +msgstr "Modèle de l'URL d'origine de cette règle de redirection" + +#: src/pyams_content/features/redirect/interfaces.py:62 +msgid "Internal redirection target" +msgstr "Redirection interne" + +#: src/pyams_content/features/redirect/interfaces.py:63 +msgid "" +"Internal redirection reference. You can search a reference using '+' " +"followed by internal number, of by entering text matching content title." +msgstr "" +"Référence interne vers une cible de redirection. Vous pouvez la rechercher " +"par des mots de son titre, ou par son numéro interne (précédé d'un '+')" + +#: src/pyams_content/features/redirect/interfaces.py:69 +msgid "URL to which source URL should be redirected" +msgstr "URL vers laquelle l'URL d'origine doit être redirigée" + +#: src/pyams_content/features/redirect/interfaces.py:75 +msgid "You can only provide an internal reference OR a target URL" +msgstr "" +"Vous ne pouvez fournir qu'une référence interne OU une URL de redirection !" + +#: src/pyams_content/features/redirect/interfaces.py:77 +msgid "You must provide an internal reference OR a target URL" +msgstr "Vous devez fournir une référence interne OU une URL de redirection !" + +#: src/pyams_content/features/redirect/zmi/container.py:63 +msgid "Redirections" +msgstr "Redirections" + +#: src/pyams_content/features/redirect/zmi/container.py:157 +msgid "Enable/disable rule" +msgstr "Activer/désactiver la règle" + +#: src/pyams_content/features/redirect/zmi/container.py:184 +msgid "Chain/unchain rule" +msgstr "Enchaîner la règle avec la suivante" + +#: src/pyams_content/features/redirect/zmi/container.py:216 +msgid "Target" +msgstr "Cible" + +#: src/pyams_content/features/redirect/zmi/container.py:245 +msgid "Redirections list" +msgstr "Liste des règles de redirection" + +#: src/pyams_content/features/redirect/zmi/container.py:260 +msgid "Redirection rules" +msgstr "Règles de redirection" + +#: src/pyams_content/features/redirect/zmi/container.py:261 +msgid "" +"Redirection rules are use to handle redirections responses when a request " +"generates \n" +"a famous « 404 NotFound » error.\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:70 -msgid "Use tool default template" -msgstr "Utiliser le modèle de présentation par défaut de ce gabarit" - -#: src/pyams_content/shared/common/zmi/dashboard.py:129 -msgid "Unique ID" -msgstr "N° IN" - -#: src/pyams_content/shared/common/zmi/dashboard.py:176 -msgid "Status date" -msgstr "En date du" - -#: src/pyams_content/shared/common/zmi/dashboard.py:208 -msgid "Status principal" -msgstr "Intervenant" - -#: src/pyams_content/shared/common/zmi/dashboard.py:248 -msgid "Last modification" -msgstr "Dernière modification" - -#: src/pyams_content/shared/common/zmi/dashboard.py:271 -#: src/pyams_content/root/zmi/__init__.py:110 -msgid "Dashboard" -msgstr "Tableau de bord" - -#: src/pyams_content/shared/common/zmi/dashboard.py:281 -msgid "Contents dashboard" -msgstr "Mon tableau de bord" - -#: src/pyams_content/shared/common/zmi/dashboard.py:327 -#: 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:328 -#: 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:369 -#: src/pyams_content/root/zmi/__init__.py:204 -#, python-format -msgid "CONTRIBUTOR - {0} content waiting for action" -msgstr "CONTRIBUTEUR - {0} contenu soumis à un responsable" - -#: src/pyams_content/shared/common/zmi/dashboard.py:370 -#: src/pyams_content/root/zmi/__init__.py:205 -#, 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:240 -#, 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:283 -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:298 -#: 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:307 -#, 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:308 -#, 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:346 -msgid "Your favorite contents" -msgstr "Mes contenus favoris" - -#: src/pyams_content/shared/common/zmi/dashboard.py:556 -#: src/pyams_content/root/zmi/__init__.py:359 -msgid "My drafts" -msgstr "Mes brouillons" - -#: src/pyams_content/shared/common/zmi/dashboard.py:565 -#: src/pyams_content/root/zmi/__init__.py:368 -#, python-format -msgid "CONTRIBUTOR - {0} content in preparation" -msgstr "CONTRIBUTEUR - {0} contenu en préparation" - -#: src/pyams_content/shared/common/zmi/dashboard.py:566 -#: src/pyams_content/root/zmi/__init__.py:369 +"Redirections are particularly useful when you are migrating from a previous " +"site and don't want to lose \n" +"your SEO.\n" +"\n" +"You can define a set of rules which will be applied to every \"NotFound\" " +"request; rules are based on \n" +"regular expressions which are applied to input URL: if the rule is \"matching" +"\", the target URL is rewritten\n" +"and a \"Redirect\" response is send.\n" +"\n" +"You can chain rules together: when a rule is chained, it's rewritten URL is " +"passed as input URL to the \n" +"next rule, until a matching rule is found.\n" +msgstr "" +"Les règles de redirection sont utilisées pour transmettre des réponses de " +"redirection au lieu de la fameuse erreur « 404 - Page non trouvée ».\n" +"\n" +"La gestion des redirections est particulièrement importante en phase de " +"migration d'un site web, pour éviter les liens cassés, ne pas perdre votre " +"référencement et faciliter la mise à jour des moteurs de recherche.\n" +"\n" +"Vous pouvez définir un ensemble de règles qui seront appliquées dès lors " +"qu'une requête adressée au serveur génère une erreur de page non trouvée ; " +"les règles sont basées sur des expressions rationnelles que l'on applique à " +"l'URL de la requête reçue : si la règle correspond, l'URL est réécrite et " +"une réponse de redirection vers cette nouvelle URL est renvoyée.\n" +"\n" +"Vous pouvez également enchaîner les règles : lorsqu'une règle est \"chaînée" +"\", la nouvelle URL qu'elle génère est passée aux règles suivantes, jusqu'à " +"ce qu'une règle s'applique à cette nouvelle URL.\n" + +#: src/pyams_content/features/redirect/zmi/container.py:287 +msgid "Test" +msgstr "Tester !" + +#: src/pyams_content/features/redirect/zmi/container.py:322 +msgid "Test redirection rules" +msgstr "Test des règles de redirection" + +#: src/pyams_content/features/redirect/zmi/container.py:300 +msgid "Test URL" +msgstr "URL à tester" + +#: src/pyams_content/features/redirect/zmi/container.py:303 +msgid "Check inactive rules?" +msgstr "Tester les règles inactive ?" + +#: src/pyams_content/features/redirect/zmi/container.py:304 +msgid "If 'yes', inactive rules will also be tested" +msgstr "Si 'oui', les règles inactives seront également testées" + +#: src/pyams_content/features/redirect/zmi/container.py:312 +msgid "Close" +msgstr "Fermer" + +#: src/pyams_content/features/redirect/zmi/container.py:313 +msgid "Test rules" +msgstr "Tester cette URL" + +#: src/pyams_content/features/redirect/zmi/container.py:119 +msgid "No currently defined redirection rule." +msgstr "Aucune règle de redirection n'est définie actuellement." + +#: src/pyams_content/features/redirect/zmi/container.py:370 +msgid "No matching rule!" +msgstr "Aucune règle ne correspond !" + +#: src/pyams_content/features/redirect/zmi/container.py:227 #, python-format -msgid "CONTRIBUTOR - {0} contents in preparation" -msgstr "CONTRIBUTEUR - {0} contenus en préparation" - -#: src/pyams_content/shared/common/zmi/dashboard.py:607 -#: src/pyams_content/root/zmi/__init__.py:408 -msgid "Your prepared contents" -msgstr "Mes contenus en préparation" - -#: src/pyams_content/shared/common/zmi/dashboard.py:620 -#: src/pyams_content/root/zmi/__init__.py:421 -msgid "My submissions" -msgstr "Mes demandes" - -#: src/pyams_content/shared/common/zmi/dashboard.py:629 -#: src/pyams_content/root/zmi/__init__.py:430 -#, python-format -msgid "CONTRIBUTOR - {0} submitted content" -msgstr "CONTRIBUTEUR - {0} contenu soumis à un responsable" - -#: src/pyams_content/shared/common/zmi/dashboard.py:630 -#: src/pyams_content/root/zmi/__init__.py:431 -#, python-format -msgid "CONTRIBUTOR - {0} submitted contents" -msgstr "CONTRIBUTEUR - {0} contenus soumis à un responsable" - -#: src/pyams_content/shared/common/zmi/dashboard.py:671 -#: src/pyams_content/root/zmi/__init__.py:470 -msgid "Your submitted contents" -msgstr "Mes contenus soumis à un responsable" - -#: src/pyams_content/shared/common/zmi/dashboard.py:684 -#: src/pyams_content/root/zmi/__init__.py:483 -msgid "My publications" -msgstr "Mes publications" - -#: src/pyams_content/shared/common/zmi/dashboard.py:693 -#: src/pyams_content/root/zmi/__init__.py:492 -#, python-format -msgid "CONTRIBUTOR - {0} published content" -msgstr "CONTRIBUTEUR - {0} contenu publié" - -#: src/pyams_content/shared/common/zmi/dashboard.py:694 -#: src/pyams_content/root/zmi/__init__.py:493 -#, python-format -msgid "CONTRIBUTOR - {0} published contents" -msgstr "CONTRIBUTEUR - {0} contenus publiés" - -#: src/pyams_content/shared/common/zmi/dashboard.py:735 -#: src/pyams_content/root/zmi/__init__.py:532 -msgid "Your published contents" -msgstr "Mes contenus publiés" - -#: src/pyams_content/shared/common/zmi/dashboard.py:748 -#: src/pyams_content/root/zmi/__init__.py:545 -msgid "My retired contents" -msgstr "Mes contenus retirés" - -#: src/pyams_content/shared/common/zmi/dashboard.py:757 -#: src/pyams_content/root/zmi/__init__.py:554 -#, python-format -msgid "CONTRIBUTOR - {0} retired content" -msgstr "CONTRIBUTEUR - {0} contenu retiré" - -#: src/pyams_content/shared/common/zmi/dashboard.py:758 -#: src/pyams_content/root/zmi/__init__.py:555 +msgid "Internal reference: {0} (not found)" +msgstr "Référence interne: {0} (non trouvée)" + +#: src/pyams_content/features/redirect/zmi/container.py:364 +msgid "Input URL" +msgstr "URL en entrée" + +#: src/pyams_content/features/redirect/zmi/container.py:366 +msgid "Output URL" +msgstr "URL générée" + +#: src/pyams_content/features/redirect/zmi/__init__.py:50 +msgid "Add rule" +msgstr "Ajouter une règle" + +#: src/pyams_content/features/redirect/zmi/__init__.py:63 +msgid "Add new redirection rule" +msgstr "Ajout d'une règle de redirection" + +#: src/pyams_content/features/redirect/zmi/__init__.py:88 +msgid "Edit redirection rule properties" +msgstr "Propriétés de la règle de redirection" + +#: src/pyams_content/features/redirect/zmi/__init__.py:109 +msgid "" +"URL pattern and target URL are defined by *regular expressions* (see |" +"regexp|).\n" +" \n" +"In URL pattern, you can use any valid regular expression element, notably:\n" +"\n" +"- « .* » to match any list of characters \n" +"\n" +"- « ( ) » to \"memorize\" parts of the URL which can be replaced into target " +"URL\n" +"\n" +"- special characters (like \"+\") must be escaped with an « \\\\ ».\n" +"\n" +"In target URL, memorized parts can be reused using « \\\\1 », « \\\\2 » and " +"so on, where given number is\n" +"the order of the matching pattern element.\n" +"\n" +".. |regexp| raw:: html\n" +"\n" +" Python Regular Expressions\n" +msgstr "" +"Le schéma d'URL et l'URL cible sont définis en tant que « expressions " +"rationelles » (voir |regexp|).\n" +"\n" +"Dans le schéma d'URL utilisé pour identifier les requêtes en entrée, vous " +"pouvez utiliser tout élément d'une expression rationnelle valide, " +"notamment :\n" +"\n" +"- « .* » pour rechercher n'importe quelle suite de caractères\n" +"\n" +"- « ^ » et « $ » pour identifier le début ou la fin de l'URL\n" +"\n" +"- « ( ) » pour \"mémoriser\" certains éléments de l'URL qui pourront être " +"repris dans l'URL cible\n" +"\n" +"- les caractères spéciaux (comme les \"+\") doivent être protégés par un " +"caractère « \\\\ ».\n" +"\n" +"For exemple : dans le schéma « ^/.*?oid=([a-z0-9]+)$ », toute URL contenant " +"un paramètre \"oid\" composé de minuscules et/ou de chiffres sera mémorisé " +"pour pouvoir être réutilisé dans l'URL cible.\n" +"\n" +"Dans l'URL cible, les éléments mémorisés peuvent être réutilisés en " +"utilisant une expression comme « \\\\1 », « \\\\2 » (et ainsi de suite), le " +"chiffre indiquant la position de l'élément dans la liste des éléments " +"mémorisés.\n" +"\n" +".. |regexp| raw:: html\n" +"\n" +" Expressions rationnelles en Python\n" + +#: src/pyams_content/features/review/__init__.py:181 #, python-format -msgid "CONTRIBUTOR - {0} retired contents" -msgstr "CONTRIBUTEUR - {0} contenus retirés" - -#: src/pyams_content/shared/common/zmi/dashboard.py:799 -#: src/pyams_content/root/zmi/__init__.py:595 -msgid "Your retired contents" -msgstr "Mes contenus retirés" - -#: src/pyams_content/shared/common/zmi/dashboard.py:812 -#: src/pyams_content/root/zmi/__init__.py:608 -msgid "My archived contents" -msgstr "Mes contenus archivés" - -#: src/pyams_content/shared/common/zmi/dashboard.py:821 -#: src/pyams_content/root/zmi/__init__.py:617 -#, python-format -msgid "CONTRIBUTOR - {0} archived content" -msgstr "CONTRIBUTEUR - {0} contenu archivé" - -#: src/pyams_content/shared/common/zmi/dashboard.py:822 -#: src/pyams_content/root/zmi/__init__.py:618 -#, python-format -msgid "CONTRIBUTOR - {0} archived contents" -msgstr "CONTRIBUTEUR - {0} contenus archivés" - -#: src/pyams_content/shared/common/zmi/dashboard.py:869 -#: src/pyams_content/root/zmi/__init__.py:664 -msgid "Your archived contents" -msgstr "Mes contenus archivés" - -#: src/pyams_content/shared/common/zmi/dashboard.py:883 -#: src/pyams_content/root/zmi/__init__.py:678 -msgid "Other interventions" -msgstr "Toutes les interventions" - -#: src/pyams_content/shared/common/zmi/dashboard.py:898 -#: src/pyams_content/root/zmi/__init__.py:693 -msgid "Last publications" -msgstr "Dernières publications" - -#: src/pyams_content/shared/common/zmi/dashboard.py:907 -#: src/pyams_content/root/zmi/__init__.py:702 -#, python-format -msgid "CONTRIBUTORS - {0} published content" -msgstr "TOUS CONTRIBUTEURS - {0} contenu publié" - -#: src/pyams_content/shared/common/zmi/dashboard.py:954 -#: src/pyams_content/root/zmi/__init__.py:748 -msgid "Last published contents" -msgstr "Derniers contenus publiés" - -#: src/pyams_content/shared/common/zmi/dashboard.py:967 -#: src/pyams_content/root/zmi/__init__.py:761 -msgid "Last updates" -msgstr "Dernières modifications" - -#: src/pyams_content/shared/common/zmi/dashboard.py:976 -#: src/pyams_content/root/zmi/__init__.py:770 -#, python-format -msgid "CONTRIBUTORS - {0} updated content" -msgstr "TOUS CONTRIBUTEURS - {0} contenu modifié" - -#: src/pyams_content/shared/common/zmi/dashboard.py:1021 -#: src/pyams_content/root/zmi/__init__.py:814 -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:245 +msgid "Request comment: {comment}" +msgstr "Commentaire joint : {comment}" + +#: src/pyams_content/features/review/__init__.py:211 #, 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:247 -#, python-format -msgid "CONTRIBUTOR - Last {0} modified contents" -msgstr "CONTRIBUTEUR - Les {0} dernières modifications" - -#: src/pyams_content/shared/common/zmi/dashboard.py:912 -#: src/pyams_content/root/zmi/__init__.py:707 -#, python-format -msgid "CONTRIBUTORS - Last {0} published contents" -msgstr "TOUS CONTRIBUTEURS - Les {0} dernières publications" - -#: src/pyams_content/shared/common/zmi/dashboard.py:914 -#: src/pyams_content/root/zmi/__init__.py:709 -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:981 -#: src/pyams_content/root/zmi/__init__.py:775 -#, python-format -msgid "CONTRIBUTORS - Last {0} updated contents" -msgstr "TOUS CONTRIBUTEURS - Les {0} dernières modifications" - -#: src/pyams_content/shared/common/zmi/dashboard.py:983 -#: src/pyams_content/root/zmi/__init__.py:777 -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:304 +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 "SEARCH - Between all contents of type « {type} »" -msgstr "RECHERCHE - Tous contenus « {type} » confondus" - -#: src/pyams_content/shared/common/zmi/dashboard.py:166 -#: src/pyams_content/shared/common/zmi/header.py:91 -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:272 -msgid "Activated publication checks?" -msgstr "Tunnel de publication activé" - -#: src/pyams_content/shared/common/zmi/security.py:219 -msgid "Managers restrictions" -msgstr "Paramètres des responsables" - -#: src/pyams_content/shared/common/zmi/security.py:228 -msgid "Content managers restrictions" -msgstr "Liste des responsables" - -#: src/pyams_content/shared/common/zmi/security.py:261 -msgid "Manager name" -msgstr "Nom du responsable" - -#: src/pyams_content/shared/common/zmi/security.py:289 -msgid "Restricted" -msgstr "Restrictions" - -#: src/pyams_content/shared/common/zmi/security.py:306 -msgid "Owners" -msgstr "Propriétaires" - -#: src/pyams_content/shared/common/zmi/security.py:396 -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:355 -#, 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:402 -msgid "Apply contents restrictions" -msgstr "Appliquer des restrictions d'accès" - -#: src/pyams_content/shared/common/zmi/security.py:404 -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:79 -#, python-format -msgid "{state} by {principal}" -msgstr "{state} par {principal}" - -#: src/pyams_content/shared/common/zmi/header.py:112 -#, python-format -msgid "since {date}" -msgstr "depuis {date}" - -#: src/pyams_content/shared/common/zmi/header.py:124 -msgid "access published version" -msgstr "accéder à la version en ligne" - -#: src/pyams_content/shared/common/zmi/header.py:131 -msgid "access new version" -msgstr "accéder à la version en préparation" - -#: src/pyams_content/shared/common/zmi/header.py:141 -msgid "access waiting version" -msgstr "accéder à la version en attente" - -#: src/pyams_content/shared/common/zmi/header.py:152 -msgid "access retired version" -msgstr "accéder à la version retirée" - -#: src/pyams_content/shared/common/zmi/header.py:162 -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 "[{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:55 +msgid "Ask for review..." +msgstr "Demander une relecture" + +#: src/pyams_content/features/review/zmi/__init__.py:94 +msgid "Content review request" +msgstr "Demande de relecture" + +#: src/pyams_content/features/review/zmi/__init__.py:159 +msgid "Comments" +msgstr "Commentaires" + +#: src/pyams_content/features/review/zmi/__init__.py:179 +msgid "Review comments" +msgstr "Commentaires associés à cette version" + +#: src/pyams_content/features/review/zmi/__init__.py:65 +msgid "Sought principals" +msgstr "Relecteurs sollicités" + +#: src/pyams_content/features/review/zmi/__init__.py:66 +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:69 +msgid "Comment" +msgstr "Commentaire" + +#: src/pyams_content/features/review/zmi/__init__.py:70 +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:73 +msgid "Notify all reviewers" +msgstr "Notifier tous les relecteurs" + +#: src/pyams_content/features/review/zmi/__init__.py:74 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: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 +"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:85 +msgid "Ask for content review" +msgstr "Demander la relecture" + +#: src/pyams_content/features/review/zmi/__init__.py:140 +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:256 +msgid "Message is mandatory!" +msgstr "Un commentaire est obligatoire !" + +#: src/pyams_content/features/review/zmi/__init__.py:128 +#, 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-json.pt:15 +#: src/pyams_content/features/review/zmi/templates/review-comments.pt:32 +#: 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-json.pt:21 +#: src/pyams_content/features/review/zmi/templates/review-comments.pt:38 +#: 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-json.pt:30 +#: src/pyams_content/features/review/zmi/templates/review-comments.pt:47 +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-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 "" -"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 +"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 "" -"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 +"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 "" -"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:130 -#: src/pyams_content/root/zmi/templates/advanced-search.pt:130 -msgid "Created between" -msgstr "Créé entre le" - -#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:142 -#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:168 -#: src/pyams_content/root/zmi/templates/advanced-search.pt:142 -#: src/pyams_content/root/zmi/templates/advanced-search.pt:168 -msgid "and" -msgstr "et le" - -#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:156 -#: src/pyams_content/root/zmi/templates/advanced-search.pt:156 -msgid "Modified between" -msgstr "Modifié entre le" - -#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:214 -#: src/pyams_content/root/zmi/templates/advanced-search.pt:211 -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 +"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/review/zmi/templates/review-add-comment.pt:22 +msgid "just now" +msgstr "À l'instant !" + +#: src/pyams_content/features/renderer/zmi/__init__.py:67 +#: src/pyams_content/features/renderer/zmi/templates/renderer-input.pt:4 +msgid "Edit renderer properties" +msgstr "Propriétés de ce mode de rendu" + +#: 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/footer/interfaces.py:39 +msgid "Footer template" +msgstr "Mode de rendu" + +#: src/pyams_content/features/footer/interfaces.py:40 +msgid "Presentation template used for this footer" +msgstr "Mode de rendu utilisé par ce pied de page" + +#: 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:152 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/title.py:38 -msgid "Content title" -msgstr "Titre du gabarit" - -#: src/pyams_content/shared/common/portlet/head.py:46 -msgid "Content header" -msgstr "En-tête de gabarit" - -#: src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:4 -msgid "Display breadcrumbs" -msgstr "Afficher le fil d'Ariane" - -#: src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:8 -msgid "Display title" -msgstr "Afficher le titre" - -#: src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:12 -msgid "Display tags" -msgstr "Afficher les tags" - -#: src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:16 -msgid "Display header" -msgstr "Afficher le chapô" - -#: src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:20 -msgid "Display specificities" -msgstr "Afficher les spécificités" - -#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:25 -msgid "Display breadcrumbs?" -msgstr "Afficher le fil d'Ariane ?" - -#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:29 -msgid "Display title?" -msgstr "Afficher le titre ?" - -#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:33 -msgid "Display tags?" -msgstr "Afficher les tags ?" - -#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:37 -msgid "Display header?" -msgstr "Afficher le chapô ?" - -#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:41 -msgid "Display specificities?" -msgstr "Afficher les spécificités ?" - -#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:42 -msgid "If 'no', specific content's informations won't be displayed..." -msgstr "" -"Si 'non', les informations spécifiques que le gabarit est susceptible " -"d'intégrer dans l'en-tête de page ne seront pas affichées" - -#: src/pyams_content/shared/common/interfaces/types.py:43 -#: src/pyams_content/shared/form/zmi/field.py:156 -msgid "Name" -msgstr "Nom" - -#: src/pyams_content/shared/common/interfaces/types.py:44 -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:47 +"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:220 +msgid "Footer renderer settings" +msgstr "Propriétés de ce mode de rendu" + +#: src/pyams_content/features/footer/zmi/__init__.py:107 +msgid "Don't inherit parent footer" +msgstr "Ne pas hériter du pied de pages du parent" + +#: src/pyams_content/features/menu/interfaces.py:60 +msgid "Menu title" +msgstr "Libellé" + +#: src/pyams_content/features/menu/interfaces.py:61 +msgid "Displayed menu label" +msgstr "Libellé du menu" + +#: src/pyams_content/features/menu/interfaces.py:65 +msgid "Direct reference to menu target" +msgstr "" +"Lorsque le menu est utilisé dans l'en-tête de page, référence interne vers " +"la cible du menu (site ou rubrique) permettant de mettre en évidence le menu " +"actif ; un lien sera également créé vers cette référence si le menu ne " +"contient aucun lien." + +#: src/pyams_content/features/menu/interfaces.py:69 +msgid "Name of the pictogram associated with this menu" +msgstr "" +"Pictogramme à associer à ce menu. ATTENTION: ce pictogramme n'est affiché " +"que par certains modes de rendu !!" + +#: src/pyams_content/features/menu/portlet/navigation/simple.py:67 +msgid "Simple navigation" +msgstr "Navigation à un niveau" + +#: src/pyams_content/features/menu/portlet/navigation/double.py:67 +msgid "Double navigation" +msgstr "Navigation à deux niveaux" + +#: 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/zmi/simple.py:69 +msgid "Navigation links" +msgstr "Liens de navigation" + +#: src/pyams_content/features/menu/portlet/navigation/zmi/double.py:69 +msgid "Navigation menus" +msgstr "Menus de navigation" + +#: src/pyams_content/features/menu/portlet/navigation/zmi/templates/double-preview.pt:14 +#: src/pyams_content/features/menu/portlet/navigation/zmi/templates/simple-preview.pt:11 +msgid "Link has no illustration" +msgstr "Le lien n'a pas d'illustration" + +#: src/pyams_content/features/menu/zmi/__init__.py:80 +msgid "Add menu..." +msgstr "Ajouter une entrée" + +#: src/pyams_content/features/menu/zmi/__init__.py:91 +msgid "Add new menu" +msgstr "Ajout d'un menu" + +#: src/pyams_content/features/menu/zmi/__init__.py:124 +msgid "Edit menu properties" +msgstr "Propriétés du menu" + +#: src/pyams_content/features/menu/zmi/__init__.py:218 #: src/pyams_content/shared/form/interfaces.py:60 #: src/pyams_content/shared/form/zmi/field.py:167 -#: src/pyams_content/features/menu/zmi/__init__.py:218 +#: src/pyams_content/shared/common/interfaces/types.py:47 msgid "Label" msgstr "Libellé" -#: src/pyams_content/shared/common/interfaces/types.py:50 -msgid "Navigation label" -msgstr "Libellé de navigation" - -#: src/pyams_content/shared/common/interfaces/types.py:51 -msgid "Label used for navigation entries" -msgstr "Libellé utilisé pour les entrées de navigation" - -#: src/pyams_content/shared/common/interfaces/types.py:54 -msgid "Tab-folder label" -msgstr "Libellé d'un l'onglet" - -#: src/pyams_content/shared/common/interfaces/types.py:55 -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:58 -msgid "'See also' label" -msgstr "Libellé 'À voir aussi'" - -#: src/pyams_content/shared/common/interfaces/types.py:59 -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:63 -msgid "'Single value' label" -msgstr "Libellé 'Valeur unique'" - -#: src/pyams_content/shared/common/interfaces/types.py:64 -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:67 -msgid "'Link to list' label" -msgstr "Libellé 'Lien vers une liste'" - -#: src/pyams_content/shared/common/interfaces/types.py:68 -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:71 -msgid "Next content label" -msgstr "Libellé du contenu suivant" - -#: src/pyams_content/shared/common/interfaces/types.py:72 -msgid "Label used to announce next date for this type" -msgstr "" -"Libellé utilisé pour afficher la prochaine occurence d'un contenu de ce type" - -#: src/pyams_content/shared/common/interfaces/types.py:76 -msgid "Pictogram associated with this data type" -msgstr "Pictogramme associé à ce type" - -#: src/pyams_content/shared/common/interfaces/types.py:90 -msgid "Field names" -msgstr "Champs associés" - -#: src/pyams_content/shared/common/interfaces/types.py:91 -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/types.py:125 -msgid "Data type" -msgstr "Type du contenu" - -#: src/pyams_content/shared/common/interfaces/types.py:126 -msgid "Type of content data" -msgstr "Type du contenu associé à ce gabarit" - -#: src/pyams_content/shared/common/interfaces/__init__.py:41 -#: src/pyams_content/root/interfaces.py:37 -msgid "Webmasters" -msgstr "Webmestres" - -#: src/pyams_content/shared/common/interfaces/__init__.py:42 -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:46 -msgid "Pilots" -msgstr "Pilotes" - -#: src/pyams_content/shared/common/interfaces/__init__.py:47 -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/features/menu/zmi/__init__.py:230 +msgid "Inner content" +msgstr "Contenu interne" + +#: src/pyams_content/features/menu/zmi/__init__.py:111 +msgid "Menu was correctly added." +msgstr "Le menu a été ajouté." + +#: src/pyams_content/features/menu/zmi/__init__.py:415 +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/search/__init__.py:38 +msgid "Search folder" +msgstr "Moteur de recherche" + +#: src/pyams_content/features/search/interfaces.py:36 #: src/pyams_content/shared/common/interfaces/__init__.py:52 #: src/pyams_content/shared/common/interfaces/__init__.py:196 -#: src/pyams_content/features/search/interfaces.py:36 msgid "Managers" msgstr "Responsables" +#: src/pyams_content/features/search/interfaces.py:37 #: src/pyams_content/shared/common/interfaces/__init__.py:53 #: src/pyams_content/shared/common/interfaces/__init__.py:197 -#: src/pyams_content/features/search/interfaces.py:37 msgid "" "Managers can handle main operations in tool's workflow, like publish or " "retire contents" @@ -3357,253 +2891,620 @@ "(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:58 -#: src/pyams_content/shared/common/interfaces/__init__.py:202 -msgid "Contributors" -msgstr "Contributeurs" - -#: src/pyams_content/shared/common/interfaces/__init__.py:59 -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/features/search/interfaces.py:42 #: src/pyams_content/shared/common/interfaces/__init__.py:63 #: src/pyams_content/shared/common/interfaces/__init__.py:208 -#: src/pyams_content/features/search/interfaces.py:42 msgid "Designers" msgstr "Designers" +#: src/pyams_content/features/search/interfaces.py:43 #: src/pyams_content/shared/common/interfaces/__init__.py:64 #: src/pyams_content/shared/common/interfaces/__init__.py:209 -#: src/pyams_content/features/search/interfaces.py:43 msgid "Designers are users which are allowed to manage presentation templates" msgstr "Les designers sont autorisés à configurer les modèles de présentation" -#: 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 "" -"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.
Remarque : 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:127 -msgid "Version creator" -msgstr "À l'origine de cette version" - -#: src/pyams_content/shared/common/interfaces/__init__.py:128 -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:132 -msgid "First owner" -msgstr "Premier propriétaire" - -#: src/pyams_content/shared/common/interfaces/__init__.py:133 -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:137 -msgid "Version creation" -msgstr "Date de création" - -#: src/pyams_content/shared/common/interfaces/__init__.py:140 -msgid "Version modifiers" -msgstr "Intervenants" - -#: src/pyams_content/shared/common/interfaces/__init__.py:141 -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:144 -msgid "Last modifier" -msgstr "Dernier intervenant" - -#: src/pyams_content/shared/common/interfaces/__init__.py:145 -msgid "Last principal who modified this content" -msgstr "Dernier utilisateur étant intervenu sur ce contenu" - -#: src/pyams_content/shared/common/interfaces/__init__.py:148 -msgid "Last update" -msgstr "Dernière modification" - -#: src/pyams_content/shared/common/interfaces/__init__.py:152 -msgid "Content's header is generally displayed in page header" -msgstr "Le chapô du contenu est généralement affiché en tête de page" - -#: src/pyams_content/shared/common/interfaces/__init__.py:157 -#: src/pyams_content/shared/site/interfaces.py:86 -#: src/pyams_content/shared/site/interfaces.py:131 -#: src/pyams_content/shared/blog/interfaces.py:68 -msgid "Meta-description" -msgstr "Méta-description" - -#: src/pyams_content/shared/common/interfaces/__init__.py:158 -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; if description is empty, content's header will be used." -msgstr "" -"La méta-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 ; si la description n'est pas renseignée, le chapô " -"(s'il existe pour ce contenu) sera utilisé." - -#: src/pyams_content/shared/common/interfaces/__init__.py:165 -msgid "Keywords" -msgstr "Mots-clés" - -#: src/pyams_content/shared/common/interfaces/__init__.py:166 -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:169 -#: src/pyams_content/shared/site/interfaces.py:92 -#: src/pyams_content/shared/site/interfaces.py:137 -#: src/pyams_content/shared/site/zmi/folder.py:74 -#: src/pyams_content/shared/blog/interfaces.py:74 -msgid "Notepad" -msgstr "Bloc-notes" - -#: src/pyams_content/shared/common/interfaces/__init__.py:170 -#: src/pyams_content/shared/site/interfaces.py:93 -#: src/pyams_content/shared/site/interfaces.py:138 -#: src/pyams_content/shared/site/zmi/folder.py:75 -#: src/pyams_content/shared/blog/interfaces.py:75 -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:189 -msgid "Content owner" -msgstr "Propriétaire" - -#: src/pyams_content/shared/common/interfaces/__init__.py:190 -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:203 -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:213 -msgid "Readers" -msgstr "Relecteurs" - -#: src/pyams_content/shared/common/interfaces/__init__.py:214 -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/features/search/interfaces.py:47 #: src/pyams_content/shared/common/interfaces/__init__.py:219 -#: src/pyams_content/features/search/interfaces.py:47 msgid "Guests" msgstr "Invités" +#: src/pyams_content/features/search/interfaces.py:48 #: src/pyams_content/shared/common/interfaces/__init__.py:220 -#: src/pyams_content/features/search/interfaces.py:48 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:245 -msgid "Principal ID" -msgstr "ID utilisateur" - -#: src/pyams_content/shared/common/interfaces/__init__.py:284 -#: src/pyams_content/shared/common/interfaces/__init__.py:309 -msgid "Publication checks" -msgstr "Activer le tunnel de publication" - -#: src/pyams_content/shared/common/interfaces/__init__.py:285 +#: src/pyams_content/features/search/interfaces.py:56 +#: src/pyams_content/shared/site/interfaces.py:96 +msgid "Visible in folders list" +msgstr "Visible dans la liste des rubriques ?" + +#: src/pyams_content/features/search/interfaces.py:57 +#: src/pyams_content/shared/site/interfaces.py:97 +msgid "If 'no', folder will not be displayed into folders list" +msgstr "" +"Si 'non', cette rubrique ne sera pas affichée dans la liste des rubriques " +"affichée par un composant de navigation" + +#: src/pyams_content/features/search/interfaces.py:61 +#: src/pyams_content/shared/site/interfaces.py:101 +#: src/pyams_content/shared/site/interfaces.py:165 +msgid "Navigation title" +msgstr "Titre de navigation" + +#: src/pyams_content/features/search/interfaces.py:62 +#: src/pyams_content/shared/site/interfaces.py:102 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:310 -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:315 -msgid "Restricted contents" -msgstr "Accès restreints" - -#: src/pyams_content/shared/common/interfaces/__init__.py:316 +"Folder's title displayed in navigation pages; original title will be used if " +"none is specified" +msgstr "" +"Titre de substitution affiché dans les composants de navigation ; si rien " +"n'est indiqué, le titre original de la rubrique sera utilisé" + +#: src/pyams_content/features/search/interfaces.py:66 +msgid "Selected content types" +msgstr "Gabarits sélectionnés" + +#: src/pyams_content/features/search/interfaces.py:67 +msgid "Searched content types; leave empty for all" +msgstr "" +"Gabarits sélectionnés ; si cette sélection est vide, tous les gabarits " +"seront pris en charge" + +#: src/pyams_content/features/search/interfaces.py:71 +msgid "Selected data types" +msgstr "Types de contenus sélectionnés" + +#: src/pyams_content/features/search/interfaces.py:72 +msgid "Searched data types; leave empty for all" +msgstr "" +"Types de contenus sélectionnés ; si cette sélection est vide, tous les " +"contenus (typés ou non) seront pris en charge" + +#: src/pyams_content/features/search/zmi/properties.py:36 +msgid "Main search settings" +msgstr "Paramètres de la recherche" + +#: src/pyams_content/features/search/zmi/properties.py:56 +#: src/pyams_content/shared/site/zmi/folder.py:203 +msgid "Navigation properties" +msgstr "Propriétés de navigation" + +#: src/pyams_content/features/search/zmi/__init__.py:63 +msgid "This search folder" +msgstr "Ce moteur de recherche" + +#: src/pyams_content/features/search/zmi/__init__.py:82 +msgid "Add search folder..." +msgstr "Ajouter un moteur de recherche" + +#: src/pyams_content/features/search/zmi/__init__.py:98 +msgid "Add search folder" +msgstr "Ajout d'un moteur de recherche" + +#: src/pyams_content/features/search/zmi/__init__.py:73 +#, python-format +msgid "Search folder « {title} »" +msgstr "Moteur de recherche « {title} »" + +#: src/pyams_content/features/search/zmi/theme.py:35 +msgid "Search folder tags settings" +msgstr "Paramétrage des tags du moteur de recherche" + +#: src/pyams_content/features/search/zmi/theme.py:51 +msgid "Search folder themes settings" +msgstr "Paramétrage des thèmes du moteur de recherche" + +#: src/pyams_content/features/search/zmi/theme.py:67 +msgid "Search folder collections settings" +msgstr "Paramétrage des collections du moteur de recherche" + +#: src/pyams_content/features/search/zmi/reference.py:31 +msgid "Search folder internal references settings" +msgstr "Références internes du moteur de recherche" + +#: src/pyams_content/features/checker/interfaces.py:27 +#, python-format +msgid " - {field}: no value" +msgstr " - {field} : non renseigné" + +#: src/pyams_content/features/checker/interfaces.py:28 +#, python-format +msgid " - {field} ({lang}): no value" +msgstr " - {field} ({lang}) : non renseigné" + +#: src/pyams_content/features/checker/interfaces.py:29 +#, python-format +msgid " - {field}: {message}" +msgstr " - {field} : {message}" + +#: src/pyams_content/features/checker/zmi/__init__.py:43 +#: src/pyams_content/shared/common/zmi/templates/check-input.pt:39 +msgid "Audit" +msgstr "Audit" + +#: 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 pour ce contenu." + +#: src/pyams_content/features/checker/zmi/__init__.py:78 +#, python-format +msgid "{0}:" +msgstr "{0} :" + +#: 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:161 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:321 -msgid "Selected owners" -msgstr "Propriétaires" - -#: src/pyams_content/shared/common/interfaces/__init__.py:322 -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:97 -msgid "Form fields" -msgstr "Champs de saisie" - -#: src/pyams_content/shared/form/__init__.py:98 -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é" +"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:229 +msgid "Header renderer settings" +msgstr "Propriétés de ce mode de rendu" + +#: src/pyams_content/features/header/zmi/__init__.py:113 +msgid "Don't inherit parent header" +msgstr "Ne pas hériter de l'en-tête de pages du parent" + +#: src/pyams_content/zmi/viewlet/toplinks/__init__.py:43 +msgid "Shared sites" +msgstr "Sites et blogs" + +#: src/pyams_content/zmi/viewlet/toplinks/__init__.py:64 +msgid "Shared contents" +msgstr "Gabarits" + +#: src/pyams_content/zmi/viewlet/toplinks/__init__.py:87 +msgid "Shared tools" +msgstr "Outils" + +#: src/pyams_content/zmi/viewlet/toplinks/__init__.py:110 +msgid "My roles" +msgstr "Mes rôles" + +#: src/pyams_content/zmi/viewlet/toplinks/templates/user-addings.pt:7 +msgid "Create new content" +msgstr "Créer un nouveau contenu" + +#: src/pyams_content/profile/interfaces.py:33 +msgid "User favorites" +msgstr "Favoris de l'utilisateur" + +#: src/pyams_content/profile/interfaces.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.py:37 +msgid "Default table length" +msgstr "Longueur des tableaux" + +#: src/pyams_content/profile/interfaces.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/profile/zmi/__init__.py:42 +msgid "Admin. profile" +msgstr "Profil intervenant" + +#: src/pyams_content/root/__init__.py:63 +msgid "Site root" +msgstr "Racine du site" + +#: src/pyams_content/root/interfaces.py:33 +msgid "Site managers" +msgstr "Administrateurs" + +#: src/pyams_content/root/interfaces.py:37 +#: src/pyams_content/shared/common/interfaces/__init__.py:41 +msgid "Webmasters" +msgstr "Webmestres" + +#: src/pyams_content/root/interfaces.py:41 +msgid "Templates managers" +msgstr "Designers" + +#: src/pyams_content/root/interfaces.py:45 +msgid "Operators group" +msgstr "Groupe des opérateurs" + +#: src/pyams_content/root/interfaces.py:46 +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/root/zmi/sites.py:63 +#: src/pyams_content/shared/site/zmi/container.py:173 +#: src/pyams_content/shared/site/zmi/container.py:183 +msgid "Site tree" +msgstr "Arborescence" + +#: src/pyams_content/root/zmi/sites.py:73 +msgid "Blogs and shared sites" +msgstr "Blogs et sites partagés" + +#: src/pyams_content/root/zmi/sites.py:103 +msgid "Visible site?" +msgstr "Site visible ?" + +#: src/pyams_content/root/zmi/sites.py:129 +msgid "OID" +msgstr "N° IN" + +#: src/pyams_content/root/zmi/sites.py:147 +msgid "Delete shared site" +msgstr "Supprimer ce site" + +#: src/pyams_content/root/zmi/sites.py:166 +#: src/pyams_content/shared/imagemap/zmi/container.py:175 +msgid "No provided object_name argument!" +msgstr "Argument 'object_name' non fourni !" + +#: src/pyams_content/root/zmi/sites.py:175 +msgid "Given element name doesn't exist!" +msgstr "Le nom de l'élément indiqué n'existe pas !" + +#: src/pyams_content/root/zmi/__init__.py:78 +msgid "Home" +msgstr "Accueil" + +#: src/pyams_content/root/zmi/__init__.py:110 +#: src/pyams_content/shared/common/zmi/dashboard.py:271 +msgid "Dashboard" +msgstr "Tableau de bord" + +#: src/pyams_content/root/zmi/__init__.py:159 +#: src/pyams_content/shared/common/zmi/dashboard.py:327 +#, python-format +msgid "MANAGER - {0} content waiting for your action" +msgstr "RESPONSABLE - {0} contenu en attente de votre intervention" + +#: src/pyams_content/root/zmi/__init__.py:160 +#: src/pyams_content/shared/common/zmi/dashboard.py:328 +#, python-format +msgid "MANAGER - {0} contents waiting for your action" +msgstr "RESPONSABLE - {0} contenus en attente de votre intervention" + +#: src/pyams_content/root/zmi/__init__.py:204 +#: src/pyams_content/shared/common/zmi/dashboard.py:369 +#, python-format +msgid "CONTRIBUTOR - {0} content waiting for action" +msgstr "CONTRIBUTEUR - {0} contenu soumis à un responsable" + +#: src/pyams_content/root/zmi/__init__.py:205 +#: src/pyams_content/shared/common/zmi/dashboard.py:370 +#, python-format +msgid "CONTRIBUTOR - {0} contents waiting for action" +msgstr "CONTRIBUTEUR - {0} contenus soumis à un responsable" + +#: src/pyams_content/root/zmi/__init__.py:240 +#: src/pyams_content/shared/common/zmi/dashboard.py:402 +#, python-format +msgid "CONTRIBUTOR - {0} modified content" +msgstr "CONTRIBUTEUR - {0} contenu modifié" + +#: src/pyams_content/root/zmi/__init__.py:283 +#: src/pyams_content/shared/common/zmi/dashboard.py:443 +msgid "My contents" +msgstr "Mes contenus" + +#: src/pyams_content/root/zmi/__init__.py:298 +#: src/pyams_content/root/zmi/templates/dashboard.pt:8 +#: src/pyams_content/shared/common/zmi/dashboard.py:458 +#: src/pyams_content/shared/common/zmi/templates/dashboard.pt:8 +msgid "My favorites" +msgstr "Mes favoris" + +#: src/pyams_content/root/zmi/__init__.py:307 +#: src/pyams_content/shared/common/zmi/dashboard.py:467 +#, python-format +msgid "CONTRIBUTOR - {0} favorite" +msgstr "CONTRIBUTEUR - {0} contenu favori" + +#: src/pyams_content/root/zmi/__init__.py:308 +#: src/pyams_content/shared/common/zmi/dashboard.py:468 +#, python-format +msgid "CONTRIBUTOR - {0} favorites" +msgstr "CONTRIBUTEUR - {0} contenus favoris" + +#: src/pyams_content/root/zmi/__init__.py:346 +#: src/pyams_content/shared/common/zmi/dashboard.py:543 +msgid "Your favorite contents" +msgstr "Mes contenus favoris" + +#: src/pyams_content/root/zmi/__init__.py:359 +#: src/pyams_content/shared/common/zmi/dashboard.py:556 +msgid "My drafts" +msgstr "Mes brouillons" + +#: src/pyams_content/root/zmi/__init__.py:368 +#: src/pyams_content/shared/common/zmi/dashboard.py:565 +#, python-format +msgid "CONTRIBUTOR - {0} content in preparation" +msgstr "CONTRIBUTEUR - {0} contenu en préparation" + +#: src/pyams_content/root/zmi/__init__.py:369 +#: src/pyams_content/shared/common/zmi/dashboard.py:566 +#, python-format +msgid "CONTRIBUTOR - {0} contents in preparation" +msgstr "CONTRIBUTEUR - {0} contenus en préparation" + +#: src/pyams_content/root/zmi/__init__.py:408 +#: src/pyams_content/shared/common/zmi/dashboard.py:607 +msgid "Your prepared contents" +msgstr "Mes contenus en préparation" + +#: src/pyams_content/root/zmi/__init__.py:421 +#: src/pyams_content/shared/common/zmi/dashboard.py:620 +msgid "My submissions" +msgstr "Mes demandes" + +#: src/pyams_content/root/zmi/__init__.py:430 +#: src/pyams_content/shared/common/zmi/dashboard.py:629 +#, python-format +msgid "CONTRIBUTOR - {0} submitted content" +msgstr "CONTRIBUTEUR - {0} contenu soumis à un responsable" + +#: src/pyams_content/root/zmi/__init__.py:431 +#: src/pyams_content/shared/common/zmi/dashboard.py:630 +#, python-format +msgid "CONTRIBUTOR - {0} submitted contents" +msgstr "CONTRIBUTEUR - {0} contenus soumis à un responsable" + +#: src/pyams_content/root/zmi/__init__.py:470 +#: src/pyams_content/shared/common/zmi/dashboard.py:671 +msgid "Your submitted contents" +msgstr "Mes contenus soumis à un responsable" + +#: src/pyams_content/root/zmi/__init__.py:483 +#: src/pyams_content/shared/common/zmi/dashboard.py:684 +msgid "My publications" +msgstr "Mes publications" + +#: src/pyams_content/root/zmi/__init__.py:492 +#: src/pyams_content/shared/common/zmi/dashboard.py:693 +#, python-format +msgid "CONTRIBUTOR - {0} published content" +msgstr "CONTRIBUTEUR - {0} contenu publié" + +#: src/pyams_content/root/zmi/__init__.py:493 +#: src/pyams_content/shared/common/zmi/dashboard.py:694 +#, python-format +msgid "CONTRIBUTOR - {0} published contents" +msgstr "CONTRIBUTEUR - {0} contenus publiés" + +#: src/pyams_content/root/zmi/__init__.py:532 +#: src/pyams_content/shared/common/zmi/dashboard.py:735 +msgid "Your published contents" +msgstr "Mes contenus publiés" + +#: src/pyams_content/root/zmi/__init__.py:545 +#: src/pyams_content/shared/common/zmi/dashboard.py:748 +msgid "My retired contents" +msgstr "Mes contenus retirés" + +#: src/pyams_content/root/zmi/__init__.py:554 +#: src/pyams_content/shared/common/zmi/dashboard.py:757 +#, python-format +msgid "CONTRIBUTOR - {0} retired content" +msgstr "CONTRIBUTEUR - {0} contenu retiré" + +#: src/pyams_content/root/zmi/__init__.py:555 +#: src/pyams_content/shared/common/zmi/dashboard.py:758 +#, python-format +msgid "CONTRIBUTOR - {0} retired contents" +msgstr "CONTRIBUTEUR - {0} contenus retirés" + +#: src/pyams_content/root/zmi/__init__.py:595 +#: src/pyams_content/shared/common/zmi/dashboard.py:799 +msgid "Your retired contents" +msgstr "Mes contenus retirés" + +#: src/pyams_content/root/zmi/__init__.py:608 +#: src/pyams_content/shared/common/zmi/dashboard.py:812 +msgid "My archived contents" +msgstr "Mes contenus archivés" + +#: src/pyams_content/root/zmi/__init__.py:617 +#: src/pyams_content/shared/common/zmi/dashboard.py:821 +#, python-format +msgid "CONTRIBUTOR - {0} archived content" +msgstr "CONTRIBUTEUR - {0} contenu archivé" + +#: src/pyams_content/root/zmi/__init__.py:618 +#: src/pyams_content/shared/common/zmi/dashboard.py:822 +#, python-format +msgid "CONTRIBUTOR - {0} archived contents" +msgstr "CONTRIBUTEUR - {0} contenus archivés" + +#: src/pyams_content/root/zmi/__init__.py:664 +#: src/pyams_content/shared/common/zmi/dashboard.py:869 +msgid "Your archived contents" +msgstr "Mes contenus archivés" + +#: src/pyams_content/root/zmi/__init__.py:678 +#: src/pyams_content/shared/common/zmi/dashboard.py:883 +msgid "Other interventions" +msgstr "Toutes les interventions" + +#: src/pyams_content/root/zmi/__init__.py:693 +#: src/pyams_content/shared/common/zmi/dashboard.py:898 +msgid "Last publications" +msgstr "Dernières publications" + +#: src/pyams_content/root/zmi/__init__.py:702 +#: src/pyams_content/shared/common/zmi/dashboard.py:907 +#, python-format +msgid "CONTRIBUTORS - {0} published content" +msgstr "TOUS CONTRIBUTEURS - {0} contenu publié" + +#: src/pyams_content/root/zmi/__init__.py:748 +#: src/pyams_content/shared/common/zmi/dashboard.py:954 +msgid "Last published contents" +msgstr "Derniers contenus publiés" + +#: src/pyams_content/root/zmi/__init__.py:761 +#: src/pyams_content/shared/common/zmi/dashboard.py:967 +msgid "Last updates" +msgstr "Dernières modifications" + +#: src/pyams_content/root/zmi/__init__.py:770 +#: src/pyams_content/shared/common/zmi/dashboard.py:976 +#, python-format +msgid "CONTRIBUTORS - {0} updated content" +msgstr "TOUS CONTRIBUTEURS - {0} contenu modifié" + +#: src/pyams_content/root/zmi/__init__.py:814 +#: src/pyams_content/shared/common/zmi/dashboard.py:1021 +msgid "Last updated contents" +msgstr "Derniers contenus modifiés" + +#: src/pyams_content/root/zmi/__init__.py:825 +#: src/pyams_content/shared/site/zmi/container.py:404 +msgid "Content" +msgstr "Contenu" + +#: src/pyams_content/root/zmi/__init__.py:245 +#: src/pyams_content/shared/common/zmi/dashboard.py:407 +#, python-format +msgid "CONTRIBUTOR - {0} modified contents" +msgstr "CONTRIBUTEUR - {0} contenus modifiés" + +#: src/pyams_content/root/zmi/__init__.py:247 +#: src/pyams_content/shared/common/zmi/dashboard.py:409 +#, python-format +msgid "CONTRIBUTOR - Last {0} modified contents" +msgstr "CONTRIBUTEUR - Les {0} dernières modifications" + +#: src/pyams_content/root/zmi/__init__.py:707 +#: src/pyams_content/shared/common/zmi/dashboard.py:912 +#, python-format +msgid "CONTRIBUTORS - Last {0} published contents" +msgstr "TOUS CONTRIBUTEURS - Les {0} dernières publications" + +#: src/pyams_content/root/zmi/__init__.py:709 +#: src/pyams_content/shared/common/zmi/dashboard.py:914 +msgid "CONTRIBUTORS - Last published contents (in the limit of 50)" +msgstr "TOUS CONTRIBUTEURS - Les {0} dernières publications" + +#: src/pyams_content/root/zmi/__init__.py:775 +#: src/pyams_content/shared/common/zmi/dashboard.py:981 +#, python-format +msgid "CONTRIBUTORS - Last {0} updated contents" +msgstr "TOUS CONTRIBUTEURS - Les {0} dernières modifications" + +#: src/pyams_content/root/zmi/__init__.py:777 +#: src/pyams_content/shared/common/zmi/dashboard.py:983 +msgid "CONTRIBUTORS - Last updated contents (in the limit of 50)" +msgstr "TOUS CONTRIBUTEURS - Les {0} dernières modifications" + +#: src/pyams_content/root/zmi/search.py:95 +#: src/pyams_content/shared/common/zmi/search.py:96 +msgid "Quick search results" +msgstr "Résultats de la recherche rapide" + +#: src/pyams_content/root/zmi/search.py:152 +#: src/pyams_content/root/zmi/search.py:188 +#: src/pyams_content/shared/common/zmi/search.py:162 +#: src/pyams_content/shared/common/zmi/search.py:204 +msgid "Advanced search" +msgstr "Recherche avancée" + +#: src/pyams_content/root/zmi/search.py:280 +#: src/pyams_content/shared/common/zmi/search.py:332 +msgid "Advanced search results" +msgstr "Résultats de la recherche avancée" + +#: src/pyams_content/root/zmi/search.py:160 +msgid "Content types" +msgstr "Types de contenus" + +#: src/pyams_content/root/zmi/search.py:164 +#: src/pyams_content/shared/common/zmi/dashboard.py:226 +#: src/pyams_content/shared/common/zmi/search.py:170 +msgid "Owner" +msgstr "Propriétaire" + +#: src/pyams_content/root/zmi/search.py:167 +#: src/pyams_content/shared/common/zmi/search.py:177 +msgid "Created after..." +msgstr "Créé entre le" + +#: src/pyams_content/root/zmi/search.py:170 +#: src/pyams_content/shared/common/zmi/search.py:180 +msgid "Created before..." +msgstr "et le" + +#: src/pyams_content/root/zmi/search.py:173 +#: src/pyams_content/shared/common/zmi/search.py:183 +msgid "Modified after..." +msgstr "Modifié entre le" + +#: src/pyams_content/root/zmi/search.py:176 +#: src/pyams_content/shared/common/zmi/search.py:186 +msgid "Modified before..." +msgstr "et le" + +#: 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/zmi/templates/dashboard.pt:29 +#: src/pyams_content/shared/common/zmi/templates/dashboard.pt:29 +msgid "Quick search..." +msgstr "Recherche rapide..." + +#: src/pyams_content/root/zmi/templates/dashboard.pt:35 +#: src/pyams_content/shared/common/zmi/templates/dashboard.pt:35 +msgid "Advanced search..." +msgstr "Recherche avancée..." + +#: src/pyams_content/root/zmi/templates/dashboard.pt:49 +#: src/pyams_content/shared/common/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/root/zmi/templates/advanced-search.pt:130 +#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:130 +msgid "Created between" +msgstr "Créé entre le" + +#: src/pyams_content/root/zmi/templates/advanced-search.pt:142 +#: src/pyams_content/root/zmi/templates/advanced-search.pt:168 +#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:142 +#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:168 +msgid "and" +msgstr "et le" + +#: src/pyams_content/root/zmi/templates/advanced-search.pt:156 +#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:156 +msgid "Modified between" +msgstr "Modifié entre le" + +#: src/pyams_content/root/zmi/templates/advanced-search.pt:211 +#: src/pyams_content/shared/common/zmi/templates/advanced-search.pt:214 +msgid "Tab label" +msgstr "Libellé de l'onglet" #: src/pyams_content/shared/form/field.py:146 msgid "Text" @@ -3645,6 +3546,22 @@ msgid "List" msgstr "Choix multiples dans une liste" +#: 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/__init__.py:97 +msgid "Form fields" +msgstr "Champs de saisie" + +#: src/pyams_content/shared/form/__init__.py:98 +msgid "no field defined" +msgstr "aucun champ défini" + #: src/pyams_content/shared/form/interfaces.py:33 msgid "Form" msgstr "Formulaire" @@ -3800,24 +3717,15 @@ 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:69 msgid "Form fields..." msgstr "Champs de saisie" +#: src/pyams_content/shared/form/zmi/field.py:156 +#: src/pyams_content/shared/common/interfaces/types.py:43 +msgid "Name" +msgstr "Nom" + #: src/pyams_content/shared/form/zmi/field.py:211 msgid "Form fields list" msgstr "Liste des champs du formulaire" @@ -3843,23 +3751,19 @@ msgid "Specified name is already used!" msgstr "Le nom indiqué pour ce champ est déjà utilisé !" -#: src/pyams_content/shared/news/interfaces.py:29 -msgid "News topic" -msgstr "Actualité" - -#: 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 +#: 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 "News topic « {title} »" -msgstr "Actualité « {title} »" +msgid "Form « {title} »" +msgstr "Formulaire « {title} »" #: src/pyams_content/shared/view/merge.py:59 msgid "Concatenate views items in order" @@ -3915,12 +3819,6 @@ 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.py:37 -#: src/pyams_content/interfaces/__init__.py:113 -#: src/pyams_content/features/review/interfaces.py:74 -msgid "Creation date" -msgstr "Date de création" - #: src/pyams_content/shared/view/interfaces.py:38 msgid "Last update date" msgstr "Date de dernière modification" @@ -4066,44 +3964,6 @@ msgid "Other collections" msgstr "Autres collections" -#: src/pyams_content/shared/view/zmi/properties.py:45 -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:67 -msgid "View tags settings" -msgstr "Paramétrage des tags de la vue" - -#: src/pyams_content/shared/view/zmi/theme.py:113 -msgid "View themes settings" -msgstr "Paramétrage des thèmes de la vue" - -#: src/pyams_content/shared/view/zmi/theme.py:159 -msgid "View collections settings" -msgstr "Paramétrage des collections 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:87 msgid "View items" msgstr "Contenu d'une vue" @@ -4203,19 +4063,1501 @@ msgid "No result found" msgstr "aucun" -#: src/pyams_content/shared/imagemap/paragraph.py:88 -msgid "no selected image map" -msgstr "aucune image cliquable sélectionnée" - -#: src/pyams_content/shared/imagemap/paragraph.py:94 +#: src/pyams_content/shared/view/zmi/properties.py:45 +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:67 +msgid "View tags settings" +msgstr "Paramétrage des tags de la vue" + +#: src/pyams_content/shared/view/zmi/theme.py:113 +msgid "View themes settings" +msgstr "Paramétrage des thèmes de la vue" + +#: src/pyams_content/shared/view/zmi/theme.py:159 +msgid "View collections settings" +msgstr "Paramétrage des collections 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/blog/interfaces.py:30 +msgid "Blog post" +msgstr "Article (dans un blog)" + +#: src/pyams_content/shared/blog/interfaces.py:68 +#: src/pyams_content/shared/common/interfaces/__init__.py:157 +#: src/pyams_content/shared/site/interfaces.py:86 +#: src/pyams_content/shared/site/interfaces.py:131 +msgid "Meta-description" +msgstr "Méta-description" + +#: src/pyams_content/shared/blog/interfaces.py:69 +msgid "" +"The blog'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; " +"if description is empty, content's header will be used." +msgstr "" +"La méta-description du blog 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 ; si la description n'est pas renseignée, le chapô " +"(s'il existe pour ce contenu) sera utilisé." + +#: src/pyams_content/shared/blog/interfaces.py:74 +#: src/pyams_content/shared/common/interfaces/__init__.py:169 +#: src/pyams_content/shared/site/interfaces.py:92 +#: src/pyams_content/shared/site/interfaces.py:137 +#: src/pyams_content/shared/site/zmi/folder.py:74 +msgid "Notepad" +msgstr "Bloc-notes" + +#: src/pyams_content/shared/blog/interfaces.py:75 +#: src/pyams_content/shared/common/interfaces/__init__.py:170 +#: src/pyams_content/shared/site/interfaces.py:93 +#: src/pyams_content/shared/site/interfaces.py:138 +#: src/pyams_content/shared/site/zmi/folder.py:75 +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/blog/zmi/manager.py:57 +msgid "Blog management" +msgstr "Gérer ce blog" + +#: src/pyams_content/shared/blog/zmi/manager.py:80 +#: src/pyams_content/shared/blog/zmi/manager.py:94 +msgid "Add blog manager" +msgstr "Ajouter un blog" + +#: src/pyams_content/shared/blog/zmi/manager.py:93 +msgid "Blog manager" +msgstr "Blog" + +#: src/pyams_content/shared/blog/zmi/manager.py:148 +msgid "Blog properties" +msgstr "Propriétés du blog" + +#: src/pyams_content/shared/blog/zmi/manager.py:163 +#: src/pyams_content/shared/blog/zmi/manager.py:175 +#: src/pyams_content/shared/site/zmi/container.py:101 +#: src/pyams_content/shared/site/zmi/container.py:113 +msgid "Publication dates..." +msgstr "Dates de publication" + +#: src/pyams_content/shared/blog/zmi/manager.py:189 +#: src/pyams_content/shared/site/zmi/container.py:127 +msgid "Update publication dates" +msgstr "Dates de publication" + +#: src/pyams_content/shared/blog/zmi/manager.py:124 +#: src/pyams_content/shared/site/zmi/manager.py:163 +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/blog/zmi/manager.py:128 +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:132 +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/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 « {title} »" + +#: src/pyams_content/shared/common/__init__.py:243 +#: src/pyams_content/shared/common/zmi/properties.py:69 +#: src/pyams_content/shared/common/zmi/manager.py:96 +msgid "Properties" +msgstr "Propriétés" + +#: src/pyams_content/shared/common/__init__.py:153 +#: src/pyams_content/shared/common/__init__.py:161 +#, python-format +msgid "{date} by {principal}" +msgstr "{date} par {principal}" + +#: src/pyams_content/shared/common/__init__.py:266 +#, 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/interfaces/types.py:44 +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:50 +msgid "Navigation label" +msgstr "Libellé de navigation" + +#: src/pyams_content/shared/common/interfaces/types.py:51 +msgid "Label used for navigation entries" +msgstr "Libellé utilisé pour les entrées de navigation" + +#: src/pyams_content/shared/common/interfaces/types.py:54 +msgid "Tab-folder label" +msgstr "Libellé d'un l'onglet" + +#: src/pyams_content/shared/common/interfaces/types.py:55 +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:58 +msgid "'See also' label" +msgstr "Libellé 'À voir aussi'" + +#: src/pyams_content/shared/common/interfaces/types.py:59 +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:63 +msgid "'Single value' label" +msgstr "Libellé 'Valeur unique'" + +#: src/pyams_content/shared/common/interfaces/types.py:64 +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:67 +msgid "'Link to list' label" +msgstr "Libellé 'Lien vers une liste'" + +#: src/pyams_content/shared/common/interfaces/types.py:68 +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:71 +msgid "Next content label" +msgstr "Libellé du contenu suivant" + +#: src/pyams_content/shared/common/interfaces/types.py:72 +msgid "Label used to announce next date for this type" +msgstr "" +"Libellé utilisé pour afficher la prochaine occurence d'un contenu de ce type" + +#: src/pyams_content/shared/common/interfaces/types.py:76 +msgid "Pictogram associated with this data type" +msgstr "Pictogramme associé à ce type" + +#: src/pyams_content/shared/common/interfaces/types.py:90 +msgid "Field names" +msgstr "Champs associés" + +#: src/pyams_content/shared/common/interfaces/types.py:91 +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/types.py:125 +msgid "Data type" +msgstr "Type du contenu" + +#: src/pyams_content/shared/common/interfaces/types.py:126 +msgid "Type of content data" +msgstr "Type du contenu associé à ce gabarit" + +#: src/pyams_content/shared/common/interfaces/__init__.py:42 +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:46 +msgid "Pilots" +msgstr "Pilotes" + +#: src/pyams_content/shared/common/interfaces/__init__.py:47 +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:58 +#: src/pyams_content/shared/common/interfaces/__init__.py:202 +msgid "Contributors" +msgstr "Contributeurs" + +#: src/pyams_content/shared/common/interfaces/__init__.py:59 +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 "" +"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.
Remarque : 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:127 +msgid "Version creator" +msgstr "À l'origine de cette version" + +#: src/pyams_content/shared/common/interfaces/__init__.py:128 +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:132 +msgid "First owner" +msgstr "Premier propriétaire" + +#: src/pyams_content/shared/common/interfaces/__init__.py:133 +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:137 +msgid "Version creation" +msgstr "Date de création" + +#: src/pyams_content/shared/common/interfaces/__init__.py:140 +msgid "Version modifiers" +msgstr "Intervenants" + +#: src/pyams_content/shared/common/interfaces/__init__.py:141 +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:144 +msgid "Last modifier" +msgstr "Dernier intervenant" + +#: src/pyams_content/shared/common/interfaces/__init__.py:145 +msgid "Last principal who modified this content" +msgstr "Dernier utilisateur étant intervenu sur ce contenu" + +#: src/pyams_content/shared/common/interfaces/__init__.py:148 +msgid "Last update" +msgstr "Dernière modification" + +#: src/pyams_content/shared/common/interfaces/__init__.py:152 +msgid "Content's header is generally displayed in page header" +msgstr "Le chapô du contenu est généralement affiché en tête de page" + +#: src/pyams_content/shared/common/interfaces/__init__.py:158 +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; if description is empty, content's header will be used." +msgstr "" +"La méta-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 ; si la description n'est pas renseignée, le chapô " +"(s'il existe pour ce contenu) sera utilisé." + +#: src/pyams_content/shared/common/interfaces/__init__.py:165 +msgid "Keywords" +msgstr "Mots-clés" + +#: src/pyams_content/shared/common/interfaces/__init__.py:166 +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:189 +msgid "Content owner" +msgstr "Propriétaire" + +#: src/pyams_content/shared/common/interfaces/__init__.py:190 +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:203 +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:213 +msgid "Readers" +msgstr "Relecteurs" + +#: src/pyams_content/shared/common/interfaces/__init__.py:214 +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:245 +msgid "Principal ID" +msgstr "ID utilisateur" + +#: src/pyams_content/shared/common/interfaces/__init__.py:284 +#: src/pyams_content/shared/common/interfaces/__init__.py:309 +msgid "Publication checks" +msgstr "Activer le tunnel de publication" + +#: src/pyams_content/shared/common/interfaces/__init__.py:285 +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:310 +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:315 +msgid "Restricted contents" +msgstr "Accès restreints" + +#: src/pyams_content/shared/common/interfaces/__init__.py:316 +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:321 +msgid "Selected owners" +msgstr "Propriétaires" + +#: src/pyams_content/shared/common/interfaces/__init__.py:322 +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/common/portlet/title.py:38 +msgid "Content title" +msgstr "Titre du gabarit" + +#: src/pyams_content/shared/common/portlet/head.py:46 +msgid "Content header" +msgstr "En-tête de gabarit" + +#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:25 +msgid "Display breadcrumbs?" +msgstr "Afficher le fil d'Ariane ?" + +#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:29 +msgid "Display title?" +msgstr "Afficher le titre ?" + +#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:33 +msgid "Display tags?" +msgstr "Afficher les tags ?" + +#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:37 +msgid "Display header?" +msgstr "Afficher le chapô ?" + +#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:41 +msgid "Display specificities?" +msgstr "Afficher les spécificités ?" + +#: src/pyams_content/shared/common/portlet/interfaces/__init__.py:42 +msgid "If 'no', specific content's informations won't be displayed..." +msgstr "" +"Si 'non', les informations spécifiques que le gabarit est susceptible " +"d'intégrer dans l'en-tête de page ne seront pas affichées" + +#: src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:4 +msgid "Display breadcrumbs" +msgstr "Afficher le fil d'Ariane" + +#: src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:8 +msgid "Display title" +msgstr "Afficher le titre" + +#: src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:12 +msgid "Display tags" +msgstr "Afficher les tags" + +#: src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:16 +msgid "Display header" +msgstr "Afficher le chapô" + +#: src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:20 +msgid "Display specificities" +msgstr "Afficher les spécificités" + +#: src/pyams_content/shared/common/zmi/portal.py:44 +msgid "Edit default template properties" +msgstr "Modèle de présentation par défaut" + +#: src/pyams_content/shared/common/zmi/portal.py:54 +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:70 +msgid "Use tool default template" +msgstr "Utiliser le modèle de présentation par défaut de ce gabarit" + +#: src/pyams_content/shared/common/zmi/properties.py:59 +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/site.py:38 +#, python-format +msgid "" +"SEARCH - Between all contents published into « {site} »" +msgstr "" +"RECHERCHE - Tous contenus présents dans « {site} » " +"confondus" + +#: src/pyams_content/shared/common/zmi/header.py:79 +#, python-format +msgid "{state} by {principal}" +msgstr "{state} par {principal}" + +#: src/pyams_content/shared/common/zmi/header.py:112 +#, python-format +msgid "since {date}" +msgstr "depuis {date}" + +#: src/pyams_content/shared/common/zmi/header.py:91 +#: src/pyams_content/shared/common/zmi/dashboard.py:166 +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/header.py:124 +msgid "access published version" +msgstr "accéder à la version en ligne" + +#: src/pyams_content/shared/common/zmi/header.py:131 +msgid "access new version" +msgstr "accéder à la version en préparation" + +#: src/pyams_content/shared/common/zmi/header.py:141 +msgid "access waiting version" +msgstr "accéder à la version en attente" + +#: src/pyams_content/shared/common/zmi/header.py:152 +msgid "access retired version" +msgstr "accéder à la version retirée" + +#: src/pyams_content/shared/common/zmi/header.py:162 +msgid "access archived version" +msgstr "accéder à la version archivée" + +#: 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 cet outil" + +#: src/pyams_content/shared/common/zmi/types.py:69 +msgid "Data types" +msgstr "Types de contenus" + +#: src/pyams_content/shared/common/zmi/types.py:147 +msgid "Data type label" +msgstr "Libellé du type" + +#: src/pyams_content/shared/common/zmi/types.py:187 +#: src/pyams_content/shared/common/zmi/types.py:427 +msgid "Default associations" +msgstr "Liens et pièces jointes par défaut" + +#: src/pyams_content/shared/common/zmi/types.py:203 +msgid "Default themes" +msgstr "Thèmes par défaut" + +#: src/pyams_content/shared/common/zmi/types.py:231 +msgid "Content data types" +msgstr "Types de contenus" + +#: src/pyams_content/shared/common/zmi/types.py:254 +msgid "Add data type" +msgstr "Ajouter un type" + +#: src/pyams_content/shared/common/zmi/types.py:266 +msgid "Add new data type" +msgstr "Ajout d'un type de contenu" + +#: src/pyams_content/shared/common/zmi/types.py:309 +msgid "Data type properties" +msgstr "Propriétés du type de contenu" + +#: src/pyams_content/shared/common/zmi/types.py:390 +msgid "Subtype label" +msgstr "Libellé du sous-type" + +#: src/pyams_content/shared/common/zmi/types.py:471 +msgid "Add subtype" +msgstr "Ajouter un sous-type" + +#: src/pyams_content/shared/common/zmi/types.py:483 +msgid "Add new subtype" +msgstr "Ajout d'un sous-type de contenu" + +#: src/pyams_content/shared/common/zmi/types.py:530 +msgid "Data subtype properties" +msgstr "Propriétés du fichier standard" + +#: src/pyams_content/shared/common/zmi/types.py:572 +msgid "Select content type..." +msgstr "Sélectionnez un type de contenu..." + +#: src/pyams_content/shared/common/zmi/types.py:114 +msgid "No currently defined data type." +msgstr "Aucun type de contenu n'est actuellement défini." + +#: src/pyams_content/shared/common/zmi/types.py:299 +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:506 +msgid "Subtype was correctly added." +msgstr "Le sous-type a été ajouté." + +#: src/pyams_content/shared/common/zmi/types.py:520 +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:159 +msgid "Click to see subtypes" +msgstr "Montrer ou caher les sous-types" + +#: src/pyams_content/shared/common/zmi/types.py:610 +#, python-format +msgid "Custom properties for type « {0} »" +msgstr "Propriétés spécifiques au type « {0} »" + +#: src/pyams_content/shared/common/zmi/dashboard.py:129 +msgid "Unique ID" +msgstr "N° IN" + +#: src/pyams_content/shared/common/zmi/dashboard.py:149 +#: src/pyams_content/shared/common/zmi/search.py:173 +msgid "Status" +msgstr "Statut" + +#: src/pyams_content/shared/common/zmi/dashboard.py:176 +msgid "Status date" +msgstr "En date du" + +#: src/pyams_content/shared/common/zmi/dashboard.py:193 +#: src/pyams_content/shared/common/zmi/summary.py:167 +msgid "Version" +msgstr "Version" + +#: src/pyams_content/shared/common/zmi/dashboard.py:208 +msgid "Status principal" +msgstr "Intervenant" + +#: src/pyams_content/shared/common/zmi/dashboard.py:248 +msgid "Last modification" +msgstr "Dernière modification" + +#: src/pyams_content/shared/common/zmi/dashboard.py:281 +msgid "Contents dashboard" +msgstr "Mon tableau de bord" + +#: 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:304 #, python-format -msgid "image map '{0}' can't be found" -msgstr "l'image cliquable '{0}' est introuvable" - -#: src/pyams_content/shared/imagemap/paragraph.py:102 +msgid "SEARCH - Between all contents of type « {type} »" +msgstr "RECHERCHE - Tous contenus « {type} » confondus" + +#: src/pyams_content/shared/common/zmi/rename.py:58 +msgid "Change URL..." +msgstr "Changer d'URL" + +#: src/pyams_content/shared/common/zmi/rename.py:75 +msgid "Change item URL" +msgstr "Modification de l'URL" + +#: src/pyams_content/shared/common/zmi/rename.py:82 +msgid "Item URL part" +msgstr "URL du contenu" + +#: src/pyams_content/shared/common/zmi/rename.py:83 +msgid "URL part used to access this content" +msgstr "Portion de l'URL utilisée pour accéder à ce contenu" + +#: src/pyams_content/shared/common/zmi/rename.py:123 +msgid "You must provide an URL for this item!" +msgstr "Vous devez fournir une URL pour ce contenu !" + +#: 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:272 +msgid "Activated publication checks?" +msgstr "Tunnel de publication activé" + +#: src/pyams_content/shared/common/zmi/security.py:219 +msgid "Managers restrictions" +msgstr "Paramètres des responsables" + +#: src/pyams_content/shared/common/zmi/security.py:228 +msgid "Content managers restrictions" +msgstr "Liste des responsables" + +#: src/pyams_content/shared/common/zmi/security.py:261 +msgid "Manager name" +msgstr "Nom du responsable" + +#: src/pyams_content/shared/common/zmi/security.py:289 +msgid "Restricted" +msgstr "Restrictions" + +#: src/pyams_content/shared/common/zmi/security.py:306 +msgid "Owners" +msgstr "Propriétaires" + +#: src/pyams_content/shared/common/zmi/security.py:396 +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:355 +#, 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:402 +msgid "Apply contents restrictions" +msgstr "Appliquer des restrictions d'accès" + +#: src/pyams_content/shared/common/zmi/security.py:404 +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/__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:86 +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:332 +#, 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:377 +msgid "Created or modified in this version" +msgstr "Créé ou modifié dans cette version" + +#: 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/workflow.py:845 +msgid "Prior checks" +msgstr "Contrôles préalables : avez-vous ?" + +#: src/pyams_content/shared/common/zmi/workflow.py:120 +msgid "Request publication" +msgstr "Demander la publication" + +#: src/pyams_content/shared/common/zmi/workflow.py:207 +#: src/pyams_content/workflow/__init__.py:316 +msgid "Cancel publication request" +msgstr "Annuler la demande de publication" + +#: src/pyams_content/shared/common/zmi/workflow.py:247 +msgid "Refuse publication request" +msgstr "Refuser la demande de publication" + +#: src/pyams_content/shared/common/zmi/workflow.py:301 +#: src/pyams_content/workflow/basic.py:197 +msgid "Publish" +msgstr "Publier" + +#: src/pyams_content/shared/common/zmi/workflow.py:392 +msgid "Request retire" +msgstr "Demander le retrait" + +#: src/pyams_content/shared/common/zmi/workflow.py:448 +msgid "Cancel retire request" +msgstr "Annuler la demande de retrait" + +#: src/pyams_content/shared/common/zmi/workflow.py:488 +msgid "Retire" +msgstr "Retirer" + +#: src/pyams_content/shared/common/zmi/workflow.py:529 +#: src/pyams_content/workflow/__init__.py:437 +msgid "Request archive" +msgstr "Demander l'archivage" + +#: src/pyams_content/shared/common/zmi/workflow.py:572 +msgid "Cancel archive request" +msgstr "Annuler la demande d'archivage" + +#: src/pyams_content/shared/common/zmi/workflow.py:612 +msgid "Archive" +msgstr "Archiver" + +#: src/pyams_content/shared/common/zmi/workflow.py:653 +#: 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 +#: src/pyams_content/workflow/basic.py:225 +#: src/pyams_content/workflow/basic.py:237 +msgid "Create new version" +msgstr "Créer une nouvelle version" + +#: src/pyams_content/shared/common/zmi/workflow.py:704 +#: src/pyams_content/workflow/__init__.py:562 +#: src/pyams_content/workflow/basic.py:249 +msgid "Delete version" +msgstr "Supprimer cette version" + +#: src/pyams_content/shared/common/zmi/workflow.py:791 +msgid "Previewed content?" +msgstr "Prévisualisé ce contenu ?" + +#: src/pyams_content/shared/common/zmi/workflow.py:795 +msgid "Verified content?" +msgstr "Audité ce contenu ?" + +#: src/pyams_content/shared/common/zmi/workflow.py:177 +#: src/pyams_content/shared/common/zmi/workflow.py:361 +msgid "Publication start date is required" +msgstr "La date de début de publication est obligatoire" + +#: src/pyams_content/shared/common/zmi/workflow.py:270 +#: src/pyams_content/shared/common/zmi/workflow.py:418 +msgid "A comment is required" +msgstr "Le commentaire est obligatoire" + +#: src/pyams_content/shared/common/zmi/workflow.py:730 +msgid "Delete content" +msgstr "Supprimer définitivement ce contenu" + +#: src/pyams_content/shared/common/zmi/workflow.py:739 +msgid "Delete definitively" +msgstr "Supprimer définitivement" + +#: src/pyams_content/shared/common/zmi/workflow.py:868 +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:84 +#, python-format +msgid "{state} | by {principal}" +msgstr "{state} | par {principal}" + +#: src/pyams_content/shared/common/zmi/workflow.py:871 +msgid "" +"You must confirm that you checked this content before requesting " +"publication!!" +msgstr "Vous devez avoir audité ce contenu avant de pouvoir le publier !!" + +#: src/pyams_content/shared/common/zmi/workflow.py:80 +#: src/pyams_content/workflow/__init__.py:649 +#: src/pyams_content/workflow/__init__.py:620 +#: src/pyams_content/workflow/basic.py:316 +#: src/pyams_content/workflow/basic.py:287 +#, python-format +msgid "{state} {date}" +msgstr "{state} {date}" + +#: src/pyams_content/shared/common/zmi/reverse.py:57 +msgid "Reverse links" +msgstr "Liens amont" + +#: src/pyams_content/shared/common/zmi/reverse.py:66 +msgid "Content's internal links" +msgstr "Autres contenus qui pointent vers ce contenu" + +#: src/pyams_content/shared/common/zmi/summary.py:47 +msgid "Display content summary" +msgstr "Récapitulatif pour ce contenu" + +#: src/pyams_content/shared/common/zmi/summary.py:71 +msgid "Identity card" +msgstr "Carte d'identité" + +#: src/pyams_content/shared/common/zmi/summary.py:89 +msgid "Requested action" +msgstr "Évolution demandée" + +#: src/pyams_content/shared/common/zmi/summary.py:130 +msgid "Publication and retire dates" +msgstr "Dates de publication et de retrait planifiées" + +#: src/pyams_content/shared/common/zmi/summary.py:149 +msgid "Current version" +msgstr "À propos de cette version" + +#: src/pyams_content/shared/common/zmi/summary.py:185 +msgid "Content history" +msgstr "Pour mémoire" + +#: src/pyams_content/shared/common/zmi/summary.py:120 +msgid "Associated comment" +msgstr "Commentaire associé" + +#: src/pyams_content/shared/common/zmi/summary.py:110 +#, python-format +msgid "{state} {date} by {principal}" +msgstr "{state} {date} par {principal}" + +#: src/pyams_content/shared/common/zmi/summary.py:173 #, python-format -msgid "image map '{0}' is not published" -msgstr "l'image cliquable '{0}' n'est pas publiée" +msgid "{state} since {date}, by {principal}" +msgstr "{state} depuis {date} par {principal}" + +#: 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-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/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-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-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-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-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-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-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/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/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 "" +"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/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-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-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-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-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-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-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-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/news/interfaces.py:29 +msgid "News topic" +msgstr "Actualité" + +#: 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/site/manager.py:66 +#: src/pyams_content/shared/site/zmi/manager.py:121 +msgid "Site manager" +msgstr "Site" + +#: src/pyams_content/shared/site/folder.py:56 +msgid "Site folder" +msgstr "Rubrique" + +#: src/pyams_content/shared/site/link.py:43 +msgid "Content link" +msgstr "Contenu lié" + +#: src/pyams_content/shared/site/interfaces.py:147 +msgid "Site topic" +msgstr "Article (dans un site)" + +#: src/pyams_content/shared/site/interfaces.py:39 +msgid "Redirect to first visible sub-folder or content" +msgstr "Re-diriger vers le premier contenu publié" + +#: src/pyams_content/shared/site/interfaces.py:40 +msgid "Use presentation template" +msgstr "Afficher le modèle de présentation de la rubrique" + +#: src/pyams_content/shared/site/interfaces.py:83 +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.py:87 +msgid "" +"The folder'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; " +"if description is empty, content's header will be used." +msgstr "" +"La méta-description de la rubrique 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 ; si la description n'est pas renseignée, le chapô " +"(s'il existe pour ce contenu) sera utilisé." + +#: src/pyams_content/shared/site/interfaces.py:106 +msgid "Navigation mode" +msgstr "Mode de navigation" + +#: src/pyams_content/shared/site/interfaces.py:107 +msgid "Folder behaviour when navigating to folder URL" +msgstr "Comportement à adopter lorsqu'un internaute accède à cette rubrique" + +#: src/pyams_content/shared/site/interfaces.py:132 +msgid "" +"The site'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; " +"if description is empty, content's header will be used." +msgstr "" +"La méta-description du site 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 ; si la description n'est pas renseignée, le chapô " +"(s'il existe pour ce contenu) sera utilisé." + +#: src/pyams_content/shared/site/interfaces.py:166 +msgid "" +"Alternate content's title displayed in navigation pages; original title will " +"be used if none is specified" +msgstr "" +"Libellé utilisé en lieu et place du titre dans les composants de navigation " +"(notamment dans les pages carrefour) ; si rien n'est indiqué, le titre " +"original du contenu référencé sera utilisé" + +#: src/pyams_content/shared/site/interfaces.py:171 +msgid "If 'no', link is not visible" +msgstr "" +"Si 'non', le lien ne sera pas visible même si le contenu référencé est publié" + +#: src/pyams_content/shared/site/portlet/__init__.py:42 +msgid "Site summary" +msgstr "Page carrefour (site, rubrique)" + +#: src/pyams_content/shared/site/portlet/interfaces.py:24 +msgid "Button's title" +msgstr "Libellé des boutons" + +#: src/pyams_content/shared/site/portlet/interfaces.py:25 +msgid "" +"Navigation button's title is normally defined based on target's content " +"type; you can override this label by giving a custom title here" +msgstr "" +"Le libellé des boutons de navigation vers les différents contenus est " +"normalement défini par le type de la cible du lien ; mais vous pouvez " +"remplacer ce libellé par un libellé de votre choix en l'indiquant ici." + +#: src/pyams_content/shared/site/portlet/zmi/templates/site-summary-preview.pt:2 +msgid "Navigation button title:" +msgstr "Titre des boutons de navigation :" + +#: src/pyams_content/shared/site/zmi/container.py:305 +#: src/pyams_content/shared/site/zmi/container.py:151 +msgid "Visible element?" +msgstr "Élément visible ?" + +#: src/pyams_content/shared/site/zmi/container.py:306 +msgid "Switch element visibility" +msgstr "Cliquez pour rendre l'élément visible ou non" + +#: src/pyams_content/shared/site/zmi/container.py:368 +msgid "Folders and topics" +msgstr "Rubriquage" + +#: src/pyams_content/shared/site/zmi/container.py:500 +msgid "Delete site item" +msgstr "Supprimer ce contenu" + +#: src/pyams_content/shared/site/zmi/container.py:377 +msgid "Click to open/close all folders" +msgstr "Afficher/masquer toutes les rubriques" + +#: src/pyams_content/shared/site/zmi/container.py:393 +msgid "Click to show/hide inner folders" +msgstr "Cliquer pour afficher ou cache les sous-niveaux" + +#: src/pyams_content/shared/site/zmi/container.py:262 +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:53 +msgid "Site management" +msgstr "Gérer ce site" + +#: src/pyams_content/shared/site/zmi/manager.py:108 +#: src/pyams_content/shared/site/zmi/manager.py:122 +msgid "Add site manager" +msgstr "Ajouter un site" + +#: src/pyams_content/shared/site/zmi/manager.py:150 +#: src/pyams_content/shared/site/zmi/folder.py:185 +msgid "Site folder properties" +msgstr "Propriétés de la rubrique" + +#: src/pyams_content/shared/site/zmi/manager.py:167 +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:171 +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/zmi/folder.py:57 +msgid "Add site folder..." +msgstr "Ajouter une rubrique" + +#: src/pyams_content/shared/site/zmi/folder.py:89 +msgid "Add site folder" +msgstr "Ajout d'une rubrique" + +#: src/pyams_content/shared/site/zmi/folder.py:156 +msgid "Site folder management" +msgstr "Gérer cette rubrique" + +#: src/pyams_content/shared/site/zmi/folder.py:70 +#: src/pyams_content/shared/site/zmi/link.py:65 +#: src/pyams_content/shared/site/zmi/__init__.py:60 +msgid "Parent" +msgstr "Niveau parent" + +#: src/pyams_content/shared/site/zmi/folder.py:71 +#: src/pyams_content/shared/site/zmi/link.py:66 +msgid "Folder's parent" +msgstr "Niveau de rattachement de cette rubrique" + +#: src/pyams_content/shared/site/zmi/folder.py:149 +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/link.py:56 +msgid "Rent content..." +msgstr "Lier un contenu" + +#: src/pyams_content/shared/site/zmi/link.py:76 +msgid "Rent existing content" +msgstr "Lier un contenu existant" + +#: src/pyams_content/shared/site/zmi/link.py:137 +msgid "Edit content link properties" +msgstr "Propriétés du lien" + +#: src/pyams_content/shared/site/zmi/__init__.py:51 +msgid "Add topic..." +msgstr "Ajouter un article" + +#: src/pyams_content/shared/site/zmi/__init__.py:74 +#: src/pyams_content/shared/topic/zmi/__init__.py:57 +#: src/pyams_content/shared/topic/zmi/__init__.py:68 +msgid "Add topic" +msgstr "Ajout d'un article" + +#: src/pyams_content/shared/site/zmi/__init__.py:61 +msgid "Topic's parent" +msgstr "Niveau parent" + +#: src/pyams_content/shared/topic/interfaces.py:23 +msgid "Topic" +msgstr "Article" + +#: src/pyams_content/shared/topic/zmi/__init__.py:38 +msgid "This topic" +msgstr "Cet article" + +#: src/pyams_content/shared/topic/zmi/__init__.py:48 +#, python-format +msgid "Topic « {title} »" +msgstr "Article « {title} »" #: src/pyams_content/shared/imagemap/__init__.py:152 msgid "no area defined" @@ -4260,12 +5602,6 @@ msgid "List of defined map areas" msgstr "Liste des zones cliquables définies sur l'image" -#: src/pyams_content/shared/imagemap/interfaces.py:96 -#: src/pyams_content/features/alert/interfaces.py:69 -#: src/pyams_content/features/menu/interfaces.py:64 -msgid "Internal reference" -msgstr "Référence interne" - #: src/pyams_content/shared/imagemap/interfaces.py:97 msgid "Reference to image map object" msgstr "" @@ -4276,40 +5612,24 @@ msgid "Image map template" msgstr "Mode de rendu" -#: src/pyams_content/shared/imagemap/zmi/paragraph.py:50 -msgid "Image map..." -msgstr "Image cliquable" - -#: src/pyams_content/shared/imagemap/zmi/paragraph.py:63 -msgid "Add new image map" -msgstr "Ajout d'une image cliquable" - -#: src/pyams_content/shared/imagemap/zmi/paragraph.py:90 -#: src/pyams_content/shared/logo/zmi/paragraph.py:89 -msgid "Edit paragraph properties" -msgstr "Propriétés de l'image cliquable" +#: src/pyams_content/shared/imagemap/paragraph.py:88 +msgid "no selected image map" +msgstr "aucune image cliquable sélectionnée" + +#: src/pyams_content/shared/imagemap/paragraph.py:94 +#, python-format +msgid "image map '{0}' can't be found" +msgstr "l'image cliquable '{0}' est introuvable" + +#: src/pyams_content/shared/imagemap/paragraph.py:102 +#, python-format +msgid "image map '{0}' is not published" +msgstr "l'image cliquable '{0}' n'est pas publiée" #: 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" @@ -4322,11 +5642,6 @@ 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:166 -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 !" @@ -4347,301 +5662,35 @@ msgid "Edit image map properties" msgstr "Propriétés de l'image" -#: src/pyams_content/shared/topic/interfaces.py:23 -msgid "Topic" -msgstr "Article" - -#: src/pyams_content/shared/topic/zmi/__init__.py:38 -msgid "This topic" -msgstr "Cet article" - -#: src/pyams_content/shared/topic/zmi/__init__.py:57 -#: src/pyams_content/shared/topic/zmi/__init__.py:68 -#: src/pyams_content/shared/site/zmi/__init__.py:74 -msgid "Add topic" -msgstr "Ajout d'un article" - -#: src/pyams_content/shared/topic/zmi/__init__.py:48 +#: 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 "Topic « {title} »" -msgstr "Article « {title} »" - -#: src/pyams_content/shared/site/folder.py:56 -msgid "Site folder" -msgstr "Rubrique" - -#: src/pyams_content/shared/site/link.py:43 -msgid "Content link" -msgstr "Contenu lié" - -#: src/pyams_content/shared/site/manager.py:66 -#: src/pyams_content/shared/site/zmi/manager.py:121 -msgid "Site manager" -msgstr "Site" - -#: src/pyams_content/shared/site/interfaces.py:147 -msgid "Site topic" -msgstr "Article (dans un site)" - -#: src/pyams_content/shared/site/interfaces.py:39 -msgid "Redirect to first visible sub-folder or content" -msgstr "Re-diriger vers le premier contenu publié" - -#: src/pyams_content/shared/site/interfaces.py:40 -msgid "Use presentation template" -msgstr "Afficher le modèle de présentation de la rubrique" - -#: src/pyams_content/shared/site/interfaces.py:83 -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.py:87 -msgid "" -"The folder'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; " -"if description is empty, content's header will be used." -msgstr "" -"La méta-description de la rubrique 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 ; si la description n'est pas renseignée, le chapô " -"(s'il existe pour ce contenu) sera utilisé." - -#: src/pyams_content/shared/site/interfaces.py:96 -#: src/pyams_content/features/search/interfaces.py:56 -msgid "Visible in folders list" -msgstr "Visible dans la liste des rubriques ?" - -#: src/pyams_content/shared/site/interfaces.py:97 -#: src/pyams_content/features/search/interfaces.py:57 -msgid "If 'no', folder will not be displayed into folders list" -msgstr "" -"Si 'non', cette rubrique ne sera pas affichée dans la liste des rubriques " -"affichée par un composant de navigation" - -#: src/pyams_content/shared/site/interfaces.py:101 -#: src/pyams_content/shared/site/interfaces.py:165 -#: src/pyams_content/features/search/interfaces.py:61 -msgid "Navigation title" -msgstr "Titre de navigation" - -#: src/pyams_content/shared/site/interfaces.py:102 -#: src/pyams_content/features/search/interfaces.py:62 -msgid "" -"Folder's title displayed in navigation pages; original title will be used if " -"none is specified" -msgstr "" -"Titre de substitution affiché dans les composants de navigation ; si rien " -"n'est indiqué, le titre original de la rubrique sera utilisé" - -#: src/pyams_content/shared/site/interfaces.py:106 -msgid "Navigation mode" -msgstr "Mode de navigation" - -#: src/pyams_content/shared/site/interfaces.py:107 -msgid "Folder behaviour when navigating to folder URL" -msgstr "Comportement à adopter lorsqu'un internaute accède à cette rubrique" - -#: src/pyams_content/shared/site/interfaces.py:132 -msgid "" -"The site'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; " -"if description is empty, content's header will be used." -msgstr "" -"La méta-description du site 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 ; si la description n'est pas renseignée, le chapô " -"(s'il existe pour ce contenu) sera utilisé." - -#: src/pyams_content/shared/site/interfaces.py:166 -msgid "" -"Alternate content's title displayed in navigation pages; original title will " -"be used if none is specified" -msgstr "" -"Libellé utilisé en lieu et place du titre dans les composants de navigation " -"(notamment dans les pages carrefour) ; si rien n'est indiqué, le titre " -"original du contenu référencé sera utilisé" - -#: src/pyams_content/shared/site/interfaces.py:171 -msgid "If 'no', link is not visible" -msgstr "" -"Si 'non', le lien ne sera pas visible même si le contenu référencé est publié" - -#: src/pyams_content/shared/site/zmi/folder.py:57 -msgid "Add site folder..." -msgstr "Ajouter une rubrique" - -#: src/pyams_content/shared/site/zmi/folder.py:89 -msgid "Add site folder" -msgstr "Ajout d'une rubrique" - -#: src/pyams_content/shared/site/zmi/folder.py:156 -msgid "Site folder management" -msgstr "Gérer cette rubrique" - -#: src/pyams_content/shared/site/zmi/folder.py:185 -#: src/pyams_content/shared/site/zmi/manager.py:150 -msgid "Site folder properties" -msgstr "Propriétés de la rubrique" - -#: src/pyams_content/shared/site/zmi/folder.py:203 -#: src/pyams_content/features/search/zmi/properties.py:56 -msgid "Navigation properties" -msgstr "Propriétés de navigation" - -#: src/pyams_content/shared/site/zmi/folder.py:67 -#: src/pyams_content/interfaces/__init__.py:102 -msgid "Visible label used to display content" -msgstr "Le titre présenté aux internautes" - -#: src/pyams_content/shared/site/zmi/folder.py:70 -#: src/pyams_content/shared/site/zmi/__init__.py:60 -#: src/pyams_content/shared/site/zmi/link.py:65 -msgid "Parent" -msgstr "Niveau parent" - -#: src/pyams_content/shared/site/zmi/folder.py:71 -#: src/pyams_content/shared/site/zmi/link.py:66 -msgid "Folder's parent" -msgstr "Niveau de rattachement de cette rubrique" - -#: src/pyams_content/shared/site/zmi/folder.py:149 -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:51 -msgid "Add topic..." -msgstr "Ajouter un article" - -#: src/pyams_content/shared/site/zmi/__init__.py:61 -msgid "Topic's parent" -msgstr "Niveau parent" - -#: src/pyams_content/shared/site/zmi/link.py:56 -msgid "Rent content..." -msgstr "Lier un contenu" - -#: src/pyams_content/shared/site/zmi/link.py:76 -msgid "Rent existing content" -msgstr "Lier un contenu existant" - -#: src/pyams_content/shared/site/zmi/link.py:137 -msgid "Edit content link properties" -msgstr "Propriétés du lien" - -#: src/pyams_content/shared/site/zmi/container.py:101 -#: src/pyams_content/shared/site/zmi/container.py:113 -#: src/pyams_content/shared/blog/zmi/manager.py:163 -#: src/pyams_content/shared/blog/zmi/manager.py:175 -msgid "Publication dates..." -msgstr "Dates de publication" - -#: src/pyams_content/shared/site/zmi/container.py:127 -#: src/pyams_content/shared/blog/zmi/manager.py:189 -msgid "Update publication dates" -msgstr "Dates de publication" - -#: src/pyams_content/shared/site/zmi/container.py:173 -#: src/pyams_content/shared/site/zmi/container.py:183 -#: src/pyams_content/root/zmi/sites.py:63 -msgid "Site tree" -msgstr "Arborescence" - -#: src/pyams_content/shared/site/zmi/container.py:305 -#: src/pyams_content/shared/site/zmi/container.py:151 -msgid "Visible element?" -msgstr "Élément visible ?" - -#: src/pyams_content/shared/site/zmi/container.py:306 -msgid "Switch element visibility" -msgstr "Cliquez pour rendre l'élément visible ou non" - -#: src/pyams_content/shared/site/zmi/container.py:368 -msgid "Folders and topics" -msgstr "Rubriquage" - -#: src/pyams_content/shared/site/zmi/container.py:404 -#: src/pyams_content/root/zmi/__init__.py:825 -msgid "Content" -msgstr "Contenu" - -#: src/pyams_content/shared/site/zmi/container.py:500 -msgid "Delete site item" -msgstr "Supprimer ce contenu" - -#: src/pyams_content/shared/site/zmi/container.py:377 -msgid "Click to open/close all folders" -msgstr "Afficher/masquer toutes les rubriques" - -#: src/pyams_content/shared/site/zmi/container.py:393 -msgid "Click to show/hide inner folders" -msgstr "Cliquer pour afficher ou cache les sous-niveaux" - -#: src/pyams_content/shared/site/zmi/container.py:262 -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:53 -msgid "Site management" -msgstr "Gérer ce site" - -#: src/pyams_content/shared/site/zmi/manager.py:108 -#: src/pyams_content/shared/site/zmi/manager.py:122 -msgid "Add site manager" -msgstr "Ajouter un site" - -#: src/pyams_content/shared/site/zmi/manager.py:163 -#: src/pyams_content/shared/blog/zmi/manager.py:124 -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:167 -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:171 -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/portlet/__init__.py:42 -msgid "Site summary" -msgstr "Page carrefour (site, rubrique)" - -#: src/pyams_content/shared/site/portlet/interfaces.py:24 -msgid "Button's title" -msgstr "Libellé des boutons" - -#: src/pyams_content/shared/site/portlet/interfaces.py:25 -msgid "" -"Navigation button's title is normally defined based on target's content " -"type; you can override this label by giving a custom title here" -msgstr "" -"Le libellé des boutons de navigation vers les différents contenus est " -"normalement défini par le type de la cible du lien ; mais vous pouvez " -"remplacer ce libellé par un libellé de votre choix en l'indiquant ici." - -#: src/pyams_content/shared/site/portlet/zmi/templates/site-summary-preview.pt:2 -msgid "Navigation button title:" -msgstr "Titre des boutons de navigation :" - -#: 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é" +msgid "Image map « {title} »" +msgstr "Article de blog « {title} »" + +#: src/pyams_content/shared/imagemap/zmi/paragraph.py:50 +msgid "Image map..." +msgstr "Image cliquable" + +#: src/pyams_content/shared/imagemap/zmi/paragraph.py:63 +msgid "Add new image map" +msgstr "Ajout d'une image cliquable" + +#: src/pyams_content/shared/imagemap/zmi/paragraph.py:90 +#: src/pyams_content/shared/logo/zmi/paragraph.py:89 +msgid "Edit paragraph properties" +msgstr "Propriétés de l'image cliquable" #: src/pyams_content/shared/logo/__init__.py:73 msgid "no image defined" @@ -4697,13 +5746,19 @@ msgid "Logos template" msgstr "Mode de rendu" -#: src/pyams_content/shared/logo/zmi/paragraph.py:50 -msgid "Logos..." -msgstr "Logos" - -#: src/pyams_content/shared/logo/zmi/paragraph.py:63 -msgid "Add new logos paragraph" -msgstr "Ajout d'une sélection de logos" +#: 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/zmi/properties.py:65 msgid "Main logo settings" @@ -4723,157 +5778,18 @@ msgid "Logo « {title} »" msgstr "Logo « {title} »" -#: src/pyams_content/shared/blog/interfaces.py:30 -msgid "Blog post" -msgstr "Article (dans un blog)" - -#: src/pyams_content/shared/blog/interfaces.py:69 -msgid "" -"The blog'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; " -"if description is empty, content's header will be used." -msgstr "" -"La méta-description du blog 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 ; si la description n'est pas renseignée, le chapô " -"(s'il existe pour ce contenu) sera utilisé." - -#: 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 « {title} »" - -#: src/pyams_content/shared/blog/zmi/manager.py:57 -msgid "Blog management" -msgstr "Gérer ce blog" - -#: src/pyams_content/shared/blog/zmi/manager.py:80 -#: src/pyams_content/shared/blog/zmi/manager.py:94 -msgid "Add blog manager" -msgstr "Ajouter un blog" - -#: src/pyams_content/shared/blog/zmi/manager.py:93 -msgid "Blog manager" -msgstr "Blog" - -#: src/pyams_content/shared/blog/zmi/manager.py:148 -msgid "Blog properties" -msgstr "Propriétés du blog" - -#: src/pyams_content/shared/blog/zmi/manager.py:128 -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:132 -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/profile/interfaces.py:33 -msgid "User favorites" -msgstr "Favoris de l'utilisateur" - -#: src/pyams_content/profile/interfaces.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.py:37 -msgid "Default table length" -msgstr "Longueur des tableaux" - -#: src/pyams_content/profile/interfaces.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/profile/zmi/__init__.py:42 -msgid "Admin. profile" -msgstr "Profil intervenant" - -#: src/pyams_content/root/__init__.py:63 -msgid "Site root" -msgstr "Racine du site" - -#: src/pyams_content/root/interfaces.py:33 -msgid "Site managers" -msgstr "Administrateurs" - -#: src/pyams_content/root/interfaces.py:41 -msgid "Templates managers" -msgstr "Designers" - -#: src/pyams_content/root/interfaces.py:45 -msgid "Operators group" -msgstr "Groupe des opérateurs" - -#: src/pyams_content/root/interfaces.py:46 -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/root/zmi/sites.py:73 -msgid "Blogs and shared sites" -msgstr "Blogs et sites partagés" - -#: src/pyams_content/root/zmi/sites.py:103 -msgid "Visible site?" -msgstr "Site visible ?" - -#: src/pyams_content/root/zmi/sites.py:129 -msgid "OID" -msgstr "N° IN" - -#: src/pyams_content/root/zmi/sites.py:147 -msgid "Delete shared site" -msgstr "Supprimer ce site" - -#: src/pyams_content/root/zmi/sites.py:175 -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:160 -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/zmi/viewlet/toplinks/__init__.py:43 -msgid "Shared sites" -msgstr "Sites et blogs" - -#: src/pyams_content/zmi/viewlet/toplinks/__init__.py:64 -msgid "Shared contents" -msgstr "Gabarits" - -#: src/pyams_content/zmi/viewlet/toplinks/__init__.py:87 -msgid "Shared tools" -msgstr "Outils" - -#: src/pyams_content/zmi/viewlet/toplinks/__init__.py:110 -msgid "My roles" -msgstr "Mes rôles" - -#: src/pyams_content/zmi/viewlet/toplinks/templates/user-addings.pt:7 -msgid "Create new content" -msgstr "Créer un nouveau contenu" +#: src/pyams_content/shared/logo/zmi/paragraph.py:50 +msgid "Logos..." +msgstr "Logos" + +#: src/pyams_content/shared/logo/zmi/paragraph.py:63 +msgid "Add new logos paragraph" +msgstr "Ajout d'une sélection de logos" + +#: 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/__init__.py:70 #: src/pyams_content/workflow/basic.py:53 @@ -5190,11 +6106,6 @@ 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" @@ -5203,898 +6114,6 @@ msgid "Add automatic content archiver" msgstr "Ajout d'une tâche d'archivage automatique" -#: 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!!! Spaces, uppercase " -"letters ou accentuated characters will be replaced automatically." -msgstr "" -"ATTENTION : cette clé ne pourra plus être modifiée après sa création. Les " -"espaces, les majuscules, les lettres accentuées et les caractères spéciaux " -"seront remplacées automatiquement." - -#: src/pyams_content/interfaces/__init__.py:105 -msgid "Short name" -msgstr "Fil d'Ariane" - -#: src/pyams_content/interfaces/__init__.py:106 -msgid "Short name used in breadcrumbs" -msgstr "Libellé utilisé dans le fil d'Ariane" - -#: src/pyams_content/interfaces/__init__.py:117 -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:68 -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:50 -msgid "References" -msgstr "Tables de réf." - -#: src/pyams_content/reference/pictograms/interfaces.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.py:52 -msgid "pictogram-header" -msgstr "En-tête par défaut" - -#: src/pyams_content/reference/pictograms/interfaces.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.py:73 -#: src/pyams_content/reference/pictograms/zmi/manager.py:60 -#: src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:35 -msgid "Selected pictograms" -msgstr "Pictogrammes sélectionnés" - -#: src/pyams_content/reference/pictograms/interfaces.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/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/widget.py:36 -msgid "No selected pictogram" -msgstr "Aucun pictogramme sélectionné" - -#: src/pyams_content/reference/pictograms/zmi/manager.py:48 -msgid "Pictograms selection..." -msgstr "Sélection de pictogrammes" - -#: 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:49 -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/features/renderer/zmi/__init__.py:67 -#: src/pyams_content/features/renderer/zmi/templates/renderer-input.pt:4 -msgid "Edit renderer properties" -msgstr "Propriétés de ce mode de rendu" - -#: src/pyams_content/features/checker/interfaces.py:27 -#, python-format -msgid " - {field}: no value" -msgstr " - {field} : non renseigné" - -#: src/pyams_content/features/checker/interfaces.py:28 -#, python-format -msgid " - {field} ({lang}): no value" -msgstr " - {field} ({lang}) : non renseigné" - -#: src/pyams_content/features/checker/interfaces.py:29 -#, python-format -msgid " - {field}: {message}" -msgstr " - {field} : {message}" - -#: 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 pour ce contenu." - -#: 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:39 -msgid "Alert" -msgstr "Alerte" - -#: src/pyams_content/features/alert/interfaces.py:40 -msgid "End of alert" -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 "Recommendation" -msgstr "Recommandation" - -#: 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" - -#: src/pyams_content/features/alert/interfaces.py:65 -#: src/pyams_content/features/alert/zmi/container.py:143 -msgid "Message" -msgstr "Message" - -#: src/pyams_content/features/alert/interfaces.py:66 -msgid "Alert message" -msgstr "Le message d'alerte doit être assez court et explicite" - -#: src/pyams_content/features/alert/interfaces.py:70 -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:75 -msgid "Display start date" -msgstr "Date d'affichage" - -#: src/pyams_content/features/alert/interfaces.py:76 -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:79 -msgid "Display end date" -msgstr "Date de retrait" - -#: src/pyams_content/features/alert/interfaces.py:80 -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:83 -msgid "Maximum interval" -msgstr "Intervalle d'affichage" - -#: src/pyams_content/features/alert/interfaces.py:84 -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:53 -msgid "Alerts" -msgstr "Alertes" - -#: src/pyams_content/features/alert/zmi/container.py:165 -msgid "Alert list" -msgstr "Liste des alertes" - -#: src/pyams_content/features/alert/zmi/container.py:95 -msgid "No currently defined alert." -msgstr "Aucune alerte n'est définie actuellement." - -#: src/pyams_content/features/redirect/container.py:81 -msgid "not matching" -msgstr "pas de correspondance" - -#: src/pyams_content/features/redirect/interfaces.py:39 -msgid "Active rule?" -msgstr "Règle active ?" - -#: src/pyams_content/features/redirect/interfaces.py:40 -msgid "If 'no', selected rule is inactive" -msgstr "Si 'non', la règle est inactive" - -#: src/pyams_content/features/redirect/interfaces.py:44 -msgid "Chained rule?" -msgstr "Règle chaînée ?" - -#: src/pyams_content/features/redirect/interfaces.py:45 -msgid "" -"If 'no', and if this rule is matching received request URL, the rule returns " -"a redirection response; otherwise, the rule just rewrites the input URL " -"which is forwarded to the next rule" -msgstr "" -"Si 'non', et si cette règle correspond à l'URL reçue en entrée, une réponde " -"de redirection est renvoyée directement ; dans le cas contraire, l'URL " -"générée par cette règle est passée en entrée de la règle suivante" - -#: src/pyams_content/features/redirect/interfaces.py:51 -msgid "Permanent redirect?" -msgstr "Redirection permanente ?" - -#: src/pyams_content/features/redirect/interfaces.py:52 -msgid "Define if this redirection should be permanent or temporary" -msgstr "" -"Indique si cette redirection doit être considérée comme permanente ou " -"temporaire" - -#: src/pyams_content/features/redirect/interfaces.py:56 -#: src/pyams_content/features/redirect/zmi/container.py:210 -#: src/pyams_content/features/redirect/zmi/container.py:369 -msgid "URL pattern" -msgstr "Schéma d'URL" - -#: src/pyams_content/features/redirect/interfaces.py:57 -msgid "Regexp pattern of matching URLs for this redirection rule" -msgstr "Modèle de l'URL d'origine de cette règle de redirection" - -#: src/pyams_content/features/redirect/interfaces.py:62 -msgid "Internal redirection target" -msgstr "Redirection interne" - -#: src/pyams_content/features/redirect/interfaces.py:63 -msgid "" -"Internal redirection reference. You can search a reference using '+' " -"followed by internal number, of by entering text matching content title." -msgstr "" -"Référence interne vers une cible de redirection. Vous pouvez la rechercher " -"par des mots de son titre, ou par son numéro interne (précédé d'un '+')" - -#: src/pyams_content/features/redirect/interfaces.py:69 -msgid "URL to which source URL should be redirected" -msgstr "URL vers laquelle l'URL d'origine doit être redirigée" - -#: src/pyams_content/features/redirect/interfaces.py:75 -msgid "You can only provide an internal reference OR a target URL" -msgstr "" -"Vous ne pouvez fournir qu'une référence interne OU une URL de redirection !" - -#: src/pyams_content/features/redirect/interfaces.py:77 -msgid "You must provide an internal reference OR a target URL" -msgstr "Vous devez fournir une référence interne OU une URL de redirection !" - -#: src/pyams_content/features/redirect/zmi/__init__.py:50 -msgid "Add rule" -msgstr "Ajouter une règle" - -#: src/pyams_content/features/redirect/zmi/__init__.py:63 -msgid "Add new redirection rule" -msgstr "Ajout d'une règle de redirection" - -#: src/pyams_content/features/redirect/zmi/__init__.py:88 -msgid "Edit redirection rule properties" -msgstr "Propriétés de la règle de redirection" - -#: src/pyams_content/features/redirect/zmi/__init__.py:109 -msgid "" -"URL pattern and target URL are defined by *regular expressions* (see |" -"regexp|).\n" -" \n" -"In URL pattern, you can use any valid regular expression element, notably:\n" -"\n" -"- « .* » to match any list of characters \n" -"\n" -"- « ( ) » to \"memorize\" parts of the URL which can be replaced into target " -"URL\n" -"\n" -"- special characters (like \"+\") must be escaped with an « \\\\ ».\n" -"\n" -"In target URL, memorized parts can be reused using « \\\\1 », « \\\\2 » and " -"so on, where given number is\n" -"the order of the matching pattern element.\n" -"\n" -".. |regexp| raw:: html\n" -"\n" -" Python Regular Expressions\n" -msgstr "" -"Le schéma d'URL et l'URL cible sont définis en tant que « expressions " -"rationelles » (voir |regexp|).\n" -"\n" -"Dans le schéma d'URL utilisé pour identifier les requêtes en entrée, vous " -"pouvez utiliser tout élément d'une expression rationnelle valide, " -"notamment :\n" -"\n" -"- « .* » pour rechercher n'importe quelle suite de caractères\n" -"\n" -"- « ^ » et « $ » pour identifier le début ou la fin de l'URL\n" -"\n" -"- « ( ) » pour \"mémoriser\" certains éléments de l'URL qui pourront être " -"repris dans l'URL cible\n" -"\n" -"- les caractères spéciaux (comme les \"+\") doivent être protégés par un " -"caractère « \\\\ ».\n" -"\n" -"For exemple : dans le schéma « ^/.*?oid=([a-z0-9]+)$ », toute URL contenant " -"un paramètre \"oid\" composé de minuscules et/ou de chiffres sera mémorisé " -"pour pouvoir être réutilisé dans l'URL cible.\n" -"\n" -"Dans l'URL cible, les éléments mémorisés peuvent être réutilisés en " -"utilisant une expression comme « \\\\1 », « \\\\2 » (et ainsi de suite), le " -"chiffre indiquant la position de l'élément dans la liste des éléments " -"mémorisés.\n" -"\n" -".. |regexp| raw:: html\n" -"\n" -" Expressions rationnelles en Python\n" - -#: src/pyams_content/features/redirect/zmi/container.py:67 -msgid "Redirections" -msgstr "Redirections" - -#: src/pyams_content/features/redirect/zmi/container.py:161 -msgid "Enable/disable rule" -msgstr "Activer/désactiver la règle" - -#: src/pyams_content/features/redirect/zmi/container.py:188 -msgid "Chain/unchain rule" -msgstr "Enchaîner la règle avec la suivante" - -#: src/pyams_content/features/redirect/zmi/container.py:220 -msgid "Target" -msgstr "Cible" - -#: src/pyams_content/features/redirect/zmi/container.py:249 -msgid "Redirections list" -msgstr "Liste des règles de redirection" - -#: src/pyams_content/features/redirect/zmi/container.py:264 -msgid "Redirection rules" -msgstr "Règles de redirection" - -#: src/pyams_content/features/redirect/zmi/container.py:265 -msgid "" -"Redirection rules are use to handle redirections responses when a request " -"generates \n" -"a famous « 404 NotFound » error.\n" -"\n" -"Redirections are particularly useful when you are migrating from a previous " -"site and don't want to lose \n" -"your SEO.\n" -"\n" -"You can define a set of rules which will be applied to every \"NotFound\" " -"request; rules are based on \n" -"regular expressions which are applied to input URL: if the rule is \"matching" -"\", the target URL is rewritten\n" -"and a \"Redirect\" response is send.\n" -"\n" -"You can chain rules together: when a rule is chained, it's rewritten URL is " -"passed as input URL to the \n" -"next rule, until a matching rule is found.\n" -msgstr "" -"Les règles de redirection sont utilisées pour transmettre des réponses de " -"redirection au lieu de la fameuse erreur « 404 - Page non trouvée ».\n" -"\n" -"La gestion des redirections est particulièrement importante en phase de " -"migration d'un site web, pour éviter les liens cassés, ne pas perdre votre " -"référencement et faciliter la mise à jour des moteurs de recherche.\n" -"\n" -"Vous pouvez définir un ensemble de règles qui seront appliquées dès lors " -"qu'une requête adressée au serveur génère une erreur de page non trouvée ; " -"les règles sont basées sur des expressions rationnelles que l'on applique à " -"l'URL de la requête reçue : si la règle correspond, l'URL est réécrite et " -"une réponse de redirection vers cette nouvelle URL est renvoyée.\n" -"\n" -"Vous pouvez également enchaîner les règles : lorsqu'une règle est \"chaînée" -"\", la nouvelle URL qu'elle génère est passée aux règles suivantes, jusqu'à " -"ce qu'une règle s'applique à cette nouvelle URL.\n" - -#: src/pyams_content/features/redirect/zmi/container.py:291 -msgid "Test" -msgstr "Tester !" - -#: src/pyams_content/features/redirect/zmi/container.py:326 -msgid "Test redirection rules" -msgstr "Test des règles de redirection" - -#: src/pyams_content/features/redirect/zmi/container.py:304 -msgid "Test URL" -msgstr "URL à tester" - -#: src/pyams_content/features/redirect/zmi/container.py:307 -msgid "Check inactive rules?" -msgstr "Tester les règles inactive ?" - -#: src/pyams_content/features/redirect/zmi/container.py:308 -msgid "If 'yes', inactive rules will also be tested" -msgstr "Si 'oui', les règles inactives seront également testées" - -#: src/pyams_content/features/redirect/zmi/container.py:316 -msgid "Close" -msgstr "Fermer" - -#: src/pyams_content/features/redirect/zmi/container.py:317 -msgid "Test rules" -msgstr "Tester cette URL" - -#: src/pyams_content/features/redirect/zmi/container.py:123 -msgid "No currently defined redirection rule." -msgstr "Aucune règle de redirection n'est définie actuellement." - -#: src/pyams_content/features/redirect/zmi/container.py:374 -msgid "No matching rule!" -msgstr "Aucune règle ne correspond !" - -#: src/pyams_content/features/redirect/zmi/container.py:231 -#, python-format -msgid "Internal reference: {0} (not found)" -msgstr "Référence interne: {0} (non trouvée)" - -#: src/pyams_content/features/redirect/zmi/container.py:368 -msgid "Input URL" -msgstr "URL en entrée" - -#: src/pyams_content/features/redirect/zmi/container.py:370 -msgid "Output URL" -msgstr "URL générée" - -#: src/pyams_content/features/menu/interfaces.py:60 -msgid "Menu title" -msgstr "Libellé" - -#: src/pyams_content/features/menu/interfaces.py:61 -msgid "Displayed menu label" -msgstr "Libellé du menu" - -#: src/pyams_content/features/menu/interfaces.py:65 -msgid "Direct reference to menu target" -msgstr "" -"Lorsque le menu est utilisé dans l'en-tête de page, référence interne vers " -"la cible du menu (site ou rubrique) permettant de mettre en évidence le menu " -"actif ; un lien sera également créé vers cette référence si le menu ne " -"contient aucun lien." - -#: src/pyams_content/features/menu/interfaces.py:69 -msgid "Name of the pictogram associated with this menu" -msgstr "" -"Pictogramme à associer à ce menu. ATTENTION: ce pictogramme n'est affiché " -"que par certains modes de rendu !!" - -#: src/pyams_content/features/menu/zmi/__init__.py:80 -msgid "Add menu..." -msgstr "Ajouter une entrée" - -#: src/pyams_content/features/menu/zmi/__init__.py:91 -msgid "Add new menu" -msgstr "Ajout d'un menu" - -#: src/pyams_content/features/menu/zmi/__init__.py:124 -msgid "Edit menu properties" -msgstr "Propriétés du menu" - -#: src/pyams_content/features/menu/zmi/__init__.py:230 -msgid "Inner content" -msgstr "Contenu interne" - -#: src/pyams_content/features/menu/zmi/__init__.py:111 -msgid "Menu was correctly added." -msgstr "Le menu a été ajouté." - -#: src/pyams_content/features/menu/zmi/__init__.py:415 -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:67 -msgid "Simple navigation" -msgstr "Navigation à un niveau" - -#: src/pyams_content/features/menu/portlet/navigation/double.py:67 -msgid "Double navigation" -msgstr "Navigation à deux niveaux" - -#: src/pyams_content/features/menu/portlet/navigation/zmi/simple.py:69 -msgid "Navigation links" -msgstr "Liens de navigation" - -#: src/pyams_content/features/menu/portlet/navigation/zmi/double.py:69 -msgid "Navigation menus" -msgstr "Menus de navigation" - -#: src/pyams_content/features/menu/portlet/navigation/zmi/templates/double-preview.pt:14 -#: src/pyams_content/features/menu/portlet/navigation/zmi/templates/simple-preview.pt:11 -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/footer/interfaces.py:39 -msgid "Footer template" -msgstr "Mode de rendu" - -#: src/pyams_content/features/footer/interfaces.py:40 -msgid "Presentation template used for this footer" -msgstr "Mode de rendu utilisé par ce pied de page" - -#: 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:152 -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:220 -msgid "Footer renderer settings" -msgstr "Propriétés de ce mode de rendu" - -#: src/pyams_content/features/footer/zmi/__init__.py:107 -msgid "Don't inherit parent footer" -msgstr "Ne pas hériter du pied de pages du parent" - -#: 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:55 -msgid "Ask for review..." -msgstr "Demander une relecture" - -#: src/pyams_content/features/review/zmi/__init__.py:94 -msgid "Content review request" -msgstr "Demande de relecture" - -#: src/pyams_content/features/review/zmi/__init__.py:159 -msgid "Comments" -msgstr "Commentaires" - -#: src/pyams_content/features/review/zmi/__init__.py:179 -msgid "Review comments" -msgstr "Commentaires associés à cette version" - -#: src/pyams_content/features/review/zmi/__init__.py:65 -msgid "Sought principals" -msgstr "Relecteurs sollicités" - -#: src/pyams_content/features/review/zmi/__init__.py:66 -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:69 -msgid "Comment" -msgstr "Commentaire" - -#: src/pyams_content/features/review/zmi/__init__.py:70 -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:73 -msgid "Notify all reviewers" -msgstr "Notifier tous les relecteurs" - -#: src/pyams_content/features/review/zmi/__init__.py:74 -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:85 -msgid "Ask for content review" -msgstr "Demander la relecture" - -#: src/pyams_content/features/review/zmi/__init__.py:140 -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:256 -msgid "Message is mandatory!" -msgstr "Un commentaire est obligatoire !" - -#: src/pyams_content/features/review/zmi/__init__.py:128 -#, 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/search/__init__.py:38 -msgid "Search folder" -msgstr "Moteur de recherche" - -#: src/pyams_content/features/search/interfaces.py:66 -msgid "Selected content types" -msgstr "Gabarits sélectionnés" - -#: src/pyams_content/features/search/interfaces.py:67 -msgid "Searched content types; leave empty for all" -msgstr "" -"Gabarits sélectionnés ; si cette sélection est vide, tous les gabarits " -"seront pris en charge" - -#: src/pyams_content/features/search/interfaces.py:71 -msgid "Selected data types" -msgstr "Types de contenus sélectionnés" - -#: src/pyams_content/features/search/interfaces.py:72 -msgid "Searched data types; leave empty for all" -msgstr "" -"Types de contenus sélectionnés ; si cette sélection est vide, tous les " -"contenus (typés ou non) seront pris en charge" - -#: src/pyams_content/features/search/zmi/properties.py:36 -msgid "Main search settings" -msgstr "Paramètres de la recherche" - -#: src/pyams_content/features/search/zmi/__init__.py:63 -msgid "This search folder" -msgstr "Ce moteur de recherche" - -#: src/pyams_content/features/search/zmi/__init__.py:82 -msgid "Add search folder..." -msgstr "Ajouter un moteur de recherche" - -#: src/pyams_content/features/search/zmi/__init__.py:98 -msgid "Add search folder" -msgstr "Ajout d'un moteur de recherche" - -#: src/pyams_content/features/search/zmi/__init__.py:73 -#, python-format -msgid "Search folder « {title} »" -msgstr "Moteur de recherche « {title} »" - -#: src/pyams_content/features/search/zmi/theme.py:35 -msgid "Search folder tags settings" -msgstr "Paramétrage des tags du moteur de recherche" - -#: src/pyams_content/features/search/zmi/theme.py:51 -msgid "Search folder themes settings" -msgstr "Paramétrage des thèmes du moteur de recherche" - -#: src/pyams_content/features/search/zmi/theme.py:67 -msgid "Search folder collections settings" -msgstr "Paramétrage des collections du moteur de recherche" - -#: src/pyams_content/features/search/zmi/reference.py:31 -msgid "Search folder internal references settings" -msgstr "Références internes du moteur de recherche" - -#: 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:161 -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:229 -msgid "Header renderer settings" -msgstr "Propriétés de ce mode de rendu" - -#: src/pyams_content/features/header/zmi/__init__.py:113 -msgid "Don't inherit parent header" -msgstr "Ne pas hériter de l'en-tête de pages du parent" - #~ msgid "(gallery contains 1 media)" #~ msgstr "(1 média dans la galerie)" diff -r 85f4724e0c1d -r c83faa4b4559 src/pyams_content/locales/pyams_content.pot --- a/src/pyams_content/locales/pyams_content.pot Tue Nov 13 16:42:27 2018 +0100 +++ b/src/pyams_content/locales/pyams_content.pot Wed Nov 14 09:33:28 2018 +0100 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE 1.0\n" -"POT-Creation-Date: 2018-11-13 16:14+0100\n" +"POT-Creation-Date: 2018-11-14 08:59+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" @@ -81,400 +81,153 @@ msgid "Guest user (role)" msgstr "" -#: ./src/pyams_content/component/gallery/__init__.py:155 -msgid "Gallery" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:120 -msgid "Medias gallery" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:42 -#: ./src/pyams_content/component/illustration/interfaces.py:40 -#: ./src/pyams_content/component/illustration/interfaces.py:103 -msgid "Image or video data" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:43 -#: ./src/pyams_content/component/illustration/interfaces.py:41 -#: ./src/pyams_content/component/illustration/interfaces.py:104 -msgid "Image or video content" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:46 -#: ./src/pyams_content/component/illustration/interfaces.py:47 -#: ./src/pyams_content/component/paragraph/interfaces/video.py:43 -#: ./src/pyams_content/component/paragraph/interfaces/audio.py:43 -#: ./src/pyams_content/component/video/interfaces.py:69 -msgid "Legend" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:49 -#: ./src/pyams_content/component/illustration/interfaces.py:50 -#: ./src/pyams_content/reference/pictograms/interfaces.py:48 -msgid "Accessibility title" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:50 -msgid "Alternate title used to describe media content" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:53 -#: ./src/pyams_content/component/gallery/interfaces.py:110 -#: ./src/pyams_content/component/extfile/interfaces.py:36 -#: ./src/pyams_content/component/paragraph/interfaces/audio.py:50 -#: ./src/pyams_content/component/links/interfaces.py:39 -#: ./src/pyams_content/shared/form/interfaces.py:64 -msgid "Description" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:56 -#: ./src/pyams_content/component/gallery/zmi/interfaces.py:39 -#: ./src/pyams_content/component/extfile/interfaces.py:40 -#: ./src/pyams_content/component/illustration/interfaces.py:54 -#: ./src/pyams_content/component/paragraph/interfaces/video.py:46 -#: ./src/pyams_content/component/paragraph/interfaces/audio.py:46 -#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:44 -#: ./src/pyams_content/component/video/interfaces.py:42 -msgid "Author" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:57 -#: ./src/pyams_content/component/gallery/zmi/interfaces.py:40 -#: ./src/pyams_content/component/extfile/interfaces.py:41 -#: ./src/pyams_content/component/paragraph/interfaces/video.py:47 -#: ./src/pyams_content/component/paragraph/interfaces/audio.py:47 -#: ./src/pyams_content/component/video/interfaces.py:43 -msgid "Name of document's author" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:60 -#: ./src/pyams_content/component/extfile/interfaces.py:85 -#: ./src/pyams_content/component/paragraph/interfaces/audio.py:39 -msgid "Audio data" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:61 -msgid "Sound file associated with the current media" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:64 -msgid "Sound title" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:65 -msgid "Title of associated sound file" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:68 -msgid "Sound description" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:69 -msgid "Short description of associated sound file" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:72 -msgid "Visible media?" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:73 -msgid "If 'no', this media won't be displayed in front office" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:84 -msgid "Gallery template" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:85 -msgid "Presentation template used for this gallery" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:106 -#: ./src/pyams_content/component/keynumber/portlet/interfaces.py:31 -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:235 -#: ./src/pyams_content/component/paragraph/zmi/container.py:266 -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:43 -#: ./src/pyams_content/shared/common/zmi/reverse.py:73 -#: ./src/pyams_content/shared/common/zmi/dashboard.py:104 -#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:200 -#: ./src/pyams_content/shared/view/portlet/interfaces.py:56 -#: ./src/pyams_content/shared/imagemap/zmi/container.py:123 -#: ./src/pyams_content/shared/site/zmi/folder.py:66 -#: ./src/pyams_content/shared/logo/interfaces.py:46 -#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:197 -#: ./src/pyams_content/interfaces/__init__.py:101 -#: ./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.py:107 -msgid "Gallery title, as shown in front-office" -msgstr "" - -#: ./src/pyams_content/component/gallery/interfaces.py:111 -msgid "Gallery description displayed by front-office template" -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:172 -msgid "Add media(s)" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/file.py:178 -msgid "Update media properties" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/file.py:227 -msgid "Remove media..." -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/file.py:142 -msgid "Show/hide media" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/file.py:194 -msgid "Audio content" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/paragraph.py:63 -msgid "Medias gallery..." -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/paragraph.py:76 -msgid "Add new gallery" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/paragraph.py:98 -msgid "Edit gallery properties" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/paragraph.py:134 -msgid "Visible medias" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/paragraph.py:193 -msgid "Media(s) successfully added" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/__init__.py:61 -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/interfaces.py:35 -msgid "Images or videos data" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/interfaces.py:36 -msgid "You can upload a single file or choose to upload a whole ZIP archive" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/templates/gallery-media.pt:9 -#: ./src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:42 -msgid "Zoom image" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:12 -msgid "Gallery medias" -msgstr "" - -#: ./src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:18 -msgid "Download medias" -msgstr "" - -#: ./src/pyams_content/component/extfile/__init__.py:173 -#: ./src/pyams_content/component/extfile/__init__.py:178 -msgid "Standard file" -msgstr "" - +#: ./src/pyams_content/reference/zmi/__init__.py:50 +msgid "References" +msgstr "" + +#: ./src/pyams_content/reference/zmi/__init__.py:68 +#: ./src/pyams_content/reference/zmi/table.py:129 +msgid "References tables" +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: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/pictograms/interfaces.py:44 #: ./src/pyams_content/component/extfile/__init__.py:225 #: ./src/pyams_content/component/extfile/__init__.py:241 #: ./src/pyams_content/shared/imagemap/interfaces.py:67 -#: ./src/pyams_content/reference/pictograms/interfaces.py:44 msgid "Image" msgstr "" -#: ./src/pyams_content/component/extfile/__init__.py:256 -#: ./src/pyams_content/component/extfile/__init__.py:261 -#: ./src/pyams_content/component/paragraph/interfaces/video.py:32 -msgid "Video" -msgstr "" - -#: ./src/pyams_content/component/extfile/__init__.py:276 -#: ./src/pyams_content/component/extfile/__init__.py:281 -msgid "Audio file" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:32 -msgid "Download link label" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:33 -msgid "Label of download link, as shown in front-office" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:37 -#: ./src/pyams_content/component/paragraph/interfaces/audio.py:51 -msgid "File description displayed by front-office template" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:44 -#: ./src/pyams_content/component/links/interfaces.py:65 -msgid "Language" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:45 -msgid "File's content language" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:49 -msgid "Save file as..." -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:50 -msgid "Name under which the file will be saved" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:57 -msgid "File data" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:58 -msgid "File content" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:69 -#: ./src/pyams_content/shared/logo/interfaces.py:59 -msgid "Image data" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:70 -msgid "Image content" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:77 -#: ./src/pyams_content/component/paragraph/interfaces/video.py:39 -msgid "Video data" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:78 -msgid "Video content" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:86 -#: ./src/pyams_content/component/paragraph/interfaces/audio.py:40 -msgid "Audio file content" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:104 -msgid "Default title prefix" -msgstr "" - -#: ./src/pyams_content/component/extfile/interfaces.py:105 -msgid "" -"If used, this prefix will be automatically added to download link's label of " -"all files" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:70 -msgid "External files" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:85 -msgid "Add external file" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:99 -msgid "Add new external file" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:131 -msgid "Update file properties" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:159 -msgid "Images" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:174 -msgid "Add image" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:188 -msgid "Add new image" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:220 -msgid "Update image properties" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:252 -msgid "Videos" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:267 -msgid "Add video" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:281 -msgid "Add new video" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:306 -msgid "Update video properties" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:331 -msgid "Audios files" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:346 -msgid "Add audio file" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:360 -msgid "Add new audio file" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:385 -msgid "Update audio file properties" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/__init__.py:46 -msgid "External file type" -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/manager.py:37 -msgid "External files..." -msgstr "" - -#: ./src/pyams_content/component/extfile/zmi/manager.py:51 -msgid "External files properties" +#: ./src/pyams_content/reference/pictograms/interfaces.py:45 +msgid "Pictogram content" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/interfaces.py:48 +#: ./src/pyams_content/component/gallery/interfaces.py:49 +#: ./src/pyams_content/component/illustration/interfaces.py:50 +msgid "Accessibility title" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/interfaces.py:49 +#: ./src/pyams_content/component/illustration/interfaces.py:51 +msgid "Alternate title used to describe image content" +msgstr "" + +#. Default: Header +#: ./src/pyams_content/reference/pictograms/interfaces.py:52 +msgid "pictogram-header" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/interfaces.py:53 +msgid "Default header associated with this pictogram" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/interfaces.py:73 +#: ./src/pyams_content/reference/pictograms/zmi/manager.py:60 +#: ./src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:35 +msgid "Selected pictograms" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/interfaces.py:74 +msgid "List of selected pictograms which will be available to shared contents" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/zmi/widget.py:36 +msgid "No selected pictogram" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/zmi/widget.py:55 +#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:169 +msgid "Default header: --" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/zmi/manager.py:48 +msgid "Pictograms selection..." +msgstr "" + +#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:59 +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:310 +msgid "Add pictogram" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:71 +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:323 +msgid "Add new pictogram" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:95 +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:365 +msgid "Edit pictogram properties" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:150 +#: ./src/pyams_content/component/keynumber/portlet/interfaces.py:31 +#: ./src/pyams_content/component/gallery/interfaces.py:106 +#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:43 +#: ./src/pyams_content/component/paragraph/zmi/container.py:266 +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:235 +#: ./src/pyams_content/interfaces/__init__.py:101 +#: ./src/pyams_content/features/menu/portlet/navigation/interfaces/simple.py:31 +#: ./src/pyams_content/features/menu/portlet/navigation/interfaces/double.py:31 +#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:197 +#: ./src/pyams_content/shared/view/portlet/interfaces.py:56 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:104 +#: ./src/pyams_content/shared/common/zmi/reverse.py:73 +#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:200 +#: ./src/pyams_content/shared/site/zmi/folder.py:66 +#: ./src/pyams_content/shared/imagemap/zmi/container.py:123 +#: ./src/pyams_content/shared/logo/interfaces.py:46 +msgid "Title" +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:49 +msgid "Display pictogram properties" +msgstr "" + +#: ./src/pyams_content/reference/pictograms/zmi/templates/pictogram-header.pt:6 +msgid "Default header: ${header}" msgstr "" #: ./src/pyams_content/component/keynumber/__init__.py:189 #: ./src/pyams_content/component/keynumber/interfaces.py:83 +#: ./src/pyams_content/component/keynumber/portlet/zmi/__init__.py:74 #: ./src/pyams_content/component/keynumber/zmi/__init__.py:212 -#: ./src/pyams_content/component/keynumber/portlet/zmi/__init__.py:74 msgid "Key numbers" msgstr "" #: ./src/pyams_content/component/keynumber/interfaces.py:40 +#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:41 #: ./src/pyams_content/component/paragraph/interfaces/milestone.py:38 #: ./src/pyams_content/component/paragraph/interfaces/__init__.py:42 -#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:41 #: ./src/pyams_content/component/association/interfaces.py:42 +#: ./src/pyams_content/features/alert/interfaces.py:54 +#: ./src/pyams_content/features/menu/interfaces.py:55 #: ./src/pyams_content/shared/form/interfaces.py:85 #: ./src/pyams_content/shared/site/interfaces.py:170 -#: ./src/pyams_content/features/alert/interfaces.py:54 -#: ./src/pyams_content/features/menu/interfaces.py:55 msgid "Visible?" msgstr "" @@ -514,12 +267,12 @@ #: ./src/pyams_content/component/keynumber/interfaces.py:58 #: ./src/pyams_content/component/keynumber/zmi/__init__.py:193 -#: ./src/pyams_content/component/illustration/interfaces.py:62 -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:273 -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:81 +#: ./src/pyams_content/component/video/interfaces.py:46 #: ./src/pyams_content/component/paragraph/interfaces/video.py:50 #: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:58 -#: ./src/pyams_content/component/video/interfaces.py:46 +#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:81 +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:273 +#: ./src/pyams_content/component/illustration/interfaces.py:62 msgid "Associated text" msgstr "" @@ -535,34 +288,6 @@ msgid "Presentation template used for key numbers" msgstr "" -#: ./src/pyams_content/component/keynumber/zmi/paragraph.py:49 -msgid "Key numbers..." -msgstr "" - -#: ./src/pyams_content/component/keynumber/zmi/paragraph.py:62 -msgid "Add new key number paragraph" -msgstr "" - -#: ./src/pyams_content/component/keynumber/zmi/paragraph.py:90 -msgid "Edit key number paragraph properties" -msgstr "" - -#: ./src/pyams_content/component/keynumber/zmi/__init__.py:231 -msgid "Add keynumber" -msgstr "" - -#: ./src/pyams_content/component/keynumber/zmi/__init__.py:243 -msgid "Add new keynumber" -msgstr "" - -#: ./src/pyams_content/component/keynumber/zmi/__init__.py:272 -msgid "Edit keynumber properties" -msgstr "" - -#: ./src/pyams_content/component/keynumber/zmi/__init__.py:258 -msgid "Key number was correctly added" -msgstr "" - #: ./src/pyams_content/component/keynumber/portlet/__init__.py:71 msgid "Key Numbers" msgstr "" @@ -590,1079 +315,214 @@ msgid "Link target is not published!" msgstr "" -#: ./src/pyams_content/component/illustration/__init__.py:172 -#: ./src/pyams_content/component/illustration/thesaurus.py:32 -#: ./src/pyams_content/component/illustration/interfaces.py:97 -#: ./src/pyams_content/component/illustration/zmi/paragraph.py:155 -#: ./src/pyams_content/component/illustration/zmi/__init__.py:56 -#: ./src/pyams_content/component/illustration/zmi/__init__.py:126 -msgid "Illustration" -msgstr "" - -#: ./src/pyams_content/component/illustration/interfaces.py:51 -#: ./src/pyams_content/reference/pictograms/interfaces.py:49 -msgid "Alternate title used to describe image content" -msgstr "" - -#: ./src/pyams_content/component/illustration/interfaces.py:55 -msgid "Name of picture's author" -msgstr "" - -#: ./src/pyams_content/component/illustration/interfaces.py:63 -msgid "Illustration description displayed in front-office templates" -msgstr "" - -#: ./src/pyams_content/component/illustration/interfaces.py:66 -msgid "Illustration template" -msgstr "" - -#: ./src/pyams_content/component/illustration/interfaces.py:67 -msgid "Presentation template used for illustration" -msgstr "" - -#: ./src/pyams_content/component/illustration/zmi/paragraph.py:55 -msgid "Illustration..." -msgstr "" - -#: ./src/pyams_content/component/illustration/zmi/paragraph.py:68 -msgid "Add new illustration" -msgstr "" - -#: ./src/pyams_content/component/illustration/zmi/paragraph.py:93 -#: ./src/pyams_content/component/illustration/zmi/thesaurus.py:42 -msgid "Edit illustration properties" -msgstr "" - -#: ./src/pyams_content/component/illustration/zmi/__init__.py:151 -msgid "Navigation link illustration" -msgstr "" - -#: ./src/pyams_content/component/illustration/zmi/__init__.py:168 -msgid "Add illustration" -msgstr "" - -#: ./src/pyams_content/component/illustration/zmi/__init__.py:128 -msgid "Header illustration" -msgstr "" - -#: ./src/pyams_content/component/paragraph/milestone.py:138 -msgid "Selected paragraph is missing" -msgstr "" - -#: ./src/pyams_content/component/paragraph/milestone.py:141 -msgid "Selected paragraph is not visible" -msgstr "" - -#: ./src/pyams_content/component/paragraph/container.py:94 -msgid "Paragraphs" -msgstr "" - -#: ./src/pyams_content/component/paragraph/container.py:116 -msgid "no visible paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/pictogram.py:130 -msgid "Selected pictogram is missing" -msgstr "" - -#: ./src/pyams_content/component/paragraph/header.py:62 -msgid "This paragraph type is deprecated and should be removed!" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:74 -msgid "Milestones..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:87 -msgid "Add new milestone paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:114 -msgid "Edit milestone paragraph properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:247 -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:47 -msgid "Associated label" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:259 -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:51 -msgid "Anchor" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:288 -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:74 -msgid "Milestones" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:303 -msgid "Add milestone" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:316 -msgid "Add new milestone" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:343 -msgid "Edit milestone properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:331 -msgid "Milestone was correctly added" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/milestone.py:274 -msgid "(missing paragraph)" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/keypoint.py:46 -msgid "Key points..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/keypoint.py:59 -msgid "Add new key points paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/keypoint.py:86 -msgid "Edit key points paragraph properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/__init__.py:60 -msgid "Content block types..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/__init__.py:74 -msgid "Content block types" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/__init__.py:84 -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:209 -#: ./src/pyams_content/component/paragraph/zmi/__init__.py:222 -#: ./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:214 -#: ./src/pyams_content/component/paragraph/zmi/__init__.py:227 -#: ./src/pyams_content/shared/common/zmi/workflow.py:119 -#: ./src/pyams_content/shared/common/zmi/workflow.py:206 -#: ./src/pyams_content/shared/common/zmi/workflow.py:246 -#: ./src/pyams_content/shared/common/zmi/workflow.py:300 -#: ./src/pyams_content/shared/common/zmi/workflow.py:391 -#: ./src/pyams_content/shared/common/zmi/workflow.py:447 -#: ./src/pyams_content/shared/common/zmi/workflow.py:487 -#: ./src/pyams_content/shared/common/zmi/workflow.py:528 -#: ./src/pyams_content/shared/common/zmi/workflow.py:571 -#: ./src/pyams_content/shared/common/zmi/workflow.py:611 -#: ./src/pyams_content/shared/common/zmi/workflow.py:652 -#: ./src/pyams_content/shared/common/zmi/workflow.py:703 -#: ./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:84 -msgid "Cancel" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/__init__.py:216 -#: ./src/pyams_content/component/paragraph/zmi/__init__.py:229 -msgid "Submit" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/__init__.py:197 -msgid "Paragraph was correctly added." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/__init__.py:269 -msgid "" -"You changed renderer selection. Don't omit to update new renderer " -"properties..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/map.py:50 -msgid "Location map..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/map.py:63 -msgid "Add new location map" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/map.py:86 -msgid "Edit location map properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/video.py:50 -msgid "Video paragraph..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/video.py:63 -msgid "Add new video paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/video.py:86 -#: ./src/pyams_content/component/video/zmi/paragraph.py:183 -msgid "Edit video properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/container.py:70 -msgid "Contents..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/container.py:211 -msgid "Set navigation anchor" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/container.py:285 -msgid "Show/hide all paragraphs" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/container.py:333 -#: ./src/pyams_content/component/paragraph/zmi/container.py:342 -#: ./src/pyams_content/component/paragraph/zmi/container.py:355 -msgid "Content blocks" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/container.py:412 -msgid "Links and attachments..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/container.py:424 -msgid "Content blocks links and attachments" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/container.py:141 -msgid "No currently defined paragraph." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/container.py:294 -msgid "Click to open/close all paragraphs editors" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/container.py:307 -msgid "Click to open/close paragraph editor" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/container.py:147 -msgid "Check allowed paragraph types to be able to create new paragraphs." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:79 -msgid "Pictograms..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:92 -msgid "Add new pictogram paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:119 -msgid "Edit pictogram paragraph properties" -msgstr "" - -#. Default: Header -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:256 -msgid "pictogram-item-header" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:295 -#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:80 -msgid "Pictograms" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:310 -#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:59 -msgid "Add pictogram" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:323 -#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:71 -msgid "Add new pictogram" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:365 -#: ./src/pyams_content/reference/pictograms/zmi/__init__.py:95 -msgid "Edit pictogram properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:345 -msgid "Pictogram was correctly added" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:355 -#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:393 -msgid "You must select a pictogram!" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/audio.py:50 -msgid "Audio paragraph..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/audio.py:63 -msgid "Add new audio paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/audio.py:85 -msgid "Edit audio properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/frame.py:96 -msgid "Framed text..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/frame.py:110 -msgid "Add new framed text paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/frame.py:136 -msgid "Edit framed text paragraph properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/verbatim.py:55 -msgid "Verbatim..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/verbatim.py:68 -msgid "Add new verbatim paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/verbatim.py:107 -msgid "Edit verbatim paragraph properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/html.py:74 -msgid "Raw HTML..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/html.py:87 -msgid "Add new raw HTML paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/html.py:117 -msgid "Edit raw HTML paragraph properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/html.py:157 -msgid "Rich text..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/html.py:170 -msgid "Add new rich text paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/html.py:207 -msgid "Edit rich text paragraph properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/contact.py:48 -msgid "Contact card..." -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/contact.py:61 -msgid "Add new contact card" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/contact.py:84 -msgid "Edit contact card properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/zmi/header.py:44 -msgid "Edit header paragraph properties" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/__init__.py:83 -msgid "Content paragraphs" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/__init__.py:135 -msgid "Paragraphs navigation anchors" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:30 -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:52 -msgid "Selected paragraphs" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:31 -msgid "" -"List of selected paragraphs; an empty selection means that all paragraphs " -"will be selectable by following filters; otherwise, this selection will have " -"priority" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:37 -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:59 -msgid "Paragraph types" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:38 -msgid "" -"Select list of paragraph types you want to include; an empty selection means " -"that all paragraphs types will be selected" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:43 -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:65 -msgid "Anchors only?" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:44 -msgid "If 'yes', only paragraphs set as 'anchors' will be selected" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:53 -msgid "" -"List of paragraphs selected for navigation; an empty selection means that all" -" paragraphs will be selectable by following filters; otherwise, this " -"selection will have priority" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:60 -msgid "" -"Select list of paragraph types you want to use for navigation; an empty " -"selection means that all paragraphs types will be selected" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:66 -msgid "If 'no', all paragraphs will be used as navigation anchors" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/zmi/__init__.py:67 -#: ./src/pyams_content/component/paragraph/portlet/zmi/__init__.py:122 -msgid "No filter, all paragraphs selected" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/zmi/__init__.py:74 -#: ./src/pyams_content/component/paragraph/portlet/zmi/__init__.py:129 -msgid "No filter, all paragraph types selected" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:4 -#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:4 -msgid "Selected paragraphs:" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:10 -#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:10 -msgid "Paragraphs filters:" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:13 -#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:13 -msgid "Selected paragraph types:" -msgstr "" - -#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:18 -#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:18 -msgid "Only display anchors" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:39 -msgid "Is this milestone visible in front-office?" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:44 -msgid "Milestone title" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:48 -msgid "The way this label will be rendered depends on presentation template" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:52 -msgid "Paragraph to which this milestone should lead" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:82 -msgid "Additional text associated to this milestone paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:85 -msgid "Milestones template" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:86 -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.py:101 -#: ./src/pyams_content/shared/logo/interfaces.py:89 -msgid "Presentation template used for this paragraph" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:43 -msgid "Is this paragraph visible in front-office?" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:47 -msgid "Anchor?" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:48 -msgid "Is this paragraph a navigation anchor?" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:52 -msgid "§ Title" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:92 -msgid "Allowed paragraphs" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:93 -msgid "List of paragraphs allowed for this content type" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:97 -#: ./src/pyams_content/shared/common/zmi/types.py:171 -#: ./src/pyams_content/shared/common/zmi/types.py:411 -msgid "Default paragraphs" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:98 -msgid "List of paragraphs automatically added to a new content" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/map.py:41 -msgid "Location map" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/map.py:48 -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:73 -msgid "GPS location" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/map.py:49 -msgid "GPS coordinates used to locate map" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/map.py:52 -msgid "Display location mark?" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/map.py:53 -msgid "If 'yes', a location marker will be displayed on map" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/map.py:57 -msgid "Map template" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/map.py:58 -msgid "Presentation template used for this map" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/video.py:40 -msgid "Video file content" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/video.py:51 -#: ./src/pyams_content/component/video/interfaces.py:47 -msgid "Video description displayed by front-office template" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/video.py:54 -#: ./src/pyams_content/component/video/interfaces.py:72 -msgid "Video template" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/video.py:55 -#: ./src/pyams_content/component/video/interfaces.py:73 -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.py:43 -#: ./src/pyams_content/shared/common/interfaces/types.py:75 -#: ./src/pyams_content/features/menu/interfaces.py:68 -msgid "Pictogram" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:47 -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:32 -msgid "Audio" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/audio.py:54 -msgid "Audio template" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/audio.py:55 -msgid "Presentation template used for this audio file" -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:55 -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:63 -msgid "Body" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/html.py:66 -msgid "Body template" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:44 -msgid "Contact card" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:51 -msgid "Contact identity" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:52 -msgid "Name of the contact" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:56 -msgid "Label of contact function" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:59 -msgid "Email address" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:60 -msgid "Contact email address" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:63 -msgid "Contact form" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:64 -msgid "Reference of contact form" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:68 -msgid "Photo" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:69 -msgid "Use 'browse' button to select contact picture" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:77 -msgid "Address" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:80 -msgid "Contact template" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:81 -msgid "Presentation template used for this contact" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/contact.py:74 -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 -#: ./src/pyams_content/shared/common/interfaces/__init__.py:151 -#: ./src/pyams_content/shared/site/interfaces.py:82 -msgid "Header" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/header.py:43 -#: ./src/pyams_content/features/header/interfaces.py:39 -msgid "Header template" -msgstr "" - -#: ./src/pyams_content/component/paragraph/interfaces/header.py:44 -#: ./src/pyams_content/features/header/interfaces.py:40 -msgid "Presentation template used for this header" -msgstr "" - -#: ./src/pyams_content/component/theme/__init__.py:74 -#: ./src/pyams_content/component/theme/interfaces.py:64 -#: ./src/pyams_content/component/theme/interfaces.py:78 -#: ./src/pyams_content/component/theme/zmi/portlet.py:40 -#: ./src/pyams_content/shared/common/zmi/search.py:189 -#: ./src/pyams_content/root/zmi/search.py:179 -#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:181 -msgid "Tags" -msgstr "" - -#: ./src/pyams_content/component/theme/__init__.py:122 -#: ./src/pyams_content/component/theme/interfaces.py:105 -#: ./src/pyams_content/component/theme/interfaces.py:119 -#: ./src/pyams_content/component/theme/zmi/portlet.py:55 -#: ./src/pyams_content/shared/common/zmi/search.py:192 -msgid "Themes" -msgstr "" - -#: ./src/pyams_content/component/theme/__init__.py:170 -#: ./src/pyams_content/component/theme/interfaces.py:146 -#: ./src/pyams_content/component/theme/interfaces.py:160 -#: ./src/pyams_content/component/theme/zmi/portlet.py:70 -#: ./src/pyams_content/shared/common/zmi/search.py:195 -msgid "Collections" -msgstr "" - -#: ./src/pyams_content/component/theme/__init__.py:83 -msgid "no defined tag" -msgstr "" - -#: ./src/pyams_content/component/theme/__init__.py:131 -msgid "no defined theme" -msgstr "" - -#: ./src/pyams_content/component/theme/__init__.py:179 -msgid "no defined collection" -msgstr "" - -#: ./src/pyams_content/component/theme/interfaces.py:41 -msgid "Enable search by tag?" -msgstr "" - -#: ./src/pyams_content/component/theme/interfaces.py:42 -msgid "" -"If 'yes', displayed tags will lead to a search engine displaying contents " -"matching given tag" -msgstr "" - -#: ./src/pyams_content/component/theme/interfaces.py:47 -msgid "Tags search target" -msgstr "" - -#: ./src/pyams_content/component/theme/interfaces.py:48 -msgid "Site or folder where tags search is displayed" -msgstr "" - -#: ./src/pyams_content/component/theme/interfaces.py:54 -msgid "You must specify search target when activating search by tags!" -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/__init__.py:55 -#: ./src/pyams_content/shared/view/zmi/theme.py:56 -msgid "Tags..." -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/__init__.py:66 -msgid "Content tags" -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/__init__.py:99 -#: ./src/pyams_content/shared/view/zmi/theme.py:102 -msgid "Themes..." -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/__init__.py:107 -msgid "Content themes" -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/__init__.py:159 -#: ./src/pyams_content/shared/view/zmi/theme.py:148 -msgid "Collections..." -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/__init__.py:172 -msgid "Content collections" -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/manager.py:58 -msgid "Tags settings..." -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/manager.py:72 -msgid "Selected tags" -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/manager.py:109 -msgid "Themes settings..." -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/manager.py:123 -msgid "Selected themes" -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/manager.py:159 -msgid "Collections settings..." -msgstr "" - -#: ./src/pyams_content/component/theme/zmi/manager.py:173 -msgid "Selected collections" -msgstr "" - -#: ./src/pyams_content/component/association/container.py:91 -#: ./src/pyams_content/component/association/interfaces.py:93 -#: ./src/pyams_content/component/association/zmi/__init__.py:313 -msgid "Associations" -msgstr "" - -#: ./src/pyams_content/component/association/interfaces.py:43 -#: ./src/pyams_content/features/menu/interfaces.py:56 -msgid "Is this item visible in front-office?" -msgstr "" - -#: ./src/pyams_content/component/association/interfaces.py:100 -msgid "Associations template" -msgstr "" - -#: ./src/pyams_content/component/association/interfaces.py:101 -msgid "Presentation template used for 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:209 -msgid "Public title" -msgstr "" - -#: ./src/pyams_content/component/association/zmi/__init__.py:229 -msgid "Inner title" -msgstr "" - -#: ./src/pyams_content/component/association/zmi/__init__.py:247 -msgid "Size" -msgstr "" - -#: ./src/pyams_content/component/association/zmi/__init__.py:290 -#: ./src/pyams_content/component/association/zmi/__init__.py:300 -msgid "Associations list" -msgstr "" - -#: ./src/pyams_content/component/association/zmi/__init__.py:66 -msgid "Association was correctly added." -msgstr "" - -#: ./src/pyams_content/component/links/__init__.py:144 -msgid "Internal link" -msgstr "" - -#: ./src/pyams_content/component/links/__init__.py:230 -msgid "External link" -msgstr "" - -#: ./src/pyams_content/component/links/__init__.py:283 -msgid "Mailto link" -msgstr "" - -#: ./src/pyams_content/component/links/__init__.py:217 -msgid "target is not published" -msgstr "" - -#: ./src/pyams_content/component/links/interfaces.py:35 -#: ./src/pyams_content/shared/imagemap/interfaces.py:55 -msgid "Alternate title" -msgstr "" - -#: ./src/pyams_content/component/links/interfaces.py:36 -msgid "Link title, as shown in front-office" -msgstr "" - -#: ./src/pyams_content/component/links/interfaces.py:40 -msgid "Link description displayed by front-office template" -msgstr "" - -#: ./src/pyams_content/component/links/interfaces.py:44 -msgid "Name of the pictogram associated with this link" -msgstr "" - -#: ./src/pyams_content/component/links/interfaces.py:61 -#: ./src/pyams_content/shared/logo/interfaces.py:54 -#: ./src/pyams_content/features/redirect/interfaces.py:68 -msgid "Target URL" -msgstr "" - -#: ./src/pyams_content/component/links/interfaces.py:62 -#: ./src/pyams_content/shared/logo/interfaces.py:55 -msgid "URL used to access external resource" -msgstr "" - -#: ./src/pyams_content/component/links/interfaces.py:66 -msgid "Language used in this remote resource" -msgstr "" - -#: ./src/pyams_content/component/links/interfaces.py:74 -msgid "Target address" -msgstr "" - -#: ./src/pyams_content/component/links/interfaces.py:75 -msgid "Target email address" -msgstr "" - -#: ./src/pyams_content/component/links/interfaces.py:78 -msgid "Address name" -msgstr "" - -#: ./src/pyams_content/component/links/interfaces.py:79 -msgid "Address as displayed in address book" -msgstr "" - -#: ./src/pyams_content/component/links/zmi/__init__.py:54 -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:83 -msgid "Add new internal link" -msgstr "" - -#: ./src/pyams_content/component/links/zmi/__init__.py:114 -msgid "Edit internal link properties" -msgstr "" - -#: ./src/pyams_content/component/links/zmi/__init__.py:142 -msgid "External links" -msgstr "" - -#: ./src/pyams_content/component/links/zmi/__init__.py:157 -msgid "Add external link" -msgstr "" - -#: ./src/pyams_content/component/links/zmi/__init__.py:171 -msgid "Add new external link" -msgstr "" - -#: ./src/pyams_content/component/links/zmi/__init__.py:202 -msgid "Edit external link properties" -msgstr "" - -#: ./src/pyams_content/component/links/zmi/__init__.py:230 -msgid "Mailto links" -msgstr "" - -#: ./src/pyams_content/component/links/zmi/__init__.py:245 -msgid "Add mailto link" -msgstr "" - -#: ./src/pyams_content/component/links/zmi/__init__.py:259 -msgid "Add new mailto link" -msgstr "" - -#: ./src/pyams_content/component/links/zmi/__init__.py:290 -msgid "Edit mailto link properties" +#: ./src/pyams_content/component/keynumber/zmi/__init__.py:231 +msgid "Add keynumber" +msgstr "" + +#: ./src/pyams_content/component/keynumber/zmi/__init__.py:243 +msgid "Add new keynumber" +msgstr "" + +#: ./src/pyams_content/component/keynumber/zmi/__init__.py:272 +msgid "Edit keynumber properties" +msgstr "" + +#: ./src/pyams_content/component/keynumber/zmi/__init__.py:258 +msgid "Key number was correctly added" +msgstr "" + +#: ./src/pyams_content/component/keynumber/zmi/paragraph.py:49 +msgid "Key numbers..." +msgstr "" + +#: ./src/pyams_content/component/keynumber/zmi/paragraph.py:62 +msgid "Add new key number paragraph" +msgstr "" + +#: ./src/pyams_content/component/keynumber/zmi/paragraph.py:90 +msgid "Edit key number paragraph properties" +msgstr "" + +#: ./src/pyams_content/component/gallery/__init__.py:155 +msgid "Gallery" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:120 +msgid "Medias gallery" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:42 +#: ./src/pyams_content/component/illustration/interfaces.py:40 +#: ./src/pyams_content/component/illustration/interfaces.py:103 +msgid "Image or video data" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:43 +#: ./src/pyams_content/component/illustration/interfaces.py:41 +#: ./src/pyams_content/component/illustration/interfaces.py:104 +msgid "Image or video content" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:46 +#: ./src/pyams_content/component/video/interfaces.py:69 +#: ./src/pyams_content/component/paragraph/interfaces/video.py:43 +#: ./src/pyams_content/component/paragraph/interfaces/audio.py:43 +#: ./src/pyams_content/component/illustration/interfaces.py:47 +msgid "Legend" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:50 +msgid "Alternate title used to describe media content" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:53 +#: ./src/pyams_content/component/gallery/interfaces.py:110 +#: ./src/pyams_content/component/links/interfaces.py:39 +#: ./src/pyams_content/component/paragraph/interfaces/audio.py:50 +#: ./src/pyams_content/component/extfile/interfaces.py:36 +#: ./src/pyams_content/shared/form/interfaces.py:64 +msgid "Description" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:56 +#: ./src/pyams_content/component/gallery/zmi/interfaces.py:39 +#: ./src/pyams_content/component/video/interfaces.py:42 +#: ./src/pyams_content/component/paragraph/interfaces/video.py:46 +#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:44 +#: ./src/pyams_content/component/paragraph/interfaces/audio.py:46 +#: ./src/pyams_content/component/extfile/interfaces.py:40 +#: ./src/pyams_content/component/illustration/interfaces.py:54 +msgid "Author" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:57 +#: ./src/pyams_content/component/gallery/zmi/interfaces.py:40 +#: ./src/pyams_content/component/video/interfaces.py:43 +#: ./src/pyams_content/component/paragraph/interfaces/video.py:47 +#: ./src/pyams_content/component/paragraph/interfaces/audio.py:47 +#: ./src/pyams_content/component/extfile/interfaces.py:41 +msgid "Name of document's author" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:60 +#: ./src/pyams_content/component/paragraph/interfaces/audio.py:39 +#: ./src/pyams_content/component/extfile/interfaces.py:85 +msgid "Audio data" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:61 +msgid "Sound file associated with the current media" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:64 +msgid "Sound title" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:65 +msgid "Title of associated sound file" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:68 +msgid "Sound description" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:69 +msgid "Short description of associated sound file" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:72 +msgid "Visible media?" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:73 +msgid "If 'no', this media won't be displayed in front office" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:84 +msgid "Gallery template" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:85 +msgid "Presentation template used for this gallery" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:107 +msgid "Gallery title, as shown in front-office" +msgstr "" + +#: ./src/pyams_content/component/gallery/interfaces.py:111 +msgid "Gallery description displayed by front-office template" +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:172 +msgid "Add media(s)" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/file.py:178 +msgid "Update media properties" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/file.py:227 +msgid "Remove media..." +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/file.py:142 +msgid "Show/hide media" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/file.py:194 +msgid "Audio content" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/__init__.py:61 +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/interfaces.py:35 +msgid "Images or videos data" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/interfaces.py:36 +msgid "You can upload a single file or choose to upload a whole ZIP archive" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/paragraph.py:63 +msgid "Medias gallery..." +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/paragraph.py:76 +msgid "Add new gallery" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/paragraph.py:98 +msgid "Edit gallery properties" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/paragraph.py:134 +msgid "Visible medias" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/paragraph.py:193 +msgid "Media(s) successfully added" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:12 +msgid "Gallery medias" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:18 +msgid "Download medias" +msgstr "" + +#: ./src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt:42 +#: ./src/pyams_content/component/gallery/zmi/templates/gallery-media.pt:9 +msgid "Zoom image" msgstr "" #: ./src/pyams_content/component/video/__init__.py:67 @@ -1670,6 +530,11 @@ msgid "External video" msgstr "" +#: ./src/pyams_content/component/video/interfaces.py:47 +#: ./src/pyams_content/component/paragraph/interfaces/video.py:51 +msgid "Video description displayed by front-office template" +msgstr "" + #: ./src/pyams_content/component/video/interfaces.py:50 msgid "Video provider" msgstr "" @@ -1678,10 +543,24 @@ msgid "Name of external platform providing selected video" msgstr "" +#: ./src/pyams_content/component/video/interfaces.py:72 +#: ./src/pyams_content/component/paragraph/interfaces/video.py:54 +msgid "Video template" +msgstr "" + +#: ./src/pyams_content/component/video/interfaces.py:73 +#: ./src/pyams_content/component/paragraph/interfaces/video.py:55 +msgid "Presentation template used for this video" +msgstr "" + #: ./src/pyams_content/component/video/provider/dailymotion.py:94 msgid "Dailymotion settings" msgstr "" +#: ./src/pyams_content/component/video/provider/vimeo.py:92 +msgid "Vimeo settings" +msgstr "" + #: ./src/pyams_content/component/video/provider/__init__.py:63 msgid "Other provider" msgstr "" @@ -1690,10 +569,6 @@ 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 "" @@ -1922,6 +797,11 @@ msgid "Add new external video..." msgstr "" +#: ./src/pyams_content/component/video/zmi/paragraph.py:183 +#: ./src/pyams_content/component/paragraph/zmi/video.py:86 +msgid "Edit video properties" +msgstr "" + #: ./src/pyams_content/component/video/zmi/paragraph.py:118 msgid "Video provider is required" msgstr "" @@ -1935,1438 +815,2466 @@ msgid "Other settings" msgstr "" -#: ./src/pyams_content/shared/common/__init__.py:243 -#: ./src/pyams_content/shared/common/zmi/properties.py:69 -#: ./src/pyams_content/shared/common/zmi/manager.py:96 -msgid "Properties" -msgstr "" - -#: ./src/pyams_content/shared/common/__init__.py:153 -#: ./src/pyams_content/shared/common/__init__.py:161 -#, python-format -msgid "{date} by {principal}" -msgstr "" - -#: ./src/pyams_content/shared/common/__init__.py:266 -#, python-format -msgid "title length should be between 40 and 66 characters ({length} actually)" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/search.py:96 -#: ./src/pyams_content/root/zmi/search.py:95 -msgid "Quick search results" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/search.py:162 -#: ./src/pyams_content/shared/common/zmi/search.py:204 -#: ./src/pyams_content/root/zmi/search.py:152 -#: ./src/pyams_content/root/zmi/search.py:188 -msgid "Advanced search" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/search.py:332 -#: ./src/pyams_content/root/zmi/search.py:280 -msgid "Advanced search results" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/search.py:170 -#: ./src/pyams_content/shared/common/zmi/dashboard.py:226 -#: ./src/pyams_content/root/zmi/search.py:164 -msgid "Owner" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/search.py:173 -#: ./src/pyams_content/shared/common/zmi/dashboard.py:149 -msgid "Status" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/search.py:177 -#: ./src/pyams_content/root/zmi/search.py:167 -msgid "Created after..." -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/search.py:180 -#: ./src/pyams_content/root/zmi/search.py:170 -msgid "Created before..." -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/search.py:183 -#: ./src/pyams_content/root/zmi/search.py:173 -msgid "Modified after..." -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/search.py:186 -#: ./src/pyams_content/root/zmi/search.py:176 -msgid "Modified before..." -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/properties.py:59 -msgid "Composition" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/properties.py:82 -msgid "Content properties" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:69 -msgid "Data types" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:147 -msgid "Data type label" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:187 -#: ./src/pyams_content/shared/common/zmi/types.py:427 -msgid "Default associations" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:203 -msgid "Default themes" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:231 -msgid "Content data types" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:254 -msgid "Add data type" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:266 -msgid "Add new data type" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:309 -msgid "Data type properties" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:390 -msgid "Subtype label" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:471 -msgid "Add subtype" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:483 -msgid "Add new subtype" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:530 -msgid "Data subtype properties" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:572 -msgid "Select content type..." -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:114 -msgid "No currently defined data type." -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:299 -msgid "Specified type name is already used!" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:506 -msgid "Subtype was correctly added." -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:520 -msgid "Specified subtype name is already used!" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:159 -msgid "Click to see subtypes" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/types.py:610 -#, python-format -msgid "Custom properties for type « {0} »" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:845 -msgid "Prior checks" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:120 -msgid "Request publication" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:207 -#: ./src/pyams_content/workflow/__init__.py:316 -msgid "Cancel publication request" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:247 -msgid "Refuse publication request" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:301 -#: ./src/pyams_content/workflow/basic.py:197 -msgid "Publish" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:392 -msgid "Request retire" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:448 -msgid "Cancel retire request" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:488 -msgid "Retire" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:529 -#: ./src/pyams_content/workflow/__init__.py:437 -msgid "Request archive" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:572 -msgid "Cancel archive request" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:612 -msgid "Archive" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:653 -#: ./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 -#: ./src/pyams_content/workflow/basic.py:225 -#: ./src/pyams_content/workflow/basic.py:237 -msgid "Create new version" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:704 -#: ./src/pyams_content/workflow/__init__.py:562 -#: ./src/pyams_content/workflow/basic.py:249 -msgid "Delete version" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:791 -msgid "Previewed content?" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:795 -msgid "Verified content?" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:177 -#: ./src/pyams_content/shared/common/zmi/workflow.py:361 -msgid "Publication start date is required" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:270 -#: ./src/pyams_content/shared/common/zmi/workflow.py:418 -msgid "A comment is required" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:730 -msgid "Delete content" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:739 -msgid "Delete definitively" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:868 +#: ./src/pyams_content/component/links/__init__.py:144 +msgid "Internal link" +msgstr "" + +#: ./src/pyams_content/component/links/__init__.py:230 +msgid "External link" +msgstr "" + +#: ./src/pyams_content/component/links/__init__.py:283 +msgid "Mailto link" +msgstr "" + +#: ./src/pyams_content/component/links/__init__.py:217 +msgid "target is not published" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:35 +#: ./src/pyams_content/shared/imagemap/interfaces.py:55 +msgid "Alternate title" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:36 +msgid "Link title, as shown in front-office" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:40 +msgid "Link description displayed by front-office template" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:43 +#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:46 +#: ./src/pyams_content/features/menu/interfaces.py:68 +#: ./src/pyams_content/shared/common/interfaces/types.py:75 +msgid "Pictogram" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:44 +msgid "Name of the pictogram associated with this link" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:61 +#: ./src/pyams_content/features/redirect/interfaces.py:68 +#: ./src/pyams_content/shared/logo/interfaces.py:54 +msgid "Target URL" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:62 +#: ./src/pyams_content/shared/logo/interfaces.py:55 +msgid "URL used to access external resource" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:65 +#: ./src/pyams_content/component/extfile/interfaces.py:44 +msgid "Language" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:66 +msgid "Language used in this remote resource" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:74 +msgid "Target address" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:75 +msgid "Target email address" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:78 +msgid "Address name" +msgstr "" + +#: ./src/pyams_content/component/links/interfaces.py:79 +msgid "Address as displayed in address book" +msgstr "" + +#: ./src/pyams_content/component/links/zmi/__init__.py:54 +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:83 +msgid "Add new internal link" +msgstr "" + +#: ./src/pyams_content/component/links/zmi/__init__.py:114 +msgid "Edit internal link properties" +msgstr "" + +#: ./src/pyams_content/component/links/zmi/__init__.py:142 +msgid "External links" +msgstr "" + +#: ./src/pyams_content/component/links/zmi/__init__.py:157 +msgid "Add external link" +msgstr "" + +#: ./src/pyams_content/component/links/zmi/__init__.py:171 +msgid "Add new external link" +msgstr "" + +#: ./src/pyams_content/component/links/zmi/__init__.py:202 +msgid "Edit external link properties" +msgstr "" + +#: ./src/pyams_content/component/links/zmi/__init__.py:230 +msgid "Mailto links" +msgstr "" + +#: ./src/pyams_content/component/links/zmi/__init__.py:245 +msgid "Add mailto link" +msgstr "" + +#: ./src/pyams_content/component/links/zmi/__init__.py:259 +msgid "Add new mailto link" +msgstr "" + +#: ./src/pyams_content/component/links/zmi/__init__.py:290 +msgid "Edit mailto link properties" +msgstr "" + +#: ./src/pyams_content/component/paragraph/header.py:62 +msgid "This paragraph type is deprecated and should be removed!" +msgstr "" + +#: ./src/pyams_content/component/paragraph/container.py:94 +msgid "Paragraphs" +msgstr "" + +#: ./src/pyams_content/component/paragraph/container.py:116 +msgid "no visible paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/pictogram.py:130 +msgid "Selected pictogram is missing" +msgstr "" + +#: ./src/pyams_content/component/paragraph/milestone.py:138 +msgid "Selected paragraph is missing" +msgstr "" + +#: ./src/pyams_content/component/paragraph/milestone.py:141 +msgid "Selected paragraph is not visible" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/header.py:33 +#: ./src/pyams_content/component/paragraph/interfaces/header.py:40 +#: ./src/pyams_content/shared/common/interfaces/__init__.py:151 +#: ./src/pyams_content/shared/site/interfaces.py:82 +msgid "Header" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/header.py:43 +#: ./src/pyams_content/features/header/interfaces.py:39 +msgid "Header template" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/header.py:44 +#: ./src/pyams_content/features/header/interfaces.py:40 +msgid "Presentation template used for this header" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:41 +msgid "Contact card" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:48 +msgid "Contact identity" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:49 +msgid "Name of the contact" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:52 +#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:48 +msgid "In charge of" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:53 +msgid "Label of contact function" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:56 +msgid "Company" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:57 +msgid "Business name of the employer" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:60 +msgid "Email address" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:61 +msgid "Contact email address" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:64 +msgid "Contact form" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:65 +msgid "Reference of contact form" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:69 +msgid "Phone number" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:70 msgid "" -"You must confirm that you previewed and checked this content before " -"requesting publication!!" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:84 -#, python-format -msgid "{state} | by {principal}" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:871 +"Phone number in international format.\n" +" E.g. +33 ...." +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:73 +msgid "Photo" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:74 +msgid "Use 'browse' button to select contact picture" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:82 +msgid "Address" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:85 +msgid "Contact template" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:86 +msgid "Presentation template used for this contact" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:78 +#: ./src/pyams_content/component/paragraph/interfaces/map.py:48 +msgid "GPS location" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/contact.py:79 +msgid "GPS coordinates used to locate contact" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/video.py:32 +#: ./src/pyams_content/component/extfile/__init__.py:256 +#: ./src/pyams_content/component/extfile/__init__.py:261 +msgid "Video" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/video.py:39 +#: ./src/pyams_content/component/extfile/interfaces.py:77 +msgid "Video data" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/video.py:40 +msgid "Video file content" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/pictogram.py:80 +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:295 +msgid "Pictograms" +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:47 +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/milestone.py:74 +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:288 +msgid "Milestones" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:39 +msgid "Is this milestone visible in front-office?" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:44 +msgid "Milestone title" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:47 +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:247 +msgid "Associated label" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:48 +msgid "The way this label will be rendered depends on presentation template" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:51 +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:259 +msgid "Anchor" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:52 +msgid "Paragraph to which this milestone should lead" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:82 +msgid "Additional text associated to this milestone paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:85 +msgid "Milestones template" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/milestone.py:86 +msgid "Presentation template used for milestones" +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:46 +#: ./src/pyams_content/component/paragraph/interfaces/html.py:67 +#: ./src/pyams_content/component/paragraph/interfaces/verbatim.py:53 +#: ./src/pyams_content/component/paragraph/interfaces/keypoint.py:45 +#: ./src/pyams_content/component/paragraph/interfaces/frame.py:44 +#: ./src/pyams_content/shared/imagemap/interfaces.py:101 +#: ./src/pyams_content/shared/logo/interfaces.py:89 +msgid "Presentation template used for this paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/html.py:63 +msgid "Body" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/html.py:66 +msgid "Body 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: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/__init__.py:43 +msgid "Is this paragraph visible in front-office?" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:47 +msgid "Anchor?" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:48 +msgid "Is this paragraph a navigation anchor?" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:52 +msgid "§ Title" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:92 +msgid "Allowed paragraphs" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:93 +msgid "List of paragraphs allowed for this content type" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:97 +#: ./src/pyams_content/shared/common/zmi/types.py:171 +#: ./src/pyams_content/shared/common/zmi/types.py:411 +msgid "Default paragraphs" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/__init__.py:98 +msgid "List of paragraphs automatically added to a new content" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/map.py:41 +msgid "Location map" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/map.py:49 +msgid "GPS coordinates used to locate map" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/map.py:52 +msgid "Display location mark?" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/map.py:53 +msgid "If 'yes', a location marker will be displayed on map" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/map.py:57 +msgid "Map template" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/map.py:58 +msgid "Presentation template used for this map" +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/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/audio.py:32 +msgid "Audio" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/audio.py:40 +#: ./src/pyams_content/component/extfile/interfaces.py:86 +msgid "Audio file content" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/audio.py:51 +#: ./src/pyams_content/component/extfile/interfaces.py:37 +msgid "File description displayed by front-office template" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/audio.py:54 +msgid "Audio template" +msgstr "" + +#: ./src/pyams_content/component/paragraph/interfaces/audio.py:55 +msgid "Presentation template used for this audio file" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/__init__.py:83 +msgid "Content paragraphs" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/__init__.py:135 +msgid "Paragraphs navigation anchors" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:30 +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:52 +msgid "Selected paragraphs" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:31 +msgid "" +"List of selected paragraphs; an empty selection means that all paragraphs " +"will be selectable by following filters; otherwise, this selection will have " +"priority" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:37 +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:59 +msgid "Paragraph types" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:38 +msgid "" +"Select list of paragraph types you want to include; an empty selection means " +"that all paragraphs types will be selected" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:43 +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:65 +msgid "Anchors only?" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:44 +msgid "If 'yes', only paragraphs set as 'anchors' will be selected" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:53 +msgid "" +"List of paragraphs selected for navigation; an empty selection means that all" +" paragraphs will be selectable by following filters; otherwise, this " +"selection will have priority" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:60 msgid "" -"You must confirm that you checked this content before requesting " -"publication!!" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/workflow.py:80 -#: ./src/pyams_content/workflow/__init__.py:649 -#: ./src/pyams_content/workflow/__init__.py:620 -#: ./src/pyams_content/workflow/basic.py:316 -#: ./src/pyams_content/workflow/basic.py:287 -#, 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:86 -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:332 -#, python-format -msgid "Clone created from version {source} of {oid} (in « {state} » state)" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/__init__.py:377 -msgid "Created or modified in this version" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/summary.py:47 -msgid "Display content summary" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/summary.py:71 -msgid "Identity card" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/summary.py:89 -msgid "Requested action" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/summary.py:130 -msgid "Publication and retire dates" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/summary.py:149 -msgid "Current version" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/summary.py:185 -msgid "Content history" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/summary.py:120 -msgid "Associated comment" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/summary.py:167 -#: ./src/pyams_content/shared/common/zmi/dashboard.py:193 -msgid "Version" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/summary.py:110 -#, python-format -msgid "{state} {date} by {principal}" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/summary.py:173 -#, 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 +"Select list of paragraph types you want to use for navigation; an empty " +"selection means that all paragraphs types will be selected" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/interfaces.py:66 +msgid "If 'no', all paragraphs will be used as navigation anchors" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/zmi/__init__.py:67 +#: ./src/pyams_content/component/paragraph/portlet/zmi/__init__.py:122 +msgid "No filter, all paragraphs selected" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/zmi/__init__.py:74 +#: ./src/pyams_content/component/paragraph/portlet/zmi/__init__.py:129 +msgid "No filter, all paragraph types selected" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:4 +#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:4 +msgid "Selected paragraphs:" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:10 +#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:10 +msgid "Paragraphs filters:" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:13 +#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:13 +msgid "Selected paragraph types:" +msgstr "" + +#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/navigation-preview.pt:18 +#: ./src/pyams_content/component/paragraph/portlet/zmi/templates/container-preview.pt:18 +msgid "Only display anchors" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/header.py:44 +msgid "Edit header paragraph properties" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/container.py:70 +msgid "Contents..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/container.py:211 +msgid "Set navigation anchor" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/container.py:285 +msgid "Show/hide all paragraphs" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/container.py:333 +#: ./src/pyams_content/component/paragraph/zmi/container.py:342 +#: ./src/pyams_content/component/paragraph/zmi/container.py:355 +msgid "Content blocks" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/container.py:412 +msgid "Links and attachments..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/container.py:424 +msgid "Content blocks links and attachments" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/container.py:141 +msgid "No currently defined paragraph." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/container.py:294 +msgid "Click to open/close all paragraphs editors" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/container.py:307 +msgid "Click to open/close paragraph editor" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/container.py:147 +msgid "Check allowed paragraph types to be able to create new paragraphs." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/contact.py:48 +msgid "Contact card..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/contact.py:61 +msgid "Add new contact card" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/contact.py:84 +msgid "Edit contact card properties" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/video.py:50 +msgid "Video paragraph..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/video.py:63 +msgid "Add new video paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:79 +msgid "Pictograms..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:92 +msgid "Add new pictogram paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:119 +msgid "Edit pictogram paragraph properties" +msgstr "" + +#. Default: Header +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:256 +msgid "pictogram-item-header" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:345 +msgid "Pictogram was correctly added" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:355 +#: ./src/pyams_content/component/paragraph/zmi/pictogram.py:393 +msgid "You must select a pictogram!" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:74 +msgid "Milestones..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:87 +msgid "Add new milestone paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:114 +msgid "Edit milestone paragraph properties" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:303 +msgid "Add milestone" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:316 +msgid "Add new milestone" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:343 +msgid "Edit milestone properties" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:331 +msgid "Milestone was correctly added" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/milestone.py:274 +msgid "(missing paragraph)" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/html.py:74 +msgid "Raw HTML..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/html.py:87 +msgid "Add new raw HTML paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/html.py:117 +msgid "Edit raw HTML paragraph properties" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/html.py:157 +msgid "Rich text..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/html.py:170 +msgid "Add new rich text paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/html.py:207 +msgid "Edit rich text paragraph properties" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/verbatim.py:55 +msgid "Verbatim..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/verbatim.py:68 +msgid "Add new verbatim paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/verbatim.py:107 +msgid "Edit verbatim paragraph properties" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/__init__.py:60 +msgid "Content block types..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/__init__.py:74 +msgid "Content block types" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/__init__.py:84 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 +"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:209 +#: ./src/pyams_content/component/paragraph/zmi/__init__.py:222 +#: ./src/pyams_content/features/preview/zmi/__init__.py:45 +#: ./src/pyams_content/shared/common/zmi/templates/preview-input.pt:39 +msgid "Preview" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/__init__.py:214 +#: ./src/pyams_content/component/paragraph/zmi/__init__.py:227 +#: ./src/pyams_content/features/review/zmi/__init__.py:84 +#: ./src/pyams_content/shared/common/zmi/__init__.py:275 +#: ./src/pyams_content/shared/common/zmi/owner.py:73 +#: ./src/pyams_content/shared/common/zmi/workflow.py:119 +#: ./src/pyams_content/shared/common/zmi/workflow.py:206 +#: ./src/pyams_content/shared/common/zmi/workflow.py:246 +#: ./src/pyams_content/shared/common/zmi/workflow.py:300 +#: ./src/pyams_content/shared/common/zmi/workflow.py:391 +#: ./src/pyams_content/shared/common/zmi/workflow.py:447 +#: ./src/pyams_content/shared/common/zmi/workflow.py:487 +#: ./src/pyams_content/shared/common/zmi/workflow.py:528 +#: ./src/pyams_content/shared/common/zmi/workflow.py:571 +#: ./src/pyams_content/shared/common/zmi/workflow.py:611 +#: ./src/pyams_content/shared/common/zmi/workflow.py:652 +#: ./src/pyams_content/shared/common/zmi/workflow.py:703 +msgid "Cancel" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/__init__.py:216 +#: ./src/pyams_content/component/paragraph/zmi/__init__.py:229 +msgid "Submit" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/__init__.py:197 +msgid "Paragraph was correctly added." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/__init__.py:269 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 +"You changed renderer selection. Don't omit to update new renderer " +"properties..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/map.py:50 +msgid "Location map..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/map.py:63 +msgid "Add new location map" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/map.py:86 +msgid "Edit location map properties" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/keypoint.py:46 +msgid "Key points..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/keypoint.py:59 +msgid "Add new key points paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/keypoint.py:86 +msgid "Edit key points paragraph properties" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/frame.py:96 +msgid "Framed text..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/frame.py:110 +msgid "Add new framed text paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/frame.py:136 +msgid "Edit framed text paragraph properties" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/audio.py:50 +msgid "Audio paragraph..." +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/audio.py:63 +msgid "Add new audio paragraph" +msgstr "" + +#: ./src/pyams_content/component/paragraph/zmi/audio.py:85 +msgid "Edit audio properties" +msgstr "" + +#: ./src/pyams_content/component/association/container.py:91 +#: ./src/pyams_content/component/association/interfaces.py:93 +#: ./src/pyams_content/component/association/zmi/__init__.py:313 +msgid "Associations" +msgstr "" + +#: ./src/pyams_content/component/association/interfaces.py:43 +#: ./src/pyams_content/features/menu/interfaces.py:56 +msgid "Is this item visible in front-office?" +msgstr "" + +#: ./src/pyams_content/component/association/interfaces.py:100 +msgid "Associations template" +msgstr "" + +#: ./src/pyams_content/component/association/interfaces.py:101 +msgid "Presentation template used for associations" +msgstr "" + +#: ./src/pyams_content/component/association/zmi/__init__.py:96 +#: ./src/pyams_content/component/association/zmi/paragraph.py:54 +msgid "Associations..." +msgstr "" + +#: ./src/pyams_content/component/association/zmi/__init__.py:209 +msgid "Public title" +msgstr "" + +#: ./src/pyams_content/component/association/zmi/__init__.py:229 +msgid "Inner title" +msgstr "" + +#: ./src/pyams_content/component/association/zmi/__init__.py:247 +msgid "Size" +msgstr "" + +#: ./src/pyams_content/component/association/zmi/__init__.py:290 +#: ./src/pyams_content/component/association/zmi/__init__.py:300 +msgid "Associations list" +msgstr "" + +#: ./src/pyams_content/component/association/zmi/__init__.py:66 +msgid "Association was correctly added." +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/extfile/__init__.py:173 +#: ./src/pyams_content/component/extfile/__init__.py:178 +msgid "Standard file" +msgstr "" + +#: ./src/pyams_content/component/extfile/__init__.py:276 +#: ./src/pyams_content/component/extfile/__init__.py:281 +msgid "Audio file" +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:32 +msgid "Download link label" +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:33 +msgid "Label of download link, as shown in front-office" +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:45 +msgid "File's content language" +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:49 +msgid "Save file as..." +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:50 +msgid "Name under which the file will be saved" +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:57 +msgid "File data" +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:58 +msgid "File content" +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:69 +#: ./src/pyams_content/shared/logo/interfaces.py:59 +msgid "Image data" +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:70 +msgid "Image content" +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:78 +msgid "Video content" +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:104 +msgid "Default title prefix" +msgstr "" + +#: ./src/pyams_content/component/extfile/interfaces.py:105 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/rename.py:58 -msgid "Change URL..." -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/rename.py:75 -msgid "Change item URL" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/rename.py:82 -msgid "Item URL part" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/rename.py:83 -msgid "URL part used to access this content" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/rename.py:123 -msgid "You must provide an URL for this item!" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/reverse.py:57 -msgid "Reverse links" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/reverse.py:66 -msgid "Content's internal links" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/site.py:38 -#, python-format +"If used, this prefix will be automatically added to download link's label of " +"all files" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/manager.py:37 +msgid "External files..." +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/manager.py:51 +msgid "External files properties" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:70 +msgid "External files" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:85 +msgid "Add external file" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:99 +msgid "Add new external file" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:131 +msgid "Update file properties" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:159 +msgid "Images" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:174 +msgid "Add image" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:188 +msgid "Add new image" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:220 +msgid "Update image properties" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:252 +msgid "Videos" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:267 +msgid "Add video" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:281 +msgid "Add new video" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:306 +msgid "Update video properties" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:331 +msgid "Audios files" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:346 +msgid "Add audio file" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:360 +msgid "Add new audio file" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:385 +msgid "Update audio file properties" +msgstr "" + +#: ./src/pyams_content/component/extfile/zmi/__init__.py:46 +msgid "External file type" +msgstr "" + +#: ./src/pyams_content/component/illustration/__init__.py:172 +#: ./src/pyams_content/component/illustration/interfaces.py:97 +#: ./src/pyams_content/component/illustration/thesaurus.py:32 +#: ./src/pyams_content/component/illustration/zmi/__init__.py:56 +#: ./src/pyams_content/component/illustration/zmi/__init__.py:126 +#: ./src/pyams_content/component/illustration/zmi/paragraph.py:155 +msgid "Illustration" +msgstr "" + +#: ./src/pyams_content/component/illustration/interfaces.py:55 +msgid "Name of picture's author" +msgstr "" + +#: ./src/pyams_content/component/illustration/interfaces.py:63 +msgid "Illustration description displayed in front-office templates" +msgstr "" + +#: ./src/pyams_content/component/illustration/interfaces.py:66 +msgid "Illustration template" +msgstr "" + +#: ./src/pyams_content/component/illustration/interfaces.py:67 +msgid "Presentation template used for illustration" +msgstr "" + +#: ./src/pyams_content/component/illustration/zmi/__init__.py:151 +msgid "Navigation link illustration" +msgstr "" + +#: ./src/pyams_content/component/illustration/zmi/__init__.py:168 +msgid "Add illustration" +msgstr "" + +#: ./src/pyams_content/component/illustration/zmi/__init__.py:128 +msgid "Header illustration" +msgstr "" + +#: ./src/pyams_content/component/illustration/zmi/thesaurus.py:42 +#: ./src/pyams_content/component/illustration/zmi/paragraph.py:93 +msgid "Edit illustration properties" +msgstr "" + +#: ./src/pyams_content/component/illustration/zmi/paragraph.py:55 +msgid "Illustration..." +msgstr "" + +#: ./src/pyams_content/component/illustration/zmi/paragraph.py:68 +msgid "Add new illustration" +msgstr "" + +#: ./src/pyams_content/component/theme/__init__.py:74 +#: ./src/pyams_content/component/theme/interfaces.py:64 +#: ./src/pyams_content/component/theme/interfaces.py:78 +#: ./src/pyams_content/component/theme/zmi/portlet.py:40 +#: ./src/pyams_content/root/zmi/search.py:179 +#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:181 +#: ./src/pyams_content/shared/common/zmi/search.py:189 +msgid "Tags" +msgstr "" + +#: ./src/pyams_content/component/theme/__init__.py:122 +#: ./src/pyams_content/component/theme/interfaces.py:105 +#: ./src/pyams_content/component/theme/interfaces.py:119 +#: ./src/pyams_content/component/theme/zmi/portlet.py:55 +#: ./src/pyams_content/shared/common/zmi/search.py:192 +msgid "Themes" +msgstr "" + +#: ./src/pyams_content/component/theme/__init__.py:170 +#: ./src/pyams_content/component/theme/interfaces.py:146 +#: ./src/pyams_content/component/theme/interfaces.py:160 +#: ./src/pyams_content/component/theme/zmi/portlet.py:70 +#: ./src/pyams_content/shared/common/zmi/search.py:195 +msgid "Collections" +msgstr "" + +#: ./src/pyams_content/component/theme/__init__.py:83 +msgid "no defined tag" +msgstr "" + +#: ./src/pyams_content/component/theme/__init__.py:131 +msgid "no defined theme" +msgstr "" + +#: ./src/pyams_content/component/theme/__init__.py:179 +msgid "no defined collection" +msgstr "" + +#: ./src/pyams_content/component/theme/interfaces.py:41 +msgid "Enable search by tag?" +msgstr "" + +#: ./src/pyams_content/component/theme/interfaces.py:42 msgid "" -"SEARCH - Between all contents published into « {site} »" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/portal.py:44 -msgid "Edit default template properties" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/portal.py:54 +"If 'yes', displayed tags will lead to a search engine displaying contents " +"matching given tag" +msgstr "" + +#: ./src/pyams_content/component/theme/interfaces.py:47 +msgid "Tags search target" +msgstr "" + +#: ./src/pyams_content/component/theme/interfaces.py:48 +msgid "Site or folder where tags search is displayed" +msgstr "" + +#: ./src/pyams_content/component/theme/interfaces.py:54 +msgid "You must specify search target when activating search by tags!" +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/manager.py:58 +msgid "Tags settings..." +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/manager.py:72 +msgid "Selected tags" +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/manager.py:109 +msgid "Themes settings..." +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/manager.py:123 +msgid "Selected themes" +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/manager.py:159 +msgid "Collections settings..." +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/manager.py:173 +msgid "Selected collections" +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/__init__.py:55 +#: ./src/pyams_content/shared/view/zmi/theme.py:56 +msgid "Tags..." +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/__init__.py:66 +msgid "Content tags" +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/__init__.py:99 +#: ./src/pyams_content/shared/view/zmi/theme.py:102 +msgid "Themes..." +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/__init__.py:107 +msgid "Content themes" +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/__init__.py:159 +#: ./src/pyams_content/shared/view/zmi/theme.py:148 +msgid "Collections..." +msgstr "" + +#: ./src/pyams_content/component/theme/zmi/__init__.py:172 +msgid "Content collections" +msgstr "" + +#: ./src/pyams_content/interfaces/__init__.py:95 +msgid "Unique key" +msgstr "" + +#: ./src/pyams_content/interfaces/__init__.py:96 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" +"WARNING: this key can't be modified after creation!!! Spaces, uppercase " +"letters ou accentuated characters will be replaced automatically." +msgstr "" + +#: ./src/pyams_content/interfaces/__init__.py:102 +#: ./src/pyams_content/shared/site/zmi/folder.py:67 +msgid "Visible label used to display content" +msgstr "" + +#: ./src/pyams_content/interfaces/__init__.py:105 +msgid "Short name" +msgstr "" + +#: ./src/pyams_content/interfaces/__init__.py:106 +msgid "Short name used in breadcrumbs" +msgstr "" + +#: ./src/pyams_content/interfaces/__init__.py:113 +#: ./src/pyams_content/features/review/interfaces.py:74 +#: ./src/pyams_content/shared/view/interfaces.py:37 +msgid "Creation date" +msgstr "" + +#: ./src/pyams_content/interfaces/__init__.py:117 +msgid "Modification date" +msgstr "" + +#: ./src/pyams_content/features/alert/interfaces.py:39 +msgid "Alert" +msgstr "" + +#: ./src/pyams_content/features/alert/interfaces.py:40 +msgid "End of alert" +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 "Recommendation" +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 "" + +#: ./src/pyams_content/features/alert/interfaces.py:65 +#: ./src/pyams_content/features/alert/zmi/container.py:143 +msgid "Message" +msgstr "" + +#: ./src/pyams_content/features/alert/interfaces.py:66 +msgid "Alert message" +msgstr "" + +#: ./src/pyams_content/features/alert/interfaces.py:69 +#: ./src/pyams_content/features/menu/interfaces.py:64 +#: ./src/pyams_content/shared/imagemap/interfaces.py:96 +msgid "Internal reference" +msgstr "" + +#: ./src/pyams_content/features/alert/interfaces.py:70 +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:75 +msgid "Display start date" +msgstr "" + +#: ./src/pyams_content/features/alert/interfaces.py:76 +msgid "First date at which alert should be displayed" +msgstr "" + +#: ./src/pyams_content/features/alert/interfaces.py:79 +msgid "Display end date" +msgstr "" + +#: ./src/pyams_content/features/alert/interfaces.py:80 +msgid "Last date at which alert should be displayed" +msgstr "" + +#: ./src/pyams_content/features/alert/interfaces.py:83 +msgid "Maximum interval" +msgstr "" + +#: ./src/pyams_content/features/alert/interfaces.py:84 +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/container.py:53 +msgid "Alerts" +msgstr "" + +#: ./src/pyams_content/features/alert/zmi/container.py:165 +msgid "Alert list" +msgstr "" + +#: ./src/pyams_content/features/alert/zmi/container.py:95 +msgid "No currently defined 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/redirect/container.py:81 +msgid "not matching" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:39 +msgid "Active rule?" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:40 +msgid "If 'no', selected rule is inactive" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:44 +msgid "Chained rule?" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:45 +msgid "" +"If 'no', and if this rule is matching received request URL, the rule returns " +"a redirection response; otherwise, the rule just rewrites the input URL which" +" is forwarded to the next rule" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:51 +msgid "Permanent redirect?" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:52 +msgid "Define if this redirection should be permanent or temporary" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:56 +#: ./src/pyams_content/features/redirect/zmi/container.py:206 +#: ./src/pyams_content/features/redirect/zmi/container.py:365 +msgid "URL pattern" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:57 +msgid "Regexp pattern of matching URLs for this redirection rule" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:62 +msgid "Internal redirection target" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:63 +msgid "" +"Internal redirection reference. You can search a reference using '+' followed" +" by internal number, of by entering text matching content title." +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:69 +msgid "URL to which source URL should be redirected" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:75 +msgid "You can only provide an internal reference OR a target URL" +msgstr "" + +#: ./src/pyams_content/features/redirect/interfaces.py:77 +msgid "You must provide an internal reference OR a target URL" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:63 +msgid "Redirections" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:157 +msgid "Enable/disable rule" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:184 +msgid "Chain/unchain rule" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:216 +msgid "Target" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:245 +msgid "Redirections list" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:260 +msgid "Redirection rules" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:261 +msgid "" +"Redirection rules are use to handle redirections responses when a request generates \n" +"a famous « 404 NotFound » error.\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:70 -msgid "Use tool default template" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:129 -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:248 -msgid "Last modification" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:271 -#: ./src/pyams_content/root/zmi/__init__.py:110 -msgid "Dashboard" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:281 -msgid "Contents dashboard" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:327 -#: ./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:328 -#: ./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:369 -#: ./src/pyams_content/root/zmi/__init__.py:204 -#, python-format -msgid "CONTRIBUTOR - {0} content waiting for action" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:370 -#: ./src/pyams_content/root/zmi/__init__.py:205 -#, 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:240 -#, python-format -msgid "CONTRIBUTOR - {0} modified content" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:443 -#: ./src/pyams_content/root/zmi/__init__.py:283 -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:298 -#: ./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:307 -#, python-format -msgid "CONTRIBUTOR - {0} favorite" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:468 -#: ./src/pyams_content/root/zmi/__init__.py:308 -#, 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:346 -msgid "Your favorite contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:556 -#: ./src/pyams_content/root/zmi/__init__.py:359 -msgid "My drafts" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:565 -#: ./src/pyams_content/root/zmi/__init__.py:368 +"Redirections are particularly useful when you are migrating from a previous site and don't want to lose \n" +"your SEO.\n" +"\n" +"You can define a set of rules which will be applied to every \"NotFound\" request; rules are based on \n" +"regular expressions which are applied to input URL: if the rule is \"matching\", the target URL is rewritten\n" +"and a \"Redirect\" response is send.\n" +"\n" +"You can chain rules together: when a rule is chained, it's rewritten URL is passed as input URL to the \n" +"next rule, until a matching rule is found.\n" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:287 +msgid "Test" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:322 +msgid "Test redirection rules" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:300 +msgid "Test URL" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:303 +msgid "Check inactive rules?" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:304 +msgid "If 'yes', inactive rules will also be tested" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:312 +msgid "Close" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:313 +msgid "Test rules" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:119 +msgid "No currently defined redirection rule." +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:370 +msgid "No matching rule!" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:227 #, python-format -msgid "CONTRIBUTOR - {0} content in preparation" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:566 -#: ./src/pyams_content/root/zmi/__init__.py:369 -#, python-format -msgid "CONTRIBUTOR - {0} contents in preparation" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:607 -#: ./src/pyams_content/root/zmi/__init__.py:408 -msgid "Your prepared contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:620 -#: ./src/pyams_content/root/zmi/__init__.py:421 -msgid "My submissions" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:629 -#: ./src/pyams_content/root/zmi/__init__.py:430 -#, python-format -msgid "CONTRIBUTOR - {0} submitted content" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:630 -#: ./src/pyams_content/root/zmi/__init__.py:431 -#, python-format -msgid "CONTRIBUTOR - {0} submitted contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:671 -#: ./src/pyams_content/root/zmi/__init__.py:470 -msgid "Your submitted contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:684 -#: ./src/pyams_content/root/zmi/__init__.py:483 -msgid "My publications" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:693 -#: ./src/pyams_content/root/zmi/__init__.py:492 -#, python-format -msgid "CONTRIBUTOR - {0} published content" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:694 -#: ./src/pyams_content/root/zmi/__init__.py:493 +msgid "Internal reference: {0} (not found)" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:364 +msgid "Input URL" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/container.py:366 +msgid "Output URL" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/__init__.py:50 +msgid "Add rule" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/__init__.py:63 +msgid "Add new redirection rule" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/__init__.py:88 +msgid "Edit redirection rule properties" +msgstr "" + +#: ./src/pyams_content/features/redirect/zmi/__init__.py:109 +msgid "" +"URL pattern and target URL are defined by *regular expressions* (see |regexp|).\n" +" \n" +"In URL pattern, you can use any valid regular expression element, notably:\n" +"\n" +"- « .* » to match any list of characters \n" +"\n" +"- « ( ) » to \"memorize\" parts of the URL which can be replaced into target URL\n" +"\n" +"- special characters (like \"+\") must be escaped with an « \\\\ ».\n" +"\n" +"In target URL, memorized parts can be reused using « \\\\1 », « \\\\2 » and so on, where given number is\n" +"the order of the matching pattern element.\n" +"\n" +".. |regexp| raw:: html\n" +"\n" +" Python Regular Expressions\n" +msgstr "" + +#: ./src/pyams_content/features/review/__init__.py:181 #, python-format -msgid "CONTRIBUTOR - {0} published contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:735 -#: ./src/pyams_content/root/zmi/__init__.py:532 -msgid "Your published contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:748 -#: ./src/pyams_content/root/zmi/__init__.py:545 -msgid "My retired contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:757 -#: ./src/pyams_content/root/zmi/__init__.py:554 -#, python-format -msgid "CONTRIBUTOR - {0} retired content" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:758 -#: ./src/pyams_content/root/zmi/__init__.py:555 -#, python-format -msgid "CONTRIBUTOR - {0} retired contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:799 -#: ./src/pyams_content/root/zmi/__init__.py:595 -msgid "Your retired contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:812 -#: ./src/pyams_content/root/zmi/__init__.py:608 -msgid "My archived contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:821 -#: ./src/pyams_content/root/zmi/__init__.py:617 +msgid "Request comment: {comment}" +msgstr "" + +#: ./src/pyams_content/features/review/__init__.py:211 #, python-format -msgid "CONTRIBUTOR - {0} archived content" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:822 -#: ./src/pyams_content/root/zmi/__init__.py:618 -#, python-format -msgid "CONTRIBUTOR - {0} archived contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:869 -#: ./src/pyams_content/root/zmi/__init__.py:664 -msgid "Your archived contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:883 -#: ./src/pyams_content/root/zmi/__init__.py:678 -msgid "Other interventions" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:898 -#: ./src/pyams_content/root/zmi/__init__.py:693 -msgid "Last publications" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:907 -#: ./src/pyams_content/root/zmi/__init__.py:702 -#, python-format -msgid "CONTRIBUTORS - {0} published content" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:954 -#: ./src/pyams_content/root/zmi/__init__.py:748 -msgid "Last published contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:967 -#: ./src/pyams_content/root/zmi/__init__.py:761 -msgid "Last updates" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:976 -#: ./src/pyams_content/root/zmi/__init__.py:770 +msgid "A new comment was added on content « {0} »" +msgstr "" + +#: ./src/pyams_content/features/review/__init__.py:168 #, python-format -msgid "CONTRIBUTORS - {0} updated content" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:1021 -#: ./src/pyams_content/root/zmi/__init__.py:814 -msgid "Last updated contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:407 -#: ./src/pyams_content/root/zmi/__init__.py:245 -#, python-format -msgid "CONTRIBUTOR - {0} modified contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:409 -#: ./src/pyams_content/root/zmi/__init__.py:247 -#, python-format -msgid "CONTRIBUTOR - Last {0} modified contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:912 -#: ./src/pyams_content/root/zmi/__init__.py:707 -#, python-format -msgid "CONTRIBUTORS - Last {0} published contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:914 -#: ./src/pyams_content/root/zmi/__init__.py:709 -msgid "CONTRIBUTORS - Last published contents (in the limit of 50)" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:981 -#: ./src/pyams_content/root/zmi/__init__.py:775 -#, python-format -msgid "CONTRIBUTORS - Last {0} updated contents" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:983 -#: ./src/pyams_content/root/zmi/__init__.py:777 -msgid "CONTRIBUTORS - Last updated contents (in the limit of 50)" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:304 -#, python-format -msgid "SEARCH - Between all contents of type « {type} »" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/dashboard.py:166 -#: ./src/pyams_content/shared/common/zmi/header.py:91 -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:272 -msgid "Activated publication checks?" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/security.py:219 -msgid "Managers restrictions" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/security.py:228 -msgid "Content managers restrictions" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/security.py:261 -msgid "Manager name" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/security.py:289 -msgid "Restricted" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/security.py:306 -msgid "Owners" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/security.py:396 -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:355 -#, python-format -msgid "Edit manager restrictions for « {0} »" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/security.py:402 -msgid "Apply contents restrictions" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/security.py:404 -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:79 -#, python-format -msgid "{state} by {principal}" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/header.py:112 -#, python-format -msgid "since {date}" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/header.py:124 -msgid "access published version" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/header.py:131 -msgid "access new version" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/header.py:141 -msgid "access waiting version" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/header.py:152 -msgid "access retired version" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/header.py:162 -msgid "access archived version" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/templates/wf-retiring-message.pt:2 +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:55 +msgid "Ask for review..." +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:94 +msgid "Content review request" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:159 +msgid "Comments" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:179 +msgid "Review comments" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:65 +msgid "Sought principals" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:66 +msgid "List of principals from which a review is requested" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:69 +msgid "Comment" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:70 +msgid "Comment associated with this request" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:73 +msgid "Notify all reviewers" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:74 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: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 +"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:85 +msgid "Ask for content review" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:140 +msgid "Request successful. No new notification have been sent" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:256 +msgid "Message is mandatory!" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/__init__.py:128 +#, python-format +msgid "Request successful. {count} new notification(s) have been sent" +msgstr "" + +#: ./src/pyams_content/features/review/zmi/templates/review-comments-json.pt:15 +#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:32 +#: ./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-json.pt:21 +#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:38 +#: ./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-json.pt:30 +#: ./src/pyams_content/features/review/zmi/templates/review-comments.pt:47 +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-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 "" -"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 +"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 "" -"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 +"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 "" -"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:130 -#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:130 -msgid "Created between" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:142 -#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:168 -#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:142 -#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:168 -msgid "and" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:156 -#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:156 -msgid "Modified between" -msgstr "" - -#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:214 -#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:211 -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 +"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/review/zmi/templates/review-add-comment.pt:22 +msgid "just now" +msgstr "" + +#: ./src/pyams_content/features/renderer/zmi/__init__.py:67 +#: ./src/pyams_content/features/renderer/zmi/templates/renderer-input.pt:4 +msgid "Edit renderer properties" +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/footer/interfaces.py:39 +msgid "Footer template" +msgstr "" + +#: ./src/pyams_content/features/footer/interfaces.py:40 +msgid "Presentation template used for this footer" +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:152 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/title.py:38 -msgid "Content title" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/head.py:46 -msgid "Content header" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:4 -msgid "Display breadcrumbs" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:8 -msgid "Display title" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:12 -msgid "Display tags" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:16 -msgid "Display header" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:20 -msgid "Display specificities" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:25 -msgid "Display breadcrumbs?" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:29 -msgid "Display title?" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:33 -msgid "Display tags?" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:37 -msgid "Display header?" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:41 -msgid "Display specificities?" -msgstr "" - -#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:42 -msgid "If 'no', specific content's informations won't be displayed..." -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:43 -#: ./src/pyams_content/shared/form/zmi/field.py:156 -msgid "Name" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:44 -msgid "Name of this data type; must be unique between all data types" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:47 +"WARNING: Footer properties are saved automatically when changing inherit " +"mode!!" +msgstr "" + +#: ./src/pyams_content/features/footer/zmi/__init__.py:220 +msgid "Footer renderer settings" +msgstr "" + +#: ./src/pyams_content/features/footer/zmi/__init__.py:107 +msgid "Don't inherit parent footer" +msgstr "" + +#: ./src/pyams_content/features/menu/interfaces.py:60 +msgid "Menu title" +msgstr "" + +#: ./src/pyams_content/features/menu/interfaces.py:61 +msgid "Displayed menu label" +msgstr "" + +#: ./src/pyams_content/features/menu/interfaces.py:65 +msgid "Direct reference to menu target" +msgstr "" + +#: ./src/pyams_content/features/menu/interfaces.py:69 +msgid "Name of the pictogram associated with this menu" +msgstr "" + +#: ./src/pyams_content/features/menu/portlet/navigation/simple.py:67 +msgid "Simple navigation" +msgstr "" + +#: ./src/pyams_content/features/menu/portlet/navigation/double.py:67 +msgid "Double navigation" +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/zmi/simple.py:69 +msgid "Navigation links" +msgstr "" + +#: ./src/pyams_content/features/menu/portlet/navigation/zmi/double.py:69 +msgid "Navigation menus" +msgstr "" + +#: ./src/pyams_content/features/menu/portlet/navigation/zmi/templates/double-preview.pt:14 +#: ./src/pyams_content/features/menu/portlet/navigation/zmi/templates/simple-preview.pt:11 +msgid "Link has no illustration" +msgstr "" + +#: ./src/pyams_content/features/menu/zmi/__init__.py:80 +msgid "Add menu..." +msgstr "" + +#: ./src/pyams_content/features/menu/zmi/__init__.py:91 +msgid "Add new menu" +msgstr "" + +#: ./src/pyams_content/features/menu/zmi/__init__.py:124 +msgid "Edit menu properties" +msgstr "" + +#: ./src/pyams_content/features/menu/zmi/__init__.py:218 #: ./src/pyams_content/shared/form/interfaces.py:60 #: ./src/pyams_content/shared/form/zmi/field.py:167 -#: ./src/pyams_content/features/menu/zmi/__init__.py:218 +#: ./src/pyams_content/shared/common/interfaces/types.py:47 msgid "Label" msgstr "" -#: ./src/pyams_content/shared/common/interfaces/types.py:50 -msgid "Navigation label" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:51 -msgid "Label used for navigation entries" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:54 -msgid "Tab-folder label" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:55 -msgid "Label used to include into tab folder" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:58 -msgid "'See also' label" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:59 -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:63 -msgid "'Single value' label" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:64 -msgid "Label given to this type when a single value is displayed" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:67 -msgid "'Link to list' label" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:68 -msgid "Label used to display a link to a list of items of this type" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:71 -msgid "Next content label" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:72 -msgid "Label used to announce next date for this type" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:76 -msgid "Pictogram associated with this data type" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:90 -msgid "Field names" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:91 -msgid "List of fields associated with this data type" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:125 -msgid "Data type" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/types.py:126 -msgid "Type of content data" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:41 -#: ./src/pyams_content/root/interfaces.py:37 -msgid "Webmasters" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:42 -msgid "Webmasters can handle all contents, including published ones" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:46 -msgid "Pilots" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:47 -msgid "" -"Pilots can handle tool configuration, manage access rules, grant users roles " -"and manage managers restrictions" -msgstr "" - +#: ./src/pyams_content/features/menu/zmi/__init__.py:230 +msgid "Inner content" +msgstr "" + +#: ./src/pyams_content/features/menu/zmi/__init__.py:111 +msgid "Menu was correctly added." +msgstr "" + +#: ./src/pyams_content/features/menu/zmi/__init__.py:415 +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/search/__init__.py:38 +msgid "Search folder" +msgstr "" + +#: ./src/pyams_content/features/search/interfaces.py:36 #: ./src/pyams_content/shared/common/interfaces/__init__.py:52 #: ./src/pyams_content/shared/common/interfaces/__init__.py:196 -#: ./src/pyams_content/features/search/interfaces.py:36 msgid "Managers" msgstr "" +#: ./src/pyams_content/features/search/interfaces.py:37 #: ./src/pyams_content/shared/common/interfaces/__init__.py:53 #: ./src/pyams_content/shared/common/interfaces/__init__.py:197 -#: ./src/pyams_content/features/search/interfaces.py:37 msgid "" "Managers can handle main operations in tool's workflow, like publish or " "retire contents" msgstr "" -#: ./src/pyams_content/shared/common/interfaces/__init__.py:58 -#: ./src/pyams_content/shared/common/interfaces/__init__.py:202 -msgid "Contributors" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:59 -msgid "Contributors are users which are allowed to create new contents" -msgstr "" - +#: ./src/pyams_content/features/search/interfaces.py:42 #: ./src/pyams_content/shared/common/interfaces/__init__.py:63 #: ./src/pyams_content/shared/common/interfaces/__init__.py:208 -#: ./src/pyams_content/features/search/interfaces.py:42 msgid "Designers" msgstr "" +#: ./src/pyams_content/features/search/interfaces.py:43 #: ./src/pyams_content/shared/common/interfaces/__init__.py:64 #: ./src/pyams_content/shared/common/interfaces/__init__.py:209 -#: ./src/pyams_content/features/search/interfaces.py:43 msgid "Designers are users which are allowed to manage presentation templates" 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:127 -msgid "Version creator" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:128 -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:132 -msgid "First owner" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:133 -msgid "Name of content's first version owner" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:137 -msgid "Version creation" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:140 -msgid "Version modifiers" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:141 -msgid "List of principals who modified this content" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:144 -msgid "Last modifier" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:145 -msgid "Last principal who modified this content" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:148 -msgid "Last update" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:152 -msgid "Content's header is generally displayed in page header" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:157 -#: ./src/pyams_content/shared/site/interfaces.py:86 -#: ./src/pyams_content/shared/site/interfaces.py:131 -#: ./src/pyams_content/shared/blog/interfaces.py:68 -msgid "Meta-description" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:158 -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; " -"if description is empty, content's header will be used." -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:165 -msgid "Keywords" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:166 -msgid "They will be included into HTML pages metadata" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:169 -#: ./src/pyams_content/shared/site/interfaces.py:92 -#: ./src/pyams_content/shared/site/interfaces.py:137 -#: ./src/pyams_content/shared/site/zmi/folder.py:74 -#: ./src/pyams_content/shared/blog/interfaces.py:74 -msgid "Notepad" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:170 -#: ./src/pyams_content/shared/site/interfaces.py:93 -#: ./src/pyams_content/shared/site/interfaces.py:138 -#: ./src/pyams_content/shared/site/zmi/folder.py:75 -#: ./src/pyams_content/shared/blog/interfaces.py:75 -msgid "Internal information to be known about this content" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:189 -msgid "Content owner" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:190 -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:203 -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:213 -msgid "Readers" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:214 -msgid "" -"Readers are users which are asked to verify and comment contents before they " -"are published" -msgstr "" - +#: ./src/pyams_content/features/search/interfaces.py:47 #: ./src/pyams_content/shared/common/interfaces/__init__.py:219 -#: ./src/pyams_content/features/search/interfaces.py:47 msgid "Guests" msgstr "" +#: ./src/pyams_content/features/search/interfaces.py:48 #: ./src/pyams_content/shared/common/interfaces/__init__.py:220 -#: ./src/pyams_content/features/search/interfaces.py:48 msgid "" "Guests are users which are allowed to view contents with restricted access" msgstr "" -#: ./src/pyams_content/shared/common/interfaces/__init__.py:245 -msgid "Principal ID" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:284 -#: ./src/pyams_content/shared/common/interfaces/__init__.py:309 -msgid "Publication checks" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:285 +#: ./src/pyams_content/features/search/interfaces.py:56 +#: ./src/pyams_content/shared/site/interfaces.py:96 +msgid "Visible in folders list" +msgstr "" + +#: ./src/pyams_content/features/search/interfaces.py:57 +#: ./src/pyams_content/shared/site/interfaces.py:97 +msgid "If 'no', folder will not be displayed into folders list" +msgstr "" + +#: ./src/pyams_content/features/search/interfaces.py:61 +#: ./src/pyams_content/shared/site/interfaces.py:101 +#: ./src/pyams_content/shared/site/interfaces.py:165 +msgid "Navigation title" +msgstr "" + +#: ./src/pyams_content/features/search/interfaces.py:62 +#: ./src/pyams_content/shared/site/interfaces.py:102 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:310 -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:315 -msgid "Restricted contents" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:316 +"Folder's title displayed in navigation pages; original title will be used if " +"none is specified" +msgstr "" + +#: ./src/pyams_content/features/search/interfaces.py:66 +msgid "Selected content types" +msgstr "" + +#: ./src/pyams_content/features/search/interfaces.py:67 +msgid "Searched content types; leave empty for all" +msgstr "" + +#: ./src/pyams_content/features/search/interfaces.py:71 +msgid "Selected data types" +msgstr "" + +#: ./src/pyams_content/features/search/interfaces.py:72 +msgid "Searched data types; leave empty for all" +msgstr "" + +#: ./src/pyams_content/features/search/zmi/properties.py:36 +msgid "Main search settings" +msgstr "" + +#: ./src/pyams_content/features/search/zmi/properties.py:56 +#: ./src/pyams_content/shared/site/zmi/folder.py:203 +msgid "Navigation properties" +msgstr "" + +#: ./src/pyams_content/features/search/zmi/__init__.py:63 +msgid "This search folder" +msgstr "" + +#: ./src/pyams_content/features/search/zmi/__init__.py:82 +msgid "Add search folder..." +msgstr "" + +#: ./src/pyams_content/features/search/zmi/__init__.py:98 +msgid "Add search folder" +msgstr "" + +#: ./src/pyams_content/features/search/zmi/__init__.py:73 +#, python-format +msgid "Search folder « {title} »" +msgstr "" + +#: ./src/pyams_content/features/search/zmi/theme.py:35 +msgid "Search folder tags settings" +msgstr "" + +#: ./src/pyams_content/features/search/zmi/theme.py:51 +msgid "Search folder themes settings" +msgstr "" + +#: ./src/pyams_content/features/search/zmi/theme.py:67 +msgid "Search folder collections settings" +msgstr "" + +#: ./src/pyams_content/features/search/zmi/reference.py:31 +msgid "Search folder internal references settings" +msgstr "" + +#: ./src/pyams_content/features/checker/interfaces.py:27 +#, python-format +msgid " - {field}: no value" +msgstr "" + +#: ./src/pyams_content/features/checker/interfaces.py:28 +#, python-format +msgid " - {field} ({lang}): no value" +msgstr "" + +#: ./src/pyams_content/features/checker/interfaces.py:29 +#, python-format +msgid " - {field}: {message}" +msgstr "" + +#: ./src/pyams_content/features/checker/zmi/__init__.py:43 +#: ./src/pyams_content/shared/common/zmi/templates/check-input.pt:39 +msgid "Audit" +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/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:161 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:321 -msgid "Selected owners" -msgstr "" - -#: ./src/pyams_content/shared/common/interfaces/__init__.py:322 -msgid "Manager will have access to contents owned by these principals" -msgstr "" - -#: ./src/pyams_content/shared/form/__init__.py:97 -msgid "Form fields" -msgstr "" - -#: ./src/pyams_content/shared/form/__init__.py:98 -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..." +"WARNING: Header properties are saved automatically when changing inherit " +"mode!!" +msgstr "" + +#: ./src/pyams_content/features/header/zmi/__init__.py:229 +msgid "Header renderer settings" +msgstr "" + +#: ./src/pyams_content/features/header/zmi/__init__.py:113 +msgid "Don't inherit parent header" +msgstr "" + +#: ./src/pyams_content/zmi/viewlet/toplinks/__init__.py:43 +msgid "Shared sites" +msgstr "" + +#: ./src/pyams_content/zmi/viewlet/toplinks/__init__.py:64 +msgid "Shared contents" +msgstr "" + +#: ./src/pyams_content/zmi/viewlet/toplinks/__init__.py:87 +msgid "Shared tools" +msgstr "" + +#: ./src/pyams_content/zmi/viewlet/toplinks/__init__.py:110 +msgid "My roles" +msgstr "" + +#: ./src/pyams_content/zmi/viewlet/toplinks/templates/user-addings.pt:7 +msgid "Create new content" +msgstr "" + +#: ./src/pyams_content/profile/interfaces.py:33 +msgid "User favorites" +msgstr "" + +#: ./src/pyams_content/profile/interfaces.py:34 +msgid "List of internal numbers of shared contents stored for quick access" +msgstr "" + +#: ./src/pyams_content/profile/interfaces.py:37 +msgid "Default table length" +msgstr "" + +#: ./src/pyams_content/profile/interfaces.py:38 +msgid "Default length used for inner tables and dashboards" +msgstr "" + +#: ./src/pyams_content/profile/zmi/__init__.py:42 +msgid "Admin. profile" +msgstr "" + +#: ./src/pyams_content/root/__init__.py:63 +msgid "Site root" +msgstr "" + +#: ./src/pyams_content/root/interfaces.py:33 +msgid "Site managers" +msgstr "" + +#: ./src/pyams_content/root/interfaces.py:37 +#: ./src/pyams_content/shared/common/interfaces/__init__.py:41 +msgid "Webmasters" +msgstr "" + +#: ./src/pyams_content/root/interfaces.py:41 +msgid "Templates managers" +msgstr "" + +#: ./src/pyams_content/root/interfaces.py:45 +msgid "Operators group" +msgstr "" + +#: ./src/pyams_content/root/interfaces.py:46 +msgid "Name of group containing all roles owners" +msgstr "" + +#: ./src/pyams_content/root/zmi/sites.py:63 +#: ./src/pyams_content/shared/site/zmi/container.py:173 +#: ./src/pyams_content/shared/site/zmi/container.py:183 +msgid "Site tree" +msgstr "" + +#: ./src/pyams_content/root/zmi/sites.py:73 +msgid "Blogs and shared sites" +msgstr "" + +#: ./src/pyams_content/root/zmi/sites.py:103 +msgid "Visible site?" +msgstr "" + +#: ./src/pyams_content/root/zmi/sites.py:129 +msgid "OID" +msgstr "" + +#: ./src/pyams_content/root/zmi/sites.py:147 +msgid "Delete shared site" +msgstr "" + +#: ./src/pyams_content/root/zmi/sites.py:166 +#: ./src/pyams_content/shared/imagemap/zmi/container.py:175 +msgid "No provided object_name argument!" +msgstr "" + +#: ./src/pyams_content/root/zmi/sites.py:175 +msgid "Given element name doesn't exist!" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:78 +msgid "Home" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:110 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:271 +msgid "Dashboard" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:159 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:327 +#, python-format +msgid "MANAGER - {0} content waiting for your action" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:160 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:328 +#, python-format +msgid "MANAGER - {0} contents waiting for your action" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:204 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:369 +#, python-format +msgid "CONTRIBUTOR - {0} content waiting for action" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:205 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:370 +#, python-format +msgid "CONTRIBUTOR - {0} contents waiting for action" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:240 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:402 +#, python-format +msgid "CONTRIBUTOR - {0} modified content" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:283 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:443 +msgid "My contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:298 +#: ./src/pyams_content/root/zmi/templates/dashboard.pt:8 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:458 +#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:8 +msgid "My favorites" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:307 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:467 +#, python-format +msgid "CONTRIBUTOR - {0} favorite" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:308 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:468 +#, python-format +msgid "CONTRIBUTOR - {0} favorites" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:346 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:543 +msgid "Your favorite contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:359 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:556 +msgid "My drafts" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:368 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:565 +#, python-format +msgid "CONTRIBUTOR - {0} content in preparation" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:369 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:566 +#, python-format +msgid "CONTRIBUTOR - {0} contents in preparation" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:408 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:607 +msgid "Your prepared contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:421 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:620 +msgid "My submissions" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:430 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:629 +#, python-format +msgid "CONTRIBUTOR - {0} submitted content" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:431 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:630 +#, python-format +msgid "CONTRIBUTOR - {0} submitted contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:470 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:671 +msgid "Your submitted contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:483 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:684 +msgid "My publications" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:492 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:693 +#, python-format +msgid "CONTRIBUTOR - {0} published content" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:493 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:694 +#, python-format +msgid "CONTRIBUTOR - {0} published contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:532 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:735 +msgid "Your published contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:545 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:748 +msgid "My retired contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:554 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:757 +#, python-format +msgid "CONTRIBUTOR - {0} retired content" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:555 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:758 +#, python-format +msgid "CONTRIBUTOR - {0} retired contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:595 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:799 +msgid "Your retired contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:608 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:812 +msgid "My archived contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:617 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:821 +#, python-format +msgid "CONTRIBUTOR - {0} archived content" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:618 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:822 +#, python-format +msgid "CONTRIBUTOR - {0} archived contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:664 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:869 +msgid "Your archived contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:678 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:883 +msgid "Other interventions" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:693 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:898 +msgid "Last publications" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:702 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:907 +#, python-format +msgid "CONTRIBUTORS - {0} published content" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:748 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:954 +msgid "Last published contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:761 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:967 +msgid "Last updates" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:770 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:976 +#, python-format +msgid "CONTRIBUTORS - {0} updated content" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:814 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:1021 +msgid "Last updated contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:825 +#: ./src/pyams_content/shared/site/zmi/container.py:404 +msgid "Content" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:245 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:407 +#, python-format +msgid "CONTRIBUTOR - {0} modified contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:247 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:409 +#, python-format +msgid "CONTRIBUTOR - Last {0} modified contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:707 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:912 +#, python-format +msgid "CONTRIBUTORS - Last {0} published contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:709 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:914 +msgid "CONTRIBUTORS - Last published contents (in the limit of 50)" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:775 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:981 +#, python-format +msgid "CONTRIBUTORS - Last {0} updated contents" +msgstr "" + +#: ./src/pyams_content/root/zmi/__init__.py:777 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:983 +msgid "CONTRIBUTORS - Last updated contents (in the limit of 50)" +msgstr "" + +#: ./src/pyams_content/root/zmi/search.py:95 +#: ./src/pyams_content/shared/common/zmi/search.py:96 +msgid "Quick search results" +msgstr "" + +#: ./src/pyams_content/root/zmi/search.py:152 +#: ./src/pyams_content/root/zmi/search.py:188 +#: ./src/pyams_content/shared/common/zmi/search.py:162 +#: ./src/pyams_content/shared/common/zmi/search.py:204 +msgid "Advanced search" +msgstr "" + +#: ./src/pyams_content/root/zmi/search.py:280 +#: ./src/pyams_content/shared/common/zmi/search.py:332 +msgid "Advanced search results" +msgstr "" + +#: ./src/pyams_content/root/zmi/search.py:160 +msgid "Content types" +msgstr "" + +#: ./src/pyams_content/root/zmi/search.py:164 +#: ./src/pyams_content/shared/common/zmi/dashboard.py:226 +#: ./src/pyams_content/shared/common/zmi/search.py:170 +msgid "Owner" +msgstr "" + +#: ./src/pyams_content/root/zmi/search.py:167 +#: ./src/pyams_content/shared/common/zmi/search.py:177 +msgid "Created after..." +msgstr "" + +#: ./src/pyams_content/root/zmi/search.py:170 +#: ./src/pyams_content/shared/common/zmi/search.py:180 +msgid "Created before..." +msgstr "" + +#: ./src/pyams_content/root/zmi/search.py:173 +#: ./src/pyams_content/shared/common/zmi/search.py:183 +msgid "Modified after..." +msgstr "" + +#: ./src/pyams_content/root/zmi/search.py:176 +#: ./src/pyams_content/shared/common/zmi/search.py:186 +msgid "Modified before..." +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/zmi/templates/dashboard.pt:29 +#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:29 +msgid "Quick search..." +msgstr "" + +#: ./src/pyams_content/root/zmi/templates/dashboard.pt:35 +#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:35 +msgid "Advanced search..." +msgstr "" + +#: ./src/pyams_content/root/zmi/templates/dashboard.pt:49 +#: ./src/pyams_content/shared/common/zmi/templates/dashboard.pt:49 +msgid "You are not actually concerned by any content." +msgstr "" + +#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:130 +#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:130 +msgid "Created between" +msgstr "" + +#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:142 +#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:168 +#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:142 +#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:168 +msgid "and" +msgstr "" + +#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:156 +#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:156 +msgid "Modified between" +msgstr "" + +#: ./src/pyams_content/root/zmi/templates/advanced-search.pt:211 +#: ./src/pyams_content/shared/common/zmi/templates/advanced-search.pt:214 +msgid "Tab label" msgstr "" #: ./src/pyams_content/shared/form/field.py:146 @@ -3409,6 +3317,22 @@ msgid "List" 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/__init__.py:97 +msgid "Form fields" +msgstr "" + +#: ./src/pyams_content/shared/form/__init__.py:98 +msgid "no field defined" +msgstr "" + #: ./src/pyams_content/shared/form/interfaces.py:33 msgid "Form" msgstr "" @@ -3550,24 +3474,15 @@ 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:69 msgid "Form fields..." msgstr "" +#: ./src/pyams_content/shared/form/zmi/field.py:156 +#: ./src/pyams_content/shared/common/interfaces/types.py:43 +msgid "Name" +msgstr "" + #: ./src/pyams_content/shared/form/zmi/field.py:211 msgid "Form fields list" msgstr "" @@ -3593,22 +3508,18 @@ msgid "Specified name is already used!" msgstr "" -#: ./src/pyams_content/shared/news/interfaces.py:29 -msgid "News topic" -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 +#: ./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 "News topic « {title} »" +msgid "Form « {title} »" msgstr "" #: ./src/pyams_content/shared/view/merge.py:59 @@ -3655,12 +3566,6 @@ msgid "Include selected internal references only if empty" msgstr "" -#: ./src/pyams_content/shared/view/interfaces.py:37 -#: ./src/pyams_content/interfaces/__init__.py:113 -#: ./src/pyams_content/features/review/interfaces.py:74 -msgid "Creation date" -msgstr "" - #: ./src/pyams_content/shared/view/interfaces.py:38 msgid "Last update date" msgstr "" @@ -3783,44 +3688,6 @@ msgid "Other collections" msgstr "" -#: ./src/pyams_content/shared/view/zmi/properties.py:45 -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:67 -msgid "View tags settings" -msgstr "" - -#: ./src/pyams_content/shared/view/zmi/theme.py:113 -msgid "View themes settings" -msgstr "" - -#: ./src/pyams_content/shared/view/zmi/theme.py:159 -msgid "View collections 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:87 msgid "View items" msgstr "" @@ -3901,18 +3768,1357 @@ msgid "No result found" msgstr "" -#: ./src/pyams_content/shared/imagemap/paragraph.py:88 -msgid "no selected image map" -msgstr "" - -#: ./src/pyams_content/shared/imagemap/paragraph.py:94 +#: ./src/pyams_content/shared/view/zmi/properties.py:45 +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:67 +msgid "View tags settings" +msgstr "" + +#: ./src/pyams_content/shared/view/zmi/theme.py:113 +msgid "View themes settings" +msgstr "" + +#: ./src/pyams_content/shared/view/zmi/theme.py:159 +msgid "View collections 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/blog/interfaces.py:30 +msgid "Blog post" +msgstr "" + +#: ./src/pyams_content/shared/blog/interfaces.py:68 +#: ./src/pyams_content/shared/common/interfaces/__init__.py:157 +#: ./src/pyams_content/shared/site/interfaces.py:86 +#: ./src/pyams_content/shared/site/interfaces.py:131 +msgid "Meta-description" +msgstr "" + +#: ./src/pyams_content/shared/blog/interfaces.py:69 +msgid "" +"The blog'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; " +"if description is empty, content's header will be used." +msgstr "" + +#: ./src/pyams_content/shared/blog/interfaces.py:74 +#: ./src/pyams_content/shared/common/interfaces/__init__.py:169 +#: ./src/pyams_content/shared/site/interfaces.py:92 +#: ./src/pyams_content/shared/site/interfaces.py:137 +#: ./src/pyams_content/shared/site/zmi/folder.py:74 +msgid "Notepad" +msgstr "" + +#: ./src/pyams_content/shared/blog/interfaces.py:75 +#: ./src/pyams_content/shared/common/interfaces/__init__.py:170 +#: ./src/pyams_content/shared/site/interfaces.py:93 +#: ./src/pyams_content/shared/site/interfaces.py:138 +#: ./src/pyams_content/shared/site/zmi/folder.py:75 +msgid "Internal information to be known about this content" +msgstr "" + +#: ./src/pyams_content/shared/blog/zmi/manager.py:57 +msgid "Blog management" +msgstr "" + +#: ./src/pyams_content/shared/blog/zmi/manager.py:80 +#: ./src/pyams_content/shared/blog/zmi/manager.py:94 +msgid "Add blog manager" +msgstr "" + +#: ./src/pyams_content/shared/blog/zmi/manager.py:93 +msgid "Blog manager" +msgstr "" + +#: ./src/pyams_content/shared/blog/zmi/manager.py:148 +msgid "Blog properties" +msgstr "" + +#: ./src/pyams_content/shared/blog/zmi/manager.py:163 +#: ./src/pyams_content/shared/blog/zmi/manager.py:175 +#: ./src/pyams_content/shared/site/zmi/container.py:101 +#: ./src/pyams_content/shared/site/zmi/container.py:113 +msgid "Publication dates..." +msgstr "" + +#: ./src/pyams_content/shared/blog/zmi/manager.py:189 +#: ./src/pyams_content/shared/site/zmi/container.py:127 +msgid "Update publication dates" +msgstr "" + +#: ./src/pyams_content/shared/blog/zmi/manager.py:124 +#: ./src/pyams_content/shared/site/zmi/manager.py:163 +msgid "You must provide a short name for default server language!" +msgstr "" + +#: ./src/pyams_content/shared/blog/zmi/manager.py:128 +msgid "Specified blog manager name is already used!" +msgstr "" + +#: ./src/pyams_content/shared/blog/zmi/manager.py:132 +msgid "A blog manager is already registered with this name!!" +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/common/__init__.py:243 +#: ./src/pyams_content/shared/common/zmi/properties.py:69 +#: ./src/pyams_content/shared/common/zmi/manager.py:96 +msgid "Properties" +msgstr "" + +#: ./src/pyams_content/shared/common/__init__.py:153 +#: ./src/pyams_content/shared/common/__init__.py:161 +#, python-format +msgid "{date} by {principal}" +msgstr "" + +#: ./src/pyams_content/shared/common/__init__.py:266 +#, python-format +msgid "title length should be between 40 and 66 characters ({length} actually)" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:44 +msgid "Name of this data type; must be unique between all data types" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:50 +msgid "Navigation label" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:51 +msgid "Label used for navigation entries" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:54 +msgid "Tab-folder label" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:55 +msgid "Label used to include into tab folder" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:58 +msgid "'See also' label" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:59 +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:63 +msgid "'Single value' label" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:64 +msgid "Label given to this type when a single value is displayed" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:67 +msgid "'Link to list' label" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:68 +msgid "Label used to display a link to a list of items of this type" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:71 +msgid "Next content label" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:72 +msgid "Label used to announce next date for this type" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:76 +msgid "Pictogram associated with this data type" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:90 +msgid "Field names" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:91 +msgid "List of fields associated with this data type" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:125 +msgid "Data type" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/types.py:126 +msgid "Type of content data" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:42 +msgid "Webmasters can handle all contents, including published ones" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:46 +msgid "Pilots" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:47 +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:58 +#: ./src/pyams_content/shared/common/interfaces/__init__.py:202 +msgid "Contributors" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:59 +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:127 +msgid "Version creator" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:128 +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:132 +msgid "First owner" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:133 +msgid "Name of content's first version owner" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:137 +msgid "Version creation" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:140 +msgid "Version modifiers" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:141 +msgid "List of principals who modified this content" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:144 +msgid "Last modifier" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:145 +msgid "Last principal who modified this content" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:148 +msgid "Last update" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:152 +msgid "Content's header is generally displayed in page header" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:158 +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; " +"if description is empty, content's header will be used." +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:165 +msgid "Keywords" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:166 +msgid "They will be included into HTML pages metadata" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:189 +msgid "Content owner" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:190 +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:203 +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:213 +msgid "Readers" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:214 +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:245 +msgid "Principal ID" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:284 +#: ./src/pyams_content/shared/common/interfaces/__init__.py:309 +msgid "Publication checks" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:285 +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:310 +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:315 +msgid "Restricted contents" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:316 +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:321 +msgid "Selected owners" +msgstr "" + +#: ./src/pyams_content/shared/common/interfaces/__init__.py:322 +msgid "Manager will have access to contents owned by these principals" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/title.py:38 +msgid "Content title" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/head.py:46 +msgid "Content header" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:25 +msgid "Display breadcrumbs?" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:29 +msgid "Display title?" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:33 +msgid "Display tags?" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:37 +msgid "Display header?" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:41 +msgid "Display specificities?" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/interfaces/__init__.py:42 +msgid "If 'no', specific content's informations won't be displayed..." +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:4 +msgid "Display breadcrumbs" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:8 +msgid "Display title" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:12 +msgid "Display tags" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:16 +msgid "Display header" +msgstr "" + +#: ./src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt:20 +msgid "Display specificities" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/portal.py:44 +msgid "Edit default template properties" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/portal.py:54 +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:70 +msgid "Use tool default template" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/properties.py:59 +msgid "Composition" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/properties.py:82 +msgid "Content properties" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/site.py:38 +#, python-format +msgid "" +"SEARCH - Between all contents published into « {site} »" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/header.py:79 +#, python-format +msgid "{state} by {principal}" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/header.py:112 +#, python-format +msgid "since {date}" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/header.py:91 +#: ./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:124 +msgid "access published version" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/header.py:131 +msgid "access new version" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/header.py:141 +msgid "access waiting version" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/header.py:152 +msgid "access retired version" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/header.py:162 +msgid "access archived version" +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/types.py:69 +msgid "Data types" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:147 +msgid "Data type label" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:187 +#: ./src/pyams_content/shared/common/zmi/types.py:427 +msgid "Default associations" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:203 +msgid "Default themes" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:231 +msgid "Content data types" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:254 +msgid "Add data type" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:266 +msgid "Add new data type" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:309 +msgid "Data type properties" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:390 +msgid "Subtype label" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:471 +msgid "Add subtype" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:483 +msgid "Add new subtype" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:530 +msgid "Data subtype properties" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:572 +msgid "Select content type..." +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:114 +msgid "No currently defined data type." +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:299 +msgid "Specified type name is already used!" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:506 +msgid "Subtype was correctly added." +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:520 +msgid "Specified subtype name is already used!" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:159 +msgid "Click to see subtypes" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/types.py:610 +#, python-format +msgid "Custom properties for type « {0} »" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/dashboard.py:129 +msgid "Unique ID" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/dashboard.py:149 +#: ./src/pyams_content/shared/common/zmi/search.py:173 +msgid "Status" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/dashboard.py:176 +msgid "Status date" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/dashboard.py:193 +#: ./src/pyams_content/shared/common/zmi/summary.py:167 +msgid "Version" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/dashboard.py:208 +msgid "Status principal" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/dashboard.py:248 +msgid "Last modification" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/dashboard.py:281 +msgid "Contents dashboard" +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:304 #, python-format -msgid "image map '{0}' can't be found" -msgstr "" - -#: ./src/pyams_content/shared/imagemap/paragraph.py:102 +msgid "SEARCH - Between all contents of type « {type} »" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/rename.py:58 +msgid "Change URL..." +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/rename.py:75 +msgid "Change item URL" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/rename.py:82 +msgid "Item URL part" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/rename.py:83 +msgid "URL part used to access this content" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/rename.py:123 +msgid "You must provide an URL for this item!" +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:272 +msgid "Activated publication checks?" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/security.py:219 +msgid "Managers restrictions" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/security.py:228 +msgid "Content managers restrictions" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/security.py:261 +msgid "Manager name" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/security.py:289 +msgid "Restricted" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/security.py:306 +msgid "Owners" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/security.py:396 +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:355 +#, python-format +msgid "Edit manager restrictions for « {0} »" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/security.py:402 +msgid "Apply contents restrictions" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/security.py:404 +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/__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:86 +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:332 +#, python-format +msgid "Clone created from version {source} of {oid} (in « {state} » state)" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/__init__.py:377 +msgid "Created or modified in this version" +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/workflow.py:845 +msgid "Prior checks" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:120 +msgid "Request publication" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:207 +#: ./src/pyams_content/workflow/__init__.py:316 +msgid "Cancel publication request" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:247 +msgid "Refuse publication request" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:301 +#: ./src/pyams_content/workflow/basic.py:197 +msgid "Publish" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:392 +msgid "Request retire" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:448 +msgid "Cancel retire request" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:488 +msgid "Retire" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:529 +#: ./src/pyams_content/workflow/__init__.py:437 +msgid "Request archive" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:572 +msgid "Cancel archive request" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:612 +msgid "Archive" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:653 +#: ./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 +#: ./src/pyams_content/workflow/basic.py:225 +#: ./src/pyams_content/workflow/basic.py:237 +msgid "Create new version" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:704 +#: ./src/pyams_content/workflow/__init__.py:562 +#: ./src/pyams_content/workflow/basic.py:249 +msgid "Delete version" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:791 +msgid "Previewed content?" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:795 +msgid "Verified content?" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:177 +#: ./src/pyams_content/shared/common/zmi/workflow.py:361 +msgid "Publication start date is required" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:270 +#: ./src/pyams_content/shared/common/zmi/workflow.py:418 +msgid "A comment is required" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:730 +msgid "Delete content" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:739 +msgid "Delete definitively" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:868 +msgid "" +"You must confirm that you previewed and checked this content before " +"requesting publication!!" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:84 +#, python-format +msgid "{state} | by {principal}" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:871 +msgid "" +"You must confirm that you checked this content before requesting " +"publication!!" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/workflow.py:80 +#: ./src/pyams_content/workflow/__init__.py:649 +#: ./src/pyams_content/workflow/__init__.py:620 +#: ./src/pyams_content/workflow/basic.py:316 +#: ./src/pyams_content/workflow/basic.py:287 +#, python-format +msgid "{state} {date}" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/reverse.py:57 +msgid "Reverse links" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/reverse.py:66 +msgid "Content's internal links" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/summary.py:47 +msgid "Display content summary" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/summary.py:71 +msgid "Identity card" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/summary.py:89 +msgid "Requested action" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/summary.py:130 +msgid "Publication and retire dates" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/summary.py:149 +msgid "Current version" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/summary.py:185 +msgid "Content history" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/summary.py:120 +msgid "Associated comment" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/summary.py:110 +#, python-format +msgid "{state} {date} by {principal}" +msgstr "" + +#: ./src/pyams_content/shared/common/zmi/summary.py:173 #, python-format -msgid "image map '{0}' is not published" +msgid "{state} since {date}, by {principal}" +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-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/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-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-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-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-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-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-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-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-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-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-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-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/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-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-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/news/interfaces.py:29 +msgid "News topic" +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/site/manager.py:66 +#: ./src/pyams_content/shared/site/zmi/manager.py:121 +msgid "Site manager" +msgstr "" + +#: ./src/pyams_content/shared/site/folder.py:56 +msgid "Site folder" +msgstr "" + +#: ./src/pyams_content/shared/site/link.py:43 +msgid "Content link" +msgstr "" + +#: ./src/pyams_content/shared/site/interfaces.py:147 +msgid "Site topic" +msgstr "" + +#: ./src/pyams_content/shared/site/interfaces.py:39 +msgid "Redirect to first visible sub-folder or content" +msgstr "" + +#: ./src/pyams_content/shared/site/interfaces.py:40 +msgid "Use presentation template" +msgstr "" + +#: ./src/pyams_content/shared/site/interfaces.py:83 +msgid "Heading displayed according to presentation template" +msgstr "" + +#: ./src/pyams_content/shared/site/interfaces.py:87 +msgid "" +"The folder'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; " +"if description is empty, content's header will be used." +msgstr "" + +#: ./src/pyams_content/shared/site/interfaces.py:106 +msgid "Navigation mode" +msgstr "" + +#: ./src/pyams_content/shared/site/interfaces.py:107 +msgid "Folder behaviour when navigating to folder URL" +msgstr "" + +#: ./src/pyams_content/shared/site/interfaces.py:132 +msgid "" +"The site'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; " +"if description is empty, content's header will be used." +msgstr "" + +#: ./src/pyams_content/shared/site/interfaces.py:166 +msgid "" +"Alternate content's title displayed in navigation pages; original title will " +"be used if none is specified" +msgstr "" + +#: ./src/pyams_content/shared/site/interfaces.py:171 +msgid "If 'no', link is not visible" +msgstr "" + +#: ./src/pyams_content/shared/site/portlet/__init__.py:42 +msgid "Site summary" +msgstr "" + +#: ./src/pyams_content/shared/site/portlet/interfaces.py:24 +msgid "Button's title" +msgstr "" + +#: ./src/pyams_content/shared/site/portlet/interfaces.py:25 +msgid "" +"Navigation button's title is normally defined based on target's content type;" +" you can override this label by giving a custom title here" +msgstr "" + +#: ./src/pyams_content/shared/site/portlet/zmi/templates/site-summary-preview.pt:2 +msgid "Navigation button title:" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/container.py:305 +#: ./src/pyams_content/shared/site/zmi/container.py:151 +msgid "Visible element?" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/container.py:306 +msgid "Switch element visibility" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/container.py:368 +msgid "Folders and topics" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/container.py:500 +msgid "Delete site item" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/container.py:377 +msgid "Click to open/close all folders" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/container.py:393 +msgid "Click to show/hide inner folders" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/container.py:262 +msgid "Can't reparent object to one of it's children. Reloading..." +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/manager.py:53 +msgid "Site management" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/manager.py:108 +#: ./src/pyams_content/shared/site/zmi/manager.py:122 +msgid "Add site manager" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/manager.py:150 +#: ./src/pyams_content/shared/site/zmi/folder.py:185 +msgid "Site folder properties" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/manager.py:167 +msgid "Specified site manager name is already used!" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/manager.py:171 +msgid "A site manager is already registered with this name!!" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/folder.py:57 +msgid "Add site folder..." +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/folder.py:89 +msgid "Add site folder" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/folder.py:156 +msgid "Site folder management" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/folder.py:70 +#: ./src/pyams_content/shared/site/zmi/link.py:65 +#: ./src/pyams_content/shared/site/zmi/__init__.py:60 +msgid "Parent" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/folder.py:71 +#: ./src/pyams_content/shared/site/zmi/link.py:66 +msgid "Folder's parent" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/folder.py:149 +msgid "You must provide a folder name for default server language!" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/link.py:56 +msgid "Rent content..." +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/link.py:76 +msgid "Rent existing content" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/link.py:137 +msgid "Edit content link properties" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/__init__.py:51 +msgid "Add topic..." +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/__init__.py:74 +#: ./src/pyams_content/shared/topic/zmi/__init__.py:57 +#: ./src/pyams_content/shared/topic/zmi/__init__.py:68 +msgid "Add topic" +msgstr "" + +#: ./src/pyams_content/shared/site/zmi/__init__.py:61 +msgid "Topic's parent" +msgstr "" + +#: ./src/pyams_content/shared/topic/interfaces.py:23 +msgid "Topic" +msgstr "" + +#: ./src/pyams_content/shared/topic/zmi/__init__.py:38 +msgid "This topic" +msgstr "" + +#: ./src/pyams_content/shared/topic/zmi/__init__.py:48 +#, python-format +msgid "Topic « {title} »" msgstr "" #: ./src/pyams_content/shared/imagemap/__init__.py:152 @@ -3958,12 +5164,6 @@ msgid "List of defined map areas" msgstr "" -#: ./src/pyams_content/shared/imagemap/interfaces.py:96 -#: ./src/pyams_content/features/alert/interfaces.py:69 -#: ./src/pyams_content/features/menu/interfaces.py:64 -msgid "Internal reference" -msgstr "" - #: ./src/pyams_content/shared/imagemap/interfaces.py:97 msgid "Reference to image map object" msgstr "" @@ -3972,40 +5172,24 @@ msgid "Image map template" msgstr "" -#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:50 -msgid "Image map..." -msgstr "" - -#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:63 -msgid "Add new image map" -msgstr "" - -#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:90 -#: ./src/pyams_content/shared/logo/zmi/paragraph.py:89 -msgid "Edit paragraph properties" +#: ./src/pyams_content/shared/imagemap/paragraph.py:88 +msgid "no selected image map" +msgstr "" + +#: ./src/pyams_content/shared/imagemap/paragraph.py:94 +#, python-format +msgid "image map '{0}' can't be found" +msgstr "" + +#: ./src/pyams_content/shared/imagemap/paragraph.py:102 +#, python-format +msgid "image map '{0}' is not published" 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 "" @@ -4018,11 +5202,6 @@ msgid "No currently defined area." msgstr "" -#: ./src/pyams_content/shared/imagemap/zmi/container.py:175 -#: ./src/pyams_content/root/zmi/sites.py:166 -msgid "No provided object_name argument!" -msgstr "" - #: ./src/pyams_content/shared/imagemap/zmi/container.py:194 msgid "Given area name doesn't exist!" msgstr "" @@ -4043,275 +5222,34 @@ msgid "Edit image map properties" msgstr "" -#: ./src/pyams_content/shared/topic/interfaces.py:23 -msgid "Topic" -msgstr "" - -#: ./src/pyams_content/shared/topic/zmi/__init__.py:38 -msgid "This topic" -msgstr "" - -#: ./src/pyams_content/shared/topic/zmi/__init__.py:57 -#: ./src/pyams_content/shared/topic/zmi/__init__.py:68 -#: ./src/pyams_content/shared/site/zmi/__init__.py:74 -msgid "Add topic" -msgstr "" - -#: ./src/pyams_content/shared/topic/zmi/__init__.py:48 +#: ./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 "Topic « {title} »" -msgstr "" - -#: ./src/pyams_content/shared/site/folder.py:56 -msgid "Site folder" -msgstr "" - -#: ./src/pyams_content/shared/site/link.py:43 -msgid "Content link" -msgstr "" - -#: ./src/pyams_content/shared/site/manager.py:66 -#: ./src/pyams_content/shared/site/zmi/manager.py:121 -msgid "Site manager" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:147 -msgid "Site topic" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:39 -msgid "Redirect to first visible sub-folder or content" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:40 -msgid "Use presentation template" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:83 -msgid "Heading displayed according to presentation template" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:87 -msgid "" -"The folder'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; " -"if description is empty, content's header will be used." -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:96 -#: ./src/pyams_content/features/search/interfaces.py:56 -msgid "Visible in folders list" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:97 -#: ./src/pyams_content/features/search/interfaces.py:57 -msgid "If 'no', folder will not be displayed into folders list" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:101 -#: ./src/pyams_content/shared/site/interfaces.py:165 -#: ./src/pyams_content/features/search/interfaces.py:61 -msgid "Navigation title" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:102 -#: ./src/pyams_content/features/search/interfaces.py:62 -msgid "" -"Folder's title displayed in navigation pages; original title will be used if " -"none is specified" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:106 -msgid "Navigation mode" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:107 -msgid "Folder behaviour when navigating to folder URL" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:132 -msgid "" -"The site'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; " -"if description is empty, content's header will be used." -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:166 -msgid "" -"Alternate content's title displayed in navigation pages; original title will " -"be used if none is specified" -msgstr "" - -#: ./src/pyams_content/shared/site/interfaces.py:171 -msgid "If 'no', link is not visible" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/folder.py:57 -msgid "Add site folder..." -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/folder.py:89 -msgid "Add site folder" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/folder.py:156 -msgid "Site folder management" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/folder.py:185 -#: ./src/pyams_content/shared/site/zmi/manager.py:150 -msgid "Site folder properties" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/folder.py:203 -#: ./src/pyams_content/features/search/zmi/properties.py:56 -msgid "Navigation properties" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/folder.py:67 -#: ./src/pyams_content/interfaces/__init__.py:102 -msgid "Visible label used to display content" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/folder.py:70 -#: ./src/pyams_content/shared/site/zmi/__init__.py:60 -#: ./src/pyams_content/shared/site/zmi/link.py:65 -msgid "Parent" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/folder.py:71 -#: ./src/pyams_content/shared/site/zmi/link.py:66 -msgid "Folder's parent" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/folder.py:149 -msgid "You must provide a folder name for default server language!" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/__init__.py:51 -msgid "Add topic..." -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/__init__.py:61 -msgid "Topic's parent" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/link.py:56 -msgid "Rent content..." -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/link.py:76 -msgid "Rent existing content" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/link.py:137 -msgid "Edit content link properties" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/container.py:101 -#: ./src/pyams_content/shared/site/zmi/container.py:113 -#: ./src/pyams_content/shared/blog/zmi/manager.py:163 -#: ./src/pyams_content/shared/blog/zmi/manager.py:175 -msgid "Publication dates..." -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/container.py:127 -#: ./src/pyams_content/shared/blog/zmi/manager.py:189 -msgid "Update publication dates" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/container.py:173 -#: ./src/pyams_content/shared/site/zmi/container.py:183 -#: ./src/pyams_content/root/zmi/sites.py:63 -msgid "Site tree" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/container.py:305 -#: ./src/pyams_content/shared/site/zmi/container.py:151 -msgid "Visible element?" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/container.py:306 -msgid "Switch element visibility" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/container.py:368 -msgid "Folders and topics" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/container.py:404 -#: ./src/pyams_content/root/zmi/__init__.py:825 -msgid "Content" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/container.py:500 -msgid "Delete site item" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/container.py:377 -msgid "Click to open/close all folders" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/container.py:393 -msgid "Click to show/hide inner folders" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/container.py:262 -msgid "Can't reparent object to one of it's children. Reloading..." -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/manager.py:53 -msgid "Site management" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/manager.py:108 -#: ./src/pyams_content/shared/site/zmi/manager.py:122 -msgid "Add site manager" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/manager.py:163 -#: ./src/pyams_content/shared/blog/zmi/manager.py:124 -msgid "You must provide a short name for default server language!" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/manager.py:167 -msgid "Specified site manager name is already used!" -msgstr "" - -#: ./src/pyams_content/shared/site/zmi/manager.py:171 -msgid "A site manager is already registered with this name!!" -msgstr "" - -#: ./src/pyams_content/shared/site/portlet/__init__.py:42 -msgid "Site summary" -msgstr "" - -#: ./src/pyams_content/shared/site/portlet/interfaces.py:24 -msgid "Button's title" -msgstr "" - -#: ./src/pyams_content/shared/site/portlet/interfaces.py:25 -msgid "" -"Navigation button's title is normally defined based on target's content type;" -" you can override this label by giving a custom title here" -msgstr "" - -#: ./src/pyams_content/shared/site/portlet/zmi/templates/site-summary-preview.pt:2 -msgid "Navigation button title:" -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" +msgid "Image map « {title} »" +msgstr "" + +#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:50 +msgid "Image map..." +msgstr "" + +#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:63 +msgid "Add new image map" +msgstr "" + +#: ./src/pyams_content/shared/imagemap/zmi/paragraph.py:90 +#: ./src/pyams_content/shared/logo/zmi/paragraph.py:89 +msgid "Edit paragraph properties" msgstr "" #: ./src/pyams_content/shared/logo/__init__.py:73 @@ -4366,12 +5304,18 @@ msgid "Logos template" msgstr "" -#: ./src/pyams_content/shared/logo/zmi/paragraph.py:50 -msgid "Logos..." -msgstr "" - -#: ./src/pyams_content/shared/logo/zmi/paragraph.py:63 -msgid "Add new logos paragraph" +#: ./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/zmi/properties.py:65 @@ -4392,150 +5336,16 @@ msgid "Logo « {title} »" msgstr "" -#: ./src/pyams_content/shared/blog/interfaces.py:30 -msgid "Blog post" -msgstr "" - -#: ./src/pyams_content/shared/blog/interfaces.py:69 -msgid "" -"The blog'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; " -"if description is empty, content's header will be used." -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:57 -msgid "Blog management" -msgstr "" - -#: ./src/pyams_content/shared/blog/zmi/manager.py:80 -#: ./src/pyams_content/shared/blog/zmi/manager.py:94 -msgid "Add blog manager" -msgstr "" - -#: ./src/pyams_content/shared/blog/zmi/manager.py:93 -msgid "Blog manager" -msgstr "" - -#: ./src/pyams_content/shared/blog/zmi/manager.py:148 -msgid "Blog properties" -msgstr "" - -#: ./src/pyams_content/shared/blog/zmi/manager.py:128 -msgid "Specified blog manager name is already used!" -msgstr "" - -#: ./src/pyams_content/shared/blog/zmi/manager.py:132 -msgid "A blog manager is already registered with this name!!" -msgstr "" - -#: ./src/pyams_content/profile/interfaces.py:33 -msgid "User favorites" -msgstr "" - -#: ./src/pyams_content/profile/interfaces.py:34 -msgid "List of internal numbers of shared contents stored for quick access" -msgstr "" - -#: ./src/pyams_content/profile/interfaces.py:37 -msgid "Default table length" -msgstr "" - -#: ./src/pyams_content/profile/interfaces.py:38 -msgid "Default length used for inner tables and dashboards" -msgstr "" - -#: ./src/pyams_content/profile/zmi/__init__.py:42 -msgid "Admin. profile" -msgstr "" - -#: ./src/pyams_content/root/__init__.py:63 -msgid "Site root" -msgstr "" - -#: ./src/pyams_content/root/interfaces.py:33 -msgid "Site managers" -msgstr "" - -#: ./src/pyams_content/root/interfaces.py:41 -msgid "Templates managers" -msgstr "" - -#: ./src/pyams_content/root/interfaces.py:45 -msgid "Operators group" -msgstr "" - -#: ./src/pyams_content/root/interfaces.py:46 -msgid "Name of group containing all roles owners" -msgstr "" - -#: ./src/pyams_content/root/zmi/sites.py:73 -msgid "Blogs and shared sites" -msgstr "" - -#: ./src/pyams_content/root/zmi/sites.py:103 -msgid "Visible site?" -msgstr "" - -#: ./src/pyams_content/root/zmi/sites.py:129 -msgid "OID" -msgstr "" - -#: ./src/pyams_content/root/zmi/sites.py:147 -msgid "Delete shared site" -msgstr "" - -#: ./src/pyams_content/root/zmi/sites.py:175 -msgid "Given element name doesn't exist!" -msgstr "" - -#: ./src/pyams_content/root/zmi/search.py:160 -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/zmi/viewlet/toplinks/__init__.py:43 -msgid "Shared sites" -msgstr "" - -#: ./src/pyams_content/zmi/viewlet/toplinks/__init__.py:64 -msgid "Shared contents" -msgstr "" - -#: ./src/pyams_content/zmi/viewlet/toplinks/__init__.py:87 -msgid "Shared tools" -msgstr "" - -#: ./src/pyams_content/zmi/viewlet/toplinks/__init__.py:110 -msgid "My roles" -msgstr "" - -#: ./src/pyams_content/zmi/viewlet/toplinks/templates/user-addings.pt:7 -msgid "Create new content" +#: ./src/pyams_content/shared/logo/zmi/paragraph.py:50 +msgid "Logos..." +msgstr "" + +#: ./src/pyams_content/shared/logo/zmi/paragraph.py:63 +msgid "Add new logos paragraph" +msgstr "" + +#: ./src/pyams_content/workflow/task.py:62 +msgid "Automatic contents withdrawal:\n" msgstr "" #: ./src/pyams_content/workflow/__init__.py:70 @@ -4851,10 +5661,6 @@ 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 "" @@ -4862,791 +5668,3 @@ #: ./src/pyams_content/workflow/zmi/task.py:55 msgid "Add automatic content archiver" 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!!! Spaces, uppercase " -"letters ou accentuated characters will be replaced automatically." -msgstr "" - -#: ./src/pyams_content/interfaces/__init__.py:105 -msgid "Short name" -msgstr "" - -#: ./src/pyams_content/interfaces/__init__.py:106 -msgid "Short name used in breadcrumbs" -msgstr "" - -#: ./src/pyams_content/interfaces/__init__.py:117 -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:68 -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:50 -msgid "References" -msgstr "" - -#: ./src/pyams_content/reference/pictograms/interfaces.py:45 -msgid "Pictogram content" -msgstr "" - -#. Default: Header -#: ./src/pyams_content/reference/pictograms/interfaces.py:52 -msgid "pictogram-header" -msgstr "" - -#: ./src/pyams_content/reference/pictograms/interfaces.py:53 -msgid "Default header associated with this pictogram" -msgstr "" - -#: ./src/pyams_content/reference/pictograms/interfaces.py:73 -#: ./src/pyams_content/reference/pictograms/zmi/manager.py:60 -#: ./src/pyams_content/reference/pictograms/zmi/templates/manager-selection.pt:35 -msgid "Selected pictograms" -msgstr "" - -#: ./src/pyams_content/reference/pictograms/interfaces.py:74 -msgid "List of selected pictograms which will be available to shared contents" -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/widget.py:36 -msgid "No selected pictogram" -msgstr "" - -#: ./src/pyams_content/reference/pictograms/zmi/manager.py:48 -msgid "Pictograms selection..." -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:49 -msgid "Display pictogram properties" -msgstr "" - -#: ./src/pyams_content/reference/pictograms/zmi/templates/pictogram-header.pt:6 -msgid "Default header: ${header}" -msgstr "" - -#: ./src/pyams_content/features/renderer/zmi/__init__.py:67 -#: ./src/pyams_content/features/renderer/zmi/templates/renderer-input.pt:4 -msgid "Edit renderer properties" -msgstr "" - -#: ./src/pyams_content/features/checker/interfaces.py:27 -#, python-format -msgid " - {field}: no value" -msgstr "" - -#: ./src/pyams_content/features/checker/interfaces.py:28 -#, python-format -msgid " - {field} ({lang}): no value" -msgstr "" - -#: ./src/pyams_content/features/checker/interfaces.py:29 -#, python-format -msgid " - {field}: {message}" -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:39 -msgid "Alert" -msgstr "" - -#: ./src/pyams_content/features/alert/interfaces.py:40 -msgid "End of alert" -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 "Recommendation" -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 "" - -#: ./src/pyams_content/features/alert/interfaces.py:65 -#: ./src/pyams_content/features/alert/zmi/container.py:143 -msgid "Message" -msgstr "" - -#: ./src/pyams_content/features/alert/interfaces.py:66 -msgid "Alert message" -msgstr "" - -#: ./src/pyams_content/features/alert/interfaces.py:70 -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:75 -msgid "Display start date" -msgstr "" - -#: ./src/pyams_content/features/alert/interfaces.py:76 -msgid "First date at which alert should be displayed" -msgstr "" - -#: ./src/pyams_content/features/alert/interfaces.py:79 -msgid "Display end date" -msgstr "" - -#: ./src/pyams_content/features/alert/interfaces.py:80 -msgid "Last date at which alert should be displayed" -msgstr "" - -#: ./src/pyams_content/features/alert/interfaces.py:83 -msgid "Maximum interval" -msgstr "" - -#: ./src/pyams_content/features/alert/interfaces.py:84 -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:53 -msgid "Alerts" -msgstr "" - -#: ./src/pyams_content/features/alert/zmi/container.py:165 -msgid "Alert list" -msgstr "" - -#: ./src/pyams_content/features/alert/zmi/container.py:95 -msgid "No currently defined alert." -msgstr "" - -#: ./src/pyams_content/features/redirect/container.py:81 -msgid "not matching" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:39 -msgid "Active rule?" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:40 -msgid "If 'no', selected rule is inactive" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:44 -msgid "Chained rule?" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:45 -msgid "" -"If 'no', and if this rule is matching received request URL, the rule returns " -"a redirection response; otherwise, the rule just rewrites the input URL which" -" is forwarded to the next rule" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:51 -msgid "Permanent redirect?" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:52 -msgid "Define if this redirection should be permanent or temporary" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:56 -#: ./src/pyams_content/features/redirect/zmi/container.py:210 -#: ./src/pyams_content/features/redirect/zmi/container.py:369 -msgid "URL pattern" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:57 -msgid "Regexp pattern of matching URLs for this redirection rule" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:62 -msgid "Internal redirection target" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:63 -msgid "" -"Internal redirection reference. You can search a reference using '+' followed" -" by internal number, of by entering text matching content title." -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:69 -msgid "URL to which source URL should be redirected" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:75 -msgid "You can only provide an internal reference OR a target URL" -msgstr "" - -#: ./src/pyams_content/features/redirect/interfaces.py:77 -msgid "You must provide an internal reference OR a target URL" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/__init__.py:50 -msgid "Add rule" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/__init__.py:63 -msgid "Add new redirection rule" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/__init__.py:88 -msgid "Edit redirection rule properties" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/__init__.py:109 -msgid "" -"URL pattern and target URL are defined by *regular expressions* (see |regexp|).\n" -" \n" -"In URL pattern, you can use any valid regular expression element, notably:\n" -"\n" -"- « .* » to match any list of characters \n" -"\n" -"- « ( ) » to \"memorize\" parts of the URL which can be replaced into target URL\n" -"\n" -"- special characters (like \"+\") must be escaped with an « \\\\ ».\n" -"\n" -"In target URL, memorized parts can be reused using « \\\\1 », « \\\\2 » and so on, where given number is\n" -"the order of the matching pattern element.\n" -"\n" -".. |regexp| raw:: html\n" -"\n" -" Python Regular Expressions\n" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:67 -msgid "Redirections" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:161 -msgid "Enable/disable rule" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:188 -msgid "Chain/unchain rule" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:220 -msgid "Target" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:249 -msgid "Redirections list" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:264 -msgid "Redirection rules" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:265 -msgid "" -"Redirection rules are use to handle redirections responses when a request generates \n" -"a famous « 404 NotFound » error.\n" -"\n" -"Redirections are particularly useful when you are migrating from a previous site and don't want to lose \n" -"your SEO.\n" -"\n" -"You can define a set of rules which will be applied to every \"NotFound\" request; rules are based on \n" -"regular expressions which are applied to input URL: if the rule is \"matching\", the target URL is rewritten\n" -"and a \"Redirect\" response is send.\n" -"\n" -"You can chain rules together: when a rule is chained, it's rewritten URL is passed as input URL to the \n" -"next rule, until a matching rule is found.\n" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:291 -msgid "Test" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:326 -msgid "Test redirection rules" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:304 -msgid "Test URL" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:307 -msgid "Check inactive rules?" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:308 -msgid "If 'yes', inactive rules will also be tested" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:316 -msgid "Close" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:317 -msgid "Test rules" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:123 -msgid "No currently defined redirection rule." -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:374 -msgid "No matching rule!" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:231 -#, python-format -msgid "Internal reference: {0} (not found)" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:368 -msgid "Input URL" -msgstr "" - -#: ./src/pyams_content/features/redirect/zmi/container.py:370 -msgid "Output URL" -msgstr "" - -#: ./src/pyams_content/features/menu/interfaces.py:60 -msgid "Menu title" -msgstr "" - -#: ./src/pyams_content/features/menu/interfaces.py:61 -msgid "Displayed menu label" -msgstr "" - -#: ./src/pyams_content/features/menu/interfaces.py:65 -msgid "Direct reference to menu target" -msgstr "" - -#: ./src/pyams_content/features/menu/interfaces.py:69 -msgid "Name of the pictogram associated with this menu" -msgstr "" - -#: ./src/pyams_content/features/menu/zmi/__init__.py:80 -msgid "Add menu..." -msgstr "" - -#: ./src/pyams_content/features/menu/zmi/__init__.py:91 -msgid "Add new menu" -msgstr "" - -#: ./src/pyams_content/features/menu/zmi/__init__.py:124 -msgid "Edit menu properties" -msgstr "" - -#: ./src/pyams_content/features/menu/zmi/__init__.py:230 -msgid "Inner content" -msgstr "" - -#: ./src/pyams_content/features/menu/zmi/__init__.py:111 -msgid "Menu was correctly added." -msgstr "" - -#: ./src/pyams_content/features/menu/zmi/__init__.py:415 -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:67 -msgid "Simple navigation" -msgstr "" - -#: ./src/pyams_content/features/menu/portlet/navigation/double.py:67 -msgid "Double navigation" -msgstr "" - -#: ./src/pyams_content/features/menu/portlet/navigation/zmi/simple.py:69 -msgid "Navigation links" -msgstr "" - -#: ./src/pyams_content/features/menu/portlet/navigation/zmi/double.py:69 -msgid "Navigation menus" -msgstr "" - -#: ./src/pyams_content/features/menu/portlet/navigation/zmi/templates/double-preview.pt:14 -#: ./src/pyams_content/features/menu/portlet/navigation/zmi/templates/simple-preview.pt:11 -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/footer/interfaces.py:39 -msgid "Footer template" -msgstr "" - -#: ./src/pyams_content/features/footer/interfaces.py:40 -msgid "Presentation template used for this footer" -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:152 -msgid "" -"WARNING: Footer properties are saved automatically when changing inherit " -"mode!!" -msgstr "" - -#: ./src/pyams_content/features/footer/zmi/__init__.py:220 -msgid "Footer renderer settings" -msgstr "" - -#: ./src/pyams_content/features/footer/zmi/__init__.py:107 -msgid "Don't inherit parent 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:55 -msgid "Ask for review..." -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:94 -msgid "Content review request" -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:159 -msgid "Comments" -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:179 -msgid "Review comments" -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:65 -msgid "Sought principals" -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:66 -msgid "List of principals from which a review is requested" -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:69 -msgid "Comment" -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:70 -msgid "Comment associated with this request" -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:73 -msgid "Notify all reviewers" -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:74 -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:85 -msgid "Ask for content review" -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:140 -msgid "Request successful. No new notification have been sent" -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:256 -msgid "Message is mandatory!" -msgstr "" - -#: ./src/pyams_content/features/review/zmi/__init__.py:128 -#, 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/search/__init__.py:38 -msgid "Search folder" -msgstr "" - -#: ./src/pyams_content/features/search/interfaces.py:66 -msgid "Selected content types" -msgstr "" - -#: ./src/pyams_content/features/search/interfaces.py:67 -msgid "Searched content types; leave empty for all" -msgstr "" - -#: ./src/pyams_content/features/search/interfaces.py:71 -msgid "Selected data types" -msgstr "" - -#: ./src/pyams_content/features/search/interfaces.py:72 -msgid "Searched data types; leave empty for all" -msgstr "" - -#: ./src/pyams_content/features/search/zmi/properties.py:36 -msgid "Main search settings" -msgstr "" - -#: ./src/pyams_content/features/search/zmi/__init__.py:63 -msgid "This search folder" -msgstr "" - -#: ./src/pyams_content/features/search/zmi/__init__.py:82 -msgid "Add search folder..." -msgstr "" - -#: ./src/pyams_content/features/search/zmi/__init__.py:98 -msgid "Add search folder" -msgstr "" - -#: ./src/pyams_content/features/search/zmi/__init__.py:73 -#, python-format -msgid "Search folder « {title} »" -msgstr "" - -#: ./src/pyams_content/features/search/zmi/theme.py:35 -msgid "Search folder tags settings" -msgstr "" - -#: ./src/pyams_content/features/search/zmi/theme.py:51 -msgid "Search folder themes settings" -msgstr "" - -#: ./src/pyams_content/features/search/zmi/theme.py:67 -msgid "Search folder collections settings" -msgstr "" - -#: ./src/pyams_content/features/search/zmi/reference.py:31 -msgid "Search folder internal references settings" -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:161 -msgid "" -"WARNING: Header properties are saved automatically when changing inherit " -"mode!!" -msgstr "" - -#: ./src/pyams_content/features/header/zmi/__init__.py:229 -msgid "Header renderer settings" -msgstr "" - -#: ./src/pyams_content/features/header/zmi/__init__.py:113 -msgid "Don't inherit parent header" -msgstr ""