diff --git a/core/modules/comment/comment.routing.yml b/core/modules/comment/comment.routing.yml
index 6273eb7..29bbc4b 100644
--- a/core/modules/comment/comment.routing.yml
+++ b/core/modules/comment/comment.routing.yml
@@ -2,7 +2,7 @@ comment.admin:
   path: '/admin/content/comment'
   defaults:
     _title: 'Comments'
-    _content: '\Drupal\comment\Controller\AdminController::adminPage'
+    _form: 'Drupal\comment\Form\CommentAdminOverview'
     type: 'new'
   requirements:
     _permission: 'administer comments'
@@ -11,7 +11,7 @@ comment.admin_approval:
   path: '/admin/content/comment/approval'
   defaults:
     _title: 'Unapproved comments'
-    _content: '\Drupal\comment\Controller\AdminController::adminPage'
+    _form: 'Drupal\comment\Form\CommentAdminOverview'
     type: 'approval'
   requirements:
     _permission: 'administer comments'
@@ -50,6 +50,14 @@ comment.confirm_delete:
   requirements:
     _entity_access: 'comment.delete'
 
+comment.multiple_delete_confirm:
+  path: '/admin/content/comment/delete'
+  defaults:
+    _title: 'Delete'
+    _form: '\Drupal\comment\Form\ConfirmDeleteMultiple'
+  requirements:
+    _permission: 'administer comments'
+
 comment.reply:
   path: '/comment/reply/{entity_type}/{entity_id}/{field_name}/{pid}'
   defaults:
diff --git a/core/modules/comment/comment.views.inc b/core/modules/comment/comment.views.inc
index 6429f28..070c4cd 100644
--- a/core/modules/comment/comment.views.inc
+++ b/core/modules/comment/comment.views.inc
@@ -425,6 +425,14 @@ function comment_views_data() {
       ),
     );
   }
+  $data['comment']['comment_bulk_form'] = array(
+    'title' => t('Comment operations bulk form'),
+    'help' => t('Add a form element that lets you run operations on multiple comments.'),
+    'field' => array(
+      'id' => 'comment_bulk_form',
+    ),
+  );
+
 
   // Define the base group of this table. Fields that don't have a group defined
   // will go into this field by default.
diff --git a/core/modules/comment/config/system.action.comment_delete_action.yml b/core/modules/comment/config/system.action.comment_delete_action.yml
new file mode 100644
index 0000000..90f85f2
--- /dev/null
+++ b/core/modules/comment/config/system.action.comment_delete_action.yml
@@ -0,0 +1,8 @@
+id: comment_delete_action
+label: 'Delete comment'
+uuid: jibran95-m4d3-th15-uu1d-f0rc0mm3n752
+status: true
+langcode: en
+type: comment
+plugin: comment_delete_action
+configuration: {  }
diff --git a/core/modules/comment/config/views.view.comment.yml b/core/modules/comment/config/views.view.comment.yml
new file mode 100644
index 0000000..e775839
--- /dev/null
+++ b/core/modules/comment/config/views.view.comment.yml
@@ -0,0 +1,1219 @@
+base_field: cid
+base_table: comment
+core: 8.x
+description: 'Find and manage comments.'
+status: true
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 1
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'administer comments'
+      cache:
+        type: none
+        options: {  }
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          slave: false
+          query_comment: false
+          query_tags: {  }
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      pager:
+        type: full
+        options:
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: null
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 20, 40, 60'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: '‹ previous'
+            next: 'next ›'
+            first: '« first'
+            last: 'last »'
+          quantity: 9
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            subject: subject
+            name: name
+            title: title
+            edit_comment: edit_comment
+            dropbutton: dropbutton
+            translation_link: translation_link
+            changed: changed
+          info:
+            subject:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            name:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-medium
+            title:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            edit_comment:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            dropbutton:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            translation_link:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            changed:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+          default: changed
+          empty_table: false
+      row:
+        type: fields
+      relationships:
+        node:
+          id: node
+          table: comment
+          field: node
+          required: 1
+          relationship: none
+          group_type: group
+          admin_label: Content
+      fields:
+        comment_bulk_form:
+          id: comment_bulk_form
+          table: comment
+          field: comment_bulk_form
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          action_title: 'Update Options'
+          include_exclude: include
+          selected_actions:
+            comment_delete_action: comment_delete_action
+            comment_unpublish_action: comment_unpublish_action
+          plugin_id: comment_bulk_form
+          provider: comment
+        subject:
+          id: subject
+          table: comment
+          field: subject
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Subject
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: false
+            ellipsis: false
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_comment: 1
+          link_to_entity: 0
+          provider: comment
+        name:
+          id: name
+          table: comment
+          field: name
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Author
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_user: 1
+          plugin_id: comment_username
+          provider: comment
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          relationship: node
+          group_type: group
+          admin_label: ''
+          label: 'Posted in'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_node: 1
+          plugin_id: node
+          provider: node
+        changed:
+          id: changed
+          table: comment
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Updated
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          date_format: short
+          custom_date_format: ''
+          timezone: ''
+          plugin_id: date
+          provider: views
+        edit_comment:
+          id: edit_comment
+          table: comment
+          field: edit_comment
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: true
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          text: edit
+          link_to_entity: 0
+          destination: 0
+          plugin_id: comment_link_edit
+          provider: comment
+        delete_comment:
+          id: delete_comment
+          table: comment
+          field: delete_comment
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: true
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          text: delete
+          link_to_entity: 0
+          plugin_id: comment_link_delete
+          provider: comment
+        translation_link:
+          id: translation_link
+          table: comment
+          field: translation_link
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: true
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          text: translate
+          plugin_id: content_translation_link
+          provider: content_translation
+        dropbutton:
+          id: dropbutton
+          table: views
+          field: dropbutton
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Operations
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          fields:
+            edit_comment: edit_comment
+            delete_comment: delete_comment
+            translation_link: translation_link
+            action_bulk_form: 0
+            subject: 0
+            name: 0
+            title: 0
+            changed: 0
+          destination: 1
+          plugin_id: dropbutton
+          provider: views
+      filters:
+        status:
+          value: '1'
+          table: comment
+          field: status
+          provider: comment
+          id: status
+          expose:
+            operator: ''
+          group: '1'
+      sorts:
+        changed:
+          id: changed
+          table: comment
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          plugin_id: date
+          provider: views
+      title: Comment
+      header: {  }
+      footer: {  }
+      empty:
+        area:
+          id: area
+          table: views
+          field: area
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'No comments available.'
+          format: basic_html
+          plugin_id: text
+          provider: views
+      arguments: {  }
+  page_1:
+    display_plugin: page
+    id: page_1
+    display_title: 'Published Comments'
+    position: 1
+    display_options:
+      path: admin/content/comment
+      menu:
+        type: tab
+        title: Comments
+        description: 'Comments published'
+        name: admin
+        weight: 0
+        context: '0'
+      display_description: ''
+  page_2:
+    display_plugin: page
+    id: page_2
+    display_title: 'Unapproved Comments'
+    position: 2
+    display_options:
+      path: admin/content/comment/approval
+      menu:
+        type: tab
+        title: 'Unapproved comments'
+        description: 'Comments unapproved'
+        name: admin
+        weight: 1
+        context: '0'
+      display_description: ''
+      filters:
+        status:
+          id: status
+          table: comment
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '='
+          value: '0'
+          group: '1'
+          exposed: false
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: 0
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          provider: comment
+      defaults:
+        filters: false
+        filter_groups: false
+        fields: false
+      filter_groups:
+        operator: AND
+        groups:
+          1: AND
+      fields:
+        comment_bulk_form:
+          id: comment_bulk_form
+          table: comment
+          field: comment_bulk_form
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          action_title: 'Update Options'
+          include_exclude: include
+          selected_actions:
+            comment_delete_action: comment_delete_action
+            comment_publish_action: comment_publish_action
+          plugin_id: comment_bulk_form
+          provider: comment
+        subject:
+          id: subject
+          table: comment
+          field: subject
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Subject
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: false
+            ellipsis: false
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_comment: 1
+          link_to_entity: 0
+          provider: comment
+        name:
+          id: name
+          table: comment
+          field: name
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Author
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_user: 1
+          plugin_id: comment_username
+          provider: comment
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          relationship: node
+          group_type: group
+          admin_label: ''
+          label: 'Posted in'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_node: 1
+          plugin_id: node
+          provider: node
+        changed:
+          id: changed
+          table: comment
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Updated
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          date_format: short
+          custom_date_format: ''
+          timezone: ''
+          plugin_id: date
+          provider: views
+        edit_comment:
+          id: edit_comment
+          table: comment
+          field: edit_comment
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: true
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          text: edit
+          link_to_entity: 0
+          destination: 0
+          plugin_id: comment_link_edit
+          provider: comment
+        delete_comment:
+          id: delete_comment
+          table: comment
+          field: delete_comment
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: true
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          text: delete
+          link_to_entity: 0
+          plugin_id: comment_link_delete
+          provider: comment
+        translation_link:
+          id: translation_link
+          table: comment
+          field: translation_link
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: true
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          text: translate
+          plugin_id: content_translation_link
+          provider: content_translation
+        dropbutton:
+          id: dropbutton
+          table: views
+          field: dropbutton
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Operations
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          fields:
+            edit_comment: edit_comment
+            delete_comment: delete_comment
+            translation_link: translation_link
+            action_bulk_form: 0
+            subject: 0
+            name: 0
+            title: 0
+            changed: 0
+          destination: 1
+          plugin_id: dropbutton
+          provider: views
+label: Comment
+module: views
+id: comment
+tag: ''
+uuid: 9a78bdd7-cf3c-46f3-8700-daae8243d7a7
+langcode: en
diff --git a/core/modules/comment/lib/Drupal/comment/Controller/AdminController.php b/core/modules/comment/lib/Drupal/comment/Controller/AdminController.php
index b0c7cbe..478d3be 100644
--- a/core/modules/comment/lib/Drupal/comment/Controller/AdminController.php
+++ b/core/modules/comment/lib/Drupal/comment/Controller/AdminController.php
@@ -36,11 +36,17 @@ class AdminController extends ControllerBase {
   protected $commentManager;
 
   /**
-   * The form builder.
+   * Constructs an AdminController object.
    *
-   * @var \Drupal\Core\Form\FormBuilderInterface
+   * @param \Drupal\field\FieldInfo $field_info
+   *   The field info service.
+   * @param \Drupal\comment\CommentManagerInterface $comment_manager
+   *   The comment manager service.
    */
-  protected $formBuilder;
+  public function __construct(FieldInfo $field_info, CommentManagerInterface $comment_manager) {
+    $this->fieldInfo = $field_info;
+    $this->commentManager = $comment_manager;
+  }
 
   /**
    * {@inheritdoc}
@@ -48,28 +54,11 @@ class AdminController extends ControllerBase {
   public static function create(ContainerInterface $container) {
     return new static(
       $container->get('field.info'),
-      $container->get('comment.manager'),
-      $container->get('form_builder')
+      $container->get('comment.manager')
     );
   }
 
   /**
-   * Constructs an AdminController object.
-   *
-   * @param \Drupal\field\FieldInfo $field_info
-   *   The field info service.
-   * @param \Drupal\comment\CommentManagerInterface $comment_manager
-   *   The comment manager service.
-   * @param \Drupal\Core\Form\FormBuilderInterface $form_builder
-   *   The form builder.
-   */
-  public function __construct(FieldInfo $field_info, CommentManagerInterface $comment_manager, FormBuilderInterface $form_builder) {
-    $this->fieldInfo = $field_info;
-    $this->commentManager = $comment_manager;
-    $this->formBuilder = $form_builder;
-  }
-
-  /**
    * Returns an overview of comment fields in use on the site.
    *
    * @return array
@@ -243,25 +232,4 @@ public function bundleTitle($commented_entity_type, $field_name) {
     return $this->commentManager->getFieldUIPageTitle($commented_entity_type, $field_name);
   }
 
-  /**
-   * Presents an administrative comment listing.
-   *
-   * @param \Symfony\Component\HttpFoundation\Request $request
-   *   The request of the page.
-   * @param string $type
-   *   The type of the overview form ('approval' or 'new') default to 'new'.
-   *
-   * @return array
-   *   Then comment multiple delete confirmation form or the comments overview
-   *   administration form.
-   */
-  public function adminPage(Request $request, $type = 'new') {
-    if ($request->request->get('operation') == 'delete' && $request->request->get('comments')) {
-      return $this->formBuilder->getForm('\Drupal\comment\Form\ConfirmDeleteMultiple', $request);
-    }
-    else {
-      return $this->formBuilder->getForm('\Drupal\comment\Form\CommentAdminOverview', $type);
-    }
-  }
-
 }
diff --git a/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php b/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php
index 9b54bf1..e5022a8 100644
--- a/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php
+++ b/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php
@@ -8,7 +8,8 @@
 namespace Drupal\comment\Form;
 
 use Drupal\comment\CommentInterface;
-use Drupal\comment\CommentStorageInterface;
+use Drupal\comment\CommentStorageControllerInterface;
+use Drupal\user\TempStoreFactory;
 use Drupal\Component\Utility\Unicode;
 use Drupal\Core\Cache\Cache;
 use Drupal\Core\Datetime\Date;
@@ -51,6 +52,13 @@ class CommentAdminOverview extends FormBase {
   protected $moduleHandler;
 
   /**
+   * The tempstore factory.
+   *
+   * @var \Drupal\user\TempStoreFactory
+   */
+  protected $tempStoreFactory;
+
+  /**
    * Creates a CommentAdminOverview form.
    *
    * @param \Drupal\Core\Entity\EntityManager $entity_manager
@@ -61,12 +69,15 @@ class CommentAdminOverview extends FormBase {
    *   The date service.
    * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
    *   The module handler.
+   * @param \Drupal\user\TempStoreFactory $temp_store_factory
+   *   The tempstore factory.
    */
-  public function __construct(EntityManager $entity_manager, CommentStorageInterface $comment_storage, Date $date, ModuleHandlerInterface $module_handler) {
+  public function __construct(EntityManager $entity_manager, CommentStorageControllerInterface $comment_storage, QueryFactory $entity_query, Date $date, ModuleHandlerInterface $module_handler, TempStoreFactory $temp_store_factory) {
     $this->entityManager = $entity_manager;
     $this->commentStorage = $comment_storage;
     $this->date = $date;
     $this->moduleHandler = $module_handler;
+    $this->tempStoreFactory = $temp_store_factory;
   }
 
   /**
@@ -77,7 +88,8 @@ public static function create(ContainerInterface $container) {
       $container->get('entity.manager'),
       $container->get('entity.manager')->getStorage('comment'),
       $container->get('date'),
-      $container->get('module_handler')
+      $container->get('module_handler'),
+      $container->get('user.tempstore')
     );
   }
 
@@ -273,26 +285,33 @@ public function validateForm(array &$form, array &$form_state) {
   public function submitForm(array &$form, array &$form_state) {
     $operation = $form_state['values']['operation'];
     $cids = $form_state['values']['comments'];
-
-    foreach ($cids as $cid) {
-      // Delete operation handled in \Drupal\comment\Form\ConfirmDeleteMultiple
-      // see \Drupal\comment\Controller\AdminController::adminPage().
-      if ($operation == 'unpublish') {
-        $comment = $this->commentStorage->load($cid);
-        $comment->setPublished(FALSE);
-        $comment->save();
-      }
-      elseif ($operation == 'publish') {
-        $comment = $this->commentStorage->load($cid);
-        $comment->setPublished(TRUE);
-        $comment->save();
+    if ($operation != 'delete') {
+      foreach ($cids as $cid) {
+        if ($operation == 'unpublish') {
+          $comment = $this->commentStorage->load($cid);
+          $comment->status->value = CommentInterface::NOT_PUBLISHED;
+          $comment->save();
+        }
+        elseif ($operation == 'publish') {
+          $comment = $this->commentStorage->load($cid);
+          $comment->status->value = CommentInterface::PUBLISHED;
+          $comment->save();
+        }
       }
+      drupal_set_message($this->t('The update has been performed.'));
+      $form_state['redirect_route'] = array(
+        'route_name' => 'comment.admin',
+      );
+      Cache::invalidateTags(array('content' => TRUE));
+    }
+    else {
+      $this->tempStoreFactory
+        ->get('comment_multiple_delete_confirm')
+        ->set(\Drupal::currentUser()->id(), $this->commentStorage->loadMultiple($cids));
+      $form_state['redirect_route'] = array(
+        'route_name' => 'comment.multiple_delete_confirm',
+      );
     }
-    drupal_set_message($this->t('The update has been performed.'));
-    $form_state['redirect_route'] = array(
-      'route_name' => 'comment.admin',
-    );
-    Cache::invalidateTags(array('content' => TRUE));
   }
 
 }
diff --git a/core/modules/comment/lib/Drupal/comment/Form/ConfirmDeleteMultiple.php b/core/modules/comment/lib/Drupal/comment/Form/ConfirmDeleteMultiple.php
index 4598bd0..0636627 100644
--- a/core/modules/comment/lib/Drupal/comment/Form/ConfirmDeleteMultiple.php
+++ b/core/modules/comment/lib/Drupal/comment/Form/ConfirmDeleteMultiple.php
@@ -7,10 +7,12 @@
 
 namespace Drupal\comment\Form;
 
-use Drupal\comment\CommentStorageInterface;
+use Drupal\comment\CommentStorageControllerInterface;
+use Drupal\user\TempStoreFactory;
 use Drupal\Component\Utility\String;
 use Drupal\Core\Cache\Cache;
 use Drupal\Core\Form\ConfirmFormBase;
+use Symfony\Component\HttpFoundation\RedirectResponse;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
@@ -19,6 +21,13 @@
 class ConfirmDeleteMultiple extends ConfirmFormBase {
 
   /**
+   * The tempstore factory.
+   *
+   * @var \Drupal\user\TempStoreFactory
+   */
+  protected $tempStoreFactory;
+
+  /**
    * The comment storage.
    *
    * @var \Drupal\comment\CommentStorageInterface
@@ -37,9 +46,12 @@ class ConfirmDeleteMultiple extends ConfirmFormBase {
    *
    * @param \Drupal\comment\CommentStorageInterface $comment_storage
    *   The comment storage.
+   * @param \Drupal\user\TempStoreFactory $temp_store_factory
+   *   The tempstore factory.
    */
-  public function __construct(CommentStorageInterface $comment_storage) {
+  public function __construct(CommentStorageControllerInterface $comment_storage, TempStoreFactory $temp_store_factory) {
     $this->commentStorage = $comment_storage;
+    $this->tempStoreFactory = $temp_store_factory;
   }
 
   /**
@@ -47,7 +59,8 @@ public function __construct(CommentStorageInterface $comment_storage) {
    */
   public static function create(ContainerInterface $container) {
     return new static(
-      $container->get('entity.manager')->getStorage('comment')
+      $container->get('entity.manager')->getStorageController('comment'),
+      $container->get('user.tempstore')
     );
   }
 
@@ -62,7 +75,7 @@ public function getFormId() {
    * {@inheritdoc}
    */
   public function getQuestion() {
-    return $this->t('Are you sure you want to delete these comments and all their children?');
+    return $this->translationManager()->formatPlural(count($this->comments), 'Are you sure you want to delete this comment and all its children?', 'Are you sure you want to delete these comments and all their children?');
   }
 
   /**
@@ -78,23 +91,24 @@ public function getCancelRoute() {
    * {@inheritdoc}
    */
   public function getConfirmText() {
-    return $this->t('Delete comments');
+    return $this->t('Delete');
   }
 
   /**
    * {@inheritdoc}
    */
   public function buildForm(array $form, array &$form_state) {
-    $edit = $form_state['input'];
+    $this->comments = $this->tempStoreFactory->get('comment_multiple_delete_confirm')->get(\Drupal::currentUser()->id());
+    if (empty($this->comments)) {
+      return new RedirectResponse($this->urlGenerator()->generate('comment.admin'));
+    }
 
     $form['comments'] = array(
       '#prefix' => '<ul>',
       '#suffix' => '</ul>',
       '#tree' => TRUE,
     );
-    // array_filter() returns only elements with actual values.
-    $comment_counter = 0;
-    $this->comments = $this->commentStorage->loadMultiple(array_keys(array_filter($edit['comments'])));
+
     foreach ($this->comments as $comment) {
       $cid = $comment->id();
       $form['comments'][$cid] = array(
@@ -103,15 +117,9 @@ public function buildForm(array $form, array &$form_state) {
         '#prefix' => '<li>',
         '#suffix' => String::checkPlain($comment->label()) . '</li>'
       );
-      $comment_counter++;
     }
     $form['operation'] = array('#type' => 'hidden', '#value' => 'delete');
 
-    if (!$comment_counter) {
-      drupal_set_message($this->t('There do not appear to be any comments to delete, or your selected comment was deleted by another administrator.'));
-      $form_state['redirect_route']['route_name'] = 'comment.admin';
-    }
-
     return parent::buildForm($form, $form_state);
   }
 
@@ -119,12 +127,13 @@ public function buildForm(array $form, array &$form_state) {
    * {@inheritdoc}
    */
   public function submitForm(array &$form, array &$form_state) {
-    if ($form_state['values']['confirm']) {
+    if ($form_state['values']['confirm'] && !empty($this->comments)) {
       $this->commentStorage->delete($this->comments);
-      Cache::invalidateTags(array('content' => TRUE));
-      $count = count($form_state['values']['comments']);
+      $this->tempStoreFactory->get('comment_multiple_delete_confirm')->delete(\Drupal::currentUser()->id());
+      $count = count($this->comments);
       watchdog('content', 'Deleted @count comments.', array('@count' => $count));
-      drupal_set_message(format_plural($count, 'Deleted 1 comment.', 'Deleted @count comments.'));
+      drupal_set_message($this->translationManager()->formatPlural($count, 'Deleted 1 comment.', 'Deleted @count comments.'));
+      Cache::invalidateTags(array('content' => TRUE));
     }
     $form_state['redirect_route']['route_name'] = 'comment.admin';
   }
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Action/DeleteComment.php b/core/modules/comment/lib/Drupal/comment/Plugin/Action/DeleteComment.php
new file mode 100644
index 0000000..51c96c2
--- /dev/null
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/Action/DeleteComment.php
@@ -0,0 +1,73 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\comment\Plugin\Action\DeleteComment.
+ */
+
+namespace Drupal\comment\Plugin\Action;
+
+use Drupal\Core\Action\ActionBase;
+use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
+use Drupal\user\TempStoreFactory;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+
+/**
+ * Unpublishes a comment.
+ *
+ * @Action(
+ *   id = "comment_delete_action",
+ *   label = @Translation("Delete comment"),
+ *   type = "comment",
+ *   confirm_form_path = "admin/content/comment/delete"
+ * )
+ */
+class DeleteComment extends ActionBase implements ContainerFactoryPluginInterface {
+
+  /**
+   * The tempstore object.
+   *
+   * @var \Drupal\user\TempStore
+   */
+  protected $tempStore;
+
+  /**
+   * Constructs a new DeleteComment object.
+   *
+   * @param array $configuration
+   *   A configuration array containing information about the plugin instance.
+   * @param string $plugin_id
+   *   The plugin ID for the plugin instance.
+   * @param array $plugin_definition
+   *   The plugin implementation definition.
+   * @param \Drupal\user\TempStoreFactory $temp_store_factory
+   *   The tempstore factory.
+   */
+  public function __construct(array $configuration, $plugin_id, array $plugin_definition, TempStoreFactory $temp_store_factory) {
+    parent::__construct($configuration, $plugin_id, $plugin_definition);
+
+    $this->tempStore = $temp_store_factory->get('comment_multiple_delete_confirm');
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function create(ContainerInterface $container, array $configuration, $plugin_id, array $plugin_definition) {
+    return new static($configuration, $plugin_id, $plugin_definition, $container->get('user.tempstore'));
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function executeMultiple(array $entities) {
+    $this->tempStore->set(\Drupal::currentUser()->id(), $entities);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function execute($object = NULL) {
+    $this->executeMultiple(array($object));
+  }
+
+}
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/CommentBulkForm.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/CommentBulkForm.php
new file mode 100644
index 0000000..1d37b6f
--- /dev/null
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/CommentBulkForm.php
@@ -0,0 +1,122 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\comment\Plugin\views\field\CommentBulkForm.
+ */
+
+namespace Drupal\comment\Plugin\views\field;
+
+use Drupal\Component\Annotation\PluginID;
+use Drupal\system\Plugin\views\field\BulkFormBase;
+use Drupal\Core\Cache\Cache;
+use Drupal\Core\Entity\EntityManager;
+
+/**
+ * Defines a comment operations bulk form element.
+ *
+ * @PluginID("comment_bulk_form")
+ */
+class CommentBulkForm extends BulkFormBase {
+
+  /**
+   * Constructs a new CommentBulkForm object.
+   */
+  public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityManager $manager) {
+    parent::__construct($configuration, $plugin_id, $plugin_definition, $manager);
+
+    // Filter the actions to only include those for the 'comment' entity type.
+    $this->actions = array_filter($this->actions, function ($action) {
+      return $action->getType() == 'comment';
+    });
+
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function defineOptions() {
+    $options = parent::defineOptions();
+    $options['include_exclude'] = array(
+      'default' => 'exclude',
+    );
+    $options['selected_actions'] = array(
+      'default' => array(),
+    );
+    return $options;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function buildOptionsForm(&$form, &$form_state) {
+    parent::buildOptionsForm($form, $form_state);
+
+    $form['include_exclude'] = array(
+      '#type' => 'radios',
+      '#title' => t('Available actions'),
+      '#options' => array(
+        'exclude' => t('All actions, except selected'),
+        'include' => t('Only selected actions'),
+      ),
+      '#default_value' => $this->options['include_exclude'],
+    );
+    $form['selected_actions'] = array(
+      '#type' => 'checkboxes',
+      '#title' => t('Selected actions'),
+      '#options' => $this->getBulkOptions(FALSE),
+      '#default_value' => $this->options['selected_actions'],
+    );
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function validateOptionsForm(&$form, &$form_state) {
+    parent::validateOptionsForm($form, $form_state);
+
+    $form_state['values']['options']['selected_actions'] = array_filter($form_state['values']['options']['selected_actions']);
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function getBulkOptions($filtered = TRUE) {
+    // Get all available actions.
+    $entity_type = $this->getEntityType();
+    $options = array();
+    // Filter the action list.
+    foreach ($this->actions as $id => $action) {
+      if ($filtered) {
+        $in_selected = in_array($id, $this->options['selected_actions']);
+        // If the field is configured to include only the selected actions,
+        // skip actions that were not selected.
+        if (($this->options['include_exclude'] == 'include') && !$in_selected) {
+          continue;
+        }
+        // Otherwise, if the field is configured to exclude the selected
+        // actions, skip actions that were selected.
+        elseif (($this->options['include_exclude'] == 'exclude') && $in_selected) {
+          continue;
+        }
+      }
+      // Only allow actions that are valid for this entity type.
+      if (($action->getType() == $entity_type)) {
+        $options[$id] = $action->label();
+      }
+    }
+
+    return $options;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function views_form_validate(&$form, &$form_state) {
+    $selected = array_filter($form_state['values'][$this->options['id']]);
+    if (empty($selected)) {
+      form_set_error('', t('No comments selected.'));
+    }
+  }
+
+}
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php
index f6137ad..d5a9178 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php
@@ -50,7 +50,7 @@ public function buildOptionsForm(&$form, &$form_state) {
   protected function renderLink($data, ResultRow $values) {
     parent::renderLink($data, $values);
     // Ensure user has access to edit this comment.
-    $comment = $this->getValue($values);
+    $comment = $data;
     if (!$comment->access('update')) {
       return;
     }
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentAdminTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentAdminTest.php
index 4f2f211..2245fd2 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentAdminTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentAdminTest.php
@@ -91,7 +91,7 @@ function testApprovalAdminInterface() {
     );
     $this->drupalPostForm(NULL, $edit, t('Update'));
     $this->assertText(t('Are you sure you want to delete these comments and all their children?'), 'Confirmation required.');
-    $this->drupalPostForm(NULL, $edit, t('Delete comments'));
+    $this->drupalPostForm(NULL, $edit, t('Delete'));
     $this->assertText(t('No comments available.'), 'All comments were deleted.');
     // Test message when no comments selected.
     $edit = array(
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentNonNodeTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentNonNodeTest.php
index d4af65e..6f4bcce 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentNonNodeTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentNonNodeTest.php
@@ -197,7 +197,7 @@ function performCommentOperation($comment, $operation, $approval = FALSE) {
     $this->drupalPostForm('admin/content/comment' . ($approval ? '/approval' : ''), $edit, t('Update'));
 
     if ($operation == 'delete') {
-      $this->drupalPostForm(NULL, array(), t('Delete comments'));
+      $this->drupalPostForm(NULL, array(), t('Delete'));
       $this->assertRaw(format_plural(1, 'Deleted 1 comment.', 'Deleted @count comments.'), format_string('Operation "@operation" was performed on comment.', array('@operation' => $operation)));
     }
     else {
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentTestBase.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentTestBase.php
index c1edf13..b4869ee 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentTestBase.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentTestBase.php
@@ -329,7 +329,7 @@ function performCommentOperation(CommentInterface $comment, $operation, $approva
     $this->drupalPostForm('admin/content/comment' . ($approval ? '/approval' : ''), $edit, t('Update'));
 
     if ($operation == 'delete') {
-      $this->drupalPostForm(NULL, array(), t('Delete comments'));
+      $this->drupalPostForm(NULL, array(), t('Delete'));
       $this->assertRaw(format_plural(1, 'Deleted 1 comment.', 'Deleted @count comments.'), format_string('Operation "@operation" was performed on comment.', array('@operation' => $operation)));
     }
     else {
diff --git a/core/modules/views/lib/Drupal/views/Tests/DefaultViewsTest.php b/core/modules/views/lib/Drupal/views/Tests/DefaultViewsTest.php
index 6e74149..683e4ce 100644
--- a/core/modules/views/lib/Drupal/views/Tests/DefaultViewsTest.php
+++ b/core/modules/views/lib/Drupal/views/Tests/DefaultViewsTest.php
@@ -144,10 +144,6 @@ public function testDefaultViews() {
 
         $tokens = array('@name' => $name, '@display_id' => $display_id);
         $this->assertTrue($view->executed, format_string('@name:@display_id has been executed.', $tokens));
-
-        $count = count($view->result);
-        $this->assertTrue($count > 0, format_string('@count results returned', array('@count' => $count)));
-        $view->destroy();
       }
     }
   }
diff --git a/sites/default/files/.htaccess b/sites/default/files/.htaccess
new file mode 100644
index 0000000..7051eb8
--- /dev/null
+++ b/sites/default/files/.htaccess
@@ -0,0 +1,15 @@
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/.htaccess b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/README.txt b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/README.txt
new file mode 100644
index 0000000..12eb831
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/README.txt
@@ -0,0 +1 @@
+This directory contains the active configuration for your Drupal site. To move this configuration between environments, contents from this directory should be placed in the staging directory on the target server. To make this configuration active, see admin/config/development/configuration/sync on the target server. For information about deploying configuration between servers, see http://drupal.org/documentation/administer/config
\ No newline at end of file
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/bartik.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/bartik.settings.yml
new file mode 100644
index 0000000..3bb124e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/bartik.settings.yml
@@ -0,0 +1 @@
+shortcut_module_link: false
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_breadcrumbs.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_breadcrumbs.yml
new file mode 100644
index 0000000..395c6a3
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_breadcrumbs.yml
@@ -0,0 +1,30 @@
+id: bartik_breadcrumbs
+weight: -5
+status: false
+uuid: 5292c05c-dfff-4239-b40f-15d0ddf97d0a
+langcode: en
+dependencies:
+  module:
+    - system
+  theme:
+    - bartik
+theme: bartik
+region: '-1'
+plugin: system_breadcrumb_block
+settings:
+  label: Breadcrumbs
+  module: system
+  label_display: '0'
+  cache:
+    max_age: 0
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_content.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_content.yml
new file mode 100644
index 0000000..a9ea704
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_content.yml
@@ -0,0 +1,30 @@
+id: bartik_content
+weight: 0
+status: true
+uuid: 4af7ba65-307e-4e63-8409-0993328c23aa
+langcode: en
+dependencies:
+  module:
+    - system
+  theme:
+    - bartik
+theme: bartik
+region: content
+plugin: system_main_block
+settings:
+  label: 'Main page content'
+  module: system
+  label_display: '0'
+  cache:
+    max_age: 0
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_footer.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_footer.yml
new file mode 100644
index 0000000..be22f9b
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_footer.yml
@@ -0,0 +1,30 @@
+id: bartik_footer
+weight: 0
+status: true
+uuid: cacfff33-2a15-4f7a-9606-6fbc9789b789
+langcode: en
+dependencies:
+  module:
+    - system
+  theme:
+    - bartik
+theme: bartik
+region: footer
+plugin: 'system_menu_block:footer'
+settings:
+  label: 'Footer menu'
+  module: system
+  label_display: visible
+  cache:
+    max_age: -1
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_help.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_help.yml
new file mode 100644
index 0000000..ff36b0a
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_help.yml
@@ -0,0 +1,30 @@
+id: bartik_help
+weight: 0
+status: true
+uuid: 00fe5e92-6faa-469b-9f00-f7333d894902
+langcode: en
+dependencies:
+  module:
+    - system
+  theme:
+    - bartik
+theme: bartik
+region: help
+plugin: system_help_block
+settings:
+  label: 'System Help'
+  module: system
+  label_display: '0'
+  cache:
+    max_age: -1
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_login.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_login.yml
new file mode 100644
index 0000000..eec1bff
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_login.yml
@@ -0,0 +1,30 @@
+id: bartik_login
+weight: 0
+status: true
+uuid: 54d2a083-114a-405c-b300-d4c4711da346
+langcode: en
+dependencies:
+  module:
+    - user
+  theme:
+    - bartik
+theme: bartik
+region: sidebar_first
+plugin: user_login_block
+settings:
+  label: 'User login'
+  module: user
+  label_display: visible
+  cache:
+    max_age: 0
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_powered.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_powered.yml
new file mode 100644
index 0000000..4bb0e15
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_powered.yml
@@ -0,0 +1,30 @@
+id: bartik_powered
+weight: 10
+status: true
+uuid: 71ba908c-2b67-44fb-8146-7076114d8b9b
+langcode: en
+dependencies:
+  module:
+    - system
+  theme:
+    - bartik
+theme: bartik
+region: footer
+plugin: system_powered_by_block
+settings:
+  label: 'Powered by Drupal'
+  module: system
+  label_display: '0'
+  cache:
+    max_age: 0
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_search.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_search.yml
new file mode 100644
index 0000000..0f7a0c7
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_search.yml
@@ -0,0 +1,30 @@
+id: bartik_search
+weight: -1
+status: true
+uuid: aa213ddb-34a9-4431-bb5e-94b69dcca089
+langcode: en
+dependencies:
+  module:
+    - search
+  theme:
+    - bartik
+theme: bartik
+region: sidebar_first
+plugin: search_form_block
+settings:
+  label: Search
+  module: search
+  label_display: visible
+  cache:
+    max_age: 0
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_tools.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_tools.yml
new file mode 100644
index 0000000..3f50b90
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.bartik_tools.yml
@@ -0,0 +1,30 @@
+id: bartik_tools
+weight: 0
+status: true
+uuid: abae4d9a-4ca8-435a-9c00-ce4a6fcccc80
+langcode: en
+dependencies:
+  module:
+    - system
+  theme:
+    - bartik
+theme: bartik
+region: sidebar_first
+plugin: 'system_menu_block:tools'
+settings:
+  label: Tools
+  module: system
+  label_display: visible
+  cache:
+    max_age: -1
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_breadcrumbs.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_breadcrumbs.yml
new file mode 100644
index 0000000..c7ce83d
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_breadcrumbs.yml
@@ -0,0 +1,30 @@
+id: seven_breadcrumbs
+weight: -2
+status: false
+uuid: 271ba1a4-3e61-41ea-8713-19558a9c66fe
+langcode: en
+dependencies:
+  module:
+    - system
+  theme:
+    - seven
+theme: seven
+region: '-1'
+plugin: system_breadcrumb_block
+settings:
+  label: Breadcrumbs
+  module: system
+  label_display: '0'
+  cache:
+    max_age: 0
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_content.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_content.yml
new file mode 100644
index 0000000..f14b61a
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_content.yml
@@ -0,0 +1,30 @@
+id: seven_content
+weight: 0
+status: true
+uuid: 659a359a-52ae-43bc-bd00-b16e81a9c6a4
+langcode: en
+dependencies:
+  module:
+    - system
+  theme:
+    - seven
+theme: seven
+region: content
+plugin: system_main_block
+settings:
+  label: 'Main page content'
+  module: system
+  label_display: '0'
+  cache:
+    max_age: 0
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_help.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_help.yml
new file mode 100644
index 0000000..3110e76
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_help.yml
@@ -0,0 +1,30 @@
+id: seven_help
+weight: 0
+status: true
+uuid: ac0ade80-ccf3-4d72-8600-f8e0689d201d
+langcode: en
+dependencies:
+  module:
+    - system
+  theme:
+    - seven
+theme: seven
+region: help
+plugin: system_help_block
+settings:
+  label: 'System Help'
+  module: system
+  label_display: '0'
+  cache:
+    max_age: -1
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_login.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_login.yml
new file mode 100644
index 0000000..2a991fd
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/block.block.seven_login.yml
@@ -0,0 +1,30 @@
+id: seven_login
+weight: 10
+status: true
+uuid: 51efa308-44e0-4d26-bd06-6e00ff0fc1cd
+langcode: en
+dependencies:
+  module:
+    - user
+  theme:
+    - seven
+theme: seven
+region: content
+plugin: user_login_block
+settings:
+  label: 'User login'
+  module: user
+  label_display: visible
+  cache:
+    max_age: 0
+    contexts: {  }
+visibility:
+  path:
+    visibility: 0
+    pages: ''
+  role:
+    roles: {  }
+  node_type:
+    types:
+      article: '0'
+      page: '0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.module.toolbar.narrow.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.module.toolbar.narrow.yml
new file mode 100644
index 0000000..e2548af
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.module.toolbar.narrow.yml
@@ -0,0 +1,15 @@
+id: module.toolbar.narrow
+name: narrow
+label: narrow
+mediaQuery: 'only screen and (min-width: 16.5em)'
+source: toolbar
+sourceType: module
+weight: 0
+multipliers:
+  1x: 1x
+status: true
+uuid: f8cfb590-0c68-4618-b42f-47cce9bed313
+langcode: en
+dependencies:
+  module:
+    - toolbar
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.module.toolbar.standard.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.module.toolbar.standard.yml
new file mode 100644
index 0000000..f520eac
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.module.toolbar.standard.yml
@@ -0,0 +1,15 @@
+id: module.toolbar.standard
+name: standard
+label: standard
+mediaQuery: 'only screen and (min-width: 38.125em)'
+source: toolbar
+sourceType: module
+weight: 1
+multipliers:
+  1x: 1x
+status: true
+uuid: 0d0a339b-6bc0-439e-982d-45a1f4209175
+langcode: en
+dependencies:
+  module:
+    - toolbar
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.module.toolbar.wide.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.module.toolbar.wide.yml
new file mode 100644
index 0000000..e10b479
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.module.toolbar.wide.yml
@@ -0,0 +1,15 @@
+id: module.toolbar.wide
+name: wide
+label: wide
+mediaQuery: 'only screen and (min-width: 52em)'
+source: toolbar
+sourceType: module
+weight: 2
+multipliers:
+  1x: 1x
+status: true
+uuid: afab6e87-93c3-48bc-b700-c980bd558bd1
+langcode: en
+dependencies:
+  module:
+    - toolbar
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.theme.bartik.mobile.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.theme.bartik.mobile.yml
new file mode 100644
index 0000000..9eaeee8
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.theme.bartik.mobile.yml
@@ -0,0 +1,15 @@
+id: theme.bartik.mobile
+name: mobile
+label: mobile
+mediaQuery: '(min-width: 0px)'
+source: bartik
+sourceType: theme
+weight: 0
+multipliers:
+  1x: 1x
+status: true
+uuid: 7bece503-8485-448f-9d2c-44d4dbc34423
+langcode: en
+dependencies:
+  theme:
+    - bartik
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.theme.bartik.narrow.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.theme.bartik.narrow.yml
new file mode 100644
index 0000000..104cb6f
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.theme.bartik.narrow.yml
@@ -0,0 +1,15 @@
+id: theme.bartik.narrow
+name: narrow
+label: narrow
+mediaQuery: 'all and (min-width: 560px) and (max-width: 850px)'
+source: bartik
+sourceType: theme
+weight: 1
+multipliers:
+  1x: 1x
+status: true
+uuid: 6280ed56-d165-45e7-b010-164311149166
+langcode: en
+dependencies:
+  theme:
+    - bartik
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.theme.bartik.wide.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.theme.bartik.wide.yml
new file mode 100644
index 0000000..81bf84a
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint.theme.bartik.wide.yml
@@ -0,0 +1,15 @@
+id: theme.bartik.wide
+name: wide
+label: wide
+mediaQuery: 'all and (min-width: 851px)'
+source: bartik
+sourceType: theme
+weight: 2
+multipliers:
+  1x: 1x
+status: true
+uuid: b0d55e81-ee83-4d78-8004-4c4e51ff32dc
+langcode: en
+dependencies:
+  theme:
+    - bartik
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint_group.module.toolbar.toolbar.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint_group.module.toolbar.toolbar.yml
new file mode 100644
index 0000000..1afd1c4
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint_group.module.toolbar.toolbar.yml
@@ -0,0 +1,19 @@
+id: module.toolbar.toolbar
+uuid: 0ce4c929-a187-4de0-8900-d4986c907537
+name: toolbar
+label: toolbar
+breakpoint_ids:
+  - module.toolbar.narrow
+  - module.toolbar.standard
+  - module.toolbar.wide
+source: toolbar
+sourceType: module
+status: true
+langcode: en
+dependencies:
+  entity:
+    - breakpoint.breakpoint.module.toolbar.narrow
+    - breakpoint.breakpoint.module.toolbar.standard
+    - breakpoint.breakpoint.module.toolbar.wide
+  module:
+    - toolbar
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint_group.theme.bartik.bartik.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint_group.theme.bartik.bartik.yml
new file mode 100644
index 0000000..39259cd
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/breakpoint.breakpoint_group.theme.bartik.bartik.yml
@@ -0,0 +1,19 @@
+id: theme.bartik.bartik
+uuid: 382fc13f-5838-4d2c-8f0c-12d063921fbb
+name: bartik
+label: Bartik
+breakpoint_ids:
+  - theme.bartik.mobile
+  - theme.bartik.narrow
+  - theme.bartik.wide
+source: bartik
+sourceType: theme
+status: true
+langcode: en
+dependencies:
+  entity:
+    - breakpoint.breakpoint.theme.bartik.mobile
+    - breakpoint.breakpoint.theme.bartik.narrow
+    - breakpoint.breakpoint.theme.bartik.wide
+  theme:
+    - bartik
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/contact.category.feedback.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/contact.category.feedback.yml
new file mode 100644
index 0000000..9c05868
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/contact.category.feedback.yml
@@ -0,0 +1,10 @@
+id: feedback
+label: 'Website feedback'
+recipients:
+  - ''
+reply: ''
+weight: 0
+status: true
+uuid: 06ac87c8-8470-4e2f-be00-0a3841b56e2a
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/contact.category.personal.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/contact.category.personal.yml
new file mode 100644
index 0000000..12e1ac2
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/contact.category.personal.yml
@@ -0,0 +1,9 @@
+id: personal
+label: 'Personal contact form'
+recipients: {  }
+reply: ''
+weight: 0
+status: true
+uuid: ff3c6a15-0a44-46b7-b404-4f78dfd5fdea
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/contact.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/contact.settings.yml
new file mode 100644
index 0000000..28c760a
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/contact.settings.yml
@@ -0,0 +1,5 @@
+default_category: feedback
+flood:
+  limit: 5
+  interval: 3600
+user_default_enabled: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/custom_block.type.basic.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/custom_block.type.basic.yml
new file mode 100644
index 0000000..8cc29d5
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/custom_block.type.basic.yml
@@ -0,0 +1,8 @@
+id: basic
+label: 'Basic block'
+revision: 0
+description: 'A basic block contains a title and a body.'
+status: true
+uuid: 34daa6a1-f8bb-4d99-8600-dfbcd3d5834c
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/dblog.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/dblog.settings.yml
new file mode 100644
index 0000000..88add88
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/dblog.settings.yml
@@ -0,0 +1 @@
+row_limit: 1000
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/editor.editor.basic_html.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/editor.editor.basic_html.yml
new file mode 100644
index 0000000..91368d6
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/editor.editor.basic_html.yml
@@ -0,0 +1,49 @@
+format: basic_html
+editor: ckeditor
+settings:
+  toolbar:
+    rows:
+      -
+        -
+          name: Formatting
+          items:
+            - Bold
+            - Italic
+        -
+          name: Linking
+          items:
+            - DrupalLink
+            - DrupalUnlink
+        -
+          name: Lists
+          items:
+            - BulletedList
+            - NumberedList
+        -
+          name: Media
+          items:
+            - Blockquote
+            - DrupalImage
+        -
+          name: Tools
+          items:
+            - Source
+  plugins:
+    stylescombo:
+      styles: ''
+image_upload:
+  status: true
+  scheme: public
+  directory: inline-images
+  max_size: ''
+  max_dimensions:
+    width: 0
+    height: 0
+status: true
+uuid: 2f93d2f5-5bce-4ad3-8732-50c676e8eaaa
+langcode: en
+dependencies:
+  entity:
+    - filter.format.basic_html
+  module:
+    - ckeditor
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/editor.editor.full_html.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/editor.editor.full_html.yml
new file mode 100644
index 0000000..3f7ea71
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/editor.editor.full_html.yml
@@ -0,0 +1,61 @@
+format: full_html
+editor: ckeditor
+settings:
+  toolbar:
+    rows:
+      -
+        -
+          name: Formatting
+          items:
+            - Bold
+            - Italic
+            - Strike
+            - Superscript
+            - Subscript
+            - '-'
+            - RemoveFormat
+        -
+          name: Linking
+          items:
+            - DrupalLink
+            - DrupalUnlink
+        -
+          name: Lists
+          items:
+            - BulletedList
+            - NumberedList
+        -
+          name: Media
+          items:
+            - Blockquote
+            - DrupalImage
+            - Table
+            - HorizontalRule
+        -
+          name: 'Block Formatting'
+          items:
+            - Format
+        -
+          name: Tools
+          items:
+            - ShowBlocks
+            - Source
+  plugins:
+    stylescombo:
+      styles: ''
+image_upload:
+  status: true
+  scheme: public
+  directory: inline-images
+  max_size: ''
+  max_dimensions:
+    width: 0
+    height: 0
+status: true
+uuid: 40523a38-770f-4c6d-aa1f-31149b97a73a
+langcode: en
+dependencies:
+  entity:
+    - filter.format.full_html
+  module:
+    - ckeditor
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.comment.node__comment.default.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.comment.node__comment.default.yml
new file mode 100644
index 0000000..a8f7c49
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.comment.node__comment.default.yml
@@ -0,0 +1,23 @@
+id: comment.node__comment.default
+uuid: 11adc472-5d22-4d6e-9539-5749b6906663
+targetEntityType: comment
+bundle: node__comment
+mode: default
+content:
+  author:
+    weight: -2
+  subject:
+    weight: -1
+  comment_body:
+    type: text_textarea
+    weight: 0
+    settings:
+      rows: 5
+      placeholder: ''
+hidden: {  }
+status: true
+dependencies:
+  entity:
+    - field.instance.comment.node__comment.comment_body
+  module:
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.custom_block.basic.default.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.custom_block.basic.default.yml
new file mode 100644
index 0000000..8719f4c
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.custom_block.basic.default.yml
@@ -0,0 +1,21 @@
+id: custom_block.basic.default
+uuid: aabf92ed-6f44-4b43-8b00-dc35deff2a0a
+targetEntityType: custom_block
+bundle: basic
+mode: default
+content:
+  body:
+    type: text_textarea_with_summary
+    weight: 0
+    settings:
+      rows: 9
+      summary_rows: 3
+      placeholder: ''
+hidden: {  }
+status: true
+dependencies:
+  entity:
+    - custom_block.type.basic
+    - field.instance.custom_block.basic.body
+  module:
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.node.article.default.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.node.article.default.yml
new file mode 100644
index 0000000..7c74955
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.node.article.default.yml
@@ -0,0 +1,47 @@
+id: node.article.default
+uuid: c7226009-2cb3-44ec-8d00-0d762928342b
+targetEntityType: node
+bundle: article
+mode: default
+content:
+  title:
+    type: text_textfield
+    weight: 0
+    settings:
+      size: 60
+      placeholder: ''
+  body:
+    type: text_textarea_with_summary
+    weight: 1
+    settings:
+      rows: 9
+      summary_rows: 3
+      placeholder: ''
+  field_tags:
+    type: taxonomy_autocomplete
+    weight: 3
+    settings: {  }
+  field_image:
+    type: image_image
+    weight: 4
+    settings:
+      progress_indicator: throbber
+      preview_image_style: thumbnail
+  comment:
+    type: comment_default
+    weight: 20
+    settings: {  }
+hidden: {  }
+status: true
+dependencies:
+  entity:
+    - field.instance.node.article.body
+    - field.instance.node.article.comment
+    - field.instance.node.article.field_image
+    - field.instance.node.article.field_tags
+    - node.type.article
+  module:
+    - comment
+    - image
+    - taxonomy
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.node.page.default.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.node.page.default.yml
new file mode 100644
index 0000000..f2a1143
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.node.page.default.yml
@@ -0,0 +1,27 @@
+id: node.page.default
+uuid: aed067cf-7ceb-45b5-a500-ca0fe4ae3134
+targetEntityType: node
+bundle: page
+mode: default
+content:
+  title:
+    type: string
+    weight: -5
+    settings:
+      size: 60
+      placeholder: ''
+  body:
+    type: text_textarea_with_summary
+    weight: -4
+    settings:
+      rows: 9
+      summary_rows: 3
+      placeholder: ''
+hidden: {  }
+status: true
+dependencies:
+  entity:
+    - field.instance.node.page.body
+    - node.type.page
+  module:
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.user.user.default.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.user.user.default.yml
new file mode 100644
index 0000000..96c9c9b
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_display.user.user.default.yml
@@ -0,0 +1,25 @@
+id: user.user.default
+uuid: 4765847f-c571-4e41-8603-3e6265c49c9c
+targetEntityType: user
+bundle: user
+mode: default
+content:
+  account:
+    weight: -10
+  user_picture:
+    type: image_image
+    settings:
+      progress_indicator: throbber
+      preview_image_style: thumbnail
+    weight: -1
+  language:
+    weight: 0
+  contact:
+    weight: 5
+  timezone:
+    weight: 6
+hidden: {  }
+status: true
+dependencies:
+  module:
+    - image
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_mode.user.register.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_mode.user.register.yml
new file mode 100644
index 0000000..97f80bc
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.form_mode.user.register.yml
@@ -0,0 +1,10 @@
+id: user.register
+label: Register
+targetEntityType: user
+status: true
+cache: true
+uuid: 8455268b-c25a-4aa7-b31e-303d04fc8ce3
+langcode: fr
+dependencies:
+  module:
+    - user
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.comment.node__comment.default.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.comment.node__comment.default.yml
new file mode 100644
index 0000000..b4055f6
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.comment.node__comment.default.yml
@@ -0,0 +1,18 @@
+id: comment.node__comment.default
+uuid: b8948401-4a97-42c8-8a48-72c27ffd93a2
+targetEntityType: comment
+bundle: node__comment
+mode: default
+content:
+  comment_body:
+    label: hidden
+    type: text_default
+    weight: 0
+    settings: {  }
+hidden: {  }
+status: true
+dependencies:
+  entity:
+    - field.instance.comment.node__comment.comment_body
+  module:
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.custom_block.basic.default.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.custom_block.basic.default.yml
new file mode 100644
index 0000000..3e539a5
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.custom_block.basic.default.yml
@@ -0,0 +1,19 @@
+id: custom_block.basic.default
+uuid: 764e0619-1581-4770-ab03-030cd6ee3208
+targetEntityType: custom_block
+bundle: basic
+mode: default
+content:
+  body:
+    label: hidden
+    type: text_default
+    weight: 0
+    settings: {  }
+hidden: {  }
+status: true
+dependencies:
+  entity:
+    - custom_block.type.basic
+    - field.instance.custom_block.basic.body
+  module:
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.article.default.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.article.default.yml
new file mode 100644
index 0000000..fbadd9f
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.article.default.yml
@@ -0,0 +1,46 @@
+id: node.article.default
+uuid: 3be67fbd-8144-4ad2-8100-d94533a78292
+targetEntityType: node
+bundle: article
+mode: default
+content:
+  field_image:
+    label: hidden
+    type: image
+    settings:
+      image_style: large
+      image_link: ''
+    weight: -1
+  body:
+    label: hidden
+    type: text_default
+    weight: 0
+    settings: {  }
+  field_tags:
+    type: taxonomy_term_reference_link
+    weight: 10
+    label: above
+    settings: {  }
+  comment:
+    label: hidden
+    type: comment_default
+    weight: 20
+    settings:
+      pager_id: '0'
+hidden:
+  langcode: true
+  field_image: true
+  field_tags: true
+status: true
+dependencies:
+  entity:
+    - field.instance.node.article.body
+    - field.instance.node.article.comment
+    - field.instance.node.article.field_image
+    - field.instance.node.article.field_tags
+    - node.type.article
+  module:
+    - comment
+    - image
+    - taxonomy
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.article.teaser.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.article.teaser.yml
new file mode 100644
index 0000000..f608087
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.article.teaser.yml
@@ -0,0 +1,40 @@
+id: node.article.teaser
+uuid: 27551c8c-c057-44f7-ac5b-91e67be88f3e
+targetEntityType: node
+bundle: article
+mode: teaser
+content:
+  field_image:
+    label: hidden
+    type: image
+    settings:
+      image_style: medium
+      image_link: content
+    weight: -1
+  body:
+    label: hidden
+    type: text_summary_or_trimmed
+    weight: 0
+    settings:
+      trim_length: 600
+  field_tags:
+    type: taxonomy_term_reference_link
+    weight: 10
+    label: above
+    settings: {  }
+hidden:
+  langcode: true
+  field_image: true
+  field_tags: true
+status: true
+dependencies:
+  entity:
+    - entity.view_mode.node.teaser
+    - field.instance.node.article.body
+    - field.instance.node.article.field_image
+    - field.instance.node.article.field_tags
+    - node.type.article
+  module:
+    - image
+    - taxonomy
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.page.default.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.page.default.yml
new file mode 100644
index 0000000..6134ac9
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.page.default.yml
@@ -0,0 +1,20 @@
+id: node.page.default
+uuid: 3ebac005-a429-431f-8e00-eeccff519d9f
+targetEntityType: node
+bundle: page
+mode: default
+content:
+  body:
+    label: hidden
+    type: text_default
+    weight: -4
+    settings: {  }
+hidden:
+  langcode: true
+status: true
+dependencies:
+  entity:
+    - field.instance.node.page.body
+    - node.type.page
+  module:
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.page.teaser.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.page.teaser.yml
new file mode 100644
index 0000000..606e17e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.node.page.teaser.yml
@@ -0,0 +1,22 @@
+id: node.page.teaser
+uuid: e362d88b-6c78-47ba-880d-1363a8b8bf69
+targetEntityType: node
+bundle: page
+mode: teaser
+content:
+  body:
+    label: hidden
+    type: text_summary_or_trimmed
+    weight: -4
+    settings:
+      trim_length: 600
+hidden:
+  langcode: true
+status: true
+dependencies:
+  entity:
+    - entity.view_mode.node.teaser
+    - field.instance.node.page.body
+    - node.type.page
+  module:
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.user.user.compact.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.user.user.compact.yml
new file mode 100644
index 0000000..44ff653
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.user.user.compact.yml
@@ -0,0 +1,21 @@
+id: user.user.compact
+uuid: bb6b4c04-9397-489b-9000-bf9f86e20092
+targetEntityType: user
+bundle: user
+mode: compact
+content:
+  user_picture:
+    label: hidden
+    type: image
+    settings:
+      image_style: thumbnail
+      image_link: content
+    weight: 0
+hidden:
+  member_for: true
+status: true
+dependencies:
+  entity:
+    - entity.view_mode.user.compact
+  module:
+    - image
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.user.user.default.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.user.user.default.yml
new file mode 100644
index 0000000..4a42231
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_display.user.user.default.yml
@@ -0,0 +1,20 @@
+id: user.user.default
+uuid: 5946e315-bda6-48fe-9000-a59f97c174aa
+targetEntityType: user
+bundle: user
+mode: default
+content:
+  user_picture:
+    label: hidden
+    type: image
+    settings:
+      image_style: thumbnail
+      image_link: content
+    weight: 0
+  member_for:
+    weight: 5
+hidden: {  }
+status: true
+dependencies:
+  module:
+    - image
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.comment.full.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.comment.full.yml
new file mode 100644
index 0000000..79401b8
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.comment.full.yml
@@ -0,0 +1,10 @@
+id: comment.full
+label: 'Full comment'
+targetEntityType: comment
+status: false
+cache: true
+uuid: 6252f085-266a-49fd-a606-06146f6c4638
+langcode: fr
+dependencies:
+  module:
+    - comment
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.custom_block.full.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.custom_block.full.yml
new file mode 100644
index 0000000..8fd7cc4
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.custom_block.full.yml
@@ -0,0 +1,10 @@
+id: custom_block.full
+label: Full
+targetEntityType: custom_block
+status: false
+cache: true
+uuid: e7ae04c4-bbb2-4241-b013-19a40bd1f172
+langcode: fr
+dependencies:
+  module:
+    - custom_block
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.full.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.full.yml
new file mode 100644
index 0000000..4166184
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.full.yml
@@ -0,0 +1,10 @@
+id: node.full
+label: 'Full content'
+targetEntityType: node
+status: false
+cache: true
+uuid: e90db107-5876-4030-be03-3ebfb11c7bf8
+langcode: fr
+dependencies:
+  module:
+    - node
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.rss.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.rss.yml
new file mode 100644
index 0000000..b19129f
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.rss.yml
@@ -0,0 +1,10 @@
+id: node.rss
+label: RSS
+targetEntityType: node
+status: false
+cache: true
+uuid: 75feb807-eb7c-422e-9458-88bfde4eef74
+langcode: fr
+dependencies:
+  module:
+    - node
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.search_index.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.search_index.yml
new file mode 100644
index 0000000..37b285e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.search_index.yml
@@ -0,0 +1,10 @@
+id: node.search_index
+label: 'Search index'
+targetEntityType: node
+status: false
+cache: true
+uuid: 93045310-d2c4-4076-bc3a-5891ca721427
+langcode: fr
+dependencies:
+  module:
+    - node
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.search_result.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.search_result.yml
new file mode 100644
index 0000000..b8e4db0
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.search_result.yml
@@ -0,0 +1,10 @@
+id: node.search_result
+label: 'Search result'
+targetEntityType: node
+status: false
+cache: true
+uuid: 06965aab-716d-4330-9334-52adc2e8578a
+langcode: fr
+dependencies:
+  module:
+    - node
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.teaser.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.teaser.yml
new file mode 100644
index 0000000..389cfa1
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.node.teaser.yml
@@ -0,0 +1,10 @@
+id: node.teaser
+label: Teaser
+targetEntityType: node
+status: true
+cache: true
+uuid: 0be44122-3545-4494-8200-a85a5c2f79a6
+langcode: fr
+dependencies:
+  module:
+    - node
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.taxonomy_term.full.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.taxonomy_term.full.yml
new file mode 100644
index 0000000..7d06a7e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.taxonomy_term.full.yml
@@ -0,0 +1,10 @@
+id: taxonomy_term.full
+label: 'Taxonomy term page'
+targetEntityType: taxonomy_term
+status: false
+cache: true
+uuid: a10664c5-6263-49a3-9f00-a0ff405adea3
+langcode: fr
+dependencies:
+  module:
+    - taxonomy
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.user.compact.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.user.compact.yml
new file mode 100644
index 0000000..edb205e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.user.compact.yml
@@ -0,0 +1,10 @@
+id: user.compact
+label: Compact
+targetEntityType: user
+status: true
+cache: true
+uuid: 32a26ec6-23f9-4206-b100-00bdd472d819
+langcode: fr
+dependencies:
+  module:
+    - user
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.user.full.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.user.full.yml
new file mode 100644
index 0000000..2201529
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/entity.view_mode.user.full.yml
@@ -0,0 +1,10 @@
+id: user.full
+label: 'User account'
+targetEntityType: user
+status: false
+cache: true
+uuid: e7d6879b-61f0-4c1b-ad39-57bddd017d76
+langcode: fr
+dependencies:
+  module:
+    - user
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.comment.comment_body.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.comment.comment_body.yml
new file mode 100644
index 0000000..77169f8
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.comment.comment_body.yml
@@ -0,0 +1,16 @@
+id: comment.comment_body
+uuid: c5328f44-44f9-41f1-be00-d7347d88df78
+status: true
+langcode: fr
+name: comment_body
+entity_type: comment
+type: text_long
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: false
+indexes: {  }
+dependencies:
+  module:
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.custom_block.body.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.custom_block.body.yml
new file mode 100644
index 0000000..c12aabe
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.custom_block.body.yml
@@ -0,0 +1,16 @@
+id: custom_block.body
+uuid: c3053e96-dec9-48d3-b32e-465577120adf
+status: true
+langcode: fr
+name: body
+entity_type: custom_block
+type: text_with_summary
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: false
+indexes: {  }
+dependencies:
+  module:
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.body.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.body.yml
new file mode 100644
index 0000000..77e21de
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.body.yml
@@ -0,0 +1,16 @@
+id: node.body
+uuid: b4eafe69-77fe-4908-af00-b3ebce92acff
+status: true
+langcode: fr
+name: body
+entity_type: node
+type: text_with_summary
+settings: {  }
+module: text
+locked: false
+cardinality: 1
+translatable: false
+indexes: {  }
+dependencies:
+  module:
+    - text
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.comment.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.comment.yml
new file mode 100644
index 0000000..84c5dce
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.comment.yml
@@ -0,0 +1,17 @@
+id: node.comment
+uuid: b3923da9-d667-41d4-a060-96c1c4dc699c
+status: true
+langcode: fr
+name: comment
+entity_type: node
+type: comment
+settings:
+  description: 'Default comment field'
+module: comment
+locked: false
+cardinality: 1
+translatable: false
+indexes: {  }
+dependencies:
+  module:
+    - comment
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.field_image.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.field_image.yml
new file mode 100644
index 0000000..551872f
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.field_image.yml
@@ -0,0 +1,29 @@
+id: node.field_image
+uuid: 3829f137-581a-4781-9006-6ac664853f4d
+status: true
+langcode: und
+name: field_image
+entity_type: node
+type: image
+settings:
+  uri_scheme: public
+  default_image:
+    fid: null
+    alt: ''
+    title: ''
+    width: null
+    height: null
+  target_type: file
+  display_field: 0
+  display_default: 0
+  target_bundle: null
+module: image
+locked: false
+cardinality: 1
+translatable: false
+indexes:
+  target_id:
+    - target_id
+dependencies:
+  module:
+    - image
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.field_tags.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.field_tags.yml
new file mode 100644
index 0000000..01719be
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.node.field_tags.yml
@@ -0,0 +1,25 @@
+id: node.field_tags
+uuid: 128bb373-72a2-4047-b128-40d60bb2ab09
+status: true
+langcode: und
+name: field_tags
+entity_type: node
+type: taxonomy_term_reference
+settings:
+  allowed_values:
+    -
+      vocabulary: tags
+      parent: 0
+  target_type: taxonomy_term
+  options_list_callback: null
+  target_bundle: null
+module: taxonomy
+locked: false
+cardinality: -1
+translatable: false
+indexes:
+  target_id:
+    - target_id
+dependencies:
+  module:
+    - taxonomy
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.user.user_picture.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.user.user_picture.yml
new file mode 100644
index 0000000..303f048
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.field.user.user_picture.yml
@@ -0,0 +1,29 @@
+id: user.user_picture
+uuid: ca84d4cd-c051-48ae-9b00-0b80c599610a
+status: true
+langcode: en
+name: user_picture
+entity_type: user
+type: image
+settings:
+  uri_scheme: public
+  default_image:
+    fid: null
+    alt: ''
+    title: ''
+    width: null
+    height: null
+  target_type: file
+  display_field: 0
+  display_default: 0
+  target_bundle: null
+module: image
+locked: false
+cardinality: 1
+translatable: false
+indexes:
+  target_id:
+    - target_id
+dependencies:
+  module:
+    - image
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.comment.node__comment.comment_body.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.comment.node__comment.comment_body.yml
new file mode 100644
index 0000000..f828b3e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.comment.node__comment.comment_body.yml
@@ -0,0 +1,19 @@
+id: comment.node__comment.comment_body
+uuid: ae9e0c16-fcf8-4f10-8400-b4b000a14486
+status: true
+langcode: fr
+field_uuid: c5328f44-44f9-41f1-be00-d7347d88df78
+field_name: comment_body
+entity_type: comment
+bundle: node__comment
+label: Comment
+description: ''
+required: true
+default_value: {  }
+default_value_function: ''
+settings:
+  text_processing: '1'
+dependencies:
+  entity:
+    - field.field.comment.comment_body
+field_type: text_long
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.custom_block.basic.body.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.custom_block.basic.body.yml
new file mode 100644
index 0000000..674420f
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.custom_block.basic.body.yml
@@ -0,0 +1,21 @@
+id: custom_block.basic.body
+uuid: 86786456-7329-4227-b307-7bca1bbe6c62
+status: true
+langcode: fr
+field_uuid: c3053e96-dec9-48d3-b32e-465577120adf
+field_name: body
+entity_type: custom_block
+bundle: basic
+label: 'Block body'
+description: ''
+required: false
+default_value: {  }
+default_value_function: ''
+settings:
+  display_summary: false
+  text_processing: true
+dependencies:
+  entity:
+    - custom_block.type.basic
+    - field.field.custom_block.body
+field_type: text_with_summary
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.body.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.body.yml
new file mode 100644
index 0000000..f90ef2d
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.body.yml
@@ -0,0 +1,21 @@
+id: node.article.body
+uuid: d4ecb4e4-5083-4fff-b400-abb02691e958
+status: true
+langcode: fr
+field_uuid: b4eafe69-77fe-4908-af00-b3ebce92acff
+field_name: body
+entity_type: node
+bundle: article
+label: Body
+description: ''
+required: false
+default_value: {  }
+default_value_function: ''
+settings:
+  display_summary: true
+  text_processing: true
+dependencies:
+  entity:
+    - field.field.node.body
+    - node.type.article
+field_type: text_with_summary
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.comment.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.comment.yml
new file mode 100644
index 0000000..a593efd
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.comment.yml
@@ -0,0 +1,32 @@
+id: node.article.comment
+uuid: 63878023-e075-4a97-8803-3efd7d24e83a
+status: true
+langcode: fr
+field_uuid: b3923da9-d667-41d4-a060-96c1c4dc699c
+field_name: comment
+entity_type: node
+bundle: article
+label: 'Comment settings'
+description: ''
+required: true
+default_value:
+  -
+    status: 2
+    cid: 0
+    last_comment_name: ''
+    last_comment_timestamp: 0
+    last_comment_uid: 0
+    comment_count: 0
+default_value_function: ''
+settings:
+  default_mode: 1
+  per_page: 50
+  form_location: 1
+  anonymous: 0
+  subject: 1
+  preview: 1
+dependencies:
+  entity:
+    - field.field.node.comment
+    - node.type.article
+field_type: comment
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.field_image.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.field_image.yml
new file mode 100644
index 0000000..d0d0e8a
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.field_image.yml
@@ -0,0 +1,35 @@
+id: node.article.field_image
+uuid: 50f5ca12-0d13-4641-8d00-f3ce0ece30d2
+status: true
+langcode: und
+field_uuid: 3829f137-581a-4781-9006-6ac664853f4d
+field_name: field_image
+entity_type: node
+bundle: article
+label: Image
+description: ''
+required: false
+default_value: {  }
+default_value_function: ''
+settings:
+  file_directory: field/image
+  file_extensions: 'png gif jpg jpeg'
+  max_filesize: ''
+  max_resolution: ''
+  min_resolution: ''
+  alt_field: true
+  title_field: false
+  alt_field_required: false
+  title_field_required: false
+  default_image:
+    fid: null
+    alt: ''
+    title: ''
+    width: null
+    height: null
+  handler: default
+dependencies:
+  entity:
+    - field.field.node.field_image
+    - node.type.article
+field_type: image
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.field_tags.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.field_tags.yml
new file mode 100644
index 0000000..270cb4e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.article.field_tags.yml
@@ -0,0 +1,20 @@
+id: node.article.field_tags
+uuid: 2b0ff21c-6a77-4750-8200-ff0f3966c74f
+status: true
+langcode: und
+field_uuid: 128bb373-72a2-4047-b128-40d60bb2ab09
+field_name: field_tags
+entity_type: node
+bundle: article
+label: Tags
+description: 'Enter a comma-separated list. For example: Amsterdam, Mexico City, "Cleveland, Ohio"'
+required: false
+default_value: {  }
+default_value_function: ''
+settings:
+  handler: default
+dependencies:
+  entity:
+    - field.field.node.field_tags
+    - node.type.article
+field_type: taxonomy_term_reference
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.page.body.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.page.body.yml
new file mode 100644
index 0000000..3e4c55c
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.node.page.body.yml
@@ -0,0 +1,21 @@
+id: node.page.body
+uuid: 57564be7-67f4-40db-9100-f8b266633e3c
+status: true
+langcode: fr
+field_uuid: b4eafe69-77fe-4908-af00-b3ebce92acff
+field_name: body
+entity_type: node
+bundle: page
+label: Body
+description: ''
+required: false
+default_value: {  }
+default_value_function: ''
+settings:
+  display_summary: true
+  text_processing: true
+dependencies:
+  entity:
+    - field.field.node.body
+    - node.type.page
+field_type: text_with_summary
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.user.user.user_picture.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.user.user.user_picture.yml
new file mode 100644
index 0000000..38aa7f9
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.instance.user.user.user_picture.yml
@@ -0,0 +1,34 @@
+id: user.user.user_picture
+uuid: 5ac0d048-0308-48a7-9704-4dffbe7f8c67
+status: true
+langcode: en
+field_uuid: ca84d4cd-c051-48ae-9b00-0b80c599610a
+field_name: user_picture
+entity_type: user
+bundle: user
+label: Picture
+description: 'Your virtual face or picture.'
+required: false
+default_value: {  }
+default_value_function: ''
+settings:
+  file_extensions: 'png gif jpg jpeg'
+  file_directory: pictures
+  max_filesize: '30 KB'
+  alt_field: false
+  title_field: false
+  max_resolution: 85x85
+  min_resolution: ''
+  default_image:
+    fid: null
+    alt: ''
+    title: ''
+    width: null
+    height: null
+  alt_field_required: false
+  title_field_required: false
+  handler: default
+dependencies:
+  entity:
+    - field.field.user.user_picture
+field_type: image
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.settings.yml
new file mode 100644
index 0000000..b6172c1
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field.settings.yml
@@ -0,0 +1 @@
+purge_batch_size: 10
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field_ui.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field_ui.settings.yml
new file mode 100644
index 0000000..046f9a4
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/field_ui.settings.yml
@@ -0,0 +1 @@
+field_prefix: field_
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/file.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/file.settings.yml
new file mode 100644
index 0000000..b88659c
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/file.settings.yml
@@ -0,0 +1,5 @@
+description:
+  type: textfield
+  length: 128
+icon:
+  directory: core/modules/file/icons
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.basic_html.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.basic_html.yml
new file mode 100644
index 0000000..a201376
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.basic_html.yml
@@ -0,0 +1,55 @@
+format: basic_html
+name: 'Basic HTML'
+weight: 0
+cache: true
+status: true
+uuid: 5c72d710-4dc8-4d55-9d02-2a467c3f54e5
+langcode: en
+dependencies: {  }
+filters:
+  filter_html:
+    id: filter_html
+    provider: filter
+    status: true
+    weight: -10
+    settings:
+      allowed_html: '<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd> <h4> <h5> <h6> <p> <span> <img>'
+      filter_html_help: false
+      filter_html_nofollow: false
+  filter_caption:
+    id: filter_caption
+    provider: filter
+    status: true
+    weight: 8
+    settings: {  }
+  filter_html_image_secure:
+    id: filter_html_image_secure
+    provider: filter
+    status: true
+    weight: 9
+    settings: {  }
+  filter_htmlcorrector:
+    id: filter_htmlcorrector
+    provider: filter
+    status: true
+    weight: 10
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: false
+    weight: 0
+    settings:
+      filter_url_length: 72
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: false
+    weight: 0
+    settings: {  }
+  filter_html_escape:
+    id: filter_html_escape
+    provider: filter
+    status: false
+    weight: -10
+    settings: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.full_html.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.full_html.yml
new file mode 100644
index 0000000..0c00a91
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.full_html.yml
@@ -0,0 +1,55 @@
+format: full_html
+name: 'Full HTML'
+weight: 1
+cache: true
+status: true
+uuid: 21fc3316-5bad-4f05-bf4d-779b156d4780
+langcode: en
+dependencies: {  }
+filters:
+  filter_caption:
+    id: filter_caption
+    provider: filter
+    status: true
+    weight: 9
+    settings: {  }
+  filter_htmlcorrector:
+    id: filter_htmlcorrector
+    provider: filter
+    status: true
+    weight: 10
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: false
+    weight: 0
+    settings:
+      filter_url_length: 72
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: false
+    weight: 0
+    settings: {  }
+  filter_html_image_secure:
+    id: filter_html_image_secure
+    provider: filter
+    status: false
+    weight: 9
+    settings: {  }
+  filter_html_escape:
+    id: filter_html_escape
+    provider: filter
+    status: false
+    weight: -10
+    settings: {  }
+  filter_html:
+    id: filter_html
+    provider: filter
+    status: false
+    weight: -10
+    settings:
+      allowed_html: '<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd> <h4> <h5> <h6>'
+      filter_html_help: true
+      filter_html_nofollow: false
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.plain_text.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.plain_text.yml
new file mode 100644
index 0000000..1e47d82
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.plain_text.yml
@@ -0,0 +1,55 @@
+format: plain_text
+name: 'Plain text'
+weight: 10
+cache: true
+status: true
+uuid: eb1ce155-95a9-4259-8900-ad649c321fc3
+langcode: en
+dependencies: {  }
+filters:
+  filter_html_escape:
+    id: filter_html_escape
+    provider: filter
+    status: true
+    weight: -10
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: true
+    weight: 0
+    settings:
+      filter_url_length: 72
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
+  filter_htmlcorrector:
+    id: filter_htmlcorrector
+    provider: filter
+    status: false
+    weight: 10
+    settings: {  }
+  filter_caption:
+    id: filter_caption
+    provider: filter
+    status: false
+    weight: 0
+    settings: {  }
+  filter_html_image_secure:
+    id: filter_html_image_secure
+    provider: filter
+    status: false
+    weight: 9
+    settings: {  }
+  filter_html:
+    id: filter_html
+    provider: filter
+    status: false
+    weight: -10
+    settings:
+      allowed_html: '<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd> <h4> <h5> <h6>'
+      filter_html_help: true
+      filter_html_nofollow: false
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.restricted_html.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.restricted_html.yml
new file mode 100644
index 0000000..0039607
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.format.restricted_html.yml
@@ -0,0 +1,55 @@
+format: restricted_html
+name: 'Restricted HTML'
+weight: 0
+cache: true
+status: true
+uuid: af6faf32-4c5c-435b-8e00-f2b2eee3e7cf
+langcode: en
+dependencies: {  }
+filters:
+  filter_html:
+    id: filter_html
+    provider: filter
+    status: true
+    weight: -10
+    settings:
+      allowed_html: '<a> <em> <strong> <cite> <blockquote> <code> <ul> <ol> <li> <dl> <dt> <dd> <h4> <h5> <h6>'
+      filter_html_help: true
+      filter_html_nofollow: false
+  filter_autop:
+    id: filter_autop
+    provider: filter
+    status: true
+    weight: 0
+    settings: {  }
+  filter_url:
+    id: filter_url
+    provider: filter
+    status: true
+    weight: 0
+    settings:
+      filter_url_length: 72
+  filter_htmlcorrector:
+    id: filter_htmlcorrector
+    provider: filter
+    status: true
+    weight: 10
+    settings: {  }
+  filter_caption:
+    id: filter_caption
+    provider: filter
+    status: false
+    weight: 0
+    settings: {  }
+  filter_html_image_secure:
+    id: filter_html_image_secure
+    provider: filter
+    status: false
+    weight: 9
+    settings: {  }
+  filter_html_escape:
+    id: filter_html_escape
+    provider: filter
+    status: false
+    weight: -10
+    settings: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.settings.yml
new file mode 100644
index 0000000..c038c87
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/filter.settings.yml
@@ -0,0 +1,2 @@
+fallback_format: plain_text
+always_show_fallback_choice: false
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.settings.yml
new file mode 100644
index 0000000..c92db4e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.settings.yml
@@ -0,0 +1,3 @@
+preview_image: core/modules/image/sample.png
+allow_insecure_derivatives: false
+suppress_itok_output: false
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.style.large.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.style.large.yml
new file mode 100644
index 0000000..14e7ea2
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.style.large.yml
@@ -0,0 +1,15 @@
+name: large
+label: 'Large (480x480)'
+status: true
+uuid: 86993e32-145d-44cd-8e61-97be304af0cc
+langcode: en
+dependencies: {  }
+effects:
+  ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d:
+    uuid: ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d
+    id: image_scale
+    weight: 0
+    data:
+      width: 480
+      height: 480
+      upscale: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.style.medium.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.style.medium.yml
new file mode 100644
index 0000000..879eef0
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.style.medium.yml
@@ -0,0 +1,15 @@
+name: medium
+label: 'Medium (220x220)'
+status: true
+uuid: cafb502a-1cb4-4bef-8200-fa3f6539af3b
+langcode: en
+dependencies: {  }
+effects:
+  bddf0d06-42f9-4c75-a700-a33cafa25ea0:
+    uuid: bddf0d06-42f9-4c75-a700-a33cafa25ea0
+    id: image_scale
+    weight: 0
+    data:
+      width: 220
+      height: 220
+      upscale: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.style.thumbnail.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.style.thumbnail.yml
new file mode 100644
index 0000000..a8c2d25
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/image.style.thumbnail.yml
@@ -0,0 +1,15 @@
+name: thumbnail
+label: 'Thumbnail (100x100)'
+status: true
+uuid: 16b7909d-9b1c-415c-8301-1d6ee13fc587
+langcode: en
+dependencies: {  }
+effects:
+  1cfec298-8620-4749-b100-ccb6c4500779:
+    uuid: 1cfec298-8620-4749-b100-ccb6c4500779
+    id: image_scale
+    weight: 0
+    data:
+      width: 100
+      height: 100
+      upscale: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.entity.fr.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.entity.fr.yml
new file mode 100644
index 0000000..f50200b
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.entity.fr.yml
@@ -0,0 +1,9 @@
+id: fr
+label: French
+direction: 0
+weight: 0
+locked: false
+status: true
+uuid: dbc9e8c6-230c-4bfe-8800-0cee629dd6cd
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.entity.und.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.entity.und.yml
new file mode 100644
index 0000000..384c4b4
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.entity.und.yml
@@ -0,0 +1,9 @@
+id: und
+label: 'Not specified'
+direction: 0
+weight: 1
+locked: true
+status: true
+uuid: d2f054b6-8374-4862-ae00-e9c5784329be
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.entity.zxx.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.entity.zxx.yml
new file mode 100644
index 0000000..999b129
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.entity.zxx.yml
@@ -0,0 +1,9 @@
+id: zxx
+label: 'Not applicable'
+direction: 0
+weight: 2
+locked: true
+status: true
+uuid: 562d37bd-53d6-4761-8300-0fc3b00d4144
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.mappings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.mappings.yml
new file mode 100644
index 0000000..c23ca18
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.mappings.yml
@@ -0,0 +1,10 @@
+no: nb
+pt: pt-pt
+zh: zh-hans
+zh-tw: zh-hant
+zh-hk: zh-hant
+zh-mo: zh-hant
+zh-cht: zh-hant
+zh-cn: zh-hans
+zh-sg: zh-hans
+zh-chs: zh-hans
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.negotiation.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.negotiation.yml
new file mode 100644
index 0000000..af2387d
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.negotiation.yml
@@ -0,0 +1,8 @@
+session:
+  parameter: language
+url:
+  source: path_prefix
+  prefixes:
+    fr: ''
+  domains:
+    fr: ''
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.types.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.types.yml
new file mode 100644
index 0000000..4d48251
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/language.types.yml
@@ -0,0 +1,17 @@
+all:
+  - language_interface
+  - language_content
+  - language_url
+configurable:
+  - language_interface
+negotiation:
+  language_content:
+    enabled:
+      language-interface: 0
+  language_url:
+    enabled:
+      language-url: 0
+      language-url-fallback: 1
+  language_interface:
+    enabled:
+      language-url: 0
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/locale.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/locale.settings.yml
new file mode 100644
index 0000000..d28bb6a
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/locale.settings.yml
@@ -0,0 +1,13 @@
+cache_strings: true
+translate_english: false
+javascript:
+  directory: languages
+translation:
+  use_source: remote_and_local
+  default_filename: '%project-%version.%language.po'
+  default_server_pattern: 'http://ftp.drupal.org/files/translations/%core/%project/%project-%version.%language.po'
+  overwrite_customized: false
+  overwrite_not_customized: true
+  update_interval_days: 0
+  path: sites/default/files/translations
+  import_enabled: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/menu.entity.node.article.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/menu.entity.node.article.yml
new file mode 100644
index 0000000..16d9ba8
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/menu.entity.node.article.yml
@@ -0,0 +1,3 @@
+available_menus:
+  - main
+parent: 'main:0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/menu.entity.node.page.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/menu.entity.node.page.yml
new file mode 100644
index 0000000..16d9ba8
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/menu.entity.node.page.yml
@@ -0,0 +1,3 @@
+available_menus:
+  - main
+parent: 'main:0'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/menu.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/menu.settings.yml
new file mode 100644
index 0000000..a79ac97
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/menu.settings.yml
@@ -0,0 +1,3 @@
+main_links: main
+secondary_links: account
+override_parent_selector: false
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/node.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/node.settings.yml
new file mode 100644
index 0000000..ad732d5
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/node.settings.yml
@@ -0,0 +1,2 @@
+items_per_page: 10
+use_admin_theme: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/node.type.article.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/node.type.article.yml
new file mode 100644
index 0000000..6590c60
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/node.type.article.yml
@@ -0,0 +1,19 @@
+type: article
+name: Article
+description: 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.'
+help: ''
+has_title: true
+title_label: Title
+settings:
+  node:
+    options:
+      status: true
+      promote: true
+      sticky: false
+      revision: false
+    preview: 1
+    submitted: true
+status: true
+uuid: 8f516c99-3033-4774-be53-8353f1359b2e
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/node.type.page.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/node.type.page.yml
new file mode 100644
index 0000000..e209f77
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/node.type.page.yml
@@ -0,0 +1,19 @@
+type: page
+name: 'Basic page'
+description: 'Use <em>basic pages</em> for your static content, such as an ''About us'' page.'
+help: ''
+has_title: true
+title_label: Title
+settings:
+  node:
+    options:
+      status: true
+      promote: false
+      sticky: false
+      revision: false
+    preview: 1
+    submitted: false
+status: true
+uuid: c07e0de1-fd79-4583-bc08-08925acdad2a
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.comment.node__comment.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.comment.node__comment.yml
new file mode 100644
index 0000000..c8af9a8
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.comment.node__comment.yml
@@ -0,0 +1,30 @@
+id: comment.node__comment
+uuid: fb1d4127-b885-48fc-a860-966f6d0a55fc
+targetEntityType: comment
+bundle: node__comment
+types:
+  - 'schema:Comment'
+fieldMappings:
+  subject:
+    properties:
+      - 'schema:name'
+  created:
+    properties:
+      - 'schema:dateCreated'
+    datatype_callback:
+      callable: date_iso8601
+  changed:
+    properties:
+      - 'schema:dateModified'
+    datatype_callback:
+      callable: date_iso8601
+  comment_body:
+    properties:
+      - 'schema:text'
+  uid:
+    properties:
+      - 'schema:author'
+    mapping_type: rel
+dependencies:
+  module:
+    - comment
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.node.article.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.node.article.yml
new file mode 100644
index 0000000..307a741
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.node.article.yml
@@ -0,0 +1,48 @@
+id: node.article
+uuid: baba53dd-0d75-4bfa-a006-6a861df62794
+targetEntityType: node
+bundle: article
+types:
+  - 'schema:Article'
+fieldMappings:
+  title:
+    properties:
+      - 'schema:name'
+  created:
+    properties:
+      - 'schema:dateCreated'
+    datatype_callback:
+      callable: date_iso8601
+  changed:
+    properties:
+      - 'schema:dateModified'
+    datatype_callback:
+      callable: date_iso8601
+  body:
+    properties:
+      - 'schema:text'
+  uid:
+    properties:
+      - 'schema:author'
+  comment:
+    properties:
+      - 'schema:comment'
+    mapping_type: rel
+  comment_count:
+    properties:
+      - 'schema:interactionCount'
+    datatype_callback:
+      callable: 'Drupal\rdf\SchemaOrgDataConverter::interactionCount'
+      arguments:
+        interaction_type: UserComments
+  field_image:
+    properties:
+      - 'schema:image'
+  field_tags:
+    properties:
+      - 'schema:about'
+dependencies:
+  entity:
+    - node.type.article
+  module:
+    - node
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.node.page.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.node.page.yml
new file mode 100644
index 0000000..0c760fa
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.node.page.yml
@@ -0,0 +1,39 @@
+id: node.page
+uuid: e15356d1-9bac-4f54-8100-a1e4f0c4d2af
+targetEntityType: node
+bundle: page
+types:
+  - 'schema:WebPage'
+fieldMappings:
+  title:
+    properties:
+      - 'schema:name'
+  created:
+    properties:
+      - 'schema:dateCreated'
+    datatype_callback:
+      callable: date_iso8601
+  changed:
+    properties:
+      - 'schema:dateModified'
+    datatype_callback:
+      callable: date_iso8601
+  body:
+    properties:
+      - 'schema:text'
+  uid:
+    properties:
+      - 'schema:author'
+    mapping_type: rel
+  comment_count:
+    properties:
+      - 'schema:interactionCount'
+    datatype_callback:
+      callable: 'Drupal\rdf\SchemaOrgDataConverter::interactionCount'
+      arguments:
+        interaction_type: UserComments
+dependencies:
+  entity:
+    - node.type.page
+  module:
+    - node
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.taxonomy_term.tags.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.taxonomy_term.tags.yml
new file mode 100644
index 0000000..aa14152
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.taxonomy_term.tags.yml
@@ -0,0 +1,18 @@
+id: taxonomy_term.tags
+uuid: 40f8b271-9d84-4893-9f57-87807d2c3c90
+targetEntityType: taxonomy_term
+bundle: tags
+types:
+  - 'schema:Thing'
+fieldMappings:
+  name:
+    properties:
+      - 'schema:name'
+  description:
+    properties:
+      - 'schema:description'
+dependencies:
+  entity:
+    - taxonomy.vocabulary.tags
+  module:
+    - taxonomy
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.user.user.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.user.user.yml
new file mode 100644
index 0000000..d26af90
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/rdf.mapping.user.user.yml
@@ -0,0 +1,13 @@
+id: user.user
+uuid: fa9ed284-c7aa-4ef1-9d07-7c35fa2967c6
+targetEntityType: user
+bundle: user
+types:
+  - 'schema:Person'
+fieldMappings:
+  name:
+    properties:
+      - 'schema:name'
+dependencies:
+  module:
+    - user
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/search.page.node_search.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/search.page.node_search.yml
new file mode 100644
index 0000000..968a51e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/search.page.node_search.yml
@@ -0,0 +1,13 @@
+id: node_search
+label: Content
+status: true
+uuid: 590d3471-fd90-422f-9105-5ccb3bbe90f4
+langcode: en
+dependencies:
+  module:
+    - node
+path: node
+weight: -10
+plugin: node_search
+configuration:
+  rankings: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/search.page.user_search.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/search.page.user_search.yml
new file mode 100644
index 0000000..6d2458e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/search.page.user_search.yml
@@ -0,0 +1,12 @@
+id: user_search
+label: Users
+status: true
+uuid: ca892cef-9359-4ffd-871e-30ff84c79950
+langcode: en
+dependencies:
+  module:
+    - user
+path: user
+weight: 0
+plugin: user_search
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/search.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/search.settings.yml
new file mode 100644
index 0000000..09c09cb
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/search.settings.yml
@@ -0,0 +1,19 @@
+and_or_limit: 7
+default_page: node_search
+index:
+  cron_limit: 100
+  overlap_cjk: true
+  minimum_word_size: 3
+  tag_weights:
+    h1: 25
+    h2: 18
+    h3: 15
+    h4: 14
+    h5: 9
+    h6: 6
+    u: 3
+    b: 3
+    i: 3
+    strong: 3
+    em: 3
+    a: 10
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/seven.breakpoints.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/seven.breakpoints.yml
new file mode 100644
index 0000000..9fd82d7
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/seven.breakpoints.yml
@@ -0,0 +1,2 @@
+mobile: '(min-width: 0em)'
+wide: 'screen and (min-width: 40em)'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/seven.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/seven.settings.yml
new file mode 100644
index 0000000..f84652c
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/seven.settings.yml
@@ -0,0 +1 @@
+shortcut_module_link: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/shortcut.set.default.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/shortcut.set.default.yml
new file mode 100644
index 0000000..3b1879b
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/shortcut.set.default.yml
@@ -0,0 +1,6 @@
+id: default
+label: Default
+status: true
+uuid: 9e7f035d-3e0f-4a11-8902-0231a64278c0
+langcode: fr
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/stark.breakpoints.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/stark.breakpoints.yml
new file mode 100644
index 0000000..e2eb626
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/stark.breakpoints.yml
@@ -0,0 +1,3 @@
+mobile: '(min-width: 0px)'
+narrow: 'all and (min-width: 480px) and (max-width: 959px)'
+wide: 'all and (min-width: 960px)'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/stark.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/stark.settings.yml
new file mode 100644
index 0000000..3bb124e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/stark.settings.yml
@@ -0,0 +1 @@
+shortcut_module_link: false
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.comment_publish_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.comment_publish_action.yml
new file mode 100644
index 0000000..00bace3
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.comment_publish_action.yml
@@ -0,0 +1,11 @@
+id: comment_publish_action
+label: 'Publish comment'
+status: true
+uuid: 1af3908f-66d8-4313-a641-654077c4866f
+langcode: en
+dependencies:
+  module:
+    - comment
+type: comment
+plugin: comment_publish_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.comment_save_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.comment_save_action.yml
new file mode 100644
index 0000000..ce0b209
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.comment_save_action.yml
@@ -0,0 +1,11 @@
+id: comment_save_action
+label: 'Save comment'
+status: true
+uuid: 9b584fef-b564-4413-be00-e1fb1cbcb157
+langcode: en
+dependencies:
+  module:
+    - comment
+type: comment
+plugin: comment_save_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.comment_unpublish_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.comment_unpublish_action.yml
new file mode 100644
index 0000000..bc304ec
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.comment_unpublish_action.yml
@@ -0,0 +1,11 @@
+id: comment_unpublish_action
+label: 'Unpublish comment'
+status: true
+uuid: 6d97df07-9b1c-4fed-af53-834715522f9e
+langcode: en
+dependencies:
+  module:
+    - comment
+type: comment
+plugin: comment_unpublish_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_delete_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_delete_action.yml
new file mode 100644
index 0000000..d5fd381
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_delete_action.yml
@@ -0,0 +1,11 @@
+id: node_delete_action
+label: 'Delete selected content'
+status: true
+uuid: 6399d2ec-5e3f-4893-9960-96a93119e908
+langcode: en
+dependencies:
+  module:
+    - node
+type: node
+plugin: node_delete_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_make_sticky_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_make_sticky_action.yml
new file mode 100644
index 0000000..818d8bf
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_make_sticky_action.yml
@@ -0,0 +1,11 @@
+id: node_make_sticky_action
+label: 'Make content sticky'
+status: true
+uuid: f24318bc-ed08-4049-bf09-9c99b656744f
+langcode: en
+dependencies:
+  module:
+    - node
+type: node
+plugin: node_make_sticky_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_make_unsticky_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_make_unsticky_action.yml
new file mode 100644
index 0000000..28c0ef6
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_make_unsticky_action.yml
@@ -0,0 +1,11 @@
+id: node_make_unsticky_action
+label: 'Make content unsticky'
+status: true
+uuid: 0aa6bc6c-4020-42e6-8200-d66df56ccde7
+langcode: en
+dependencies:
+  module:
+    - node
+type: node
+plugin: node_make_unsticky_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_promote_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_promote_action.yml
new file mode 100644
index 0000000..a3be16c
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_promote_action.yml
@@ -0,0 +1,11 @@
+id: node_promote_action
+label: 'Promote content to front page'
+status: true
+uuid: c54ad4c7-da1c-4676-8a01-1e0acaed7c65
+langcode: en
+dependencies:
+  module:
+    - node
+type: node
+plugin: node_promote_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_publish_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_publish_action.yml
new file mode 100644
index 0000000..5af1ab0
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_publish_action.yml
@@ -0,0 +1,11 @@
+id: node_publish_action
+label: 'Publish content'
+status: true
+uuid: af3e151b-ea89-4b6e-bc00-a46bf6339efe
+langcode: en
+dependencies:
+  module:
+    - node
+type: node
+plugin: node_publish_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_save_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_save_action.yml
new file mode 100644
index 0000000..1ca9418
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_save_action.yml
@@ -0,0 +1,11 @@
+id: node_save_action
+label: 'Save content'
+status: true
+uuid: 1d29426d-0019-4a26-af31-493f7a080880
+langcode: en
+dependencies:
+  module:
+    - node
+type: node
+plugin: node_save_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_unpromote_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_unpromote_action.yml
new file mode 100644
index 0000000..56fd008
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_unpromote_action.yml
@@ -0,0 +1,11 @@
+id: node_unpromote_action
+label: 'Remove content from front page'
+status: true
+uuid: ad49d2df-fbf4-4ded-a100-e532f05fcf0f
+langcode: en
+dependencies:
+  module:
+    - node
+type: node
+plugin: node_unpromote_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_unpublish_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_unpublish_action.yml
new file mode 100644
index 0000000..857a389
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.node_unpublish_action.yml
@@ -0,0 +1,11 @@
+id: node_unpublish_action
+label: 'Unpublish content'
+status: true
+uuid: 296dcb13-ff87-41aa-b900-e3c6aa4d86a4
+langcode: en
+dependencies:
+  module:
+    - node
+type: node
+plugin: node_unpublish_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_add_role_action.administrator.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_add_role_action.administrator.yml
new file mode 100644
index 0000000..51da7a8
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_add_role_action.administrator.yml
@@ -0,0 +1,12 @@
+id: user_add_role_action.administrator
+label: 'Add the Administrator role to the selected users'
+status: true
+uuid: 51fe2cbd-e8e7-408f-9e3d-61381892ee95
+langcode: fr
+dependencies:
+  module:
+    - user
+type: user
+plugin: user_add_role_action
+configuration:
+  rid: administrator
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_block_user_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_block_user_action.yml
new file mode 100644
index 0000000..8328f54
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_block_user_action.yml
@@ -0,0 +1,11 @@
+id: user_block_user_action
+label: 'Block the selected user(s)'
+status: true
+uuid: fc19a2cc-1f28-4b6f-9902-2af575937c53
+langcode: en
+dependencies:
+  module:
+    - user
+type: user
+plugin: user_block_user_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_cancel_user_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_cancel_user_action.yml
new file mode 100644
index 0000000..310cd2b
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_cancel_user_action.yml
@@ -0,0 +1,11 @@
+id: user_cancel_user_action
+label: 'Cancel the selected user account(s)'
+status: true
+uuid: ab2e1051-0806-454d-a000-a8c7f3f8791b
+langcode: en
+dependencies:
+  module:
+    - user
+type: user
+plugin: user_cancel_user_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_remove_role_action.administrator.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_remove_role_action.administrator.yml
new file mode 100644
index 0000000..147e679
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_remove_role_action.administrator.yml
@@ -0,0 +1,12 @@
+id: user_remove_role_action.administrator
+label: 'Remove the Administrator role from the selected users'
+status: true
+uuid: e6475756-8907-494e-8c00-d063666c9792
+langcode: fr
+dependencies:
+  module:
+    - user
+type: user
+plugin: user_remove_role_action
+configuration:
+  rid: administrator
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_unblock_user_action.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_unblock_user_action.yml
new file mode 100644
index 0000000..47c5467
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.action.user_unblock_user_action.yml
@@ -0,0 +1,11 @@
+id: user_unblock_user_action
+label: 'Unblock the selected user(s)'
+status: true
+uuid: 6d2c88bf-393d-4843-9c00-f9be1f60696f
+langcode: en
+dependencies:
+  module:
+    - user
+type: user
+plugin: user_unblock_user_action
+configuration: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.authorize.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.authorize.yml
new file mode 100644
index 0000000..826f7f7
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.authorize.yml
@@ -0,0 +1 @@
+filetransfer_default: null
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.cron.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.cron.yml
new file mode 100644
index 0000000..9289f28
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.cron.yml
@@ -0,0 +1,4 @@
+threshold:
+  autorun: 10800
+  requirements_warning: 172800
+  requirements_error: 1209600
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date.yml
new file mode 100644
index 0000000..7453deb
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date.yml
@@ -0,0 +1,9 @@
+country:
+  default: TN
+first_day: 0
+timezone:
+  default: Europe/Berlin
+  user:
+    configurable: true
+    warn: false
+    default: 0
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.fallback.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.fallback.yml
new file mode 100644
index 0000000..26cc782
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.fallback.yml
@@ -0,0 +1,10 @@
+id: fallback
+label: 'Fallback date format'
+status: true
+uuid: e567791f-81d6-4d60-a200-d3aaed78deed
+langcode: en
+dependencies: {  }
+locked: true
+pattern:
+  php: 'D, m/d/Y - H:i'
+  intl: 'ccc, MM/dd/yyyy - kk:mm'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_date.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_date.yml
new file mode 100644
index 0000000..2402bd1
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_date.yml
@@ -0,0 +1,10 @@
+id: html_date
+label: 'HTML Date'
+status: true
+uuid: 9cdf5686-2078-4c65-9100-0a6637bc9053
+langcode: en
+dependencies: {  }
+locked: true
+pattern:
+  php: Y-m-d
+  intl: yyyy-MM-dd
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_datetime.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_datetime.yml
new file mode 100644
index 0000000..f4f6e12
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_datetime.yml
@@ -0,0 +1,10 @@
+id: html_datetime
+label: 'HTML Datetime'
+status: true
+uuid: d577651b-3be4-43b6-8611-17f5a985a4e2
+langcode: en
+dependencies: {  }
+locked: true
+pattern:
+  php: 'Y-m-d\TH:i:sO'
+  intl: 'yyyy-MM-dd''T''kk:mm:ssZZ'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_month.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_month.yml
new file mode 100644
index 0000000..c66305b
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_month.yml
@@ -0,0 +1,10 @@
+id: html_month
+label: 'HTML Month'
+status: true
+uuid: 0536cc95-edca-4efb-8e09-9a7bb3495476
+langcode: en
+dependencies: {  }
+locked: true
+pattern:
+  php: Y-m
+  intl: Y-MM
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_time.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_time.yml
new file mode 100644
index 0000000..6d6be21
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_time.yml
@@ -0,0 +1,10 @@
+id: html_time
+label: 'HTML Time'
+status: true
+uuid: c688b242-cf54-47cd-b800-faa330f919ed
+langcode: en
+dependencies: {  }
+locked: true
+pattern:
+  php: 'H:i:s'
+  intl: 'H:mm:ss'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_week.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_week.yml
new file mode 100644
index 0000000..8ce0841
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_week.yml
@@ -0,0 +1,10 @@
+id: html_week
+label: 'HTML Week'
+status: true
+uuid: 7dabcd77-1d0a-4794-ac00-aa1d9b864c56
+langcode: en
+dependencies: {  }
+locked: true
+pattern:
+  php: Y-\WW
+  intl: 'Y-''W''WW'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_year.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_year.yml
new file mode 100644
index 0000000..d4a979c
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_year.yml
@@ -0,0 +1,10 @@
+id: html_year
+label: 'HTML Year'
+status: true
+uuid: 8e3b391c-c086-48a3-8501-1b48ee5b27b8
+langcode: en
+dependencies: {  }
+locked: true
+pattern:
+  php: Y
+  intl: Y
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_yearless_date.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_yearless_date.yml
new file mode 100644
index 0000000..e728179
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.html_yearless_date.yml
@@ -0,0 +1,10 @@
+id: html_yearless_date
+label: 'HTML Yearless date'
+status: true
+uuid: f2ba2472-f045-444c-a11c-288695b662cd
+langcode: en
+dependencies: {  }
+locked: true
+pattern:
+  php: m-d
+  intl: MM-d
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.long.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.long.yml
new file mode 100644
index 0000000..dce506d
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.long.yml
@@ -0,0 +1,10 @@
+id: long
+label: 'Default long date'
+status: true
+uuid: 90797b64-887c-4f72-a400-ecd8ccba8507
+langcode: en
+dependencies: {  }
+locked: false
+pattern:
+  php: 'l, F j, Y - H:i'
+  intl: 'EEEE, LLLL d, yyyy - kk:mm'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.medium.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.medium.yml
new file mode 100644
index 0000000..470cf8f
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.medium.yml
@@ -0,0 +1,10 @@
+id: medium
+label: 'Default medium date'
+status: true
+uuid: af3589bb-b492-4f4a-8500-a8af70578d31
+langcode: en
+dependencies: {  }
+locked: false
+pattern:
+  php: 'D, m/d/Y - H:i'
+  intl: 'ccc, MM/dd/yyyy - kk:mm'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.short.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.short.yml
new file mode 100644
index 0000000..ee54f3a
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.date_format.short.yml
@@ -0,0 +1,10 @@
+id: short
+label: 'Default short date'
+status: true
+uuid: 5750edfa-a313-4025-af00-a0a6751889dc
+langcode: en
+dependencies: {  }
+locked: false
+pattern:
+  php: 'm/d/Y - H:i'
+  intl: 'MM/dd/yyyy - kk:mm'
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.file.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.file.yml
new file mode 100644
index 0000000..4d6c779
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.file.yml
@@ -0,0 +1,5 @@
+allow_insecure_uploads: false
+default_scheme: public
+path:
+  private: ''
+  temporary: /tmp
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.filter.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.filter.yml
new file mode 100644
index 0000000..12ce55a
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.filter.yml
@@ -0,0 +1,14 @@
+protocols:
+  - http
+  - https
+  - ftp
+  - news
+  - nntp
+  - tel
+  - telnet
+  - mailto
+  - irc
+  - ssh
+  - sftp
+  - webcal
+  - rtsp
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.image.gd.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.image.gd.yml
new file mode 100644
index 0000000..342e071
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.image.gd.yml
@@ -0,0 +1 @@
+jpeg_quality: 75
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.image.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.image.yml
new file mode 100644
index 0000000..9a1688f
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.image.yml
@@ -0,0 +1 @@
+toolkit: gd
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.logging.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.logging.yml
new file mode 100644
index 0000000..3ecc76c
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.logging.yml
@@ -0,0 +1 @@
+error_level: all
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.mail.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.mail.yml
new file mode 100644
index 0000000..09f96ed
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.mail.yml
@@ -0,0 +1,2 @@
+interface:
+  default: php_mail
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.maintenance.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.maintenance.yml
new file mode 100644
index 0000000..40cfeb2
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.maintenance.yml
@@ -0,0 +1,2 @@
+message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.'
+langcode: en
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.account.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.account.yml
new file mode 100644
index 0000000..c52a4fa
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.account.yml
@@ -0,0 +1,8 @@
+id: account
+label: 'User account menu'
+description: 'Links related to the user account.'
+status: true
+uuid: 43369dbc-b4b9-4947-8600-cb4f010112c5
+langcode: en
+dependencies: {  }
+locked: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.admin.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.admin.yml
new file mode 100644
index 0000000..b5cb883
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.admin.yml
@@ -0,0 +1,8 @@
+id: admin
+label: Administration
+description: 'Contains links to administrative tasks.'
+status: true
+uuid: 6557a411-69ce-4a0e-8c00-fe6aa10fb2d6
+langcode: en
+dependencies: {  }
+locked: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.footer.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.footer.yml
new file mode 100644
index 0000000..a2cde31
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.footer.yml
@@ -0,0 +1,8 @@
+id: footer
+label: Footer
+description: 'Use this for linking to site information.'
+status: true
+uuid: 883a01cf-8ec6-47a7-a70b-11ae2a02f3b8
+langcode: en
+dependencies: {  }
+locked: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.main.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.main.yml
new file mode 100644
index 0000000..1f4c3ee
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.main.yml
@@ -0,0 +1,8 @@
+id: main
+label: 'Main navigation'
+description: 'Use this for linking to the main site sections.'
+status: true
+uuid: e6ffe0b4-40ce-437f-9200-fc1f6f8e6073
+langcode: en
+dependencies: {  }
+locked: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.tools.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.tools.yml
new file mode 100644
index 0000000..64ae074
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.tools.yml
@@ -0,0 +1,8 @@
+id: tools
+label: Tools
+description: 'Contains links for site visitors. Some modules add their links here.'
+status: true
+uuid: 1da4c77b-6deb-4afb-8800-de2dd488fe54
+langcode: en
+dependencies: {  }
+locked: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.yml
new file mode 100644
index 0000000..8dabb2f
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.menu.yml
@@ -0,0 +1 @@
+active_menus_default: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.module.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.module.yml
new file mode 100644
index 0000000..5712049
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.module.yml
@@ -0,0 +1,43 @@
+enabled:
+  block: -5
+  breakpoint: 0
+  ckeditor: 0
+  color: 0
+  comment: 0
+  config: 0
+  contact: 0
+  contextual: 0
+  custom_block: 0
+  datetime: 0
+  dblog: 0
+  edit: 0
+  editor: 0
+  entity: 0
+  entity_reference: 0
+  field: 0
+  field_ui: 0
+  file: 0
+  filter: 0
+  help: 0
+  history: 0
+  image: 0
+  language: 0
+  locale: 0
+  menu: 0
+  menu_link: 0
+  node: 0
+  options: 0
+  path: 0
+  rdf: 0
+  search: 0
+  shortcut: 0
+  system: 0
+  taxonomy: 0
+  text: 0
+  toolbar: 0
+  tour: 0
+  update: 0
+  user: 0
+  views_ui: 0
+  views: 10
+  standard: 1000
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.performance.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.performance.yml
new file mode 100644
index 0000000..29b434b
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.performance.yml
@@ -0,0 +1,18 @@
+cache:
+  page:
+    use_internal: false
+    max_age: 0
+css:
+  preprocess: false
+  gzip: true
+fast_404:
+  enabled: true
+  paths: '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i'
+  exclude_paths: '/\/(?:styles|imagecache)\//'
+  html: '<!DOCTYPE html><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>'
+js:
+  preprocess: false
+  gzip: true
+response:
+  gzip: false
+stale_file_threshold: 2592000
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.rss.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.rss.yml
new file mode 100644
index 0000000..994f55c
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.rss.yml
@@ -0,0 +1,6 @@
+channel:
+  description: ''
+items:
+  limit: 10
+  view_mode: rss
+langcode: en
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.site.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.site.yml
new file mode 100644
index 0000000..fbb0ff4
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.site.yml
@@ -0,0 +1,11 @@
+uuid: 9bc44cf4-3ac0-4a86-8801-1fe0dbd583b4
+name: drupal8
+mail: adnen@gmail.com
+slogan: ''
+page:
+  403: ''
+  404: ''
+  front: node
+admin_compact_mode: false
+weight_select_max: 100
+langcode: fr
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.theme.disabled.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.theme.disabled.yml
new file mode 100644
index 0000000..4454618
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.theme.disabled.yml
@@ -0,0 +1 @@
+stark: 0
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.theme.global.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.theme.global.yml
new file mode 100644
index 0000000..13036bf
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.theme.global.yml
@@ -0,0 +1,19 @@
+favicon:
+  mimetype: image/vnd.microsoft.icon
+  path: ''
+  url: ''
+  use_default: true
+features:
+  comment_user_picture: true
+  comment_user_verification: true
+  favicon: true
+  logo: true
+  name: true
+  node_user_picture: true
+  main_menu: true
+  secondary_menu: true
+  slogan: true
+logo:
+  path: ''
+  url: ''
+  use_default: true
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.theme.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.theme.yml
new file mode 100644
index 0000000..bea2f94
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/system.theme.yml
@@ -0,0 +1,5 @@
+admin: seven
+enabled:
+  bartik: 0
+  seven: 0
+default: bartik
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/taxonomy.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/taxonomy.settings.yml
new file mode 100644
index 0000000..a7ea865
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/taxonomy.settings.yml
@@ -0,0 +1,3 @@
+maintain_index_table: true
+override_selector: false
+terms_per_page_admin: 100
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/taxonomy.vocabulary.tags.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/taxonomy.vocabulary.tags.yml
new file mode 100644
index 0000000..383f272
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/taxonomy.vocabulary.tags.yml
@@ -0,0 +1,9 @@
+vid: tags
+name: Tags
+description: 'Use tags to group articles on similar topics into categories.'
+hierarchy: 0
+weight: 0
+status: true
+uuid: b5863e1e-539d-4442-8000-ab8d01759542
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/text.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/text.settings.yml
new file mode 100644
index 0000000..1ff3cbc
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/text.settings.yml
@@ -0,0 +1 @@
+default_summary_length: 600
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/tour.tour.views-ui.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/tour.tour.views-ui.yml
new file mode 100644
index 0000000..d05e469
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/tour.tour.views-ui.yml
@@ -0,0 +1,96 @@
+id: views-ui
+module: views_ui
+label: 'Views ui'
+status: true
+uuid: 8239d524-ff35-40ca-8100-ef6b14bae824
+langcode: en
+dependencies:
+  module:
+    - views_ui
+routes:
+  -
+    route_name: views_ui.edit
+  -
+    route_name: views_ui.edit_display
+tips:
+  views-ui-active-display:
+    id: views-ui-active-display
+    plugin: text
+    label: 'Active display'
+    body: 'This is the active display in the view. When there are multiple displays, one link for each display is shown and you can switch displays simply by clicking on the display link.'
+    weight: 2
+    attributes:
+      data-class: 'views-display-top li.active'
+  views-ui-displays:
+    id: views-ui-displays
+    plugin: text
+    label: 'Displays in this view'
+    body: 'A view can consist of multiple displays. A display is a way of outputting the results E.g. as a page or in a block. The available displays in your view are show here.'
+    weight: 1
+    attributes:
+      data-id: views-display-top
+  views-ui-fields:
+    id: views-ui-fields
+    plugin: text
+    label: Fields
+    body: 'This section shows the fields output for each result. Depending on the format selected for the view, you may not see anything listed here. If the format of your view uses fields, you can click on each field displayed to configure it.'
+    weight: 5
+    attributes:
+      data-class: views-ui-display-tab-bucket.fields
+  views-ui-filter:
+    id: views-ui-filter
+    plugin: text
+    label: 'Filter your view'
+    body: 'This section displays the filters you have active in your view. A filter is used to limit the results available in the output. E.g. to only show content that was <em>published</em>, you would add a filter for <em>Published</em> and select <em>Yes</em>.'
+    weight: 6
+    attributes:
+      data-class: views-ui-display-tab-bucket.filter-criteria
+  views-ui-filter-operations:
+    id: views-ui-filter-operations
+    plugin: text
+    label: 'Filter actions'
+    body: 'Use this drop-button to add and re-arrange filters'
+    weight: 7
+    attributes:
+      data-class: 'views-ui-display-tab-bucket.filter-criteria .dropbutton-widget'
+  views-ui-format:
+    id: views-ui-format
+    plugin: text
+    label: 'Output format'
+    body: 'Use this section to manage the format of the output results. You can choose different ways in which the matching results are output. E.g. Choose <em>Content</em> to output each item completely, using your configured display settings. Other options include <em>Fields</em> which allows you to output only specific fields on each matching result. Additional formats can be added by installing additional modules to <em>extend</em> Drupal''s base functionality.'
+    weight: 4
+    attributes:
+      data-class: views-ui-display-tab-bucket.format
+  views-ui-preview:
+    id: views-ui-preview
+    plugin: text
+    label: Preview
+    body: 'Use this button to show a preview of the view output'
+    weight: 10
+    attributes:
+      data-id: preview-submit
+  views-ui-sorts:
+    id: views-ui-sorts
+    plugin: text
+    label: 'Sort Criteria'
+    body: 'This section shows the enabled sorting criteria for the view. Sorting criteria are used to control the order in which the results are output. Clicking on any of the active sorting criteria shown in this section enables you to configure it.'
+    weight: 8
+    attributes:
+      data-class: views-ui-display-tab-bucket.sort-criteria
+  views-ui-sorts-operations:
+    id: views-ui-sorts-operations
+    plugin: text
+    label: 'Sort actions'
+    body: 'Use this drop-button to add and re-arrange the sorting criteria.'
+    weight: 9
+    attributes:
+      data-class: 'views-ui-display-tab-bucket.sort-criteria .dropbutton-widget'
+  views-ui-view-admin:
+    id: views-ui-view-admin
+    plugin: text
+    label: 'View administration'
+    body: 'Use this drop-button to perform administrative tasks on the view, including adding a description and creating a clone. Click the drop button to view the available options.'
+    weight: 3
+    location: left
+    attributes:
+      data-id: views-display-extra-actions
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/update.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/update.settings.yml
new file mode 100644
index 0000000..1232683
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/update.settings.yml
@@ -0,0 +1,11 @@
+check:
+  disabled_extensions: false
+  interval_days: 1
+fetch:
+  url: ''
+  max_attempts: 2
+  timeout: 30
+notification:
+  emails:
+    - adnen@gmail.com
+  threshold: all
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.flood.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.flood.yml
new file mode 100644
index 0000000..9a16846
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.flood.yml
@@ -0,0 +1,5 @@
+uid_only: false
+ip_limit: 50
+ip_window: 3600
+user_limit: 5
+user_window: 21600
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.mail.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.mail.yml
new file mode 100644
index 0000000..ea33738
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.mail.yml
@@ -0,0 +1,28 @@
+cancel_confirm:
+  body: "[user:name],\n\nA request to cancel your account has been made at [site:name].\n\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n\n[user:cancel-url]\n\nNOTE: The cancellation of your account is not reversible.\n\nThis link expires in one day and nothing will happen if it is not used.\n\n--  [site:name] team"
+  subject: 'Account cancellation request for [user:name] at [site:name]'
+password_reset:
+  body: "[user:name],\n\nA request to reset the password for your account has been made at [site:name].\n\nYou may now log in by clicking this link or copying and pasting it to your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\n\n--  [site:name] team"
+  subject: 'Replacement login information for [user:name] at [site:name]'
+register_admin_created:
+  body: "[user:name],\n\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it to your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'An administrator created an account for you at [site:name]'
+register_no_approval_required:
+  body: "[user:name],\n\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it to your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:name] at [site:name]'
+register_pending_approval:
+  body: "[user:name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another e-mail containing information about how to log in, set your password, and other details.\n\n\n--  [site:name] team"
+  subject: 'Account details for [user:name] at [site:name] (pending admin approval)'
+register_pending_approval_admin:
+  body: "[user:name] has applied for an account.\n\n[user:edit-url]"
+  subject: 'Account details for [user:name] at [site:name] (pending admin approval)'
+status_activated:
+  body: "[user:name],\n\nYour account at [site:name] has been activated.\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n--  [site:name] team"
+  subject: 'Account details for [user:name] at [site:name] (approved)'
+status_blocked:
+  body: "[user:name],\n\nYour account on [site:name] has been blocked.\n\n--  [site:name] team"
+  subject: 'Account details for [user:name] at [site:name] (blocked)'
+status_canceled:
+  body: "[user:name],\n\nYour account on [site:name] has been canceled.\n\n--  [site:name] team"
+  subject: 'Account details for [user:name] at [site:name] (canceled)'
+langcode: en
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.role.administrator.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.role.administrator.yml
new file mode 100644
index 0000000..4cea62d
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.role.administrator.yml
@@ -0,0 +1,105 @@
+id: administrator
+label: Administrator
+weight: 2
+permissions:
+  - 'administer blocks'
+  - 'administer comments'
+  - 'access comments'
+  - 'post comments'
+  - 'skip comment approval'
+  - 'edit own comments'
+  - 'synchronize configuration'
+  - 'export configuration'
+  - 'import configuration'
+  - 'administer contact forms'
+  - 'access site-wide contact form'
+  - 'access user contact forms'
+  - 'access contextual links'
+  - 'access in-place editing'
+  - 'administer display modes'
+  - 'administer comment fields'
+  - 'administer comment form display'
+  - 'administer comment display'
+  - 'administer contact_message fields'
+  - 'administer contact_message form display'
+  - 'administer contact_message display'
+  - 'administer custom_block fields'
+  - 'administer custom_block form display'
+  - 'administer custom_block display'
+  - 'administer node fields'
+  - 'administer node form display'
+  - 'administer node display'
+  - 'administer taxonomy_term fields'
+  - 'administer taxonomy_term form display'
+  - 'administer taxonomy_term display'
+  - 'administer user fields'
+  - 'administer user form display'
+  - 'administer user display'
+  - 'access files overview'
+  - 'administer filters'
+  - 'use text format basic_html'
+  - 'use text format restricted_html'
+  - 'use text format full_html'
+  - 'administer image styles'
+  - 'administer languages'
+  - 'translate interface'
+  - 'administer menu'
+  - 'bypass node access'
+  - 'administer content types'
+  - 'administer nodes'
+  - 'access content overview'
+  - 'access content'
+  - 'view own unpublished content'
+  - 'view all revisions'
+  - 'revert all revisions'
+  - 'delete all revisions'
+  - 'create article content'
+  - 'edit own article content'
+  - 'edit any article content'
+  - 'delete own article content'
+  - 'delete any article content'
+  - 'view article revisions'
+  - 'revert article revisions'
+  - 'delete article revisions'
+  - 'create page content'
+  - 'edit own page content'
+  - 'edit any page content'
+  - 'delete own page content'
+  - 'delete any page content'
+  - 'view page revisions'
+  - 'revert page revisions'
+  - 'delete page revisions'
+  - 'administer url aliases'
+  - 'create url aliases'
+  - 'administer search'
+  - 'search content'
+  - 'use advanced search'
+  - 'administer shortcuts'
+  - 'customize shortcut links'
+  - 'switch shortcut sets'
+  - 'administer modules'
+  - 'administer site configuration'
+  - 'administer themes'
+  - 'administer software updates'
+  - 'access administration pages'
+  - 'access site in maintenance mode'
+  - 'view the administration theme'
+  - 'access site reports'
+  - 'administer taxonomy'
+  - 'edit terms in tags'
+  - 'delete terms in tags'
+  - 'access toolbar'
+  - 'access tour'
+  - 'administer permissions'
+  - 'administer account settings'
+  - 'administer users'
+  - 'access user profiles'
+  - 'change own username'
+  - 'cancel account'
+  - 'select account cancellation method'
+  - 'administer views'
+  - 'access all views'
+status: true
+uuid: 9ed148ac-3dcb-47e4-aa09-9fb504059a8a
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.role.anonymous.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.role.anonymous.yml
new file mode 100644
index 0000000..427110e
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.role.anonymous.yml
@@ -0,0 +1,13 @@
+id: anonymous
+label: 'Anonymous user'
+weight: 0
+permissions:
+  - 'use text format plain_text'
+  - 'access content'
+  - 'use text format restricted_html'
+  - 'access comments'
+  - 'access site-wide contact form'
+status: true
+uuid: b99ce902-8581-4902-8746-70381212af70
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.role.authenticated.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.role.authenticated.yml
new file mode 100644
index 0000000..06970bf
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.role.authenticated.yml
@@ -0,0 +1,15 @@
+id: authenticated
+label: 'Authenticated user'
+weight: 1
+permissions:
+  - 'use text format plain_text'
+  - 'access content'
+  - 'use text format basic_html'
+  - 'access comments'
+  - 'post comments'
+  - 'skip comment approval'
+  - 'access site-wide contact form'
+status: true
+uuid: 1be06556-20f5-409c-9e09-9eedca37b4c3
+langcode: en
+dependencies: {  }
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.settings.yml
new file mode 100644
index 0000000..392a2de
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/user.settings.yml
@@ -0,0 +1,18 @@
+admin_role: administrator
+anonymous: Anonymous
+verify_mail: true
+notify:
+  cancel_confirm: true
+  password_reset: true
+  status_activated: true
+  status_blocked: false
+  status_cancelled: false
+  register_admin_created: true
+  register_no_approval_required: true
+  register_pending_approval: true
+register: visitors_admin_approval
+signatures: false
+cancel_method: user_cancel_block
+password_reset_timeout: 86400
+password_strength: true
+langcode: en
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.settings.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.settings.yml
new file mode 100644
index 0000000..94ae91f
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.settings.yml
@@ -0,0 +1,47 @@
+display_extenders: {  }
+no_javascript: false
+skip_cache: false
+sql_signature: false
+ui:
+  show:
+    additional_queries: false
+    advanced_column: false
+    master_display: false
+    performance_statistics: false
+    preview_information: true
+    sql_query:
+      enabled: false
+      where: above
+    display_embed: false
+  always_live_preview: true
+  exposed_filter_any_label: old_any
+field_rewrite_elements:
+  div: DIV
+  span: SPAN
+  h1: H1
+  h2: H2
+  h3: H3
+  h4: H4
+  h5: H5
+  h6: H6
+  p: P
+  header: HEADER
+  footer: FOOTER
+  article: ARTICLE
+  section: SECTION
+  aside: ASIDE
+  details: DETAILS
+  blockquote: BLOCKQUOTE
+  figure: FIGURE
+  address: ADDRESS
+  code: CODE
+  pre: PRE
+  var: VAR
+  samp: SAMP
+  kbd: KBD
+  strong: STRONG
+  em: EM
+  del: DEL
+  ins: INS
+  q: Q
+  s: S
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.archive.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.archive.yml
new file mode 100644
index 0000000..3becda4
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.archive.yml
@@ -0,0 +1,177 @@
+base_field: nid
+base_table: node
+core: '8'
+description: 'All content, by month.'
+status: false
+display:
+  default:
+    id: default
+    display_title: Master
+    display_plugin: default
+    position: 0
+    display_options:
+      query:
+        type: views_query
+        options:
+          query_comment: false
+          disable_sql_rewrite: false
+          distinct: false
+          slave: false
+          query_tags: {  }
+        provider: views
+      title: 'Monthly archive'
+      access:
+        type: none
+        options: {  }
+        provider: views
+      cache:
+        type: none
+        options: {  }
+        provider: views
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+        provider: views
+      pager:
+        type: mini
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 20, 40, 60'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
+        provider: views
+      sorts:
+        created:
+          id: created
+          table: node_field_data
+          field: created
+          order: DESC
+          plugin_id: date
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          provider: views
+      arguments:
+        created_year_month:
+          id: created_year_month
+          table: node_field_data
+          field: created_year_month
+          default_action: summary
+          exception:
+            title_enable: true
+          title_enable: true
+          title: '%1'
+          default_argument_type: fixed
+          summary:
+            sort_order: desc
+            format: default_summary
+          summary_options:
+            override: true
+            items_per_page: 30
+          specify_validation: true
+          plugin_id: date_year_month
+          provider: views
+      filters:
+        status:
+          id: status
+          table: node_field_data
+          field: status
+          value: true
+          group: 0
+          expose:
+            operator: '0'
+          plugin_id: boolean
+          provider: views
+      style:
+        type: default
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          uses_fields: false
+        provider: views
+      row:
+        type: 'entity:node'
+        options:
+          view_mode: teaser
+          links: true
+          comments: false
+        provider: node
+      header: {  }
+      footer: {  }
+      empty: {  }
+      relationships: {  }
+      fields: {  }
+  block_1:
+    id: block_1
+    display_title: Block
+    display_plugin: block
+    position: 1
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+        provider: views
+      defaults:
+        arguments: false
+      arguments:
+        created_year_month:
+          id: created_year_month
+          table: node_field_data
+          field: created_year_month
+          default_action: summary
+          exception:
+            title_enable: true
+          title_enable: true
+          title: '%1'
+          default_argument_type: fixed
+          summary:
+            format: default_summary
+          summary_options:
+            items_per_page: 30
+          specify_validation: true
+          plugin_id: date_year_month
+          provider: views
+  page_1:
+    id: page_1
+    display_title: Page
+    display_plugin: page
+    position: 2
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+        provider: views
+      path: archive
+label: Archive
+module: node
+id: archive
+tag: default
+uuid: e13a04f2-ca60-49b4-9e00-a9b5433fa7d8
+langcode: en
+dependencies:
+  module:
+    - node
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.comments_recent.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.comments_recent.yml
new file mode 100644
index 0000000..f2b8fb5
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.comments_recent.yml
@@ -0,0 +1,240 @@
+base_field: cid
+base_table: comment
+core: 8.x
+description: 'Recent comments.'
+status: true
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access comments'
+        provider: user
+      cache:
+        type: none
+        provider: views
+      query:
+        type: views_query
+        provider: views
+      exposed_form:
+        type: basic
+        provider: views
+      pager:
+        type: some
+        options:
+          items_per_page: 10
+          offset: 0
+        provider: views
+      style:
+        type: html_list
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          type: ul
+          wrapper_class: item-list
+          class: ''
+        provider: views
+      row:
+        type: fields
+        options:
+          default_field_elements: true
+          inline:
+            subject: subject
+            changed: changed
+          separator: ' '
+          hide_empty: false
+        provider: views
+      relationships:
+        node:
+          field: node
+          id: node
+          table: comment
+          required: true
+          plugin_id: standard
+      fields:
+        subject:
+          id: subject
+          table: comment
+          field: subject
+          relationship: none
+          plugin_id: comment
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: false
+            ellipsis: false
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_comment: true
+          link_to_entity: false
+        changed:
+          id: changed
+          table: comment
+          field: changed
+          relationship: none
+          plugin_id: date
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          date_format: 'time ago'
+          custom_date_format: ''
+          timezone: ''
+      filters:
+        status:
+          value: true
+          table: comment
+          field: status
+          id: status
+          plugin_id: boolean
+          expose:
+            operator: ''
+          group: 1
+        status_node:
+          value: true
+          table: node_field_data
+          field: status
+          relationship: node
+          id: status_node
+          plugin_id: boolean
+          expose:
+            operator: ''
+          group: 1
+      sorts:
+        created:
+          id: created
+          table: comment
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          plugin_id: date
+        cid:
+          id: cid
+          table: comment
+          field: cid
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          plugin_id: standard
+      title: 'Recent comments'
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          empty: true
+          content: 'No comments available.'
+          tokenize: false
+          plugin_id: text_custom
+  block_1:
+    display_plugin: block
+    id: block_1
+    display_title: Block
+    position: 1
+    display_options:
+      block_description: 'Recent comments'
+      block_category: 'Lists (Views)'
+label: 'Recent comments'
+module: views
+id: comments_recent
+tag: default
+uuid: f1f2703c-d714-4b1c-bb42-66233fc13ddb
+langcode: en
+dependencies:
+  module:
+    - comment
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.content.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.content.yml
new file mode 100644
index 0000000..2c5cebc
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.content.yml
@@ -0,0 +1,566 @@
+base_field: nid
+base_table: node
+core: 8.x
+description: 'Find and manage content.'
+status: true
+display:
+  default:
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access content overview'
+        provider: user
+      cache:
+        type: none
+        provider: views
+      query:
+        type: views_query
+        provider: views
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Filter
+          reset_button: true
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+        provider: views
+      pager:
+        type: full
+        options:
+          items_per_page: 50
+        provider: views
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          override: true
+          sticky: true
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            node_bulk_form: node_bulk_form
+            title: title
+            type: type
+            name: name
+            status: status
+            changed: changed
+            edit_node: edit_node
+            delete_node: delete_node
+            translation_link: translation_link
+            dropbutton: dropbutton
+            timestamp: title
+          info:
+            node_bulk_form:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            title:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            type:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            name:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            status:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            changed:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            edit_node:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            delete_node:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            translation_link:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            dropbutton:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            timestamp:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+          default: changed
+          empty_table: true
+        provider: views
+      row:
+        type: fields
+        provider: views
+      fields:
+        node_bulk_form:
+          id: node_bulk_form
+          table: node
+          field: node_bulk_form
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: node_bulk_form
+          provider: node
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          label: Title
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_node: true
+          plugin_id: node
+          provider: node
+        type:
+          id: type
+          table: node_field_data
+          field: type
+          label: 'Content Type'
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_node: false
+          machine_name: ''
+          plugin_id: node_type
+          provider: node
+        name:
+          id: name
+          table: users
+          field: name
+          relationship: uid
+          label: Author
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_user: true
+          overwrite_anonymous: false
+          anonymous_text: ''
+          format_username: true
+          plugin_id: user_name
+          provider: user
+        status:
+          id: status
+          table: node_field_data
+          field: status
+          label: Status
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: published-notpublished
+          type_custom_true: ''
+          type_custom_false: ''
+          not: ''
+          plugin_id: boolean
+          provider: views
+        changed:
+          id: changed
+          table: node_field_data
+          field: changed
+          label: Updated
+          exclude: false
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          date_format: short
+          custom_date_format: ''
+          timezone: ''
+          plugin_id: date
+          provider: views
+        edit_node:
+          id: edit_node
+          table: node
+          field: edit_node
+          label: ''
+          exclude: true
+          text: Edit
+          plugin_id: node_link_edit
+          provider: node
+        delete_node:
+          id: delete_node
+          table: node
+          field: delete_node
+          label: ''
+          exclude: true
+          text: Delete
+          plugin_id: node_link_delete
+          provider: node
+        translation_link:
+          id: translation_link
+          table: node
+          field: translation_link
+          label: ''
+          exclude: true
+          alter:
+            alter_text: false
+          element_class: ''
+          element_default_classes: true
+          hide_alter_empty: true
+          hide_empty: false
+          empty_zero: false
+          empty: ''
+          text: Translate
+          optional: true
+          plugin_id: content_translation_link
+          provider: content_translation
+        dropbutton:
+          id: dropbutton
+          table: views
+          field: dropbutton
+          label: Operations
+          fields:
+            edit_node: edit_node
+            delete_node: delete_node
+            translation_link: translation_link
+          destination: true
+          plugin_id: dropbutton
+          provider: views
+        timestamp:
+          id: timestamp
+          table: history
+          field: timestamp
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Has new content'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_node: false
+          comments: false
+          optional: true
+          plugin_id: history_user_timestamp
+          provider: history
+      filters:
+        status_extra:
+          id: status_extra
+          table: node_field_data
+          field: status_extra
+          operator: '='
+          value: false
+          plugin_id: node_status
+          provider: node
+          group: 1
+        status:
+          id: status
+          table: node_field_data
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '='
+          value: true
+          group: 1
+          exposed: true
+          expose:
+            operator_id: ''
+            label: Status
+            description: ''
+            use_operator: false
+            operator: status_op
+            identifier: status
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: true
+          group_info:
+            label: 'Published status'
+            description: ''
+            identifier: status
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items:
+              1:
+                title: Published
+                operator: '='
+                value: '1'
+              2:
+                title: Unpublished
+                operator: '='
+                value: '0'
+          plugin_id: boolean
+          provider: views
+        type:
+          id: type
+          table: node_field_data
+          field: type
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: type_op
+            label: Type
+            description: ''
+            use_operator: false
+            operator: type_op
+            identifier: type
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: bundle
+          provider: views
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: contains
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: title_op
+            label: Title
+            description: ''
+            use_operator: false
+            operator: title_op
+            identifier: title
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: string
+          provider: views
+        langcode:
+          id: langcode
+          table: node_revision
+          field: langcode
+          operator: in
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: langcode_op
+            label: Language
+            operator: langcode_op
+            identifier: langcode
+            remember_roles:
+              authenticated: authenticated
+          optional: true
+          plugin_id: language
+          provider: language
+      sorts: {  }
+      title: Content
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          empty: true
+          content: 'No content available.'
+          plugin_id: text_custom
+          provider: views
+      arguments: {  }
+      relationships:
+        uid:
+          id: uid
+          table: node_field_data
+          field: uid
+          admin_label: author
+          required: true
+          plugin_id: standard
+          provider: views
+      show_admin_links: false
+      filter_groups:
+        operator: AND
+        groups:
+          1: AND
+    display_plugin: default
+    display_title: Master
+    id: default
+    position: 0
+  page_1:
+    display_options:
+      path: admin/content/node
+      menu:
+        type: 'default tab'
+        title: Content
+        description: ''
+        name: admin
+        weight: -10
+        context: ''
+      tab_options:
+        type: normal
+        title: Content
+        description: 'Find and manage content'
+        name: admin
+        weight: -10
+    display_plugin: page
+    display_title: Page
+    id: page_1
+    position: 1
+label: Content
+module: node
+id: content
+tag: default
+uuid: 2bfcda22-4865-4a01-ac07-7c1bdb32d3b2
+langcode: en
+dependencies:
+  module:
+    - node
+    - user
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.content_recent.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.content_recent.yml
new file mode 100644
index 0000000..4a89fd4
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.content_recent.yml
@@ -0,0 +1,474 @@
+base_field: nid
+base_table: node
+core: 8.x
+description: 'Recent content.'
+status: true
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+        provider: user
+      cache:
+        type: none
+        options: {  }
+        provider: views
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          slave: false
+          query_comment: false
+          query_tags: {  }
+        provider: views
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+        provider: views
+      pager:
+        type: some
+        options:
+          items_per_page: 10
+          offset: 0
+        provider: views
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            title: title
+            timestamp: title
+            name: title
+            edit_node: edit_node
+            delete_node: delete_node
+          info:
+            title:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            timestamp:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            name:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            edit_node:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: true
+              responsive: ''
+            delete_node:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: true
+              responsive: ''
+          default: '-1'
+          empty_table: false
+        provider: views
+      row:
+        type: fields
+        provider: views
+      fields:
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: false
+            ellipsis: false
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_node: true
+          plugin_id: node
+          provider: node
+        timestamp:
+          id: timestamp
+          table: history
+          field: timestamp
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_node: false
+          comments: false
+          optional: true
+          plugin_id: history_user_timestamp
+          provider: history
+        name:
+          id: name
+          table: users
+          field: name
+          relationship: uid
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: div
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_user: true
+          overwrite_anonymous: false
+          anonymous_text: ''
+          format_username: true
+          plugin_id: user_name
+          provider: user
+        edit_node:
+          id: edit_node
+          table: node
+          field: edit_node
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          text: edit
+          plugin_id: node_link_edit
+          provider: node
+        delete_node:
+          id: delete_node
+          table: node
+          field: delete_node
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          text: delete
+          plugin_id: node_link_delete
+          provider: node
+      filters:
+        status_extra:
+          id: status_extra
+          table: node_field_data
+          field: status_extra
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '='
+          value: false
+          group: 1
+          exposed: false
+          expose:
+            operator_id: '0'
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: node_status
+          provider: node
+      sorts:
+        changed:
+          id: changed
+          table: node_field_data
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          plugin_id: date
+          provider: views
+      title: 'Recent content'
+      header: {  }
+      footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'No content available.'
+          plugin_id: text_custom
+          provider: views
+      relationships:
+        uid:
+          id: uid
+          table: node_field_data
+          field: uid
+          relationship: none
+          group_type: group
+          admin_label: author
+          required: true
+          plugin_id: standard
+          provider: views
+      arguments: {  }
+      filter_groups:
+        operator: AND
+        groups: {  }
+      use_more: true
+      use_more_always: true
+      use_more_text: More
+      link_display: custom_url
+  block_1:
+    display_plugin: block
+    id: block_1
+    display_title: Block
+    position: 1
+    display_options:
+      link_url: admin/content
+      block_category: 'Lists (Views)'
+label: 'Recent content'
+module: node
+id: content_recent
+tag: default
+uuid: d047943d-9292-4986-8508-8d0ca45ffce6
+langcode: en
+dependencies:
+  module:
+    - node
+    - user
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.files.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.files.yml
new file mode 100644
index 0000000..ef16a24
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.files.yml
@@ -0,0 +1,1056 @@
+base_field: fid
+base_table: file_managed
+core: 8.x
+description: 'Find and manage files.'
+status: true
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access files overview'
+        provider: views
+      cache:
+        type: none
+        options: {  }
+        provider: views
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          slave: false
+          query_comment: false
+          query_tags: {  }
+        provider: views
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Filter
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+        provider: views
+      pager:
+        type: mini
+        options:
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: 0
+          tags:
+            previous: '‹ previous'
+            next: 'next ›'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 20, 40, 60'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+        provider: views
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            fid: fid
+            filename: filename
+            filemime: filemime
+            filesize: filesize
+            status: status
+            created: created
+            changed: changed
+            count: count
+          info:
+            fid:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            filename:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            filemime:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-medium
+            filesize:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            status:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            created:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            changed:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            count:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-medium
+          default: changed
+          empty_table: true
+        provider: views
+      row:
+        type: fields
+        provider: views
+      fields:
+        fid:
+          id: fid
+          table: file_managed
+          field: fid
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          link_to_file: false
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Fid
+          exclude: true
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          plugin_id: file
+        filename:
+          id: filename
+          table: file_managed
+          field: filename
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          link_to_file: true
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Name
+          exclude: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          plugin_id: file
+        filemime:
+          id: filemime
+          table: file_managed
+          field: filemime
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Mime type'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_file: false
+          filemime_image: false
+          plugin_id: file_filemime
+        filesize:
+          id: filesize
+          table: file_managed
+          field: filesize
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Size
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          file_size_display: formatted
+          plugin_id: file_size
+        status:
+          id: status
+          table: file_managed
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Status
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: file_status
+        created:
+          id: created
+          table: file_managed
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Upload date'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          date_format: medium
+          custom_date_format: ''
+          timezone: ''
+          plugin_id: date
+        changed:
+          id: changed
+          table: file_managed
+          field: changed
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Changed date'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          date_format: medium
+          custom_date_format: ''
+          timezone: ''
+          plugin_id: date
+        count:
+          id: count
+          table: file_usage
+          field: count
+          relationship: fid
+          group_type: sum
+          admin_label: ''
+          label: 'Used in'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: true
+            path: 'admin/content/files/usage/[fid]'
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          set_precision: false
+          precision: 0
+          decimal: .
+          separator: ','
+          format_plural: true
+          format_plural_singular: '1 place'
+          format_plural_plural: '@count places'
+          prefix: ''
+          suffix: ''
+          plugin_id: numeric
+      filters:
+        filename:
+          id: filename
+          table: file_managed
+          field: filename
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: word
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: filemime_op
+            label: Filename
+            description: ''
+            use_operator: false
+            operator: filename_op
+            identifier: filename
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: string
+        filemime:
+          id: filemime
+          table: file_managed
+          field: filemime
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: word
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: filemime_op
+            label: 'Mime type'
+            description: ''
+            use_operator: false
+            operator: filemime_op
+            identifier: filemime
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: string
+        status:
+          id: status
+          table: file_managed
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: in
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: status_op
+            label: Status
+            description: ''
+            use_operator: false
+            operator: status_op
+            identifier: status
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: file_status
+      sorts: {  }
+      title: Files
+      header: {  }
+      footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          empty: true
+          content: 'No files available.'
+          plugin_id: text_custom
+      relationships:
+        fid:
+          id: fid
+          table: file_managed
+          field: fid
+          relationship: none
+          group_type: group
+          admin_label: 'File usage'
+          required: true
+      arguments: {  }
+      group_by: true
+      show_admin_links: true
+  page_1:
+    display_plugin: page
+    id: page_1
+    display_title: 'Files overview'
+    position: 1
+    display_options:
+      path: admin/content/files
+      menu:
+        type: tab
+        title: Files
+        description: ''
+        name: admin
+        weight: 0
+        context: ''
+      display_description: ''
+      defaults:
+        pager: true
+        pager_options: true
+        relationships: false
+      relationships:
+        fid:
+          id: fid
+          table: file_managed
+          field: fid
+          relationship: none
+          group_type: group
+          admin_label: 'File usage'
+          required: false
+  page_2:
+    display_plugin: page
+    id: page_2
+    display_title: 'File usage'
+    position: 2
+    display_options:
+      display_description: ''
+      path: admin/content/files/usage/%
+      empty: {  }
+      defaults:
+        empty: false
+        pager: false
+        pager_options: false
+        filters: false
+        filter_groups: false
+        fields: false
+        group_by: false
+        title: false
+        arguments: false
+        style: false
+        row: false
+        relationships: false
+      pager:
+        type: mini
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          tags:
+            previous: '‹ previous'
+            next: 'next ›'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 20, 40, 60'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+        provider: views
+      pager_options: false
+      filters: {  }
+      filter_groups:
+        operator: AND
+        groups: {  }
+      fields:
+        entity_label:
+          id: entity_label
+          table: file_usage
+          field: entity_label
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Entity
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_entity: true
+          plugin_id: entity_label
+          provider: views
+        type:
+          id: type
+          table: file_usage
+          field: type
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Entity type'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: standard
+          provider: views
+        module:
+          id: module
+          table: file_usage
+          field: module
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Registering module'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: standard
+          provider: views
+        count:
+          id: count
+          table: file_usage
+          field: count
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Use count'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          set_precision: false
+          precision: 0
+          decimal: .
+          separator: ','
+          format_plural: false
+          format_plural_singular: '1'
+          format_plural_plural: '@count'
+          prefix: ''
+          suffix: ''
+          plugin_id: numeric
+          provider: views
+      group_by: false
+      title: 'File usage'
+      arguments:
+        fid:
+          id: fid
+          table: file_managed
+          field: fid
+          relationship: none
+          group_type: group
+          admin_label: ''
+          default_action: 'not found'
+          exception:
+            value: all
+            title_enable: false
+            title: All
+          title_enable: true
+          title: 'File usage information for %1'
+          default_argument_type: fixed
+          default_argument_options:
+            argument: ''
+          default_argument_skip_url: false
+          summary_options:
+            base_path: ''
+            count: true
+            items_per_page: 25
+            override: false
+          summary:
+            sort_order: asc
+            number_of_records: 0
+            format: default_summary
+          specify_validation: false
+          validate:
+            type: none
+            fail: 'not found'
+          validate_options: {  }
+          break_phrase: false
+          not: false
+          plugin_id: file_fid
+          provider: file
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          override: true
+          sticky: false
+          caption: ''
+          summary: ''
+          description: ''
+          columns:
+            entity_label: entity_label
+            type: type
+            module: module
+            count: count
+          info:
+            entity_label:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            type:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-medium
+            module:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            count:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+          default: entity_label
+          empty_table: true
+        provider: views
+      row:
+        type: fields
+        options: {  }
+        provider: views
+      relationships:
+        fid:
+          id: fid
+          table: file_managed
+          field: fid
+          relationship: none
+          group_type: group
+          admin_label: 'File usage'
+          required: true
+label: Files
+module: file
+id: files
+tag: default
+uuid: 3b4bcf6a-7669-4c47-9863-99413b0977b8
+langcode: en
+dependencies:
+  module:
+    - file
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.frontpage.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.frontpage.yml
new file mode 100644
index 0000000..ac67e2c
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.frontpage.yml
@@ -0,0 +1,244 @@
+base_field: nid
+base_table: node
+core: 8.x
+description: 'All content promoted to the front page.'
+status: true
+display:
+  default:
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+        provider: user
+      cache:
+        type: none
+        options: {  }
+        provider: views
+      empty:
+        area_text_custom:
+          admin_label: ''
+          content: 'No front page content has been created yet.'
+          empty: true
+          field: area_text_custom
+          group_type: group
+          id: area_text_custom
+          label: ''
+          relationship: none
+          table: views
+          tokenize: false
+          plugin_id: text
+          provider: views
+        node_listing_empty:
+          admin_label: ''
+          empty: true
+          field: node_listing_empty
+          group_type: group
+          id: node_listing_empty
+          label: ''
+          relationship: none
+          table: node
+          plugin_id: node_listing_empty
+          provider: node
+        title:
+          id: title
+          table: views
+          field: title
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          empty: true
+          title: 'Welcome to [site:name]'
+          plugin_id: title
+          provider: views
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+      filters:
+        promote:
+          admin_label: ''
+          expose:
+            description: ''
+            identifier: ''
+            label: ''
+            multiple: false
+            operator: ''
+            operator_id: ''
+            remember: false
+            remember_roles:
+              authenticated: authenticated
+            required: false
+            use_operator: false
+          exposed: false
+          field: promote
+          group: 1
+          group_info:
+            default_group: All
+            default_group_multiple: {  }
+            description: ''
+            group_items: {  }
+            identifier: ''
+            label: ''
+            multiple: false
+            optional: true
+            remember: false
+            widget: select
+          group_type: group
+          id: promote
+          is_grouped: false
+          operator: '='
+          relationship: none
+          table: node_field_data
+          value: true
+          plugin_id: boolean
+          provider: views
+        status:
+          expose:
+            operator: ''
+          field: status
+          group: 1
+          id: status
+          table: node_field_data
+          value: true
+          plugin_id: boolean
+          provider: views
+      pager:
+        type: full
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 20, 40, 60'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: '‹ previous'
+            next: 'next ›'
+            first: '« first'
+            last: 'last »'
+          quantity: 9
+        provider: views
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          slave: false
+          query_comment: false
+          query_tags: {  }
+        provider: views
+      row:
+        type: 'entity:node'
+        options:
+          build_mode: teaser
+          comments: false
+          links: true
+          view_mode: teaser
+        provider: views
+      sorts:
+        sticky:
+          admin_label: ''
+          expose:
+            label: ''
+          exposed: false
+          field: sticky
+          group_type: group
+          id: sticky
+          order: DESC
+          relationship: none
+          table: node_field_data
+          plugin_id: boolean
+          provider: views
+        created:
+          field: created
+          id: created
+          order: DESC
+          table: node_field_data
+          plugin_id: date
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          provider: views
+      style:
+        type: default
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          uses_fields: false
+      title: ''
+      header: {  }
+      footer: {  }
+      relationships: {  }
+      fields: {  }
+      arguments: {  }
+    display_plugin: default
+    display_title: Master
+    id: default
+    position: 0
+  page_1:
+    display_options:
+      path: node
+    display_plugin: page
+    display_title: Page
+    id: page_1
+    position: 1
+  feed_1:
+    display_plugin: feed
+    id: feed_1
+    display_title: Feed
+    position: 2
+    display_options:
+      sitename_title: true
+      path: rss.xml
+      displays:
+        page_1: page_1
+        default: ''
+      pager:
+        type: some
+        options:
+          items_per_page: 10
+          offset: 0
+        provider: views
+      style:
+        type: rss
+        options:
+          description: ''
+          grouping: {  }
+          uses_fields: false
+        provider: views
+      row:
+        type: node_rss
+        options:
+          relationship: none
+          item_length: default
+          links: false
+        provider: views
+label: Frontpage
+module: node
+id: frontpage
+tag: default
+uuid: a6d194e3-88cb-447d-8024-36ce3d70af53
+langcode: en
+dependencies:
+  module:
+    - node
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.glossary.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.glossary.yml
new file mode 100644
index 0000000..4328d00
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.glossary.yml
@@ -0,0 +1,386 @@
+base_field: nid
+base_table: node
+core: '8'
+description: 'All content, by letter.'
+status: false
+display:
+  default:
+    id: default
+    display_title: Master
+    display_plugin: default
+    position: 0
+    display_options:
+      query:
+        type: views_query
+        options:
+          query_comment: false
+          disable_sql_rewrite: false
+          distinct: false
+          slave: false
+          query_tags: {  }
+        provider: views
+      use_ajax: true
+      access:
+        type: none
+        options: {  }
+        provider: views
+      cache:
+        type: none
+        options: {  }
+        provider: views
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+        provider: views
+      pager:
+        type: mini
+        options:
+          items_per_page: 36
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 20, 40, 60'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
+        provider: views
+      fields:
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          link_to_node: true
+          plugin_id: node
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Title
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          provider: node
+        name:
+          id: name
+          table: users
+          field: name
+          label: Author
+          link_to_user: true
+          relationship: uid
+          plugin_id: user_name
+          group_type: group
+          admin_label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          overwrite_anonymous: false
+          anonymous_text: ''
+          format_username: true
+          provider: user
+        changed:
+          id: changed
+          table: node_field_data
+          field: changed
+          label: 'Last update'
+          date_format: long
+          plugin_id: date
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          custom_date_format: ''
+          timezone: ''
+          provider: views
+      arguments:
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          default_action: default
+          exception:
+            title_enable: true
+          default_argument_type: fixed
+          default_argument_options:
+            argument: a
+          summary:
+            format: default_summary
+          specify_validation: true
+          glossary: true
+          limit: 1
+          case: upper
+          path_case: lower
+          transform_dash: false
+          plugin_id: string
+          relationship: none
+          group_type: group
+          admin_label: ''
+          title_enable: false
+          title: ''
+          default_argument_skip_url: false
+          summary_options: {  }
+          validate:
+            type: none
+            fail: 'not found'
+          validate_options: {  }
+          break_phrase: false
+          provider: views
+      relationships:
+        uid:
+          id: uid
+          table: node_field_data
+          field: uid
+          plugin_id: standard
+          relationship: none
+          group_type: group
+          admin_label: author
+          required: false
+          provider: views
+      style:
+        type: table
+        options:
+          columns:
+            title: title
+            name: name
+            changed: changed
+          default: title
+          info:
+            title:
+              sortable: true
+              separator: ''
+            name:
+              sortable: true
+              separator: ''
+            changed:
+              sortable: true
+              separator: ''
+          override: true
+          sticky: false
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          uses_fields: false
+          order: asc
+          summary: ''
+          empty_table: false
+        provider: views
+      row:
+        type: fields
+        options:
+          inline: {  }
+          separator: ''
+          hide_empty: false
+          default_field_elements: true
+        provider: views
+      header: {  }
+      footer: {  }
+      empty: {  }
+      sorts: {  }
+  page_1:
+    id: page_1
+    display_title: Page
+    display_plugin: page
+    position: 1
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+      path: glossary
+      menu:
+        type: normal
+        title: Glossary
+        weight: 0
+  attachment_1:
+    id: attachment_1
+    display_title: Attachment
+    display_plugin: attachment
+    position: 2
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+        provider: views
+      pager:
+        type: none
+        options:
+          offset: 0
+          items_per_page: 0
+        provider: views
+      defaults:
+        arguments: false
+      arguments:
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          default_action: summary
+          exception:
+            title_enable: true
+          default_argument_type: fixed
+          default_argument_options:
+            argument: a
+          summary:
+            format: unformatted_summary
+          summary_options:
+            items_per_page: 25
+            inline: true
+            separator: ' | '
+          specify_validation: true
+          glossary: true
+          limit: 1
+          case: upper
+          path_case: lower
+          transform_dash: false
+          plugin_id: string
+          relationship: none
+          group_type: group
+          admin_label: ''
+          title_enable: false
+          title: ''
+          default_argument_skip_url: false
+          validate:
+            type: none
+            fail: 'not found'
+          validate_options: {  }
+          break_phrase: false
+          provider: views
+      displays:
+        default: default
+        page_1: page_1
+      inherit_arguments: false
+label: Glossary
+module: node
+id: glossary
+tag: default
+uuid: 9e1e6ca9-3baa-419c-9b48-72dd8a84f7f0
+langcode: en
+dependencies:
+  module:
+    - node
+    - user
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.taxonomy_term.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.taxonomy_term.yml
new file mode 100644
index 0000000..fc008b9
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.taxonomy_term.yml
@@ -0,0 +1,253 @@
+base_field: nid
+base_table: node
+core: '8'
+description: 'Content belonging to a certain taxonomy term.'
+status: false
+display:
+  default:
+    id: default
+    display_title: Master
+    display_plugin: default
+    position: 0
+    display_options:
+      query:
+        type: views_query
+        options:
+          query_comment: false
+          disable_sql_rewrite: false
+          distinct: false
+          slave: false
+          query_tags: {  }
+        provider: views
+      access:
+        type: none
+        options: {  }
+        provider: views
+      cache:
+        type: none
+        options: {  }
+        provider: views
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+        provider: views
+      pager:
+        type: mini
+        options:
+          items_per_page: 10
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 20, 40, 60'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: ‹‹
+            next: ››
+        provider: views
+      sorts:
+        sticky:
+          id: sticky
+          table: node_field_data
+          field: sticky
+          order: DESC
+          plugin_id: standard
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+          provider: views
+        created:
+          id: created
+          table: node_field_data
+          field: created
+          order: DESC
+          plugin_id: date
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          provider: views
+      arguments:
+        term_node_tid_depth:
+          id: term_node_tid_depth
+          table: node
+          field: term_node_tid_depth
+          default_action: 'not found'
+          exception:
+            value: all
+            title_enable: true
+            title: All
+          title_enable: true
+          title: '%1'
+          default_argument_type: fixed
+          summary:
+            format: default_summary
+          specify_validation: true
+          validate:
+            type: 'entity:taxonomy_term'
+            fail: 'not found'
+          validate_options:
+            access: true
+            operation: view
+            multiple: 1
+            bundles: {  }
+          depth: 0
+          break_phrase: true
+          plugin_id: taxonomy_index_tid_depth
+          relationship: none
+          group_type: group
+          admin_label: ''
+          default_argument_options:
+            argument: ''
+          default_argument_skip_url: false
+          summary_options:
+            base_path: ''
+            count: true
+            items_per_page: 25
+            override: false
+          provider: taxonomy
+        term_node_tid_depth_modifier:
+          id: term_node_tid_depth_modifier
+          table: node
+          field: term_node_tid_depth_modifier
+          exception:
+            title_enable: true
+          default_argument_type: fixed
+          summary:
+            format: default_summary
+          specify_validation: true
+          plugin_id: taxonomy_index_tid_depth_modifier
+          relationship: none
+          group_type: group
+          admin_label: ''
+          default_action: ignore
+          title_enable: false
+          title: ''
+          default_argument_options: {  }
+          default_argument_skip_url: false
+          summary_options: {  }
+          validate:
+            type: none
+            fail: 'not found'
+          validate_options: {  }
+          provider: taxonomy
+      filters:
+        status_extra:
+          id: status_extra
+          table: node_field_data
+          field: status_extra
+          group: 0
+          expose:
+            operator: '0'
+          plugin_id: node_status
+          provider: node
+      style:
+        type: default
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          uses_fields: false
+        provider: views
+      row:
+        type: 'entity:node'
+        options:
+          view_mode: teaser
+          links: true
+          comments: false
+        provider: views
+      header: {  }
+      footer: {  }
+      empty: {  }
+      relationships: {  }
+      fields: {  }
+  page_1:
+    id: page_1
+    display_title: Page
+    display_plugin: page
+    position: 1
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+        provider: views
+      path: taxonomy/term/%
+  feed_1:
+    id: feed_1
+    display_title: Feed
+    display_plugin: feed
+    position: 2
+    display_options:
+      query:
+        type: views_query
+        options: {  }
+        provider: views
+      pager:
+        type: full
+        options:
+          items_per_page: 15
+          offset: 0
+          id: 0
+          total_pages: 0
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 20, 40, 60'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          tags:
+            previous: '‹ previous'
+            next: 'next ›'
+            first: '« first'
+            last: 'last »'
+          quantity: 9
+        provider: views
+      path: taxonomy/term/%/%/feed
+      displays:
+        page: page
+        default: '0'
+      style:
+        type: rss
+        options:
+          description: ''
+          grouping: {  }
+          uses_fields: false
+        provider: views
+      row:
+        type: node_rss
+        options:
+          relationship: none
+          item_length: default
+          links: false
+        provider: views
+label: 'Taxonomy term'
+module: taxonomy
+id: taxonomy_term
+tag: default
+uuid: d8df0ea4-2ea9-43c2-8400-ed0be3e63aff
+langcode: en
+dependencies:
+  module:
+    - node
+    - taxonomy
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.user_admin_people.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.user_admin_people.yml
new file mode 100644
index 0000000..4635ab2
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.user_admin_people.yml
@@ -0,0 +1,962 @@
+base_field: uid
+base_table: users
+core: 8.x
+description: 'Find and manage people interacting with your site.'
+status: true
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'administer users'
+        provider: user
+      cache:
+        type: none
+        provider: views
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          slave: false
+          query_comment: false
+          query_tags: {  }
+        provider: views
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Filter
+          reset_button: true
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+        provider: views
+      pager:
+        type: full
+        options:
+          items_per_page: 50
+          offset: 0
+          id: 0
+          total_pages: 0
+          tags:
+            previous: '‹ previous'
+            next: 'next ›'
+            first: '« first'
+            last: 'last »'
+          expose:
+            items_per_page: false
+            items_per_page_label: 'Items per page'
+            items_per_page_options: '5, 10, 20, 40, 60'
+            items_per_page_options_all: false
+            items_per_page_options_all_label: '- All -'
+            offset: false
+            offset_label: Offset
+          quantity: 9
+        provider: views
+      style:
+        type: table
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          override: true
+          sticky: false
+          summary: ''
+          columns:
+            user_bulk_form: user_bulk_form
+            name: name
+            status: status
+            rid: rid
+            created: created
+            access: access
+            edit_node: edit_node
+            translation_link: translation_link
+            dropbutton: dropbutton
+          info:
+            user_bulk_form:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            name:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            status:
+              sortable: true
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            rid:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            created:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            access:
+              sortable: true
+              default_sort_order: desc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            edit_node:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: priority-low
+            translation_link:
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+            dropbutton:
+              sortable: false
+              default_sort_order: asc
+              align: ''
+              separator: ''
+              empty_column: false
+              responsive: ''
+          default: created
+          empty_table: true
+        provider: views
+      row:
+        type: fields
+        provider: views
+      fields:
+        user_bulk_form:
+          id: user_bulk_form
+          table: users
+          field: user_bulk_form
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Bulk update'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          plugin_id: user_bulk_form
+          provider: user
+        name:
+          id: name
+          table: users
+          field: name
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Username
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_user: true
+          overwrite_anonymous: false
+          anonymous_text: ''
+          format_username: true
+          plugin_id: user_name
+          provider: user
+        status:
+          id: status
+          table: users
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Status
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: active-blocked
+          type_custom_true: ''
+          type_custom_false: ''
+          not: '0'
+          plugin_id: boolean
+          provider: views
+        rid:
+          id: rid
+          table: users_roles
+          field: rid
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Roles
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          type: ul
+          separator: ', '
+          plugin_id: user_roles
+          provider: user
+        created:
+          id: created
+          table: users
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Member for'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          date_format: 'raw time ago'
+          custom_date_format: ''
+          timezone: ''
+          plugin_id: date
+          provider: views
+        access:
+          id: access
+          table: users
+          field: access
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Last access'
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          date_format: 'time ago'
+          custom_date_format: ''
+          timezone: ''
+          plugin_id: date
+          provider: views
+        edit_node:
+          id: edit_node
+          table: users
+          field: edit_node
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Link to edit user'
+          exclude: true
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          text: Edit
+          plugin_id: user_link_edit
+          provider: user
+        translation_link:
+          id: translation_link
+          table: users
+          field: translation_link
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: 'Translation link'
+          exclude: true
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          text: Translate
+          optional: true
+          plugin_id: content_translation_link
+          provider: content_translation
+        dropbutton:
+          id: dropbutton
+          table: views
+          field: dropbutton
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: Operations
+          exclude: false
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          fields:
+            edit_node: edit_node
+            translation_link: translation_link
+            user_bulk_form: '0'
+            name: '0'
+            status: '0'
+            rid: '0'
+            created: '0'
+            access: '0'
+          destination: true
+          plugin_id: dropbutton
+        mail:
+          id: mail
+          table: users
+          field: mail
+          relationship: none
+          group_type: group
+          admin_label: ''
+          label: ''
+          exclude: true
+          alter:
+            alter_text: false
+            text: ''
+            make_link: false
+            path: ''
+            absolute: false
+            external: false
+            replace_spaces: false
+            path_case: none
+            trim_whitespace: false
+            alt: ''
+            rel: ''
+            link_class: ''
+            prefix: ''
+            suffix: ''
+            target: ''
+            nl2br: false
+            max_length: ''
+            word_boundary: true
+            ellipsis: true
+            more_link: false
+            more_link_text: ''
+            more_link_path: ''
+            strip_tags: false
+            trim: false
+            preserve_tags: ''
+            html: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: false
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_empty: false
+          empty_zero: false
+          hide_alter_empty: true
+          link_to_user: false
+          plugin_id: user_mail
+      filters:
+        combine:
+          id: combine
+          table: views
+          field: combine
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: contains
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: combine_op
+            label: 'Name or e-mail contains'
+            description: ''
+            use_operator: false
+            operator: combine_op
+            identifier: user
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          fields:
+            name: name
+            mail: mail
+          plugin_id: combine
+        rid:
+          id: rid
+          table: users_roles
+          field: rid
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: or
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: rid_op
+            label: Role
+            description: ''
+            use_operator: false
+            operator: rid_op
+            identifier: role
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          reduce_duplicates: false
+          plugin_id: user_roles
+          provider: user
+        permission:
+          id: permission
+          table: users_roles
+          field: permission
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: or
+          value: {  }
+          group: 1
+          exposed: true
+          expose:
+            operator_id: permission_op
+            label: Permission
+            description: ''
+            use_operator: false
+            operator: permission_op
+            identifier: permission
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+            reduce: false
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          reduce_duplicates: false
+          plugin_id: user_permissions
+          provider: user
+        status:
+          id: status
+          table: users
+          field: status
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '='
+          value: true
+          group: 1
+          exposed: true
+          expose:
+            operator_id: ''
+            label: ''
+            description: ''
+            use_operator: false
+            operator: status_op
+            identifier: status
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: true
+          group_info:
+            label: Status
+            description: ''
+            identifier: status
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items:
+              1:
+                title: Active
+                operator: '='
+                value: '1'
+              2:
+                title: Blocked
+                operator: '='
+                value: '0'
+          plugin_id: boolean
+          provider: views
+        uid_raw:
+          id: uid_raw
+          table: users
+          field: uid_raw
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '!='
+          value:
+            min: ''
+            max: ''
+            value: '0'
+          group: 1
+          exposed: false
+          expose:
+            operator_id: '0'
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: numeric
+          provider: views
+      sorts:
+        created:
+          id: created
+          table: users
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          plugin_id: date
+          provider: views
+      title: People
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'No people available.'
+          plugin_id: text_custom
+          provider: views
+      use_more: false
+      use_more_always: false
+      use_more_text: more
+      display_comment: ''
+      use_ajax: false
+      hide_attachment_summary: false
+      show_admin_links: true
+      group_by: false
+      link_url: ''
+      link_display: page_1
+      css_class: ''
+      filter_groups:
+        operator: AND
+        groups:
+          1: AND
+  page_1:
+    display_plugin: page
+    id: page_1
+    display_title: Page
+    position: 1
+    display_options:
+      path: admin/people/list
+      show_admin_links: false
+      menu:
+        type: 'default tab'
+        title: List
+        description: 'Find and manage people interacting with your site.'
+        name: admin
+        weight: -10
+        context: ''
+      tab_options:
+        type: normal
+        title: People
+        description: 'Manage user accounts, roles, and permissions.'
+        name: admin
+        weight: 0
+      defaults:
+        show_admin_links: false
+label: People
+module: user
+id: user_admin_people
+tag: default
+uuid: 67683279-2247-49d0-a900-eaef092032b0
+langcode: und
+dependencies:
+  module:
+    - user
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.who_s_new.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.who_s_new.yml
new file mode 100644
index 0000000..f45ddba
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.who_s_new.yml
@@ -0,0 +1,177 @@
+base_field: uid
+base_table: users
+core: 8.x
+description: 'Shows a list of the newest user accounts on the site.'
+status: true
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access content'
+        provider: user
+      cache:
+        type: none
+        options: {  }
+        provider: views
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          slave: false
+          query_comment: false
+          query_tags: {  }
+        provider: views
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+        provider: views
+      pager:
+        type: some
+        options:
+          items_per_page: 5
+          offset: 0
+        provider: views
+      style:
+        type: html_list
+        provider: views
+      row:
+        type: fields
+        provider: views
+      fields:
+        name:
+          id: name
+          table: users
+          field: name
+          label: ''
+          plugin_id: user_name
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          link_to_user: true
+          overwrite_anonymous: false
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exclude: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          anonymous_text: ''
+          format_username: true
+      filters:
+        status:
+          value: true
+          table: users
+          field: status
+          id: status
+          expose:
+            operator: '0'
+          group: 1
+          plugin_id: boolean
+        access:
+          id: access
+          table: users
+          field: access
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '>'
+          value:
+            min: ''
+            max: ''
+            value: '1970-01-01'
+            type: date
+          group: 1
+          exposed: false
+          expose:
+            operator_id: '0'
+            label: ''
+            description: ''
+            use_operator: false
+            operator: ''
+            identifier: ''
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: date
+      sorts:
+        created:
+          id: created
+          table: users
+          field: created
+          relationship: none
+          group_type: group
+          admin_label: ''
+          order: DESC
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          plugin_id: date
+      title: 'Who''s new'
+      header: {  }
+      footer: {  }
+      empty: {  }
+      relationships: {  }
+      arguments: {  }
+  block_1:
+    display_plugin: block
+    id: block_1
+    display_title: 'Who''s new'
+    position: 1
+    display_options:
+      display_description: 'A list of new users'
+      block_description: 'Who''s new'
+      block_category: User
+label: 'Who''s new'
+module: user
+id: who_s_new
+tag: default
+uuid: 2756bcf8-a8ac-4fd8-a800-cf56e4d0ef49
+langcode: en
+dependencies:
+  module:
+    - user
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.who_s_online.yml b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.who_s_online.yml
new file mode 100644
index 0000000..f8c5028
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active/views.view.who_s_online.yml
@@ -0,0 +1,208 @@
+base_field: uid
+base_table: users
+core: 8.x
+description: 'Shows the user names of the most recently active users, and the total number of active users.'
+status: true
+display:
+  default:
+    display_plugin: default
+    id: default
+    display_title: Master
+    position: 0
+    display_options:
+      access:
+        type: perm
+        options:
+          perm: 'access user profiles'
+        provider: user
+      cache:
+        type: none
+        options: {  }
+        provider: views
+      query:
+        type: views_query
+        options:
+          disable_sql_rewrite: false
+          distinct: false
+          slave: false
+          query_comment: false
+          query_tags: {  }
+        provider: views
+      exposed_form:
+        type: basic
+        options:
+          submit_button: Apply
+          reset_button: false
+          reset_button_label: Reset
+          exposed_sorts_label: 'Sort by'
+          expose_sort_order: true
+          sort_asc_label: Asc
+          sort_desc_label: Desc
+        provider: views
+      pager:
+        type: some
+        options:
+          items_per_page: 10
+          offset: 0
+        provider: views
+      style:
+        type: html_list
+        options:
+          grouping: {  }
+          row_class: ''
+          default_row_class: true
+          row_class_special: true
+          type: ul
+          wrapper_class: item-list
+          class: ''
+        provider: views
+      row:
+        type: fields
+        provider: views
+      fields:
+        name:
+          id: name
+          table: users
+          field: name
+          label: ''
+          plugin_id: user_name
+          alter:
+            alter_text: false
+            make_link: false
+            absolute: false
+            trim: false
+            word_boundary: false
+            ellipsis: false
+            strip_tags: false
+            html: false
+          hide_empty: false
+          empty_zero: false
+          link_to_user: true
+          overwrite_anonymous: false
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exclude: false
+          element_type: ''
+          element_class: ''
+          element_label_type: ''
+          element_label_class: ''
+          element_label_colon: true
+          element_wrapper_type: ''
+          element_wrapper_class: ''
+          element_default_classes: true
+          empty: ''
+          hide_alter_empty: true
+          anonymous_text: ''
+          format_username: true
+      filters:
+        status:
+          value: true
+          table: users
+          field: status
+          id: status
+          expose:
+            operator: '0'
+          group: 1
+          plugin_id: boolean
+        access:
+          id: access
+          table: users
+          field: access
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: '>='
+          value:
+            min: ''
+            max: ''
+            value: '-15 minutes'
+            type: offset
+          group: 1
+          exposed: false
+          expose:
+            operator_id: access_op
+            label: 'Last access'
+            description: 'A user is considered online for this long after they have last viewed a page.'
+            use_operator: false
+            operator: access_op
+            identifier: access
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: date
+      sorts:
+        access:
+          id: access
+          table: users
+          field: access
+          order: DESC
+          relationship: none
+          group_type: group
+          admin_label: ''
+          exposed: false
+          expose:
+            label: ''
+          granularity: second
+          provider: views
+          plugin_id: date
+      title: 'Who''s online'
+      header:
+        result:
+          id: result
+          table: views
+          field: result
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: false
+          content: 'There are currently @total users online.'
+          plugin_id: result
+      footer: {  }
+      empty:
+        area_text_custom:
+          id: area_text_custom
+          table: views
+          field: area_text_custom
+          relationship: none
+          group_type: group
+          admin_label: ''
+          empty: true
+          tokenize: false
+          content: 'There are currently 0 users online.'
+          plugin_id: text_custom
+      relationships: {  }
+      arguments: {  }
+  who_s_online_block:
+    display_plugin: block
+    id: who_s_online_block
+    display_title: 'Who''s online'
+    position: 1
+    display_options:
+      block_description: 'Who''s online'
+      display_description: 'A list of users that are currently logged in.'
+label: 'Who''s online block'
+module: user
+id: who_s_online
+tag: default
+uuid: 40be6a5d-e25f-4e65-af23-35e6974a2ff8
+langcode: en
+dependencies:
+  module:
+    - user
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/staging/.htaccess b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/staging/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/staging/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/staging/README.txt b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/staging/README.txt
new file mode 100644
index 0000000..62d165b
--- /dev/null
+++ b/sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/staging/README.txt
@@ -0,0 +1 @@
+This directory contains configuration to be imported into your Drupal site. To make this configuration active, see admin/config/development/configuration/sync. For information about deploying configuration between servers, see http://drupal.org/documentation/administer/config
\ No newline at end of file
diff --git a/sites/default/files/languages/fr_IrEnAmyZxBD1h9LSMrSfViPgFemYnhJ22YcOoga8HRs.js b/sites/default/files/languages/fr_IrEnAmyZxBD1h9LSMrSfViPgFemYnhJ22YcOoga8HRs.js
new file mode 100644
index 0000000..82d8837
--- /dev/null
+++ b/sites/default/files/languages/fr_IrEnAmyZxBD1h9LSMrSfViPgFemYnhJ22YcOoga8HRs.js
@@ -0,0 +1 @@
+Drupal.locale = { pluralFormula: function ($n) { return Number(($n>1)); }, strings: {"":{"Changed":"Modifi\u00e9","An AJAX HTTP error occurred.":"Une erreur HTTP AJAX s\u0027est produite.","HTTP Result Code: !status":"Code de statut HTTP : !status","An AJAX HTTP request terminated abnormally.":"Une requ\u00eate HTTP AJAX s\u0027est termin\u00e9e anormalement.","Debugging information follows.":"Informations de d\u00e9bogage ci-dessous.","Path: !uri":"Chemin : !uri","StatusText: !statusText":"StatusText: !statusText","ResponseText: !responseText":"ResponseText : !responseText","ReadyState: !readyState":"ReadyState : !readyState","Please wait...":"Veuillez patienter...","This field is required.":"Ce champ est requis."}} };
\ No newline at end of file
diff --git a/sites/default/files/languages/fr_IrEnAmyZxBD1h9LSMrSfViPgFemYnhJ22YcOoga8HRs_0.js b/sites/default/files/languages/fr_IrEnAmyZxBD1h9LSMrSfViPgFemYnhJ22YcOoga8HRs_0.js
new file mode 100644
index 0000000..82d8837
--- /dev/null
+++ b/sites/default/files/languages/fr_IrEnAmyZxBD1h9LSMrSfViPgFemYnhJ22YcOoga8HRs_0.js
@@ -0,0 +1 @@
+Drupal.locale = { pluralFormula: function ($n) { return Number(($n>1)); }, strings: {"":{"Changed":"Modifi\u00e9","An AJAX HTTP error occurred.":"Une erreur HTTP AJAX s\u0027est produite.","HTTP Result Code: !status":"Code de statut HTTP : !status","An AJAX HTTP request terminated abnormally.":"Une requ\u00eate HTTP AJAX s\u0027est termin\u00e9e anormalement.","Debugging information follows.":"Informations de d\u00e9bogage ci-dessous.","Path: !uri":"Chemin : !uri","StatusText: !statusText":"StatusText: !statusText","ResponseText: !responseText":"ResponseText : !responseText","ReadyState: !readyState":"ReadyState : !readyState","Please wait...":"Veuillez patienter...","This field is required.":"Ce champ est requis."}} };
\ No newline at end of file
diff --git a/sites/default/files/languages/fr_IrEnAmyZxBD1h9LSMrSfViPgFemYnhJ22YcOoga8HRs_1.js b/sites/default/files/languages/fr_IrEnAmyZxBD1h9LSMrSfViPgFemYnhJ22YcOoga8HRs_1.js
new file mode 100644
index 0000000..82d8837
--- /dev/null
+++ b/sites/default/files/languages/fr_IrEnAmyZxBD1h9LSMrSfViPgFemYnhJ22YcOoga8HRs_1.js
@@ -0,0 +1 @@
+Drupal.locale = { pluralFormula: function ($n) { return Number(($n>1)); }, strings: {"":{"Changed":"Modifi\u00e9","An AJAX HTTP error occurred.":"Une erreur HTTP AJAX s\u0027est produite.","HTTP Result Code: !status":"Code de statut HTTP : !status","An AJAX HTTP request terminated abnormally.":"Une requ\u00eate HTTP AJAX s\u0027est termin\u00e9e anormalement.","Debugging information follows.":"Informations de d\u00e9bogage ci-dessous.","Path: !uri":"Chemin : !uri","StatusText: !statusText":"StatusText: !statusText","ResponseText: !responseText":"ResponseText : !responseText","ReadyState: !readyState":"ReadyState : !readyState","Please wait...":"Veuillez patienter...","This field is required.":"Ce champ est requis."}} };
\ No newline at end of file
diff --git a/sites/default/files/php/service_container/.htaccess b/sites/default/files/php/service_container/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/service_container/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/service_container/service_container_prod.php/.htaccess b/sites/default/files/php/service_container/service_container_prod.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/service_container/service_container_prod.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/service_container/service_container_prod.php/08c91b9644ce0adc3406f3ce738bfd82aea5ffad412057dcc30de0cc529a6745.php b/sites/default/files/php/service_container/service_container_prod.php/08c91b9644ce0adc3406f3ce738bfd82aea5ffad412057dcc30de0cc529a6745.php
new file mode 100644
index 0000000..4eea7af
--- /dev/null
+++ b/sites/default/files/php/service_container/service_container_prod.php/08c91b9644ce0adc3406f3ce738bfd82aea5ffad412057dcc30de0cc529a6745.php
@@ -0,0 +1,4961 @@
+<?php
+
+use Symfony\Component\DependencyInjection\ContainerInterface;
+use Symfony\Component\DependencyInjection\Container;
+use Symfony\Component\DependencyInjection\Exception\InactiveScopeException;
+use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
+use Symfony\Component\DependencyInjection\Exception\LogicException;
+use Symfony\Component\DependencyInjection\Exception\RuntimeException;
+use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;
+
+/**
+ * service_container_prod
+ *
+ * This class has been auto-generated
+ * by the Symfony Dependency Injection Component.
+ */
+class service_container_prod extends \Drupal\Core\DependencyInjection\Container
+{
+    /**
+     * Constructor.
+     */
+    public function __construct()
+    {
+        $this->parameters = $this->getDefaultParameters();
+
+        $this->services =
+        $this->scopedServices =
+        $this->scopeStacks = array();
+
+        $this->set('service_container', $this);
+
+        $this->scopes = array('request' => 'container');
+        $this->scopeChildren = array('request' => array());
+        $this->methodMap = array(
+            'accept_header_matcher' => 'getAcceptHeaderMatcherService',
+            'access_check.contact_personal' => 'getAccessCheck_ContactPersonalService',
+            'access_check.cron' => 'getAccessCheck_CronService',
+            'access_check.csrf' => 'getAccessCheck_CsrfService',
+            'access_check.custom' => 'getAccessCheck_CustomService',
+            'access_check.default' => 'getAccessCheck_DefaultService',
+            'access_check.edit.entity' => 'getAccessCheck_Edit_EntityService',
+            'access_check.edit.entity_field' => 'getAccessCheck_Edit_EntityFieldService',
+            'access_check.entity' => 'getAccessCheck_EntityService',
+            'access_check.entity_create' => 'getAccessCheck_EntityCreateService',
+            'access_check.field_ui.field_delete' => 'getAccessCheck_FieldUi_FieldDeleteService',
+            'access_check.field_ui.form_mode' => 'getAccessCheck_FieldUi_FormModeService',
+            'access_check.field_ui.view_mode' => 'getAccessCheck_FieldUi_ViewModeService',
+            'access_check.filter_disable' => 'getAccessCheck_FilterDisableService',
+            'access_check.node.add' => 'getAccessCheck_Node_AddService',
+            'access_check.node.revision' => 'getAccessCheck_Node_RevisionService',
+            'access_check.permission' => 'getAccessCheck_PermissionService',
+            'access_check.shortcut.link' => 'getAccessCheck_Shortcut_LinkService',
+            'access_check.shortcut.shortcut_set_edit' => 'getAccessCheck_Shortcut_ShortcutSetEditService',
+            'access_check.shortcut.shortcut_set_switch' => 'getAccessCheck_Shortcut_ShortcutSetSwitchService',
+            'access_check.theme' => 'getAccessCheck_ThemeService',
+            'access_check.update.manager_access' => 'getAccessCheck_Update_ManagerAccessService',
+            'access_check.user.login_status' => 'getAccessCheck_User_LoginStatusService',
+            'access_check.user.register' => 'getAccessCheck_User_RegisterService',
+            'access_check.user.role' => 'getAccessCheck_User_RoleService',
+            'access_manager' => 'getAccessManagerService',
+            'access_route_subscriber' => 'getAccessRouteSubscriberService',
+            'access_subscriber' => 'getAccessSubscriberService',
+            'ajax.subscriber' => 'getAjax_SubscriberService',
+            'ajax_response_renderer' => 'getAjaxResponseRendererService',
+            'ajax_response_subscriber' => 'getAjaxResponseSubscriberService',
+            'asset.css.collection_grouper' => 'getAsset_Css_CollectionGrouperService',
+            'asset.css.collection_optimizer' => 'getAsset_Css_CollectionOptimizerService',
+            'asset.css.collection_renderer' => 'getAsset_Css_CollectionRendererService',
+            'asset.css.dumper' => 'getAsset_Css_DumperService',
+            'asset.css.optimizer' => 'getAsset_Css_OptimizerService',
+            'asset.js.collection_grouper' => 'getAsset_Js_CollectionGrouperService',
+            'asset.js.collection_optimizer' => 'getAsset_Js_CollectionOptimizerService',
+            'asset.js.collection_renderer' => 'getAsset_Js_CollectionRendererService',
+            'asset.js.dumper' => 'getAsset_Js_DumperService',
+            'asset.js.optimizer' => 'getAsset_Js_OptimizerService',
+            'authentication' => 'getAuthenticationService',
+            'authentication.cookie' => 'getAuthentication_CookieService',
+            'authentication_subscriber' => 'getAuthenticationSubscriberService',
+            'batch.storage' => 'getBatch_StorageService',
+            'breadcrumb' => 'getBreadcrumbService',
+            'cache.backend.database' => 'getCache_Backend_DatabaseService',
+            'cache.bootstrap' => 'getCache_BootstrapService',
+            'cache.cache' => 'getCache_CacheService',
+            'cache.config' => 'getCache_ConfigService',
+            'cache.data' => 'getCache_DataService',
+            'cache.entity' => 'getCache_EntityService',
+            'cache.filter' => 'getCache_FilterService',
+            'cache.render' => 'getCache_RenderService',
+            'cache.toolbar' => 'getCache_ToolbarService',
+            'cache_context.language' => 'getCacheContext_LanguageService',
+            'cache_context.theme' => 'getCacheContext_ThemeService',
+            'cache_context.url' => 'getCacheContext_UrlService',
+            'cache_context.user' => 'getCacheContext_UserService',
+            'cache_context.user.roles' => 'getCacheContext_User_RolesService',
+            'cache_contexts' => 'getCacheContextsService',
+            'cache_factory' => 'getCacheFactoryService',
+            'class_loader' => 'getClassLoaderService',
+            'comment.breadcrumb' => 'getComment_BreadcrumbService',
+            'comment.manager' => 'getComment_ManagerService',
+            'comment.route_enhancer' => 'getComment_RouteEnhancerService',
+            'comment.statistics' => 'getComment_StatisticsService',
+            'config.cachedstorage.storage' => 'getConfig_Cachedstorage_StorageService',
+            'config.factory' => 'getConfig_FactoryService',
+            'config.installer' => 'getConfig_InstallerService',
+            'config.manager' => 'getConfig_ManagerService',
+            'config.storage' => 'getConfig_StorageService',
+            'config.storage.installer' => 'getConfig_Storage_InstallerService',
+            'config.storage.schema' => 'getConfig_Storage_SchemaService',
+            'config.storage.snapshot' => 'getConfig_Storage_SnapshotService',
+            'config.storage.staging' => 'getConfig_Storage_StagingService',
+            'config.typed' => 'getConfig_TypedService',
+            'config_import_subscriber' => 'getConfigImportSubscriberService',
+            'config_snapshot_subscriber' => 'getConfigSnapshotSubscriberService',
+            'container.namespaces' => 'getContainer_NamespacesService',
+            'content_negotiation' => 'getContentNegotiationService',
+            'content_type_header_matcher' => 'getContentTypeHeaderMatcherService',
+            'controller.ajax' => 'getController_AjaxService',
+            'controller.dialog' => 'getController_DialogService',
+            'controller.entityform' => 'getController_EntityformService',
+            'controller.page' => 'getController_PageService',
+            'controller_resolver' => 'getControllerResolverService',
+            'country_manager' => 'getCountryManagerService',
+            'cron' => 'getCronService',
+            'csrf_token' => 'getCsrfTokenService',
+            'current_user' => 'getCurrentUserService',
+            'database' => 'getDatabaseService',
+            'database.slave' => 'getDatabase_SlaveService',
+            'date' => 'getDateService',
+            'edit.editor.selector' => 'getEdit_Editor_SelectorService',
+            'edit.metadata.generator' => 'getEdit_Metadata_GeneratorService',
+            'entity.form_builder' => 'getEntity_FormBuilderService',
+            'entity.manager' => 'getEntity_ManagerService',
+            'entity.query' => 'getEntity_QueryService',
+            'entity.query.config' => 'getEntity_Query_ConfigService',
+            'entity.query.sql' => 'getEntity_Query_SqlService',
+            'entity_reference.autocomplete' => 'getEntityReference_AutocompleteService',
+            'event_dispatcher' => 'getEventDispatcherService',
+            'exception_controller' => 'getExceptionControllerService',
+            'exception_listener' => 'getExceptionListenerService',
+            'feed.bridge.reader' => 'getFeed_Bridge_ReaderService',
+            'feed.bridge.writer' => 'getFeed_Bridge_WriterService',
+            'feed.reader.atomentry' => 'getFeed_Reader_AtomentryService',
+            'feed.reader.atomfeed' => 'getFeed_Reader_AtomfeedService',
+            'feed.reader.contententry' => 'getFeed_Reader_ContententryService',
+            'feed.reader.dublincoreentry' => 'getFeed_Reader_DublincoreentryService',
+            'feed.reader.dublincorefeed' => 'getFeed_Reader_DublincorefeedService',
+            'feed.reader.podcastentry' => 'getFeed_Reader_PodcastentryService',
+            'feed.reader.podcastfeed' => 'getFeed_Reader_PodcastfeedService',
+            'feed.reader.slashentry' => 'getFeed_Reader_SlashentryService',
+            'feed.reader.threadentry' => 'getFeed_Reader_ThreadentryService',
+            'feed.reader.wellformedwebentry' => 'getFeed_Reader_WellformedwebentryService',
+            'feed.writer.atomrendererfeed' => 'getFeed_Writer_AtomrendererfeedService',
+            'feed.writer.contentrendererentry' => 'getFeed_Writer_ContentrendererentryService',
+            'feed.writer.dublincorerendererentry' => 'getFeed_Writer_DublincorerendererentryService',
+            'feed.writer.dublincorerendererfeed' => 'getFeed_Writer_DublincorerendererfeedService',
+            'feed.writer.itunesentry' => 'getFeed_Writer_ItunesentryService',
+            'feed.writer.itunesfeed' => 'getFeed_Writer_ItunesfeedService',
+            'feed.writer.itunesrendererentry' => 'getFeed_Writer_ItunesrendererentryService',
+            'feed.writer.itunesrendererfeed' => 'getFeed_Writer_ItunesrendererfeedService',
+            'feed.writer.slashrendererentry' => 'getFeed_Writer_SlashrendererentryService',
+            'feed.writer.threadingrendererentry' => 'getFeed_Writer_ThreadingrendererentryService',
+            'feed.writer.wellformedwebrendererentry' => 'getFeed_Writer_WellformedwebrendererentryService',
+            'field.info' => 'getField_InfoService',
+            'field_ui.subscriber' => 'getFieldUi_SubscriberService',
+            'file.usage' => 'getFile_UsageService',
+            'finish_response_subscriber' => 'getFinishResponseSubscriberService',
+            'flood' => 'getFloodService',
+            'form_builder' => 'getFormBuilderService',
+            'html_fragment_renderer' => 'getHtmlFragmentRendererService',
+            'html_page_renderer' => 'getHtmlPageRendererService',
+            'html_view_subscriber' => 'getHtmlViewSubscriberService',
+            'http_client_simpletest_subscriber' => 'getHttpClientSimpletestSubscriberService',
+            'http_default_client' => 'getHttpDefaultClientService',
+            'http_kernel' => 'getHttpKernelService',
+            'image.factory' => 'getImage_FactoryService',
+            'image.toolkit.manager' => 'getImage_Toolkit_ManagerService',
+            'info_parser' => 'getInfoParserService',
+            'kernel' => 'getKernelService',
+            'kernel_destruct_subscriber' => 'getKernelDestructSubscriberService',
+            'keyvalue' => 'getKeyvalueService',
+            'keyvalue.database' => 'getKeyvalue_DatabaseService',
+            'keyvalue.expirable' => 'getKeyvalue_ExpirableService',
+            'keyvalue.expirable.database' => 'getKeyvalue_Expirable_DatabaseService',
+            'language.config_factory_override' => 'getLanguage_ConfigFactoryOverrideService',
+            'language.config_subscriber' => 'getLanguage_ConfigSubscriberService',
+            'language.default' => 'getLanguage_DefaultService',
+            'language_manager' => 'getLanguageManagerService',
+            'language_negotiator' => 'getLanguageNegotiatorService',
+            'legacy_request_subscriber' => 'getLegacyRequestSubscriberService',
+            'link_generator' => 'getLinkGeneratorService',
+            'locale.config.typed' => 'getLocale_Config_TypedService',
+            'locale.storage' => 'getLocale_StorageService',
+            'lock' => 'getLockService',
+            'maintenance_mode_subscriber' => 'getMaintenanceModeSubscriberService',
+            'menu_link.tree' => 'getMenuLink_TreeService',
+            'module_handler' => 'getModuleHandlerService',
+            'node.admin_path.route_subscriber' => 'getNode_AdminPath_RouteSubscriberService',
+            'node.grant_storage' => 'getNode_GrantStorageService',
+            'paramconverter.configentity_admin' => 'getParamconverter_ConfigentityAdminService',
+            'paramconverter.entity' => 'getParamconverter_EntityService',
+            'paramconverter.views_ui' => 'getParamconverter_ViewsUiService',
+            'paramconverter_manager' => 'getParamconverterManagerService',
+            'paramconverter_subscriber' => 'getParamconverterSubscriberService',
+            'password' => 'getPasswordService',
+            'path.alias_manager' => 'getPath_AliasManagerService',
+            'path.alias_manager.cached' => 'getPath_AliasManager_CachedService',
+            'path.alias_whitelist' => 'getPath_AliasWhitelistService',
+            'path.crud' => 'getPath_CrudService',
+            'path_processor.files' => 'getPathProcessor_FilesService',
+            'path_processor.image_styles' => 'getPathProcessor_ImageStylesService',
+            'path_processor_alias' => 'getPathProcessorAliasService',
+            'path_processor_decode' => 'getPathProcessorDecodeService',
+            'path_processor_front' => 'getPathProcessorFrontService',
+            'path_processor_manager' => 'getPathProcessorManagerService',
+            'path_subscriber' => 'getPathSubscriberService',
+            'plugin.cache_clearer' => 'getPlugin_CacheClearerService',
+            'plugin.manager.action' => 'getPlugin_Manager_ActionService',
+            'plugin.manager.archiver' => 'getPlugin_Manager_ArchiverService',
+            'plugin.manager.block' => 'getPlugin_Manager_BlockService',
+            'plugin.manager.ckeditor.plugin' => 'getPlugin_Manager_Ckeditor_PluginService',
+            'plugin.manager.condition' => 'getPlugin_Manager_ConditionService',
+            'plugin.manager.edit.editor' => 'getPlugin_Manager_Edit_EditorService',
+            'plugin.manager.editor' => 'getPlugin_Manager_EditorService',
+            'plugin.manager.entity_reference.selection' => 'getPlugin_Manager_EntityReference_SelectionService',
+            'plugin.manager.field.field_type' => 'getPlugin_Manager_Field_FieldTypeService',
+            'plugin.manager.field.formatter' => 'getPlugin_Manager_Field_FormatterService',
+            'plugin.manager.field.widget' => 'getPlugin_Manager_Field_WidgetService',
+            'plugin.manager.filter' => 'getPlugin_Manager_FilterService',
+            'plugin.manager.image.effect' => 'getPlugin_Manager_Image_EffectService',
+            'plugin.manager.language_negotiation_method' => 'getPlugin_Manager_LanguageNegotiationMethodService',
+            'plugin.manager.mail' => 'getPlugin_Manager_MailService',
+            'plugin.manager.menu.contextual_link' => 'getPlugin_Manager_Menu_ContextualLinkService',
+            'plugin.manager.menu.local_action' => 'getPlugin_Manager_Menu_LocalActionService',
+            'plugin.manager.menu.local_task' => 'getPlugin_Manager_Menu_LocalTaskService',
+            'plugin.manager.search' => 'getPlugin_Manager_SearchService',
+            'plugin.manager.tour.tip' => 'getPlugin_Manager_Tour_TipService',
+            'plugin.manager.views.access' => 'getPlugin_Manager_Views_AccessService',
+            'plugin.manager.views.area' => 'getPlugin_Manager_Views_AreaService',
+            'plugin.manager.views.argument' => 'getPlugin_Manager_Views_ArgumentService',
+            'plugin.manager.views.argument_default' => 'getPlugin_Manager_Views_ArgumentDefaultService',
+            'plugin.manager.views.argument_validator' => 'getPlugin_Manager_Views_ArgumentValidatorService',
+            'plugin.manager.views.cache' => 'getPlugin_Manager_Views_CacheService',
+            'plugin.manager.views.display' => 'getPlugin_Manager_Views_DisplayService',
+            'plugin.manager.views.display_extender' => 'getPlugin_Manager_Views_DisplayExtenderService',
+            'plugin.manager.views.exposed_form' => 'getPlugin_Manager_Views_ExposedFormService',
+            'plugin.manager.views.field' => 'getPlugin_Manager_Views_FieldService',
+            'plugin.manager.views.filter' => 'getPlugin_Manager_Views_FilterService',
+            'plugin.manager.views.join' => 'getPlugin_Manager_Views_JoinService',
+            'plugin.manager.views.pager' => 'getPlugin_Manager_Views_PagerService',
+            'plugin.manager.views.query' => 'getPlugin_Manager_Views_QueryService',
+            'plugin.manager.views.relationship' => 'getPlugin_Manager_Views_RelationshipService',
+            'plugin.manager.views.row' => 'getPlugin_Manager_Views_RowService',
+            'plugin.manager.views.sort' => 'getPlugin_Manager_Views_SortService',
+            'plugin.manager.views.style' => 'getPlugin_Manager_Views_StyleService',
+            'plugin.manager.views.wizard' => 'getPlugin_Manager_Views_WizardService',
+            'private_key' => 'getPrivateKeyService',
+            'queue' => 'getQueueService',
+            'queue.database' => 'getQueue_DatabaseService',
+            'redirect_response_subscriber' => 'getRedirectResponseSubscriberService',
+            'request' => 'getRequestService',
+            'request_close_subscriber' => 'getRequestCloseSubscriberService',
+            'request_stack' => 'getRequestStackService',
+            'reverse_proxy_subscriber' => 'getReverseProxySubscriberService',
+            'route_content_controller_subscriber' => 'getRouteContentControllerSubscriberService',
+            'route_content_form_controller_subscriber' => 'getRouteContentFormControllerSubscriberService',
+            'route_enhancer.authentication' => 'getRouteEnhancer_AuthenticationService',
+            'route_enhancer.entity' => 'getRouteEnhancer_EntityService',
+            'route_enhancer.param_conversion' => 'getRouteEnhancer_ParamConversionService',
+            'route_http_method_subscriber' => 'getRouteHttpMethodSubscriberService',
+            'route_processor_csrf' => 'getRouteProcessorCsrfService',
+            'route_processor_manager' => 'getRouteProcessorManagerService',
+            'route_special_attributes_subscriber' => 'getRouteSpecialAttributesSubscriberService',
+            'route_subscriber.entity' => 'getRouteSubscriber_EntityService',
+            'route_subscriber.module' => 'getRouteSubscriber_ModuleService',
+            'router' => 'getRouterService',
+            'router.admin_context' => 'getRouter_AdminContextService',
+            'router.builder' => 'getRouter_BuilderService',
+            'router.dumper' => 'getRouter_DumperService',
+            'router.dynamic' => 'getRouter_DynamicService',
+            'router.matcher' => 'getRouter_MatcherService',
+            'router.matcher.final_matcher' => 'getRouter_Matcher_FinalMatcherService',
+            'router.path_roots_subscriber' => 'getRouter_PathRootsSubscriberService',
+            'router.rebuild_subscriber' => 'getRouter_RebuildSubscriberService',
+            'router.request_context' => 'getRouter_RequestContextService',
+            'router.route_preloader' => 'getRouter_RoutePreloaderService',
+            'router.route_provider' => 'getRouter_RouteProviderService',
+            'router_listener' => 'getRouterListenerService',
+            'search.search_page_repository' => 'getSearch_SearchPageRepositoryService',
+            'service_container' => 'getServiceContainerService',
+            'settings' => 'getSettingsService',
+            'slave_database_ignore__subscriber' => 'getSlaveDatabaseIgnoreSubscriberService',
+            'state' => 'getStateService',
+            'string_translation' => 'getStringTranslationService',
+            'string_translator.custom_strings' => 'getStringTranslator_CustomStringsService',
+            'string_translator.locale.lookup' => 'getStringTranslator_Locale_LookupService',
+            'system.admin_path.route_subscriber' => 'getSystem_AdminPath_RouteSubscriberService',
+            'system.automatic_cron' => 'getSystem_AutomaticCronService',
+            'system.breadcrumb.default' => 'getSystem_Breadcrumb_DefaultService',
+            'system.config_subscriber' => 'getSystem_ConfigSubscriberService',
+            'system.manager' => 'getSystem_ManagerService',
+            'taxonomy_term.breadcrumb' => 'getTaxonomyTerm_BreadcrumbService',
+            'theme.negotiator' => 'getTheme_NegotiatorService',
+            'theme.negotiator.admin_theme' => 'getTheme_Negotiator_AdminThemeService',
+            'theme.negotiator.ajax_base_page' => 'getTheme_Negotiator_AjaxBasePageService',
+            'theme.negotiator.block.admin_demo' => 'getTheme_Negotiator_Block_AdminDemoService',
+            'theme.negotiator.default' => 'getTheme_Negotiator_DefaultService',
+            'theme.negotiator.system.batch' => 'getTheme_Negotiator_System_BatchService',
+            'theme.registry' => 'getTheme_RegistryService',
+            'theme_handler' => 'getThemeHandlerService',
+            'title_resolver' => 'getTitleResolverService',
+            'token' => 'getTokenService',
+            'transliteration' => 'getTransliterationService',
+            'twig' => 'getTwigService',
+            'twig.loader.filesystem' => 'getTwig_Loader_FilesystemService',
+            'typed_data_manager' => 'getTypedDataManagerService',
+            'update.fetcher' => 'getUpdate_FetcherService',
+            'update.manager' => 'getUpdate_ManagerService',
+            'update.processor' => 'getUpdate_ProcessorService',
+            'url_generator' => 'getUrlGeneratorService',
+            'user.auth' => 'getUser_AuthService',
+            'user.autocomplete' => 'getUser_AutocompleteService',
+            'user.data' => 'getUser_DataService',
+            'user.permissions_hash' => 'getUser_PermissionsHashService',
+            'user.tempstore' => 'getUser_TempstoreService',
+            'user_maintenance_mode_subscriber' => 'getUserMaintenanceModeSubscriberService',
+            'uuid' => 'getUuidService',
+            'validation.constraint' => 'getValidation_ConstraintService',
+            'view_subscriber' => 'getViewSubscriberService',
+            'views.analyzer' => 'getViews_AnalyzerService',
+            'views.executable' => 'getViews_ExecutableService',
+            'views.exposed_form_cache' => 'getViews_ExposedFormCacheService',
+            'views.route_access_check' => 'getViews_RouteAccessCheckService',
+            'views.route_subscriber' => 'getViews_RouteSubscriberService',
+            'views.views_data' => 'getViews_ViewsDataService',
+            'views.views_data_helper' => 'getViews_ViewsDataHelperService',
+        );
+        $this->aliases = array(
+            'twig.loader' => 'twig.loader.filesystem',
+        );
+    }
+
+    /**
+     * Gets the 'accept_header_matcher' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Routing\AcceptHeaderMatcher A Drupal\Core\Routing\AcceptHeaderMatcher instance.
+     */
+    protected function getAcceptHeaderMatcherService()
+    {
+        return $this->services['accept_header_matcher'] = new \Drupal\Core\Routing\AcceptHeaderMatcher($this->get('content_negotiation'));
+    }
+
+    /**
+     * Gets the 'access_check.contact_personal' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\contact\Access\ContactPageAccess A Drupal\contact\Access\ContactPageAccess instance.
+     */
+    protected function getAccessCheck_ContactPersonalService()
+    {
+        return $this->services['access_check.contact_personal'] = new \Drupal\contact\Access\ContactPageAccess($this->get('config.factory'), $this->get('user.data'));
+    }
+
+    /**
+     * Gets the 'access_check.cron' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\system\Access\CronAccessCheck A Drupal\system\Access\CronAccessCheck instance.
+     */
+    protected function getAccessCheck_CronService()
+    {
+        return $this->services['access_check.cron'] = new \Drupal\system\Access\CronAccessCheck();
+    }
+
+    /**
+     * Gets the 'access_check.csrf' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Access\CsrfAccessCheck A Drupal\Core\Access\CsrfAccessCheck instance.
+     */
+    protected function getAccessCheck_CsrfService()
+    {
+        return $this->services['access_check.csrf'] = new \Drupal\Core\Access\CsrfAccessCheck($this->get('csrf_token'));
+    }
+
+    /**
+     * Gets the 'access_check.custom' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Access\CustomAccessCheck A Drupal\Core\Access\CustomAccessCheck instance.
+     */
+    protected function getAccessCheck_CustomService()
+    {
+        return $this->services['access_check.custom'] = new \Drupal\Core\Access\CustomAccessCheck($this->get('controller_resolver'));
+    }
+
+    /**
+     * Gets the 'access_check.default' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Access\DefaultAccessCheck A Drupal\Core\Access\DefaultAccessCheck instance.
+     */
+    protected function getAccessCheck_DefaultService()
+    {
+        return $this->services['access_check.default'] = new \Drupal\Core\Access\DefaultAccessCheck();
+    }
+
+    /**
+     * Gets the 'access_check.edit.entity' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\edit\Access\EditEntityAccessCheck A Drupal\edit\Access\EditEntityAccessCheck instance.
+     */
+    protected function getAccessCheck_Edit_EntityService()
+    {
+        return $this->services['access_check.edit.entity'] = new \Drupal\edit\Access\EditEntityAccessCheck($this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'access_check.edit.entity_field' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\edit\Access\EditEntityFieldAccessCheck A Drupal\edit\Access\EditEntityFieldAccessCheck instance.
+     */
+    protected function getAccessCheck_Edit_EntityFieldService()
+    {
+        return $this->services['access_check.edit.entity_field'] = new \Drupal\edit\Access\EditEntityFieldAccessCheck($this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'access_check.entity' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Entity\EntityAccessCheck A Drupal\Core\Entity\EntityAccessCheck instance.
+     */
+    protected function getAccessCheck_EntityService()
+    {
+        return $this->services['access_check.entity'] = new \Drupal\Core\Entity\EntityAccessCheck();
+    }
+
+    /**
+     * Gets the 'access_check.entity_create' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Entity\EntityCreateAccessCheck A Drupal\Core\Entity\EntityCreateAccessCheck instance.
+     */
+    protected function getAccessCheck_EntityCreateService()
+    {
+        return $this->services['access_check.entity_create'] = new \Drupal\Core\Entity\EntityCreateAccessCheck($this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'access_check.field_ui.field_delete' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\field_ui\Access\FieldDeleteAccessCheck A Drupal\field_ui\Access\FieldDeleteAccessCheck instance.
+     */
+    protected function getAccessCheck_FieldUi_FieldDeleteService()
+    {
+        return $this->services['access_check.field_ui.field_delete'] = new \Drupal\field_ui\Access\FieldDeleteAccessCheck();
+    }
+
+    /**
+     * Gets the 'access_check.field_ui.form_mode' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\field_ui\Access\FormModeAccessCheck A Drupal\field_ui\Access\FormModeAccessCheck instance.
+     */
+    protected function getAccessCheck_FieldUi_FormModeService()
+    {
+        return $this->services['access_check.field_ui.form_mode'] = new \Drupal\field_ui\Access\FormModeAccessCheck($this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'access_check.field_ui.view_mode' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\field_ui\Access\ViewModeAccessCheck A Drupal\field_ui\Access\ViewModeAccessCheck instance.
+     */
+    protected function getAccessCheck_FieldUi_ViewModeService()
+    {
+        return $this->services['access_check.field_ui.view_mode'] = new \Drupal\field_ui\Access\ViewModeAccessCheck($this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'access_check.filter_disable' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\filter\Access\FormatDisableCheck A Drupal\filter\Access\FormatDisableCheck instance.
+     */
+    protected function getAccessCheck_FilterDisableService()
+    {
+        return $this->services['access_check.filter_disable'] = new \Drupal\filter\Access\FormatDisableCheck();
+    }
+
+    /**
+     * Gets the 'access_check.node.add' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\node\Access\NodeAddAccessCheck A Drupal\node\Access\NodeAddAccessCheck instance.
+     */
+    protected function getAccessCheck_Node_AddService()
+    {
+        return $this->services['access_check.node.add'] = new \Drupal\node\Access\NodeAddAccessCheck($this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'access_check.node.revision' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\node\Access\NodeRevisionAccessCheck A Drupal\node\Access\NodeRevisionAccessCheck instance.
+     */
+    protected function getAccessCheck_Node_RevisionService()
+    {
+        return $this->services['access_check.node.revision'] = new \Drupal\node\Access\NodeRevisionAccessCheck($this->get('entity.manager'), $this->get('database'));
+    }
+
+    /**
+     * Gets the 'access_check.permission' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\Access\PermissionAccessCheck A Drupal\user\Access\PermissionAccessCheck instance.
+     */
+    protected function getAccessCheck_PermissionService()
+    {
+        return $this->services['access_check.permission'] = new \Drupal\user\Access\PermissionAccessCheck();
+    }
+
+    /**
+     * Gets the 'access_check.shortcut.link' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\shortcut\Access\LinkAccessCheck A Drupal\shortcut\Access\LinkAccessCheck instance.
+     */
+    protected function getAccessCheck_Shortcut_LinkService()
+    {
+        return $this->services['access_check.shortcut.link'] = new \Drupal\shortcut\Access\LinkAccessCheck();
+    }
+
+    /**
+     * Gets the 'access_check.shortcut.shortcut_set_edit' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\shortcut\Access\ShortcutSetEditAccessCheck A Drupal\shortcut\Access\ShortcutSetEditAccessCheck instance.
+     */
+    protected function getAccessCheck_Shortcut_ShortcutSetEditService()
+    {
+        return $this->services['access_check.shortcut.shortcut_set_edit'] = new \Drupal\shortcut\Access\ShortcutSetEditAccessCheck();
+    }
+
+    /**
+     * Gets the 'access_check.shortcut.shortcut_set_switch' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\shortcut\Access\ShortcutSetSwitchAccessCheck A Drupal\shortcut\Access\ShortcutSetSwitchAccessCheck instance.
+     */
+    protected function getAccessCheck_Shortcut_ShortcutSetSwitchService()
+    {
+        return $this->services['access_check.shortcut.shortcut_set_switch'] = new \Drupal\shortcut\Access\ShortcutSetSwitchAccessCheck();
+    }
+
+    /**
+     * Gets the 'access_check.theme' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Theme\ThemeAccessCheck A Drupal\Core\Theme\ThemeAccessCheck instance.
+     */
+    protected function getAccessCheck_ThemeService()
+    {
+        return $this->services['access_check.theme'] = new \Drupal\Core\Theme\ThemeAccessCheck();
+    }
+
+    /**
+     * Gets the 'access_check.update.manager_access' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\update\Access\UpdateManagerAccessCheck A Drupal\update\Access\UpdateManagerAccessCheck instance.
+     */
+    protected function getAccessCheck_Update_ManagerAccessService()
+    {
+        return $this->services['access_check.update.manager_access'] = new \Drupal\update\Access\UpdateManagerAccessCheck($this->get('settings'));
+    }
+
+    /**
+     * Gets the 'access_check.user.login_status' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\Access\LoginStatusCheck A Drupal\user\Access\LoginStatusCheck instance.
+     */
+    protected function getAccessCheck_User_LoginStatusService()
+    {
+        return $this->services['access_check.user.login_status'] = new \Drupal\user\Access\LoginStatusCheck();
+    }
+
+    /**
+     * Gets the 'access_check.user.register' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\Access\RegisterAccessCheck A Drupal\user\Access\RegisterAccessCheck instance.
+     */
+    protected function getAccessCheck_User_RegisterService()
+    {
+        return $this->services['access_check.user.register'] = new \Drupal\user\Access\RegisterAccessCheck();
+    }
+
+    /**
+     * Gets the 'access_check.user.role' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\Access\RoleAccessCheck A Drupal\user\Access\RoleAccessCheck instance.
+     */
+    protected function getAccessCheck_User_RoleService()
+    {
+        return $this->services['access_check.user.role'] = new \Drupal\user\Access\RoleAccessCheck();
+    }
+
+    /**
+     * Gets the 'access_manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Access\AccessManager A Drupal\Core\Access\AccessManager instance.
+     */
+    protected function getAccessManagerService()
+    {
+        $this->services['access_manager'] = $instance = new \Drupal\Core\Access\AccessManager($this->get('router.route_provider'), $this->get('url_generator'), $this->get('paramconverter_manager'));
+
+        $instance->setContainer($this);
+        if ($this->has('request')) {
+            $instance->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));
+        }
+        $instance->addCheckService('access_check.default', array(0 => '_access'));
+        $instance->addCheckService('access_check.entity', array(0 => '_entity_access'));
+        $instance->addCheckService('access_check.entity_create', array(0 => '_entity_create_access'));
+        $instance->addCheckService('access_check.theme', array(0 => '_access_theme'));
+        $instance->addCheckService('access_check.custom', array(0 => '_custom_access'));
+        $instance->addCheckService('access_check.csrf', array(0 => '_csrf_token'));
+        $instance->addCheckService('access_check.contact_personal', array(0 => '_access_contact_personal_tab'));
+        $instance->addCheckService('access_check.edit.entity_field', array(0 => '_access_edit_entity_field'));
+        $instance->addCheckService('access_check.edit.entity', array(0 => '_access_edit_entity'));
+        $instance->addCheckService('access_check.field_ui.field_delete', array(0 => '_field_ui_field_delete_access'));
+        $instance->addCheckService('access_check.field_ui.view_mode', array(0 => '_field_ui_view_mode_access'));
+        $instance->addCheckService('access_check.field_ui.form_mode', array(0 => '_field_ui_form_mode_access'));
+        $instance->addCheckService('access_check.filter_disable', array(0 => '_filter_disable_format_access'));
+        $instance->addCheckService('access_check.node.revision', array(0 => '_access_node_revision'));
+        $instance->addCheckService('access_check.node.add', array(0 => '_node_add_access'));
+        $instance->addCheckService('access_check.shortcut.link', array(0 => '_access_shortcut_link'));
+        $instance->addCheckService('access_check.shortcut.shortcut_set_edit', array(0 => '_access_shortcut_set_edit'));
+        $instance->addCheckService('access_check.shortcut.shortcut_set_switch', array(0 => '_access_shortcut_set_switch'));
+        $instance->addCheckService('access_check.cron', array(0 => '_access_system_cron'));
+        $instance->addCheckService('access_check.update.manager_access', array(0 => '_access_update_manager'));
+        $instance->addCheckService('access_check.permission', array(0 => '_permission'));
+        $instance->addCheckService('access_check.user.register', array(0 => '_access_user_register'));
+        $instance->addCheckService('access_check.user.role', array(0 => '_role'));
+        $instance->addCheckService('access_check.user.login_status', array(0 => '_user_is_logged_in'));
+        $instance->addCheckService('views.route_access_check', array());
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'access_route_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\AccessRouteSubscriber A Drupal\Core\EventSubscriber\AccessRouteSubscriber instance.
+     */
+    protected function getAccessRouteSubscriberService()
+    {
+        return $this->services['access_route_subscriber'] = new \Drupal\Core\EventSubscriber\AccessRouteSubscriber($this->get('access_manager'));
+    }
+
+    /**
+     * Gets the 'access_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\AccessSubscriber A Drupal\Core\EventSubscriber\AccessSubscriber instance.
+     */
+    protected function getAccessSubscriberService()
+    {
+        $a = $this->get('current_user');
+
+        $this->services['access_subscriber'] = $instance = new \Drupal\Core\EventSubscriber\AccessSubscriber($this->get('access_manager'), $a);
+
+        if ($this->has('current_user')) {
+            $instance->setCurrentUser($a);
+        }
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'ajax.subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Ajax\AjaxSubscriber A Drupal\Core\Ajax\AjaxSubscriber instance.
+     */
+    protected function getAjax_SubscriberService()
+    {
+        return $this->services['ajax.subscriber'] = new \Drupal\Core\Ajax\AjaxSubscriber();
+    }
+
+    /**
+     * Gets the 'ajax_response_renderer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Ajax\AjaxResponseRenderer A Drupal\Core\Ajax\AjaxResponseRenderer instance.
+     */
+    protected function getAjaxResponseRendererService()
+    {
+        return $this->services['ajax_response_renderer'] = new \Drupal\Core\Ajax\AjaxResponseRenderer();
+    }
+
+    /**
+     * Gets the 'ajax_response_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\AjaxResponseSubscriber A Drupal\Core\EventSubscriber\AjaxResponseSubscriber instance.
+     */
+    protected function getAjaxResponseSubscriberService()
+    {
+        return $this->services['ajax_response_subscriber'] = new \Drupal\Core\EventSubscriber\AjaxResponseSubscriber();
+    }
+
+    /**
+     * Gets the 'asset.css.collection_grouper' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Asset\CssCollectionGrouper A Drupal\Core\Asset\CssCollectionGrouper instance.
+     */
+    protected function getAsset_Css_CollectionGrouperService()
+    {
+        return $this->services['asset.css.collection_grouper'] = new \Drupal\Core\Asset\CssCollectionGrouper();
+    }
+
+    /**
+     * Gets the 'asset.css.collection_optimizer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Asset\CssCollectionOptimizer A Drupal\Core\Asset\CssCollectionOptimizer instance.
+     */
+    protected function getAsset_Css_CollectionOptimizerService()
+    {
+        return $this->services['asset.css.collection_optimizer'] = new \Drupal\Core\Asset\CssCollectionOptimizer($this->get('asset.css.collection_grouper'), $this->get('asset.css.optimizer'), $this->get('asset.css.dumper'), $this->get('state'));
+    }
+
+    /**
+     * Gets the 'asset.css.collection_renderer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Asset\CssCollectionRenderer A Drupal\Core\Asset\CssCollectionRenderer instance.
+     */
+    protected function getAsset_Css_CollectionRendererService()
+    {
+        return $this->services['asset.css.collection_renderer'] = new \Drupal\Core\Asset\CssCollectionRenderer($this->get('state'));
+    }
+
+    /**
+     * Gets the 'asset.css.dumper' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Asset\AssetDumper A Drupal\Core\Asset\AssetDumper instance.
+     */
+    protected function getAsset_Css_DumperService()
+    {
+        return $this->services['asset.css.dumper'] = new \Drupal\Core\Asset\AssetDumper();
+    }
+
+    /**
+     * Gets the 'asset.css.optimizer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Asset\CssOptimizer A Drupal\Core\Asset\CssOptimizer instance.
+     */
+    protected function getAsset_Css_OptimizerService()
+    {
+        return $this->services['asset.css.optimizer'] = new \Drupal\Core\Asset\CssOptimizer();
+    }
+
+    /**
+     * Gets the 'asset.js.collection_grouper' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Asset\JsCollectionGrouper A Drupal\Core\Asset\JsCollectionGrouper instance.
+     */
+    protected function getAsset_Js_CollectionGrouperService()
+    {
+        return $this->services['asset.js.collection_grouper'] = new \Drupal\Core\Asset\JsCollectionGrouper();
+    }
+
+    /**
+     * Gets the 'asset.js.collection_optimizer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Asset\JsCollectionOptimizer A Drupal\Core\Asset\JsCollectionOptimizer instance.
+     */
+    protected function getAsset_Js_CollectionOptimizerService()
+    {
+        return $this->services['asset.js.collection_optimizer'] = new \Drupal\Core\Asset\JsCollectionOptimizer($this->get('asset.js.collection_grouper'), $this->get('asset.js.optimizer'), $this->get('asset.js.dumper'), $this->get('state'));
+    }
+
+    /**
+     * Gets the 'asset.js.collection_renderer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Asset\JsCollectionRenderer A Drupal\Core\Asset\JsCollectionRenderer instance.
+     */
+    protected function getAsset_Js_CollectionRendererService()
+    {
+        return $this->services['asset.js.collection_renderer'] = new \Drupal\Core\Asset\JsCollectionRenderer($this->get('state'));
+    }
+
+    /**
+     * Gets the 'asset.js.dumper' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Asset\AssetDumper A Drupal\Core\Asset\AssetDumper instance.
+     */
+    protected function getAsset_Js_DumperService()
+    {
+        return $this->services['asset.js.dumper'] = new \Drupal\Core\Asset\AssetDumper();
+    }
+
+    /**
+     * Gets the 'asset.js.optimizer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Asset\JsOptimizer A Drupal\Core\Asset\JsOptimizer instance.
+     */
+    protected function getAsset_Js_OptimizerService()
+    {
+        return $this->services['asset.js.optimizer'] = new \Drupal\Core\Asset\JsOptimizer();
+    }
+
+    /**
+     * Gets the 'authentication' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Authentication\AuthenticationManager A Drupal\Core\Authentication\AuthenticationManager instance.
+     */
+    protected function getAuthenticationService()
+    {
+        $this->services['authentication'] = $instance = new \Drupal\Core\Authentication\AuthenticationManager();
+
+        $instance->addProvider('authentication.cookie', $this->get('authentication.cookie'), 0);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'authentication.cookie' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Authentication\Provider\Cookie A Drupal\Core\Authentication\Provider\Cookie instance.
+     */
+    protected function getAuthentication_CookieService()
+    {
+        return $this->services['authentication.cookie'] = new \Drupal\Core\Authentication\Provider\Cookie();
+    }
+
+    /**
+     * Gets the 'authentication_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\AuthenticationSubscriber A Drupal\Core\EventSubscriber\AuthenticationSubscriber instance.
+     */
+    protected function getAuthenticationSubscriberService()
+    {
+        return $this->services['authentication_subscriber'] = new \Drupal\Core\EventSubscriber\AuthenticationSubscriber($this->get('authentication'));
+    }
+
+    /**
+     * Gets the 'batch.storage' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Batch\BatchStorage A Drupal\Core\Batch\BatchStorage instance.
+     */
+    protected function getBatch_StorageService()
+    {
+        return $this->services['batch.storage'] = new \Drupal\Core\Batch\BatchStorage($this->get('database'));
+    }
+
+    /**
+     * Gets the 'breadcrumb' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Breadcrumb\BreadcrumbManager A Drupal\Core\Breadcrumb\BreadcrumbManager instance.
+     */
+    protected function getBreadcrumbService()
+    {
+        $this->services['breadcrumb'] = $instance = new \Drupal\Core\Breadcrumb\BreadcrumbManager($this->get('module_handler'));
+
+        $instance->addBuilder($this->get('comment.breadcrumb'), 100);
+        $instance->addBuilder($this->get('system.breadcrumb.default'), 0);
+        $instance->addBuilder($this->get('taxonomy_term.breadcrumb'), 1002);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'cache.backend.database' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\DatabaseBackendFactory A Drupal\Core\Cache\DatabaseBackendFactory instance.
+     */
+    protected function getCache_Backend_DatabaseService()
+    {
+        return $this->services['cache.backend.database'] = new \Drupal\Core\Cache\DatabaseBackendFactory($this->get('database'));
+    }
+
+    /**
+     * Gets the 'cache.bootstrap' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\CacheBackendInterface A Drupal\Core\Cache\CacheBackendInterface instance.
+     */
+    protected function getCache_BootstrapService()
+    {
+        return $this->services['cache.bootstrap'] = $this->get('cache_factory')->get('bootstrap');
+    }
+
+    /**
+     * Gets the 'cache.cache' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\CacheBackendInterface A Drupal\Core\Cache\CacheBackendInterface instance.
+     */
+    protected function getCache_CacheService()
+    {
+        return $this->services['cache.cache'] = $this->get('cache_factory')->get('cache');
+    }
+
+    /**
+     * Gets the 'cache.config' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\CacheBackendInterface A Drupal\Core\Cache\CacheBackendInterface instance.
+     */
+    protected function getCache_ConfigService()
+    {
+        return $this->services['cache.config'] = $this->get('cache_factory')->get('config');
+    }
+
+    /**
+     * Gets the 'cache.data' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\CacheBackendInterface A Drupal\Core\Cache\CacheBackendInterface instance.
+     */
+    protected function getCache_DataService()
+    {
+        return $this->services['cache.data'] = $this->get('cache_factory')->get('data');
+    }
+
+    /**
+     * Gets the 'cache.entity' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\CacheBackendInterface A Drupal\Core\Cache\CacheBackendInterface instance.
+     */
+    protected function getCache_EntityService()
+    {
+        return $this->services['cache.entity'] = $this->get('cache_factory')->get('entity');
+    }
+
+    /**
+     * Gets the 'cache.filter' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\CacheBackendInterface A Drupal\Core\Cache\CacheBackendInterface instance.
+     */
+    protected function getCache_FilterService()
+    {
+        return $this->services['cache.filter'] = $this->get('cache_factory')->get('filter');
+    }
+
+    /**
+     * Gets the 'cache.render' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\CacheBackendInterface A Drupal\Core\Cache\CacheBackendInterface instance.
+     */
+    protected function getCache_RenderService()
+    {
+        return $this->services['cache.render'] = $this->get('cache_factory')->get('render');
+    }
+
+    /**
+     * Gets the 'cache.toolbar' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\CacheBackendInterface A Drupal\Core\Cache\CacheBackendInterface instance.
+     */
+    protected function getCache_ToolbarService()
+    {
+        return $this->services['cache.toolbar'] = $this->get('cache_factory')->get('toolbar');
+    }
+
+    /**
+     * Gets the 'cache_context.language' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\LanguageCacheContext A Drupal\Core\Cache\LanguageCacheContext instance.
+     */
+    protected function getCacheContext_LanguageService()
+    {
+        return $this->services['cache_context.language'] = new \Drupal\Core\Cache\LanguageCacheContext($this->get('language_manager'));
+    }
+
+    /**
+     * Gets the 'cache_context.theme' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\ThemeCacheContext A Drupal\Core\Cache\ThemeCacheContext instance.
+     */
+    protected function getCacheContext_ThemeService()
+    {
+        return $this->services['cache_context.theme'] = new \Drupal\Core\Cache\ThemeCacheContext($this->get('request'), $this->get('theme.negotiator'));
+    }
+
+    /**
+     * Gets the 'cache_context.url' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\UrlCacheContext A Drupal\Core\Cache\UrlCacheContext instance.
+     */
+    protected function getCacheContext_UrlService()
+    {
+        return $this->services['cache_context.url'] = new \Drupal\Core\Cache\UrlCacheContext($this->get('request'));
+    }
+
+    /**
+     * Gets the 'cache_context.user' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\Cache\UserCacheContext A Drupal\user\Cache\UserCacheContext instance.
+     */
+    protected function getCacheContext_UserService()
+    {
+        return $this->services['cache_context.user'] = new \Drupal\user\Cache\UserCacheContext($this->get('current_user'));
+    }
+
+    /**
+     * Gets the 'cache_context.user.roles' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\Cache\UserRolesCacheContext A Drupal\user\Cache\UserRolesCacheContext instance.
+     */
+    protected function getCacheContext_User_RolesService()
+    {
+        return $this->services['cache_context.user.roles'] = new \Drupal\user\Cache\UserRolesCacheContext($this->get('current_user'));
+    }
+
+    /**
+     * Gets the 'cache_contexts' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\CacheContexts A Drupal\Core\Cache\CacheContexts instance.
+     */
+    protected function getCacheContextsService()
+    {
+        return $this->services['cache_contexts'] = new \Drupal\Core\Cache\CacheContexts($this, array(0 => 'cache_context.url', 1 => 'cache_context.language', 2 => 'cache_context.theme', 3 => 'cache_context.user', 4 => 'cache_context.user.roles'));
+    }
+
+    /**
+     * Gets the 'cache_factory' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cache\CacheFactory A Drupal\Core\Cache\CacheFactory instance.
+     */
+    protected function getCacheFactoryService()
+    {
+        $this->services['cache_factory'] = $instance = new \Drupal\Core\Cache\CacheFactory($this->get('settings'));
+
+        $instance->setContainer($this);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'class_loader' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @throws RuntimeException always since this service is expected to be injected dynamically
+     */
+    protected function getClassLoaderService()
+    {
+        throw new RuntimeException('You have requested a synthetic service ("class_loader"). The DIC does not know how to construct this service.');
+    }
+
+    /**
+     * Gets the 'comment.breadcrumb' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\comment\CommentBreadcrumbBuilder A Drupal\comment\CommentBreadcrumbBuilder instance.
+     */
+    protected function getComment_BreadcrumbService()
+    {
+        return $this->services['comment.breadcrumb'] = new \Drupal\comment\CommentBreadcrumbBuilder($this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'comment.manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\comment\CommentManager A Drupal\comment\CommentManager instance.
+     */
+    protected function getComment_ManagerService()
+    {
+        return $this->services['comment.manager'] = new \Drupal\comment\CommentManager($this->get('field.info'), $this->get('entity.manager'), $this->get('current_user'), $this->get('config.factory'), $this->get('string_translation'), $this->get('url_generator'));
+    }
+
+    /**
+     * Gets the 'comment.route_enhancer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\comment\Routing\CommentBundleEnhancer A Drupal\comment\Routing\CommentBundleEnhancer instance.
+     */
+    protected function getComment_RouteEnhancerService()
+    {
+        return $this->services['comment.route_enhancer'] = new \Drupal\comment\Routing\CommentBundleEnhancer($this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'comment.statistics' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\comment\CommentStatistics A Drupal\comment\CommentStatistics instance.
+     */
+    protected function getComment_StatisticsService()
+    {
+        return $this->services['comment.statistics'] = new \Drupal\comment\CommentStatistics($this->get('database'), $this->get('current_user'), $this->get('entity.manager'), $this->get('state'));
+    }
+
+    /**
+     * Gets the 'config.cachedstorage.storage' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Config\FileStorage A Drupal\Core\Config\FileStorage instance.
+     */
+    protected function getConfig_Cachedstorage_StorageService()
+    {
+        return $this->services['config.cachedstorage.storage'] = call_user_func(array('Drupal\\Core\\Config\\FileStorageFactory', 'getActive'));
+    }
+
+    /**
+     * Gets the 'config.factory' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Config\ConfigFactory A Drupal\Core\Config\ConfigFactory instance.
+     */
+    protected function getConfig_FactoryService()
+    {
+        $this->services['config.factory'] = $instance = new \Drupal\Core\Config\ConfigFactory($this->get('config.storage'), $this->get('event_dispatcher'), $this->get('config.typed'));
+
+        $instance->addOverride($this->get('language.config_factory_override'));
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'config.installer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Config\ConfigInstaller A Drupal\Core\Config\ConfigInstaller instance.
+     */
+    protected function getConfig_InstallerService()
+    {
+        return $this->services['config.installer'] = new \Drupal\Core\Config\ConfigInstaller($this->get('config.factory'), $this->get('config.storage'), $this->get('config.typed'), $this->get('config.manager'), $this->get('event_dispatcher'));
+    }
+
+    /**
+     * Gets the 'config.manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Config\ConfigManager A Drupal\Core\Config\ConfigManager instance.
+     */
+    protected function getConfig_ManagerService()
+    {
+        return $this->services['config.manager'] = new \Drupal\Core\Config\ConfigManager($this->get('entity.manager'), $this->get('config.factory'), $this->get('config.typed'), $this->get('string_translation'), $this->get('config.storage'));
+    }
+
+    /**
+     * Gets the 'config.storage' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Config\CachedStorage A Drupal\Core\Config\CachedStorage instance.
+     */
+    protected function getConfig_StorageService()
+    {
+        return $this->services['config.storage'] = new \Drupal\Core\Config\CachedStorage($this->get('config.cachedstorage.storage'), $this->get('cache.config'));
+    }
+
+    /**
+     * Gets the 'config.storage.installer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Config\InstallStorage A Drupal\Core\Config\InstallStorage instance.
+     */
+    protected function getConfig_Storage_InstallerService()
+    {
+        return $this->services['config.storage.installer'] = new \Drupal\Core\Config\InstallStorage();
+    }
+
+    /**
+     * Gets the 'config.storage.schema' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Config\Schema\SchemaStorage A Drupal\Core\Config\Schema\SchemaStorage instance.
+     */
+    protected function getConfig_Storage_SchemaService()
+    {
+        return $this->services['config.storage.schema'] = new \Drupal\Core\Config\Schema\SchemaStorage($this->get('config.storage'));
+    }
+
+    /**
+     * Gets the 'config.storage.snapshot' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Config\DatabaseStorage A Drupal\Core\Config\DatabaseStorage instance.
+     */
+    protected function getConfig_Storage_SnapshotService()
+    {
+        return $this->services['config.storage.snapshot'] = new \Drupal\Core\Config\DatabaseStorage($this->get('database'), 'config_snapshot');
+    }
+
+    /**
+     * Gets the 'config.storage.staging' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Config\FileStorage A Drupal\Core\Config\FileStorage instance.
+     */
+    protected function getConfig_Storage_StagingService()
+    {
+        return $this->services['config.storage.staging'] = call_user_func(array('Drupal\\Core\\Config\\FileStorageFactory', 'getStaging'));
+    }
+
+    /**
+     * Gets the 'config.typed' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Config\TypedConfigManager A Drupal\Core\Config\TypedConfigManager instance.
+     */
+    protected function getConfig_TypedService()
+    {
+        return $this->services['config.typed'] = new \Drupal\Core\Config\TypedConfigManager($this->get('config.storage'), $this->get('config.storage.schema'), $this->get('cache.config'));
+    }
+
+    /**
+     * Gets the 'config_import_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\ConfigImportSubscriber A Drupal\Core\EventSubscriber\ConfigImportSubscriber instance.
+     */
+    protected function getConfigImportSubscriberService()
+    {
+        return $this->services['config_import_subscriber'] = new \Drupal\Core\EventSubscriber\ConfigImportSubscriber();
+    }
+
+    /**
+     * Gets the 'config_snapshot_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\ConfigSnapshotSubscriber A Drupal\Core\EventSubscriber\ConfigSnapshotSubscriber instance.
+     */
+    protected function getConfigSnapshotSubscriberService()
+    {
+        return $this->services['config_snapshot_subscriber'] = new \Drupal\Core\EventSubscriber\ConfigSnapshotSubscriber($this->get('config.manager'), $this->get('config.storage'), $this->get('config.storage.snapshot'));
+    }
+
+    /**
+     * Gets the 'container.namespaces' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return ArrayObject A ArrayObject instance.
+     */
+    protected function getContainer_NamespacesService()
+    {
+        return $this->services['container.namespaces'] = new \ArrayObject(array('Drupal\\block' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/block/lib', 'Drupal\\breakpoint' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/breakpoint/lib', 'Drupal\\ckeditor' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/ckeditor/lib', 'Drupal\\color' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/color/lib', 'Drupal\\comment' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/comment/lib', 'Drupal\\config' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/config/lib', 'Drupal\\contact' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/contact/lib', 'Drupal\\contextual' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/contextual/lib', 'Drupal\\custom_block' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/block/custom_block/lib', 'Drupal\\datetime' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/datetime/lib', 'Drupal\\dblog' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/dblog/lib', 'Drupal\\edit' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/edit/lib', 'Drupal\\editor' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/editor/lib', 'Drupal\\entity' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/entity/lib', 'Drupal\\entity_reference' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/entity_reference/lib', 'Drupal\\field' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/field/lib', 'Drupal\\field_ui' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/field_ui/lib', 'Drupal\\file' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/file/lib', 'Drupal\\filter' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/filter/lib', 'Drupal\\help' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/help/lib', 'Drupal\\history' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/history/lib', 'Drupal\\image' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/image/lib', 'Drupal\\language' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/language/lib', 'Drupal\\locale' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/locale/lib', 'Drupal\\menu' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/menu/lib', 'Drupal\\menu_link' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/menu_link/lib', 'Drupal\\node' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/node/lib', 'Drupal\\options' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/options/lib', 'Drupal\\path' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/path/lib', 'Drupal\\rdf' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/rdf/lib', 'Drupal\\search' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/search/lib', 'Drupal\\shortcut' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/shortcut/lib', 'Drupal\\system' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/system/lib', 'Drupal\\taxonomy' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/taxonomy/lib', 'Drupal\\text' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/text/lib', 'Drupal\\toolbar' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/toolbar/lib', 'Drupal\\tour' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/tour/lib', 'Drupal\\update' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/update/lib', 'Drupal\\user' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/user/lib', 'Drupal\\views_ui' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/views_ui/lib', 'Drupal\\views' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/views/lib', 'Drupal\\standard' => '/home/adnen/myProjects/drupalProjects/drupal8/core/profiles/standard/lib', 'Drupal\\Core\\TypedData' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib', 'Drupal\\Core\\Validation' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib', 'Drupal\\Core\\Http' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib', 'Drupal\\Core\\Field' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib', 'Drupal\\Core\\Entity' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib', 'Drupal\\Core\\Mail' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib', 'Drupal\\Component\\Annotation' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib'));
+    }
+
+    /**
+     * Gets the 'content_negotiation' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\ContentNegotiation A Drupal\Core\ContentNegotiation instance.
+     */
+    protected function getContentNegotiationService()
+    {
+        return $this->services['content_negotiation'] = new \Drupal\Core\ContentNegotiation();
+    }
+
+    /**
+     * Gets the 'content_type_header_matcher' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Routing\ContentTypeHeaderMatcher A Drupal\Core\Routing\ContentTypeHeaderMatcher instance.
+     */
+    protected function getContentTypeHeaderMatcherService()
+    {
+        return $this->services['content_type_header_matcher'] = new \Drupal\Core\Routing\ContentTypeHeaderMatcher();
+    }
+
+    /**
+     * Gets the 'controller.ajax' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Controller\AjaxController A Drupal\Core\Controller\AjaxController instance.
+     */
+    protected function getController_AjaxService()
+    {
+        return $this->services['controller.ajax'] = new \Drupal\Core\Controller\AjaxController($this->get('controller_resolver'), $this->get('ajax_response_renderer'));
+    }
+
+    /**
+     * Gets the 'controller.dialog' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Controller\DialogController A Drupal\Core\Controller\DialogController instance.
+     */
+    protected function getController_DialogService()
+    {
+        return $this->services['controller.dialog'] = new \Drupal\Core\Controller\DialogController($this->get('controller_resolver'), $this->get('title_resolver'));
+    }
+
+    /**
+     * Gets the 'controller.entityform' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Entity\HtmlEntityFormController A Drupal\Core\Entity\HtmlEntityFormController instance.
+     */
+    protected function getController_EntityformService()
+    {
+        return $this->services['controller.entityform'] = new \Drupal\Core\Entity\HtmlEntityFormController($this->get('controller_resolver'), $this, $this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'controller.page' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Controller\HtmlPageController A Drupal\Core\Controller\HtmlPageController instance.
+     */
+    protected function getController_PageService()
+    {
+        return $this->services['controller.page'] = new \Drupal\Core\Controller\HtmlPageController($this->get('controller_resolver'), $this->get('string_translation'), $this->get('title_resolver'));
+    }
+
+    /**
+     * Gets the 'controller_resolver' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Controller\ControllerResolver A Drupal\Core\Controller\ControllerResolver instance.
+     */
+    protected function getControllerResolverService()
+    {
+        return $this->services['controller_resolver'] = new \Drupal\Core\Controller\ControllerResolver($this);
+    }
+
+    /**
+     * Gets the 'country_manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Locale\CountryManager A Drupal\Core\Locale\CountryManager instance.
+     */
+    protected function getCountryManagerService()
+    {
+        return $this->services['country_manager'] = new \Drupal\Core\Locale\CountryManager($this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'cron' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Cron A Drupal\Core\Cron instance.
+     */
+    protected function getCronService()
+    {
+        return $this->services['cron'] = new \Drupal\Core\Cron($this->get('module_handler'), $this->get('lock'), $this->get('queue'), $this->get('state'), $this->get('current_user'));
+    }
+
+    /**
+     * Gets the 'csrf_token' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Access\CsrfTokenGenerator A Drupal\Core\Access\CsrfTokenGenerator instance.
+     */
+    protected function getCsrfTokenService()
+    {
+        $this->services['csrf_token'] = $instance = new \Drupal\Core\Access\CsrfTokenGenerator($this->get('private_key'));
+
+        if ($this->has('current_user')) {
+            $instance->setCurrentUser($this->get('current_user', ContainerInterface::NULL_ON_INVALID_REFERENCE));
+        }
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'current_user' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Session\AccountProxy A Drupal\Core\Session\AccountProxy instance.
+     */
+    protected function getCurrentUserService()
+    {
+        $this->services['current_user'] = $instance = new \Drupal\Core\Session\AccountProxy($this->get('authentication'));
+
+        if ($this->has('request')) {
+            $instance->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));
+        }
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'database' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Database\Connection A Drupal\Core\Database\Connection instance.
+     */
+    protected function getDatabaseService()
+    {
+        return $this->services['database'] = call_user_func(array('Drupal\\Core\\Database\\Database', 'getConnection'), 'default');
+    }
+
+    /**
+     * Gets the 'database.slave' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Database\Connection A Drupal\Core\Database\Connection instance.
+     */
+    protected function getDatabase_SlaveService()
+    {
+        return $this->services['database.slave'] = call_user_func(array('Drupal\\Core\\Database\\Database', 'getConnection'), 'slave');
+    }
+
+    /**
+     * Gets the 'date' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Datetime\Date A Drupal\Core\Datetime\Date instance.
+     */
+    protected function getDateService()
+    {
+        return $this->services['date'] = new \Drupal\Core\Datetime\Date($this->get('entity.manager'), $this->get('language_manager'), $this->get('string_translation'), $this->get('config.factory'));
+    }
+
+    /**
+     * Gets the 'edit.editor.selector' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\edit\EditorSelector A Drupal\edit\EditorSelector instance.
+     */
+    protected function getEdit_Editor_SelectorService()
+    {
+        return $this->services['edit.editor.selector'] = new \Drupal\edit\EditorSelector($this->get('plugin.manager.edit.editor'), $this->get('plugin.manager.field.formatter'));
+    }
+
+    /**
+     * Gets the 'edit.metadata.generator' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\edit\MetadataGenerator A Drupal\edit\MetadataGenerator instance.
+     */
+    protected function getEdit_Metadata_GeneratorService()
+    {
+        return $this->services['edit.metadata.generator'] = new \Drupal\edit\MetadataGenerator($this->get('access_check.edit.entity_field'), $this->get('edit.editor.selector'), $this->get('plugin.manager.edit.editor'));
+    }
+
+    /**
+     * Gets the 'entity.form_builder' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Entity\EntityFormBuilder A Drupal\Core\Entity\EntityFormBuilder instance.
+     */
+    protected function getEntity_FormBuilderService()
+    {
+        return $this->services['entity.form_builder'] = new \Drupal\Core\Entity\EntityFormBuilder($this->get('entity.manager'), $this->get('form_builder'));
+    }
+
+    /**
+     * Gets the 'entity.manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Entity\EntityManager A Drupal\Core\Entity\EntityManager instance.
+     */
+    protected function getEntity_ManagerService()
+    {
+        return $this->services['entity.manager'] = new \Drupal\Core\Entity\EntityManager($this->get('container.namespaces'), $this, $this->get('module_handler'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('string_translation'));
+    }
+
+    /**
+     * Gets the 'entity.query' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Entity\Query\QueryFactory A Drupal\Core\Entity\Query\QueryFactory instance.
+     */
+    protected function getEntity_QueryService()
+    {
+        $this->services['entity.query'] = $instance = new \Drupal\Core\Entity\Query\QueryFactory($this->get('entity.manager'));
+
+        $instance->setContainer($this);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'entity.query.config' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Config\Entity\Query\QueryFactory A Drupal\Core\Config\Entity\Query\QueryFactory instance.
+     */
+    protected function getEntity_Query_ConfigService()
+    {
+        return $this->services['entity.query.config'] = new \Drupal\Core\Config\Entity\Query\QueryFactory($this->get('config.storage'), $this->get('config.factory'));
+    }
+
+    /**
+     * Gets the 'entity.query.sql' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Entity\Query\Sql\QueryFactory A Drupal\Core\Entity\Query\Sql\QueryFactory instance.
+     */
+    protected function getEntity_Query_SqlService()
+    {
+        return $this->services['entity.query.sql'] = new \Drupal\Core\Entity\Query\Sql\QueryFactory($this->get('database'));
+    }
+
+    /**
+     * Gets the 'entity_reference.autocomplete' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\entity_reference\EntityReferenceAutocomplete A Drupal\entity_reference\EntityReferenceAutocomplete instance.
+     */
+    protected function getEntityReference_AutocompleteService()
+    {
+        return $this->services['entity_reference.autocomplete'] = new \Drupal\entity_reference\EntityReferenceAutocomplete($this->get('entity.manager'), $this->get('plugin.manager.entity_reference.selection'));
+    }
+
+    /**
+     * Gets the 'event_dispatcher' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Symfony\Component\EventDispatcher\ContainerAwareEventDispatcher A Symfony\Component\EventDispatcher\ContainerAwareEventDispatcher instance.
+     */
+    protected function getEventDispatcherService()
+    {
+        $this->services['event_dispatcher'] = $instance = new \Symfony\Component\EventDispatcher\ContainerAwareEventDispatcher($this);
+
+        $instance->addSubscriberService('config.factory', 'Drupal\\Core\\Config\\ConfigFactory');
+        $instance->addSubscriberService('router.route_provider', 'Drupal\\Core\\Routing\\RouteProvider');
+        $instance->addSubscriberService('router.route_preloader', 'Drupal\\Core\\Routing\\RoutePreloader');
+        $instance->addSubscriberService('router.path_roots_subscriber', 'Drupal\\Core\\EventSubscriber\\PathRootsSubscriber');
+        $instance->addSubscriberService('router.rebuild_subscriber', 'Drupal\\Core\\EventSubscriber\\RouterRebuildSubscriber');
+        $instance->addSubscriberService('paramconverter_subscriber', 'Drupal\\Core\\EventSubscriber\\ParamConverterSubscriber');
+        $instance->addSubscriberService('route_subscriber.module', 'Drupal\\Core\\EventSubscriber\\ModuleRouteSubscriber');
+        $instance->addSubscriberService('route_subscriber.entity', 'Drupal\\Core\\EventSubscriber\\EntityRouteAlterSubscriber');
+        $instance->addSubscriberService('reverse_proxy_subscriber', 'Drupal\\Core\\EventSubscriber\\ReverseProxySubscriber');
+        $instance->addSubscriberService('ajax_response_subscriber', 'Drupal\\Core\\EventSubscriber\\AjaxResponseSubscriber');
+        $instance->addSubscriberService('route_enhancer.param_conversion', 'Drupal\\Core\\Routing\\Enhancer\\ParamConversionEnhancer');
+        $instance->addSubscriberService('route_content_controller_subscriber', 'Drupal\\Core\\EventSubscriber\\ContentControllerSubscriber');
+        $instance->addSubscriberService('route_content_form_controller_subscriber', 'Drupal\\Core\\EventSubscriber\\ContentFormControllerSubscriber');
+        $instance->addSubscriberService('route_special_attributes_subscriber', 'Drupal\\Core\\EventSubscriber\\SpecialAttributesRouteSubscriber');
+        $instance->addSubscriberService('route_http_method_subscriber', 'Drupal\\Core\\EventSubscriber\\RouteMethodSubscriber');
+        $instance->addSubscriberService('router_listener', 'Symfony\\Component\\HttpKernel\\EventListener\\RouterListener');
+        $instance->addSubscriberService('view_subscriber', 'Drupal\\Core\\EventSubscriber\\ViewSubscriber');
+        $instance->addSubscriberService('html_view_subscriber', 'Drupal\\Core\\EventSubscriber\\HtmlViewSubscriber');
+        $instance->addSubscriberService('access_subscriber', 'Drupal\\Core\\EventSubscriber\\AccessSubscriber');
+        $instance->addSubscriberService('access_route_subscriber', 'Drupal\\Core\\EventSubscriber\\AccessRouteSubscriber');
+        $instance->addSubscriberService('maintenance_mode_subscriber', 'Drupal\\Core\\EventSubscriber\\MaintenanceModeSubscriber');
+        $instance->addSubscriberService('path_subscriber', 'Drupal\\Core\\EventSubscriber\\PathSubscriber');
+        $instance->addSubscriberService('legacy_request_subscriber', 'Drupal\\Core\\EventSubscriber\\LegacyRequestSubscriber');
+        $instance->addSubscriberService('finish_response_subscriber', 'Drupal\\Core\\EventSubscriber\\FinishResponseSubscriber');
+        $instance->addSubscriberService('redirect_response_subscriber', 'Drupal\\Core\\EventSubscriber\\RedirectResponseSubscriber');
+        $instance->addSubscriberService('request_close_subscriber', 'Drupal\\Core\\EventSubscriber\\RequestCloseSubscriber');
+        $instance->addSubscriberService('config_import_subscriber', 'Drupal\\Core\\EventSubscriber\\ConfigImportSubscriber');
+        $instance->addSubscriberService('config_snapshot_subscriber', 'Drupal\\Core\\EventSubscriber\\ConfigSnapshotSubscriber');
+        $instance->addSubscriberService('exception_listener', 'Drupal\\Core\\EventSubscriber\\ExceptionListener');
+        $instance->addSubscriberService('kernel_destruct_subscriber', 'Drupal\\Core\\EventSubscriber\\KernelDestructionSubscriber');
+        $instance->addSubscriberService('ajax.subscriber', 'Drupal\\Core\\Ajax\\AjaxSubscriber');
+        $instance->addSubscriberService('slave_database_ignore__subscriber', 'Drupal\\Core\\EventSubscriber\\SlaveDatabaseIgnoreSubscriber');
+        $instance->addSubscriberService('authentication_subscriber', 'Drupal\\Core\\EventSubscriber\\AuthenticationSubscriber');
+        $instance->addSubscriberService('field_ui.subscriber', 'Drupal\\field_ui\\Routing\\RouteSubscriber');
+        $instance->addSubscriberService('language.config_subscriber', 'Drupal\\language\\EventSubscriber\\ConfigSubscriber');
+        $instance->addSubscriberService('node.admin_path.route_subscriber', 'Drupal\\node\\EventSubscriber\\NodeAdminRouteSubscriber');
+        $instance->addSubscriberService('system.admin_path.route_subscriber', 'Drupal\\system\\EventSubscriber\\AdminRouteSubscriber');
+        $instance->addSubscriberService('system.config_subscriber', 'Drupal\\system\\SystemConfigSubscriber');
+        $instance->addSubscriberService('system.automatic_cron', 'Drupal\\system\\EventSubscriber\\AutomaticCron');
+        $instance->addSubscriberService('user_maintenance_mode_subscriber', 'Drupal\\user\\EventSubscriber\\MaintenanceModeSubscriber');
+        $instance->addSubscriberService('views.route_subscriber', 'Drupal\\views\\EventSubscriber\\RouteSubscriber');
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'exception_controller' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Controller\ExceptionController A Drupal\Core\Controller\ExceptionController instance.
+     */
+    protected function getExceptionControllerService()
+    {
+        $this->services['exception_controller'] = $instance = new \Drupal\Core\Controller\ExceptionController($this->get('content_negotiation'), $this->get('string_translation'), $this->get('title_resolver'), $this->get('html_page_renderer'), $this->get('html_fragment_renderer'));
+
+        $instance->setContainer($this);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'exception_listener' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\ExceptionListener A Drupal\Core\EventSubscriber\ExceptionListener instance.
+     */
+    protected function getExceptionListenerService()
+    {
+        return $this->services['exception_listener'] = new \Drupal\Core\EventSubscriber\ExceptionListener(array(0 => $this->get('exception_controller'), 1 => 'execute'));
+    }
+
+    /**
+     * Gets the 'feed.bridge.reader' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Component\Bridge\ZfExtensionManagerSfContainer A Drupal\Component\Bridge\ZfExtensionManagerSfContainer instance.
+     */
+    protected function getFeed_Bridge_ReaderService()
+    {
+        $this->services['feed.bridge.reader'] = $instance = new \Drupal\Component\Bridge\ZfExtensionManagerSfContainer('feed.reader.');
+
+        $instance->setContainer($this);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'feed.bridge.writer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Component\Bridge\ZfExtensionManagerSfContainer A Drupal\Component\Bridge\ZfExtensionManagerSfContainer instance.
+     */
+    protected function getFeed_Bridge_WriterService()
+    {
+        $this->services['feed.bridge.writer'] = $instance = new \Drupal\Component\Bridge\ZfExtensionManagerSfContainer('feed.writer.');
+
+        $instance->setContainer($this);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'feed.reader.atomentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Reader\Extension\Atom\Entry A Zend\Feed\Reader\Extension\Atom\Entry instance.
+     */
+    protected function getFeed_Reader_AtomentryService()
+    {
+        return $this->services['feed.reader.atomentry'] = new \Zend\Feed\Reader\Extension\Atom\Entry();
+    }
+
+    /**
+     * Gets the 'feed.reader.atomfeed' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Reader\Extension\Atom\Feed A Zend\Feed\Reader\Extension\Atom\Feed instance.
+     */
+    protected function getFeed_Reader_AtomfeedService()
+    {
+        return $this->services['feed.reader.atomfeed'] = new \Zend\Feed\Reader\Extension\Atom\Feed();
+    }
+
+    /**
+     * Gets the 'feed.reader.contententry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Reader\Extension\Content\Entry A Zend\Feed\Reader\Extension\Content\Entry instance.
+     */
+    protected function getFeed_Reader_ContententryService()
+    {
+        return $this->services['feed.reader.contententry'] = new \Zend\Feed\Reader\Extension\Content\Entry();
+    }
+
+    /**
+     * Gets the 'feed.reader.dublincoreentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Reader\Extension\DublinCore\Entry A Zend\Feed\Reader\Extension\DublinCore\Entry instance.
+     */
+    protected function getFeed_Reader_DublincoreentryService()
+    {
+        return $this->services['feed.reader.dublincoreentry'] = new \Zend\Feed\Reader\Extension\DublinCore\Entry();
+    }
+
+    /**
+     * Gets the 'feed.reader.dublincorefeed' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Reader\Extension\DublinCore\Feed A Zend\Feed\Reader\Extension\DublinCore\Feed instance.
+     */
+    protected function getFeed_Reader_DublincorefeedService()
+    {
+        return $this->services['feed.reader.dublincorefeed'] = new \Zend\Feed\Reader\Extension\DublinCore\Feed();
+    }
+
+    /**
+     * Gets the 'feed.reader.podcastentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Reader\Extension\Podcast\Entry A Zend\Feed\Reader\Extension\Podcast\Entry instance.
+     */
+    protected function getFeed_Reader_PodcastentryService()
+    {
+        return $this->services['feed.reader.podcastentry'] = new \Zend\Feed\Reader\Extension\Podcast\Entry();
+    }
+
+    /**
+     * Gets the 'feed.reader.podcastfeed' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Reader\Extension\Podcast\Feed A Zend\Feed\Reader\Extension\Podcast\Feed instance.
+     */
+    protected function getFeed_Reader_PodcastfeedService()
+    {
+        return $this->services['feed.reader.podcastfeed'] = new \Zend\Feed\Reader\Extension\Podcast\Feed();
+    }
+
+    /**
+     * Gets the 'feed.reader.slashentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Reader\Extension\Slash\Entry A Zend\Feed\Reader\Extension\Slash\Entry instance.
+     */
+    protected function getFeed_Reader_SlashentryService()
+    {
+        return $this->services['feed.reader.slashentry'] = new \Zend\Feed\Reader\Extension\Slash\Entry();
+    }
+
+    /**
+     * Gets the 'feed.reader.threadentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Reader\Extension\Thread\Entry A Zend\Feed\Reader\Extension\Thread\Entry instance.
+     */
+    protected function getFeed_Reader_ThreadentryService()
+    {
+        return $this->services['feed.reader.threadentry'] = new \Zend\Feed\Reader\Extension\Thread\Entry();
+    }
+
+    /**
+     * Gets the 'feed.reader.wellformedwebentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Reader\Extension\WellFormedWeb\Entry A Zend\Feed\Reader\Extension\WellFormedWeb\Entry instance.
+     */
+    protected function getFeed_Reader_WellformedwebentryService()
+    {
+        return $this->services['feed.reader.wellformedwebentry'] = new \Zend\Feed\Reader\Extension\WellFormedWeb\Entry();
+    }
+
+    /**
+     * Gets the 'feed.writer.atomrendererfeed' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Writer\Extension\Atom\Renderer\Feed A Zend\Feed\Writer\Extension\Atom\Renderer\Feed instance.
+     */
+    protected function getFeed_Writer_AtomrendererfeedService()
+    {
+        return $this->services['feed.writer.atomrendererfeed'] = new \Zend\Feed\Writer\Extension\Atom\Renderer\Feed();
+    }
+
+    /**
+     * Gets the 'feed.writer.contentrendererentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Writer\Extension\Content\Renderer\Entry A Zend\Feed\Writer\Extension\Content\Renderer\Entry instance.
+     */
+    protected function getFeed_Writer_ContentrendererentryService()
+    {
+        return $this->services['feed.writer.contentrendererentry'] = new \Zend\Feed\Writer\Extension\Content\Renderer\Entry();
+    }
+
+    /**
+     * Gets the 'feed.writer.dublincorerendererentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Writer\Extension\DublinCore\Renderer\Entry A Zend\Feed\Writer\Extension\DublinCore\Renderer\Entry instance.
+     */
+    protected function getFeed_Writer_DublincorerendererentryService()
+    {
+        return $this->services['feed.writer.dublincorerendererentry'] = new \Zend\Feed\Writer\Extension\DublinCore\Renderer\Entry();
+    }
+
+    /**
+     * Gets the 'feed.writer.dublincorerendererfeed' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Writer\Extension\DublinCore\Renderer\Feed A Zend\Feed\Writer\Extension\DublinCore\Renderer\Feed instance.
+     */
+    protected function getFeed_Writer_DublincorerendererfeedService()
+    {
+        return $this->services['feed.writer.dublincorerendererfeed'] = new \Zend\Feed\Writer\Extension\DublinCore\Renderer\Feed();
+    }
+
+    /**
+     * Gets the 'feed.writer.itunesentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Writer\Extension\ITunes\Entry A Zend\Feed\Writer\Extension\ITunes\Entry instance.
+     */
+    protected function getFeed_Writer_ItunesentryService()
+    {
+        return $this->services['feed.writer.itunesentry'] = new \Zend\Feed\Writer\Extension\ITunes\Entry();
+    }
+
+    /**
+     * Gets the 'feed.writer.itunesfeed' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Writer\Extension\ITunes\Feed A Zend\Feed\Writer\Extension\ITunes\Feed instance.
+     */
+    protected function getFeed_Writer_ItunesfeedService()
+    {
+        return $this->services['feed.writer.itunesfeed'] = new \Zend\Feed\Writer\Extension\ITunes\Feed();
+    }
+
+    /**
+     * Gets the 'feed.writer.itunesrendererentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Writer\Extension\ITunes\Renderer\Entry A Zend\Feed\Writer\Extension\ITunes\Renderer\Entry instance.
+     */
+    protected function getFeed_Writer_ItunesrendererentryService()
+    {
+        return $this->services['feed.writer.itunesrendererentry'] = new \Zend\Feed\Writer\Extension\ITunes\Renderer\Entry();
+    }
+
+    /**
+     * Gets the 'feed.writer.itunesrendererfeed' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Writer\Extension\ITunes\Renderer\Feed A Zend\Feed\Writer\Extension\ITunes\Renderer\Feed instance.
+     */
+    protected function getFeed_Writer_ItunesrendererfeedService()
+    {
+        return $this->services['feed.writer.itunesrendererfeed'] = new \Zend\Feed\Writer\Extension\ITunes\Renderer\Feed();
+    }
+
+    /**
+     * Gets the 'feed.writer.slashrendererentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Writer\Extension\Slash\Renderer\Entry A Zend\Feed\Writer\Extension\Slash\Renderer\Entry instance.
+     */
+    protected function getFeed_Writer_SlashrendererentryService()
+    {
+        return $this->services['feed.writer.slashrendererentry'] = new \Zend\Feed\Writer\Extension\Slash\Renderer\Entry();
+    }
+
+    /**
+     * Gets the 'feed.writer.threadingrendererentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Writer\Extension\Threading\Renderer\Entry A Zend\Feed\Writer\Extension\Threading\Renderer\Entry instance.
+     */
+    protected function getFeed_Writer_ThreadingrendererentryService()
+    {
+        return $this->services['feed.writer.threadingrendererentry'] = new \Zend\Feed\Writer\Extension\Threading\Renderer\Entry();
+    }
+
+    /**
+     * Gets the 'feed.writer.wellformedwebrendererentry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Zend\Feed\Writer\Extension\WellFormedWeb\Renderer\Entry A Zend\Feed\Writer\Extension\WellFormedWeb\Renderer\Entry instance.
+     */
+    protected function getFeed_Writer_WellformedwebrendererentryService()
+    {
+        return $this->services['feed.writer.wellformedwebrendererentry'] = new \Zend\Feed\Writer\Extension\WellFormedWeb\Renderer\Entry();
+    }
+
+    /**
+     * Gets the 'field.info' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\field\FieldInfo A Drupal\field\FieldInfo instance.
+     */
+    protected function getField_InfoService()
+    {
+        return $this->services['field.info'] = new \Drupal\field\FieldInfo($this->get('cache.cache'), $this->get('config.factory'), $this->get('module_handler'), $this->get('plugin.manager.field.field_type'), $this->get('language_manager'));
+    }
+
+    /**
+     * Gets the 'field_ui.subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\field_ui\Routing\RouteSubscriber A Drupal\field_ui\Routing\RouteSubscriber instance.
+     */
+    protected function getFieldUi_SubscriberService()
+    {
+        return $this->services['field_ui.subscriber'] = new \Drupal\field_ui\Routing\RouteSubscriber($this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'file.usage' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\file\FileUsage\DatabaseFileUsageBackend A Drupal\file\FileUsage\DatabaseFileUsageBackend instance.
+     */
+    protected function getFile_UsageService()
+    {
+        return $this->services['file.usage'] = new \Drupal\file\FileUsage\DatabaseFileUsageBackend($this->get('database'));
+    }
+
+    /**
+     * Gets the 'finish_response_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\FinishResponseSubscriber A Drupal\Core\EventSubscriber\FinishResponseSubscriber instance.
+     * 
+     * @throws InactiveScopeException when the 'finish_response_subscriber' service is requested while the 'request' scope is not active
+     */
+    protected function getFinishResponseSubscriberService()
+    {
+        if (!isset($this->scopedServices['request'])) {
+            throw new InactiveScopeException('finish_response_subscriber', 'request');
+        }
+
+        return $this->services['finish_response_subscriber'] = $this->scopedServices['request']['finish_response_subscriber'] = new \Drupal\Core\EventSubscriber\FinishResponseSubscriber($this->get('language_manager'));
+    }
+
+    /**
+     * Gets the 'flood' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Flood\DatabaseBackend A Drupal\Core\Flood\DatabaseBackend instance.
+     */
+    protected function getFloodService()
+    {
+        return $this->services['flood'] = new \Drupal\Core\Flood\DatabaseBackend($this->get('database'), $this->get('request'));
+    }
+
+    /**
+     * Gets the 'form_builder' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Form\FormBuilder A Drupal\Core\Form\FormBuilder instance.
+     */
+    protected function getFormBuilderService()
+    {
+        $this->services['form_builder'] = $instance = new \Drupal\Core\Form\FormBuilder($this->get('module_handler'), $this->get('keyvalue.expirable'), $this->get('event_dispatcher'), $this->get('url_generator'), $this->get('string_translation'), $this->get('csrf_token', ContainerInterface::NULL_ON_INVALID_REFERENCE), $this->get('http_kernel', ContainerInterface::NULL_ON_INVALID_REFERENCE));
+
+        if ($this->has('request')) {
+            $instance->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));
+        }
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'html_fragment_renderer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Page\DefaultHtmlFragmentRenderer A Drupal\Core\Page\DefaultHtmlFragmentRenderer instance.
+     */
+    protected function getHtmlFragmentRendererService()
+    {
+        return $this->services['html_fragment_renderer'] = new \Drupal\Core\Page\DefaultHtmlFragmentRenderer($this->get('language_manager'));
+    }
+
+    /**
+     * Gets the 'html_page_renderer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Page\DefaultHtmlPageRenderer A Drupal\Core\Page\DefaultHtmlPageRenderer instance.
+     */
+    protected function getHtmlPageRendererService()
+    {
+        return $this->services['html_page_renderer'] = new \Drupal\Core\Page\DefaultHtmlPageRenderer();
+    }
+
+    /**
+     * Gets the 'html_view_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\HtmlViewSubscriber A Drupal\Core\EventSubscriber\HtmlViewSubscriber instance.
+     */
+    protected function getHtmlViewSubscriberService()
+    {
+        return $this->services['html_view_subscriber'] = new \Drupal\Core\EventSubscriber\HtmlViewSubscriber($this->get('html_fragment_renderer'), $this->get('html_page_renderer'));
+    }
+
+    /**
+     * Gets the 'http_client_simpletest_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Http\Plugin\SimpletestHttpRequestSubscriber A Drupal\Core\Http\Plugin\SimpletestHttpRequestSubscriber instance.
+     */
+    protected function getHttpClientSimpletestSubscriberService()
+    {
+        return $this->services['http_client_simpletest_subscriber'] = new \Drupal\Core\Http\Plugin\SimpletestHttpRequestSubscriber();
+    }
+
+    /**
+     * Gets the 'http_default_client' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Guzzle\Http\Client A Guzzle\Http\Client instance.
+     */
+    protected function getHttpDefaultClientService()
+    {
+        $this->services['http_default_client'] = $instance = new \Guzzle\Http\Client(NULL, array('curl.CURLOPT_TIMEOUT' => 30, 'curl.CURLOPT_MAXREDIRS' => 3));
+
+        $instance->addSubscriber($this->get('http_client_simpletest_subscriber'));
+        $instance->setUserAgent('Drupal (+http://drupal.org/)');
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'http_kernel' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\HttpKernel A Drupal\Core\HttpKernel instance.
+     */
+    protected function getHttpKernelService()
+    {
+        return $this->services['http_kernel'] = new \Drupal\Core\HttpKernel($this->get('event_dispatcher'), $this, $this->get('controller_resolver'), $this->get('request_stack'));
+    }
+
+    /**
+     * Gets the 'image.factory' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Image\ImageFactory A Drupal\Core\Image\ImageFactory instance.
+     */
+    protected function getImage_FactoryService()
+    {
+        return $this->services['image.factory'] = new \Drupal\Core\Image\ImageFactory($this->get('image.toolkit.manager'));
+    }
+
+    /**
+     * Gets the 'image.toolkit.manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\ImageToolkit\ImageToolkitManager A Drupal\Core\ImageToolkit\ImageToolkitManager instance.
+     */
+    protected function getImage_Toolkit_ManagerService()
+    {
+        return $this->services['image.toolkit.manager'] = new \Drupal\Core\ImageToolkit\ImageToolkitManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('config.factory'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'info_parser' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Extension\InfoParser A Drupal\Core\Extension\InfoParser instance.
+     */
+    protected function getInfoParserService()
+    {
+        return $this->services['info_parser'] = new \Drupal\Core\Extension\InfoParser();
+    }
+
+    /**
+     * Gets the 'kernel' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @throws RuntimeException always since this service is expected to be injected dynamically
+     */
+    protected function getKernelService()
+    {
+        throw new RuntimeException('You have requested a synthetic service ("kernel"). The DIC does not know how to construct this service.');
+    }
+
+    /**
+     * Gets the 'kernel_destruct_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\KernelDestructionSubscriber A Drupal\Core\EventSubscriber\KernelDestructionSubscriber instance.
+     */
+    protected function getKernelDestructSubscriberService()
+    {
+        $this->services['kernel_destruct_subscriber'] = $instance = new \Drupal\Core\EventSubscriber\KernelDestructionSubscriber();
+
+        $instance->setContainer($this);
+        $instance->registerService('keyvalue.expirable.database');
+        $instance->registerService('path.alias_whitelist');
+        $instance->registerService('theme.registry');
+        $instance->registerService('string_translator.locale.lookup');
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'keyvalue' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\KeyValueStore\KeyValueFactory A Drupal\Core\KeyValueStore\KeyValueFactory instance.
+     */
+    protected function getKeyvalueService()
+    {
+        return $this->services['keyvalue'] = new \Drupal\Core\KeyValueStore\KeyValueFactory($this, $this->get('settings'));
+    }
+
+    /**
+     * Gets the 'keyvalue.database' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\KeyValueStore\KeyValueDatabaseFactory A Drupal\Core\KeyValueStore\KeyValueDatabaseFactory instance.
+     */
+    protected function getKeyvalue_DatabaseService()
+    {
+        return $this->services['keyvalue.database'] = new \Drupal\Core\KeyValueStore\KeyValueDatabaseFactory($this->get('database'));
+    }
+
+    /**
+     * Gets the 'keyvalue.expirable' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\KeyValueStore\KeyValueExpirableFactory A Drupal\Core\KeyValueStore\KeyValueExpirableFactory instance.
+     */
+    protected function getKeyvalue_ExpirableService()
+    {
+        return $this->services['keyvalue.expirable'] = new \Drupal\Core\KeyValueStore\KeyValueExpirableFactory($this, $this->get('settings'));
+    }
+
+    /**
+     * Gets the 'keyvalue.expirable.database' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\KeyValueStore\KeyValueDatabaseExpirableFactory A Drupal\Core\KeyValueStore\KeyValueDatabaseExpirableFactory instance.
+     */
+    protected function getKeyvalue_Expirable_DatabaseService()
+    {
+        return $this->services['keyvalue.expirable.database'] = new \Drupal\Core\KeyValueStore\KeyValueDatabaseExpirableFactory($this->get('database'));
+    }
+
+    /**
+     * Gets the 'language.config_factory_override' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\language\Config\LanguageConfigFactoryOverride A Drupal\language\Config\LanguageConfigFactoryOverride instance.
+     */
+    protected function getLanguage_ConfigFactoryOverrideService()
+    {
+        $this->services['language.config_factory_override'] = $instance = new \Drupal\language\Config\LanguageConfigFactoryOverride($this->get('config.storage'), $this->get('event_dispatcher'), $this->get('config.typed'));
+
+        $instance->setLanguageFromDefault($this->get('language.default'));
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'language.config_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\language\EventSubscriber\ConfigSubscriber A Drupal\language\EventSubscriber\ConfigSubscriber instance.
+     */
+    protected function getLanguage_ConfigSubscriberService()
+    {
+        return $this->services['language.config_subscriber'] = new \Drupal\language\EventSubscriber\ConfigSubscriber();
+    }
+
+    /**
+     * Gets the 'language.default' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Language\LanguageDefault A Drupal\Core\Language\LanguageDefault instance.
+     */
+    protected function getLanguage_DefaultService()
+    {
+        return $this->services['language.default'] = new \Drupal\Core\Language\LanguageDefault(array('id' => 'fr', 'label' => 'French', 'direction' => 0, 'weight' => 0, 'locked' => false, 'status' => true, 'uuid' => 'dbc9e8c6-230c-4bfe-8800-0cee629dd6cd', 'langcode' => 'en', 'dependencies' => array(), 'default' => true));
+    }
+
+    /**
+     * Gets the 'language_manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\language\ConfigurableLanguageManager A Drupal\language\ConfigurableLanguageManager instance.
+     */
+    protected function getLanguageManagerService()
+    {
+        return $this->services['language_manager'] = new \Drupal\language\ConfigurableLanguageManager($this->get('language.default'), $this->get('config.factory'), $this->get('module_handler'), $this->get('language.config_factory_override'));
+    }
+
+    /**
+     * Gets the 'language_negotiator' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\language\LanguageNegotiator A Drupal\language\LanguageNegotiator instance.
+     */
+    protected function getLanguageNegotiatorService()
+    {
+        $this->services['language_negotiator'] = $instance = new \Drupal\language\LanguageNegotiator($this->get('language_manager'), $this->get('plugin.manager.language_negotiation_method'), $this->get('config.factory'), $this->get('settings'));
+
+        $instance->initLanguageManager();
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'legacy_request_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\LegacyRequestSubscriber A Drupal\Core\EventSubscriber\LegacyRequestSubscriber instance.
+     */
+    protected function getLegacyRequestSubscriberService()
+    {
+        return $this->services['legacy_request_subscriber'] = new \Drupal\Core\EventSubscriber\LegacyRequestSubscriber();
+    }
+
+    /**
+     * Gets the 'link_generator' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Utility\LinkGenerator A Drupal\Core\Utility\LinkGenerator instance.
+     */
+    protected function getLinkGeneratorService()
+    {
+        return $this->services['link_generator'] = new \Drupal\Core\Utility\LinkGenerator($this->get('url_generator'), $this->get('module_handler'), $this->get('path.alias_manager.cached'));
+    }
+
+    /**
+     * Gets the 'locale.config.typed' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\locale\LocaleConfigManager A Drupal\locale\LocaleConfigManager instance.
+     */
+    protected function getLocale_Config_TypedService()
+    {
+        return $this->services['locale.config.typed'] = new \Drupal\locale\LocaleConfigManager($this->get('config.storage'), $this->get('config.storage.schema'), $this->get('config.storage.installer'), $this->get('locale.storage'), $this->get('cache.config'), $this->get('config.factory'), $this->get('language_manager'));
+    }
+
+    /**
+     * Gets the 'locale.storage' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\locale\StringDatabaseStorage A Drupal\locale\StringDatabaseStorage instance.
+     */
+    protected function getLocale_StorageService()
+    {
+        return $this->services['locale.storage'] = new \Drupal\locale\StringDatabaseStorage($this->get('database'));
+    }
+
+    /**
+     * Gets the 'lock' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Lock\DatabaseLockBackend A Drupal\Core\Lock\DatabaseLockBackend instance.
+     */
+    protected function getLockService()
+    {
+        return $this->services['lock'] = new \Drupal\Core\Lock\DatabaseLockBackend($this->get('database'));
+    }
+
+    /**
+     * Gets the 'maintenance_mode_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\MaintenanceModeSubscriber A Drupal\Core\EventSubscriber\MaintenanceModeSubscriber instance.
+     */
+    protected function getMaintenanceModeSubscriberService()
+    {
+        return $this->services['maintenance_mode_subscriber'] = new \Drupal\Core\EventSubscriber\MaintenanceModeSubscriber();
+    }
+
+    /**
+     * Gets the 'menu_link.tree' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\menu_link\MenuTree A Drupal\menu_link\MenuTree instance.
+     */
+    protected function getMenuLink_TreeService()
+    {
+        return $this->services['menu_link.tree'] = new \Drupal\menu_link\MenuTree($this->get('database'), $this->get('cache.data'), $this->get('language_manager'), $this->get('request_stack'), $this->get('entity.manager'), $this->get('entity.query'), $this->get('state'));
+    }
+
+    /**
+     * Gets the 'module_handler' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Extension\CachedModuleHandler A Drupal\Core\Extension\CachedModuleHandler instance.
+     */
+    protected function getModuleHandlerService()
+    {
+        return $this->services['module_handler'] = new \Drupal\Core\Extension\CachedModuleHandler(array('block' => array('type' => 'module', 'pathname' => 'core/modules/block/block.info.yml', 'filename' => 'block.module'), 'breakpoint' => array('type' => 'module', 'pathname' => 'core/modules/breakpoint/breakpoint.info.yml', 'filename' => 'breakpoint.module'), 'ckeditor' => array('type' => 'module', 'pathname' => 'core/modules/ckeditor/ckeditor.info.yml', 'filename' => 'ckeditor.module'), 'color' => array('type' => 'module', 'pathname' => 'core/modules/color/color.info.yml', 'filename' => 'color.module'), 'comment' => array('type' => 'module', 'pathname' => 'core/modules/comment/comment.info.yml', 'filename' => 'comment.module'), 'config' => array('type' => 'module', 'pathname' => 'core/modules/config/config.info.yml', 'filename' => 'config.module'), 'contact' => array('type' => 'module', 'pathname' => 'core/modules/contact/contact.info.yml', 'filename' => 'contact.module'), 'contextual' => array('type' => 'module', 'pathname' => 'core/modules/contextual/contextual.info.yml', 'filename' => 'contextual.module'), 'custom_block' => array('type' => 'module', 'pathname' => 'core/modules/block/custom_block/custom_block.info.yml', 'filename' => 'custom_block.module'), 'datetime' => array('type' => 'module', 'pathname' => 'core/modules/datetime/datetime.info.yml', 'filename' => 'datetime.module'), 'dblog' => array('type' => 'module', 'pathname' => 'core/modules/dblog/dblog.info.yml', 'filename' => 'dblog.module'), 'edit' => array('type' => 'module', 'pathname' => 'core/modules/edit/edit.info.yml', 'filename' => 'edit.module'), 'editor' => array('type' => 'module', 'pathname' => 'core/modules/editor/editor.info.yml', 'filename' => 'editor.module'), 'entity' => array('type' => 'module', 'pathname' => 'core/modules/entity/entity.info.yml', 'filename' => 'entity.module'), 'entity_reference' => array('type' => 'module', 'pathname' => 'core/modules/entity_reference/entity_reference.info.yml', 'filename' => 'entity_reference.module'), 'field' => array('type' => 'module', 'pathname' => 'core/modules/field/field.info.yml', 'filename' => 'field.module'), 'field_ui' => array('type' => 'module', 'pathname' => 'core/modules/field_ui/field_ui.info.yml', 'filename' => 'field_ui.module'), 'file' => array('type' => 'module', 'pathname' => 'core/modules/file/file.info.yml', 'filename' => 'file.module'), 'filter' => array('type' => 'module', 'pathname' => 'core/modules/filter/filter.info.yml', 'filename' => 'filter.module'), 'help' => array('type' => 'module', 'pathname' => 'core/modules/help/help.info.yml', 'filename' => 'help.module'), 'history' => array('type' => 'module', 'pathname' => 'core/modules/history/history.info.yml', 'filename' => 'history.module'), 'image' => array('type' => 'module', 'pathname' => 'core/modules/image/image.info.yml', 'filename' => 'image.module'), 'language' => array('type' => 'module', 'pathname' => 'core/modules/language/language.info.yml', 'filename' => 'language.module'), 'locale' => array('type' => 'module', 'pathname' => 'core/modules/locale/locale.info.yml', 'filename' => 'locale.module'), 'menu' => array('type' => 'module', 'pathname' => 'core/modules/menu/menu.info.yml', 'filename' => 'menu.module'), 'menu_link' => array('type' => 'module', 'pathname' => 'core/modules/menu_link/menu_link.info.yml', 'filename' => 'menu_link.module'), 'node' => array('type' => 'module', 'pathname' => 'core/modules/node/node.info.yml', 'filename' => 'node.module'), 'options' => array('type' => 'module', 'pathname' => 'core/modules/options/options.info.yml', 'filename' => 'options.module'), 'path' => array('type' => 'module', 'pathname' => 'core/modules/path/path.info.yml', 'filename' => 'path.module'), 'rdf' => array('type' => 'module', 'pathname' => 'core/modules/rdf/rdf.info.yml', 'filename' => 'rdf.module'), 'search' => array('type' => 'module', 'pathname' => 'core/modules/search/search.info.yml', 'filename' => 'search.module'), 'shortcut' => array('type' => 'module', 'pathname' => 'core/modules/shortcut/shortcut.info.yml', 'filename' => 'shortcut.module'), 'system' => array('type' => 'module', 'pathname' => 'core/modules/system/system.info.yml', 'filename' => 'system.module'), 'taxonomy' => array('type' => 'module', 'pathname' => 'core/modules/taxonomy/taxonomy.info.yml', 'filename' => 'taxonomy.module'), 'text' => array('type' => 'module', 'pathname' => 'core/modules/text/text.info.yml', 'filename' => 'text.module'), 'toolbar' => array('type' => 'module', 'pathname' => 'core/modules/toolbar/toolbar.info.yml', 'filename' => 'toolbar.module'), 'tour' => array('type' => 'module', 'pathname' => 'core/modules/tour/tour.info.yml', 'filename' => 'tour.module'), 'update' => array('type' => 'module', 'pathname' => 'core/modules/update/update.info.yml', 'filename' => 'update.module'), 'user' => array('type' => 'module', 'pathname' => 'core/modules/user/user.info.yml', 'filename' => 'user.module'), 'views_ui' => array('type' => 'module', 'pathname' => 'core/modules/views_ui/views_ui.info.yml', 'filename' => 'views_ui.module'), 'views' => array('type' => 'module', 'pathname' => 'core/modules/views/views.info.yml', 'filename' => 'views.module'), 'standard' => array('type' => 'profile', 'pathname' => 'core/profiles/standard/standard.info.yml', 'filename' => 'standard.profile')), $this->get('state'), $this->get('cache.bootstrap'));
+    }
+
+    /**
+     * Gets the 'node.admin_path.route_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\node\EventSubscriber\NodeAdminRouteSubscriber A Drupal\node\EventSubscriber\NodeAdminRouteSubscriber instance.
+     */
+    protected function getNode_AdminPath_RouteSubscriberService()
+    {
+        return $this->services['node.admin_path.route_subscriber'] = new \Drupal\node\EventSubscriber\NodeAdminRouteSubscriber($this->get('config.factory'));
+    }
+
+    /**
+     * Gets the 'node.grant_storage' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\node\NodeGrantDatabaseStorage A Drupal\node\NodeGrantDatabaseStorage instance.
+     */
+    protected function getNode_GrantStorageService()
+    {
+        return $this->services['node.grant_storage'] = new \Drupal\node\NodeGrantDatabaseStorage($this->get('database'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'paramconverter.configentity_admin' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\locale\ParamConverter\LocaleAdminPathConfigEntityConverter A Drupal\locale\ParamConverter\LocaleAdminPathConfigEntityConverter instance.
+     */
+    protected function getParamconverter_ConfigentityAdminService()
+    {
+        return $this->services['paramconverter.configentity_admin'] = new \Drupal\locale\ParamConverter\LocaleAdminPathConfigEntityConverter($this->get('entity.manager'), $this->get('config.factory'), $this->get('router.admin_context'));
+    }
+
+    /**
+     * Gets the 'paramconverter.entity' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\ParamConverter\EntityConverter A Drupal\Core\ParamConverter\EntityConverter instance.
+     */
+    protected function getParamconverter_EntityService()
+    {
+        return $this->services['paramconverter.entity'] = new \Drupal\Core\ParamConverter\EntityConverter($this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'paramconverter.views_ui' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views_ui\ParamConverter\ViewUIConverter A Drupal\views_ui\ParamConverter\ViewUIConverter instance.
+     */
+    protected function getParamconverter_ViewsUiService()
+    {
+        return $this->services['paramconverter.views_ui'] = new \Drupal\views_ui\ParamConverter\ViewUIConverter($this->get('entity.manager'), $this->get('user.tempstore'));
+    }
+
+    /**
+     * Gets the 'paramconverter_manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\ParamConverter\ParamConverterManager A Drupal\Core\ParamConverter\ParamConverterManager instance.
+     */
+    protected function getParamconverterManagerService()
+    {
+        $this->services['paramconverter_manager'] = $instance = new \Drupal\Core\ParamConverter\ParamConverterManager();
+
+        $instance->setContainer($this);
+        $instance->addConverter('paramconverter.entity', 0);
+        $instance->addConverter('paramconverter.configentity_admin', 5);
+        $instance->addConverter('paramconverter.views_ui', 10);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'paramconverter_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\ParamConverterSubscriber A Drupal\Core\EventSubscriber\ParamConverterSubscriber instance.
+     */
+    protected function getParamconverterSubscriberService()
+    {
+        return $this->services['paramconverter_subscriber'] = new \Drupal\Core\EventSubscriber\ParamConverterSubscriber($this->get('paramconverter_manager'));
+    }
+
+    /**
+     * Gets the 'password' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Password\PhpassHashedPassword A Drupal\Core\Password\PhpassHashedPassword instance.
+     */
+    protected function getPasswordService()
+    {
+        return $this->services['password'] = new \Drupal\Core\Password\PhpassHashedPassword(16);
+    }
+
+    /**
+     * Gets the 'path.alias_manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Path\AliasManager A Drupal\Core\Path\AliasManager instance.
+     */
+    protected function getPath_AliasManagerService()
+    {
+        return $this->services['path.alias_manager'] = new \Drupal\Core\Path\AliasManager($this->get('path.crud'), $this->get('path.alias_whitelist'), $this->get('language_manager'));
+    }
+
+    /**
+     * Gets the 'path.alias_manager.cached' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\CacheDecorator\AliasManagerCacheDecorator A Drupal\Core\CacheDecorator\AliasManagerCacheDecorator instance.
+     */
+    protected function getPath_AliasManager_CachedService()
+    {
+        return $this->services['path.alias_manager.cached'] = new \Drupal\Core\CacheDecorator\AliasManagerCacheDecorator($this->get('path.alias_manager'), $this->get('cache.data'));
+    }
+
+    /**
+     * Gets the 'path.alias_whitelist' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Path\AliasWhitelist A Drupal\Core\Path\AliasWhitelist instance.
+     */
+    protected function getPath_AliasWhitelistService()
+    {
+        return $this->services['path.alias_whitelist'] = new \Drupal\Core\Path\AliasWhitelist('path_alias_whitelist', $this->get('cache.cache'), $this->get('lock'), $this->get('state'), $this->get('database'));
+    }
+
+    /**
+     * Gets the 'path.crud' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Path\Path A Drupal\Core\Path\Path instance.
+     */
+    protected function getPath_CrudService()
+    {
+        return $this->services['path.crud'] = new \Drupal\Core\Path\Path($this->get('database'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'path_processor.files' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\system\PathProcessor\PathProcessorFiles A Drupal\system\PathProcessor\PathProcessorFiles instance.
+     */
+    protected function getPathProcessor_FilesService()
+    {
+        return $this->services['path_processor.files'] = new \Drupal\system\PathProcessor\PathProcessorFiles();
+    }
+
+    /**
+     * Gets the 'path_processor.image_styles' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\image\PathProcessor\PathProcessorImageStyles A Drupal\image\PathProcessor\PathProcessorImageStyles instance.
+     */
+    protected function getPathProcessor_ImageStylesService()
+    {
+        return $this->services['path_processor.image_styles'] = new \Drupal\image\PathProcessor\PathProcessorImageStyles();
+    }
+
+    /**
+     * Gets the 'path_processor_alias' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\PathProcessor\PathProcessorAlias A Drupal\Core\PathProcessor\PathProcessorAlias instance.
+     */
+    protected function getPathProcessorAliasService()
+    {
+        return $this->services['path_processor_alias'] = new \Drupal\Core\PathProcessor\PathProcessorAlias($this->get('path.alias_manager'));
+    }
+
+    /**
+     * Gets the 'path_processor_decode' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\PathProcessor\PathProcessorDecode A Drupal\Core\PathProcessor\PathProcessorDecode instance.
+     */
+    protected function getPathProcessorDecodeService()
+    {
+        return $this->services['path_processor_decode'] = new \Drupal\Core\PathProcessor\PathProcessorDecode();
+    }
+
+    /**
+     * Gets the 'path_processor_front' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\PathProcessor\PathProcessorFront A Drupal\Core\PathProcessor\PathProcessorFront instance.
+     */
+    protected function getPathProcessorFrontService()
+    {
+        return $this->services['path_processor_front'] = new \Drupal\Core\PathProcessor\PathProcessorFront($this->get('config.factory'));
+    }
+
+    /**
+     * Gets the 'path_processor_manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\PathProcessor\PathProcessorManager A Drupal\Core\PathProcessor\PathProcessorManager instance.
+     */
+    protected function getPathProcessorManagerService()
+    {
+        $a = $this->get('path_processor_front');
+        $b = $this->get('path_processor_alias');
+
+        $this->services['path_processor_manager'] = $instance = new \Drupal\Core\PathProcessor\PathProcessorManager();
+
+        $instance->addInbound($this->get('path_processor_decode'), 1000);
+        $instance->addInbound($a, 200);
+        $instance->addInbound($b, 100);
+        $instance->addInbound($this->get('path_processor.image_styles'), 300);
+        $instance->addInbound($this->get('path_processor.files'), 200);
+        $instance->addOutbound($a, 200);
+        $instance->addOutbound($b, 300);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'path_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\PathSubscriber A Drupal\Core\EventSubscriber\PathSubscriber instance.
+     */
+    protected function getPathSubscriberService()
+    {
+        return $this->services['path_subscriber'] = new \Drupal\Core\EventSubscriber\PathSubscriber($this->get('path.alias_manager.cached'), $this->get('path_processor_manager'));
+    }
+
+    /**
+     * Gets the 'plugin.cache_clearer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Plugin\CachedDiscoveryClearer A Drupal\Core\Plugin\CachedDiscoveryClearer instance.
+     */
+    protected function getPlugin_CacheClearerService()
+    {
+        $this->services['plugin.cache_clearer'] = $instance = new \Drupal\Core\Plugin\CachedDiscoveryClearer();
+
+        $instance->addCachedDiscovery($this->get('entity.manager'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.field.field_type'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.field.widget'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.field.formatter'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.archiver'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.action'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.menu.local_action'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.menu.local_task'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.menu.contextual_link'));
+        $instance->addCachedDiscovery($this->get('typed_data_manager'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.mail'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.condition'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.block'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.ckeditor.plugin'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.edit.editor'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.editor'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.entity_reference.selection'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.filter'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.image.effect'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.language_negotiation_method'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.search'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.tour.tip'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.access'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.area'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.argument'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.argument_default'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.argument_validator'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.cache'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.display_extender'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.display'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.exposed_form'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.field'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.filter'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.join'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.pager'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.query'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.relationship'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.row'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.sort'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.style'));
+        $instance->addCachedDiscovery($this->get('plugin.manager.views.wizard'));
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'plugin.manager.action' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Action\ActionManager A Drupal\Core\Action\ActionManager instance.
+     */
+    protected function getPlugin_Manager_ActionService()
+    {
+        return $this->services['plugin.manager.action'] = new \Drupal\Core\Action\ActionManager($this->get('container.namespaces'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.archiver' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Archiver\ArchiverManager A Drupal\Core\Archiver\ArchiverManager instance.
+     */
+    protected function getPlugin_Manager_ArchiverService()
+    {
+        return $this->services['plugin.manager.archiver'] = new \Drupal\Core\Archiver\ArchiverManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.block' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\block\Plugin\Type\BlockManager A Drupal\block\Plugin\Type\BlockManager instance.
+     */
+    protected function getPlugin_Manager_BlockService()
+    {
+        return $this->services['plugin.manager.block'] = new \Drupal\block\Plugin\Type\BlockManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'), $this->get('string_translation'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.ckeditor.plugin' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\ckeditor\CKEditorPluginManager A Drupal\ckeditor\CKEditorPluginManager instance.
+     */
+    protected function getPlugin_Manager_Ckeditor_PluginService()
+    {
+        return $this->services['plugin.manager.ckeditor.plugin'] = new \Drupal\ckeditor\CKEditorPluginManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.condition' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Condition\ConditionManager A Drupal\Core\Condition\ConditionManager instance.
+     */
+    protected function getPlugin_Manager_ConditionService()
+    {
+        return $this->services['plugin.manager.condition'] = new \Drupal\Core\Condition\ConditionManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.edit.editor' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\edit\Plugin\InPlaceEditorManager A Drupal\edit\Plugin\InPlaceEditorManager instance.
+     */
+    protected function getPlugin_Manager_Edit_EditorService()
+    {
+        return $this->services['plugin.manager.edit.editor'] = new \Drupal\edit\Plugin\InPlaceEditorManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.editor' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\editor\Plugin\EditorManager A Drupal\editor\Plugin\EditorManager instance.
+     */
+    protected function getPlugin_Manager_EditorService()
+    {
+        return $this->services['plugin.manager.editor'] = new \Drupal\editor\Plugin\EditorManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.entity_reference.selection' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\entity_reference\Plugin\Type\SelectionPluginManager A Drupal\entity_reference\Plugin\Type\SelectionPluginManager instance.
+     */
+    protected function getPlugin_Manager_EntityReference_SelectionService()
+    {
+        return $this->services['plugin.manager.entity_reference.selection'] = new \Drupal\entity_reference\Plugin\Type\SelectionPluginManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.field.field_type' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Field\FieldTypePluginManager A Drupal\Core\Field\FieldTypePluginManager instance.
+     */
+    protected function getPlugin_Manager_Field_FieldTypeService()
+    {
+        return $this->services['plugin.manager.field.field_type'] = new \Drupal\Core\Field\FieldTypePluginManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.field.formatter' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Field\FormatterPluginManager A Drupal\Core\Field\FormatterPluginManager instance.
+     */
+    protected function getPlugin_Manager_Field_FormatterService()
+    {
+        return $this->services['plugin.manager.field.formatter'] = new \Drupal\Core\Field\FormatterPluginManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('module_handler'), $this->get('language_manager'), $this->get('plugin.manager.field.field_type'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.field.widget' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Field\WidgetPluginManager A Drupal\Core\Field\WidgetPluginManager instance.
+     */
+    protected function getPlugin_Manager_Field_WidgetService()
+    {
+        return $this->services['plugin.manager.field.widget'] = new \Drupal\Core\Field\WidgetPluginManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('module_handler'), $this->get('language_manager'), $this->get('plugin.manager.field.field_type'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.filter' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\filter\FilterPluginManager A Drupal\filter\FilterPluginManager instance.
+     */
+    protected function getPlugin_Manager_FilterService()
+    {
+        return $this->services['plugin.manager.filter'] = new \Drupal\filter\FilterPluginManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.image.effect' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\image\ImageEffectManager A Drupal\image\ImageEffectManager instance.
+     */
+    protected function getPlugin_Manager_Image_EffectService()
+    {
+        return $this->services['plugin.manager.image.effect'] = new \Drupal\image\ImageEffectManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.language_negotiation_method' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\language\LanguageNegotiationMethodManager A Drupal\language\LanguageNegotiationMethodManager instance.
+     */
+    protected function getPlugin_Manager_LanguageNegotiationMethodService()
+    {
+        return $this->services['plugin.manager.language_negotiation_method'] = new \Drupal\language\LanguageNegotiationMethodManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.mail' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Mail\MailManager A Drupal\Core\Mail\MailManager instance.
+     */
+    protected function getPlugin_Manager_MailService()
+    {
+        return $this->services['plugin.manager.mail'] = new \Drupal\Core\Mail\MailManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'), $this->get('config.factory'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.menu.contextual_link' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Menu\ContextualLinkManager A Drupal\Core\Menu\ContextualLinkManager instance.
+     */
+    protected function getPlugin_Manager_Menu_ContextualLinkService()
+    {
+        return $this->services['plugin.manager.menu.contextual_link'] = new \Drupal\Core\Menu\ContextualLinkManager($this->get('controller_resolver'), $this->get('module_handler'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('access_manager'), $this->get('current_user'), $this->get('request_stack'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.menu.local_action' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Menu\LocalActionManager A Drupal\Core\Menu\LocalActionManager instance.
+     */
+    protected function getPlugin_Manager_Menu_LocalActionService()
+    {
+        return $this->services['plugin.manager.menu.local_action'] = new \Drupal\Core\Menu\LocalActionManager($this->get('controller_resolver'), $this->get('request'), $this->get('router.route_provider'), $this->get('module_handler'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('access_manager'), $this->get('current_user'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.menu.local_task' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Menu\LocalTaskManager A Drupal\Core\Menu\LocalTaskManager instance.
+     */
+    protected function getPlugin_Manager_Menu_LocalTaskService()
+    {
+        return $this->services['plugin.manager.menu.local_task'] = new \Drupal\Core\Menu\LocalTaskManager($this->get('controller_resolver'), $this->get('request'), $this->get('router.route_provider'), $this->get('router.builder'), $this->get('module_handler'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('access_manager'), $this->get('current_user'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.search' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\search\SearchPluginManager A Drupal\search\SearchPluginManager instance.
+     */
+    protected function getPlugin_Manager_SearchService()
+    {
+        return $this->services['plugin.manager.search'] = new \Drupal\search\SearchPluginManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.tour.tip' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\tour\TipPluginManager A Drupal\tour\TipPluginManager instance.
+     */
+    protected function getPlugin_Manager_Tour_TipService()
+    {
+        return $this->services['plugin.manager.tour.tip'] = new \Drupal\tour\TipPluginManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.access' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_AccessService()
+    {
+        return $this->services['plugin.manager.views.access'] = new \Drupal\views\Plugin\ViewsPluginManager('access', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.area' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsHandlerManager A Drupal\views\Plugin\ViewsHandlerManager instance.
+     */
+    protected function getPlugin_Manager_Views_AreaService()
+    {
+        return $this->services['plugin.manager.views.area'] = new \Drupal\views\Plugin\ViewsHandlerManager('area', $this->get('container.namespaces'), $this->get('views.views_data'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.argument' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsHandlerManager A Drupal\views\Plugin\ViewsHandlerManager instance.
+     */
+    protected function getPlugin_Manager_Views_ArgumentService()
+    {
+        return $this->services['plugin.manager.views.argument'] = new \Drupal\views\Plugin\ViewsHandlerManager('argument', $this->get('container.namespaces'), $this->get('views.views_data'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.argument_default' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_ArgumentDefaultService()
+    {
+        return $this->services['plugin.manager.views.argument_default'] = new \Drupal\views\Plugin\ViewsPluginManager('argument_default', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.argument_validator' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_ArgumentValidatorService()
+    {
+        return $this->services['plugin.manager.views.argument_validator'] = new \Drupal\views\Plugin\ViewsPluginManager('argument_validator', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.cache' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_CacheService()
+    {
+        return $this->services['plugin.manager.views.cache'] = new \Drupal\views\Plugin\ViewsPluginManager('cache', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.display' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_DisplayService()
+    {
+        return $this->services['plugin.manager.views.display'] = new \Drupal\views\Plugin\ViewsPluginManager('display', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.display_extender' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_DisplayExtenderService()
+    {
+        return $this->services['plugin.manager.views.display_extender'] = new \Drupal\views\Plugin\ViewsPluginManager('display_extender', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.exposed_form' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_ExposedFormService()
+    {
+        return $this->services['plugin.manager.views.exposed_form'] = new \Drupal\views\Plugin\ViewsPluginManager('exposed_form', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.field' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsHandlerManager A Drupal\views\Plugin\ViewsHandlerManager instance.
+     */
+    protected function getPlugin_Manager_Views_FieldService()
+    {
+        return $this->services['plugin.manager.views.field'] = new \Drupal\views\Plugin\ViewsHandlerManager('field', $this->get('container.namespaces'), $this->get('views.views_data'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.filter' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsHandlerManager A Drupal\views\Plugin\ViewsHandlerManager instance.
+     */
+    protected function getPlugin_Manager_Views_FilterService()
+    {
+        return $this->services['plugin.manager.views.filter'] = new \Drupal\views\Plugin\ViewsHandlerManager('filter', $this->get('container.namespaces'), $this->get('views.views_data'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.join' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsHandlerManager A Drupal\views\Plugin\ViewsHandlerManager instance.
+     */
+    protected function getPlugin_Manager_Views_JoinService()
+    {
+        return $this->services['plugin.manager.views.join'] = new \Drupal\views\Plugin\ViewsHandlerManager('join', $this->get('container.namespaces'), $this->get('views.views_data'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.pager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_PagerService()
+    {
+        return $this->services['plugin.manager.views.pager'] = new \Drupal\views\Plugin\ViewsPluginManager('pager', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.query' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_QueryService()
+    {
+        return $this->services['plugin.manager.views.query'] = new \Drupal\views\Plugin\ViewsPluginManager('query', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.relationship' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsHandlerManager A Drupal\views\Plugin\ViewsHandlerManager instance.
+     */
+    protected function getPlugin_Manager_Views_RelationshipService()
+    {
+        return $this->services['plugin.manager.views.relationship'] = new \Drupal\views\Plugin\ViewsHandlerManager('relationship', $this->get('container.namespaces'), $this->get('views.views_data'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.row' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_RowService()
+    {
+        return $this->services['plugin.manager.views.row'] = new \Drupal\views\Plugin\ViewsPluginManager('row', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.sort' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsHandlerManager A Drupal\views\Plugin\ViewsHandlerManager instance.
+     */
+    protected function getPlugin_Manager_Views_SortService()
+    {
+        return $this->services['plugin.manager.views.sort'] = new \Drupal\views\Plugin\ViewsHandlerManager('sort', $this->get('container.namespaces'), $this->get('views.views_data'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.style' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_StyleService()
+    {
+        return $this->services['plugin.manager.views.style'] = new \Drupal\views\Plugin\ViewsPluginManager('style', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'plugin.manager.views.wizard' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Plugin\ViewsPluginManager A Drupal\views\Plugin\ViewsPluginManager instance.
+     */
+    protected function getPlugin_Manager_Views_WizardService()
+    {
+        return $this->services['plugin.manager.views.wizard'] = new \Drupal\views\Plugin\ViewsPluginManager('wizard', $this->get('container.namespaces'), $this->get('cache.data'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'private_key' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\PrivateKey A Drupal\Core\PrivateKey instance.
+     */
+    protected function getPrivateKeyService()
+    {
+        return $this->services['private_key'] = new \Drupal\Core\PrivateKey($this->get('state'));
+    }
+
+    /**
+     * Gets the 'queue' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Queue\QueueFactory A Drupal\Core\Queue\QueueFactory instance.
+     */
+    protected function getQueueService()
+    {
+        $this->services['queue'] = $instance = new \Drupal\Core\Queue\QueueFactory($this->get('settings'));
+
+        $instance->setContainer($this);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'queue.database' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Queue\QueueDatabaseFactory A Drupal\Core\Queue\QueueDatabaseFactory instance.
+     */
+    protected function getQueue_DatabaseService()
+    {
+        return $this->services['queue.database'] = new \Drupal\Core\Queue\QueueDatabaseFactory($this->get('database'));
+    }
+
+    /**
+     * Gets the 'redirect_response_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\RedirectResponseSubscriber A Drupal\Core\EventSubscriber\RedirectResponseSubscriber instance.
+     * 
+     * @throws InactiveScopeException when the 'redirect_response_subscriber' service is requested while the 'request' scope is not active
+     */
+    protected function getRedirectResponseSubscriberService()
+    {
+        if (!isset($this->scopedServices['request'])) {
+            throw new InactiveScopeException('redirect_response_subscriber', 'request');
+        }
+
+        return $this->services['redirect_response_subscriber'] = $this->scopedServices['request']['redirect_response_subscriber'] = new \Drupal\Core\EventSubscriber\RedirectResponseSubscriber($this->get('url_generator'));
+    }
+
+    /**
+     * Gets the 'request' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @throws RuntimeException always since this service is expected to be injected dynamically
+     */
+    protected function getRequestService()
+    {
+        throw new RuntimeException('You have requested a synthetic service ("request"). The DIC does not know how to construct this service.');
+    }
+
+    /**
+     * Gets the 'request_close_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\RequestCloseSubscriber A Drupal\Core\EventSubscriber\RequestCloseSubscriber instance.
+     */
+    protected function getRequestCloseSubscriberService()
+    {
+        return $this->services['request_close_subscriber'] = new \Drupal\Core\EventSubscriber\RequestCloseSubscriber($this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'request_stack' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Symfony\Component\HttpFoundation\RequestStack A Symfony\Component\HttpFoundation\RequestStack instance.
+     */
+    protected function getRequestStackService()
+    {
+        return $this->services['request_stack'] = new \Symfony\Component\HttpFoundation\RequestStack();
+    }
+
+    /**
+     * Gets the 'reverse_proxy_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\ReverseProxySubscriber A Drupal\Core\EventSubscriber\ReverseProxySubscriber instance.
+     */
+    protected function getReverseProxySubscriberService()
+    {
+        return $this->services['reverse_proxy_subscriber'] = new \Drupal\Core\EventSubscriber\ReverseProxySubscriber($this->get('settings'));
+    }
+
+    /**
+     * Gets the 'route_content_controller_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\ContentControllerSubscriber A Drupal\Core\EventSubscriber\ContentControllerSubscriber instance.
+     */
+    protected function getRouteContentControllerSubscriberService()
+    {
+        return $this->services['route_content_controller_subscriber'] = new \Drupal\Core\EventSubscriber\ContentControllerSubscriber($this->get('content_negotiation'));
+    }
+
+    /**
+     * Gets the 'route_content_form_controller_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\ContentFormControllerSubscriber A Drupal\Core\EventSubscriber\ContentFormControllerSubscriber instance.
+     */
+    protected function getRouteContentFormControllerSubscriberService()
+    {
+        return $this->services['route_content_form_controller_subscriber'] = new \Drupal\Core\EventSubscriber\ContentFormControllerSubscriber($this, $this->get('controller_resolver'), $this->get('form_builder'));
+    }
+
+    /**
+     * Gets the 'route_enhancer.authentication' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Routing\Enhancer\AuthenticationEnhancer A Drupal\Core\Routing\Enhancer\AuthenticationEnhancer instance.
+     */
+    protected function getRouteEnhancer_AuthenticationService()
+    {
+        return $this->services['route_enhancer.authentication'] = new \Drupal\Core\Routing\Enhancer\AuthenticationEnhancer($this->get('authentication'), $this->get('current_user'));
+    }
+
+    /**
+     * Gets the 'route_enhancer.entity' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Entity\Enhancer\EntityRouteEnhancer A Drupal\Core\Entity\Enhancer\EntityRouteEnhancer instance.
+     */
+    protected function getRouteEnhancer_EntityService()
+    {
+        return $this->services['route_enhancer.entity'] = new \Drupal\Core\Entity\Enhancer\EntityRouteEnhancer($this->get('controller_resolver'), $this->get('entity.manager'), $this->get('form_builder'));
+    }
+
+    /**
+     * Gets the 'route_enhancer.param_conversion' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Routing\Enhancer\ParamConversionEnhancer A Drupal\Core\Routing\Enhancer\ParamConversionEnhancer instance.
+     */
+    protected function getRouteEnhancer_ParamConversionService()
+    {
+        return $this->services['route_enhancer.param_conversion'] = new \Drupal\Core\Routing\Enhancer\ParamConversionEnhancer($this->get('paramconverter_manager'));
+    }
+
+    /**
+     * Gets the 'route_http_method_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\RouteMethodSubscriber A Drupal\Core\EventSubscriber\RouteMethodSubscriber instance.
+     */
+    protected function getRouteHttpMethodSubscriberService()
+    {
+        return $this->services['route_http_method_subscriber'] = new \Drupal\Core\EventSubscriber\RouteMethodSubscriber();
+    }
+
+    /**
+     * Gets the 'route_processor_csrf' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Access\RouteProcessorCsrf A Drupal\Core\Access\RouteProcessorCsrf instance.
+     */
+    protected function getRouteProcessorCsrfService()
+    {
+        return $this->services['route_processor_csrf'] = new \Drupal\Core\Access\RouteProcessorCsrf($this->get('csrf_token'));
+    }
+
+    /**
+     * Gets the 'route_processor_manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\RouteProcessor\RouteProcessorManager A Drupal\Core\RouteProcessor\RouteProcessorManager instance.
+     */
+    protected function getRouteProcessorManagerService()
+    {
+        $this->services['route_processor_manager'] = $instance = new \Drupal\Core\RouteProcessor\RouteProcessorManager();
+
+        $instance->addOutbound($this->get('route_processor_csrf'), 0);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'route_special_attributes_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\SpecialAttributesRouteSubscriber A Drupal\Core\EventSubscriber\SpecialAttributesRouteSubscriber instance.
+     */
+    protected function getRouteSpecialAttributesSubscriberService()
+    {
+        return $this->services['route_special_attributes_subscriber'] = new \Drupal\Core\EventSubscriber\SpecialAttributesRouteSubscriber();
+    }
+
+    /**
+     * Gets the 'route_subscriber.entity' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\EntityRouteAlterSubscriber A Drupal\Core\EventSubscriber\EntityRouteAlterSubscriber instance.
+     */
+    protected function getRouteSubscriber_EntityService()
+    {
+        return $this->services['route_subscriber.entity'] = new \Drupal\Core\EventSubscriber\EntityRouteAlterSubscriber($this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'route_subscriber.module' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\ModuleRouteSubscriber A Drupal\Core\EventSubscriber\ModuleRouteSubscriber instance.
+     */
+    protected function getRouteSubscriber_ModuleService()
+    {
+        return $this->services['route_subscriber.module'] = new \Drupal\Core\EventSubscriber\ModuleRouteSubscriber($this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'router' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Symfony\Cmf\Component\Routing\ChainRouter A Symfony\Cmf\Component\Routing\ChainRouter instance.
+     */
+    protected function getRouterService()
+    {
+        $this->services['router'] = $instance = new \Symfony\Cmf\Component\Routing\ChainRouter();
+
+        $instance->setContext($this->get('router.request_context'));
+        $instance->add($this->get('router.dynamic'));
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'router.admin_context' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Routing\AdminContext A Drupal\Core\Routing\AdminContext instance.
+     */
+    protected function getRouter_AdminContextService()
+    {
+        $this->services['router.admin_context'] = $instance = new \Drupal\Core\Routing\AdminContext();
+
+        if ($this->has('request')) {
+            $instance->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));
+        }
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'router.builder' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Routing\RouteBuilder A Drupal\Core\Routing\RouteBuilder instance.
+     */
+    protected function getRouter_BuilderService()
+    {
+        return $this->services['router.builder'] = new \Drupal\Core\Routing\RouteBuilder($this->get('router.dumper'), $this->get('lock'), $this->get('event_dispatcher'), $this->get('module_handler'), $this->get('controller_resolver'), $this->get('state'));
+    }
+
+    /**
+     * Gets the 'router.dumper' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Routing\MatcherDumper A Drupal\Core\Routing\MatcherDumper instance.
+     */
+    protected function getRouter_DumperService()
+    {
+        return $this->services['router.dumper'] = new \Drupal\Core\Routing\MatcherDumper($this->get('database'), $this->get('state'));
+    }
+
+    /**
+     * Gets the 'router.dynamic' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Symfony\Cmf\Component\Routing\DynamicRouter A Symfony\Cmf\Component\Routing\DynamicRouter instance.
+     */
+    protected function getRouter_DynamicService()
+    {
+        $this->services['router.dynamic'] = $instance = new \Symfony\Cmf\Component\Routing\DynamicRouter($this->get('router.request_context'), $this->get('router.matcher'), $this->get('url_generator'));
+
+        $instance->addRouteEnhancer($this->get('route_enhancer.param_conversion'), 0);
+        $instance->addRouteEnhancer($this->get('route_enhancer.authentication'), 1000);
+        $instance->addRouteEnhancer($this->get('route_enhancer.entity'), 20);
+        $instance->addRouteEnhancer($this->get('comment.route_enhancer'), 0);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'router.matcher' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Symfony\Cmf\Component\Routing\NestedMatcher\NestedMatcher A Symfony\Cmf\Component\Routing\NestedMatcher\NestedMatcher instance.
+     */
+    protected function getRouter_MatcherService()
+    {
+        $this->services['router.matcher'] = $instance = new \Symfony\Cmf\Component\Routing\NestedMatcher\NestedMatcher($this->get('router.route_provider'));
+
+        $instance->setFinalMatcher($this->get('router.matcher.final_matcher'));
+        $instance->addRouteFilter($this->get('accept_header_matcher'));
+        $instance->addRouteFilter($this->get('content_type_header_matcher'));
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'router.matcher.final_matcher' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Routing\UrlMatcher A Drupal\Core\Routing\UrlMatcher instance.
+     */
+    protected function getRouter_Matcher_FinalMatcherService()
+    {
+        return $this->services['router.matcher.final_matcher'] = new \Drupal\Core\Routing\UrlMatcher();
+    }
+
+    /**
+     * Gets the 'router.path_roots_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\PathRootsSubscriber A Drupal\Core\EventSubscriber\PathRootsSubscriber instance.
+     */
+    protected function getRouter_PathRootsSubscriberService()
+    {
+        return $this->services['router.path_roots_subscriber'] = new \Drupal\Core\EventSubscriber\PathRootsSubscriber($this->get('state'));
+    }
+
+    /**
+     * Gets the 'router.rebuild_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\RouterRebuildSubscriber A Drupal\Core\EventSubscriber\RouterRebuildSubscriber instance.
+     */
+    protected function getRouter_RebuildSubscriberService()
+    {
+        return $this->services['router.rebuild_subscriber'] = new \Drupal\Core\EventSubscriber\RouterRebuildSubscriber($this->get('router.builder'), $this->get('lock'));
+    }
+
+    /**
+     * Gets the 'router.request_context' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Symfony\Component\Routing\RequestContext A Symfony\Component\Routing\RequestContext instance.
+     */
+    protected function getRouter_RequestContextService()
+    {
+        $this->services['router.request_context'] = $instance = new \Symfony\Component\Routing\RequestContext();
+
+        $instance->fromRequest($this->get('request'));
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'router.route_preloader' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Routing\RoutePreloader A Drupal\Core\Routing\RoutePreloader instance.
+     */
+    protected function getRouter_RoutePreloaderService()
+    {
+        return $this->services['router.route_preloader'] = new \Drupal\Core\Routing\RoutePreloader($this->get('router.route_provider'), $this->get('state'), $this->get('content_negotiation'));
+    }
+
+    /**
+     * Gets the 'router.route_provider' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Routing\RouteProvider A Drupal\Core\Routing\RouteProvider instance.
+     */
+    protected function getRouter_RouteProviderService()
+    {
+        return $this->services['router.route_provider'] = new \Drupal\Core\Routing\RouteProvider($this->get('database'), $this->get('router.builder'), $this->get('state'));
+    }
+
+    /**
+     * Gets the 'router_listener' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Symfony\Component\HttpKernel\EventListener\RouterListener A Symfony\Component\HttpKernel\EventListener\RouterListener instance.
+     */
+    protected function getRouterListenerService()
+    {
+        return $this->services['router_listener'] = new \Symfony\Component\HttpKernel\EventListener\RouterListener($this->get('router'));
+    }
+
+    /**
+     * Gets the 'search.search_page_repository' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\search\SearchPageRepository A Drupal\search\SearchPageRepository instance.
+     */
+    protected function getSearch_SearchPageRepositoryService()
+    {
+        return $this->services['search.search_page_repository'] = new \Drupal\search\SearchPageRepository($this->get('config.factory'), $this->get('entity.manager'));
+    }
+
+    /**
+     * Gets the 'service_container' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @throws RuntimeException always since this service is expected to be injected dynamically
+     */
+    protected function getServiceContainerService()
+    {
+        throw new RuntimeException('You have requested a synthetic service ("service_container"). The DIC does not know how to construct this service.');
+    }
+
+    /**
+     * Gets the 'settings' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Component\Utility\Settings A Drupal\Component\Utility\Settings instance.
+     */
+    protected function getSettingsService()
+    {
+        return $this->services['settings'] = call_user_func(array('Drupal\\Component\\Utility\\Settings', 'getInstance'));
+    }
+
+    /**
+     * Gets the 'slave_database_ignore__subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\SlaveDatabaseIgnoreSubscriber A Drupal\Core\EventSubscriber\SlaveDatabaseIgnoreSubscriber instance.
+     */
+    protected function getSlaveDatabaseIgnoreSubscriberService()
+    {
+        return $this->services['slave_database_ignore__subscriber'] = new \Drupal\Core\EventSubscriber\SlaveDatabaseIgnoreSubscriber();
+    }
+
+    /**
+     * Gets the 'state' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\KeyValueStore\State A Drupal\Core\KeyValueStore\State instance.
+     */
+    protected function getStateService()
+    {
+        return $this->services['state'] = new \Drupal\Core\KeyValueStore\State($this->get('keyvalue'));
+    }
+
+    /**
+     * Gets the 'string_translation' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\StringTranslation\TranslationManager A Drupal\Core\StringTranslation\TranslationManager instance.
+     */
+    protected function getStringTranslationService()
+    {
+        $this->services['string_translation'] = $instance = new \Drupal\Core\StringTranslation\TranslationManager($this->get('language_manager'));
+
+        $instance->initLanguageManager();
+        $instance->addTranslator($this->get('string_translator.custom_strings'), 30);
+        $instance->addTranslator($this->get('string_translator.locale.lookup'), 0);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'string_translator.custom_strings' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\StringTranslation\Translator\CustomStrings A Drupal\Core\StringTranslation\Translator\CustomStrings instance.
+     */
+    protected function getStringTranslator_CustomStringsService()
+    {
+        return $this->services['string_translator.custom_strings'] = new \Drupal\Core\StringTranslation\Translator\CustomStrings($this->get('settings'));
+    }
+
+    /**
+     * Gets the 'string_translator.locale.lookup' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\locale\LocaleTranslation A Drupal\locale\LocaleTranslation instance.
+     */
+    protected function getStringTranslator_Locale_LookupService()
+    {
+        return $this->services['string_translator.locale.lookup'] = new \Drupal\locale\LocaleTranslation($this->get('locale.storage'), $this->get('cache.cache'), $this->get('lock'), $this->get('config.factory'), $this->get('language_manager'));
+    }
+
+    /**
+     * Gets the 'system.admin_path.route_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\system\EventSubscriber\AdminRouteSubscriber A Drupal\system\EventSubscriber\AdminRouteSubscriber instance.
+     */
+    protected function getSystem_AdminPath_RouteSubscriberService()
+    {
+        return $this->services['system.admin_path.route_subscriber'] = new \Drupal\system\EventSubscriber\AdminRouteSubscriber();
+    }
+
+    /**
+     * Gets the 'system.automatic_cron' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\system\EventSubscriber\AutomaticCron A Drupal\system\EventSubscriber\AutomaticCron instance.
+     */
+    protected function getSystem_AutomaticCronService()
+    {
+        return $this->services['system.automatic_cron'] = new \Drupal\system\EventSubscriber\AutomaticCron($this->get('cron'), $this->get('config.factory'), $this->get('state'));
+    }
+
+    /**
+     * Gets the 'system.breadcrumb.default' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\system\PathBasedBreadcrumbBuilder A Drupal\system\PathBasedBreadcrumbBuilder instance.
+     */
+    protected function getSystem_Breadcrumb_DefaultService()
+    {
+        return $this->services['system.breadcrumb.default'] = new \Drupal\system\PathBasedBreadcrumbBuilder($this->get('request'), $this->get('access_manager'), $this->get('router'), $this->get('path_processor_manager'), $this->get('config.factory'), $this->get('title_resolver'), $this->get('current_user'));
+    }
+
+    /**
+     * Gets the 'system.config_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\system\SystemConfigSubscriber A Drupal\system\SystemConfigSubscriber instance.
+     */
+    protected function getSystem_ConfigSubscriberService()
+    {
+        return $this->services['system.config_subscriber'] = new \Drupal\system\SystemConfigSubscriber();
+    }
+
+    /**
+     * Gets the 'system.manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\system\SystemManager A Drupal\system\SystemManager instance.
+     */
+    protected function getSystem_ManagerService()
+    {
+        $this->services['system.manager'] = $instance = new \Drupal\system\SystemManager($this->get('module_handler'), $this->get('database'), $this->get('entity.manager'));
+
+        if ($this->has('request')) {
+            $instance->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));
+        }
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'taxonomy_term.breadcrumb' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\taxonomy\TermBreadcrumbBuilder A Drupal\taxonomy\TermBreadcrumbBuilder instance.
+     */
+    protected function getTaxonomyTerm_BreadcrumbService()
+    {
+        return $this->services['taxonomy_term.breadcrumb'] = new \Drupal\taxonomy\TermBreadcrumbBuilder();
+    }
+
+    /**
+     * Gets the 'theme.negotiator' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Theme\ThemeNegotiator A Drupal\Core\Theme\ThemeNegotiator instance.
+     */
+    protected function getTheme_NegotiatorService()
+    {
+        $this->services['theme.negotiator'] = $instance = new \Drupal\Core\Theme\ThemeNegotiator($this->get('access_check.theme'), $this->get('request_stack'));
+
+        $instance->addNegotiator($this->get('theme.negotiator.default'), -100);
+        $instance->addNegotiator($this->get('theme.negotiator.ajax_base_page'), 1000);
+        $instance->addNegotiator($this->get('theme.negotiator.block.admin_demo'), 1000);
+        $instance->addNegotiator($this->get('theme.negotiator.system.batch'), 1000);
+        $instance->addNegotiator($this->get('theme.negotiator.admin_theme'), -40);
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'theme.negotiator.admin_theme' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\Theme\AdminNegotiator A Drupal\user\Theme\AdminNegotiator instance.
+     */
+    protected function getTheme_Negotiator_AdminThemeService()
+    {
+        return $this->services['theme.negotiator.admin_theme'] = new \Drupal\user\Theme\AdminNegotiator($this->get('current_user'), $this->get('config.factory'), $this->get('entity.manager'), $this->get('router.admin_context'));
+    }
+
+    /**
+     * Gets the 'theme.negotiator.ajax_base_page' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Theme\AjaxBasePageNegotiator A Drupal\Core\Theme\AjaxBasePageNegotiator instance.
+     */
+    protected function getTheme_Negotiator_AjaxBasePageService()
+    {
+        return $this->services['theme.negotiator.ajax_base_page'] = new \Drupal\Core\Theme\AjaxBasePageNegotiator($this->get('csrf_token'), $this->get('config.factory'));
+    }
+
+    /**
+     * Gets the 'theme.negotiator.block.admin_demo' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\block\Theme\AdminDemoNegotiator A Drupal\block\Theme\AdminDemoNegotiator instance.
+     */
+    protected function getTheme_Negotiator_Block_AdminDemoService()
+    {
+        return $this->services['theme.negotiator.block.admin_demo'] = new \Drupal\block\Theme\AdminDemoNegotiator();
+    }
+
+    /**
+     * Gets the 'theme.negotiator.default' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Theme\DefaultNegotiator A Drupal\Core\Theme\DefaultNegotiator instance.
+     */
+    protected function getTheme_Negotiator_DefaultService()
+    {
+        return $this->services['theme.negotiator.default'] = new \Drupal\Core\Theme\DefaultNegotiator($this->get('config.factory'));
+    }
+
+    /**
+     * Gets the 'theme.negotiator.system.batch' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\system\Theme\BatchNegotiator A Drupal\system\Theme\BatchNegotiator instance.
+     */
+    protected function getTheme_Negotiator_System_BatchService()
+    {
+        return $this->services['theme.negotiator.system.batch'] = new \Drupal\system\Theme\BatchNegotiator($this->get('batch.storage'));
+    }
+
+    /**
+     * Gets the 'theme.registry' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Theme\Registry A Drupal\Core\Theme\Registry instance.
+     */
+    protected function getTheme_RegistryService()
+    {
+        return $this->services['theme.registry'] = new \Drupal\Core\Theme\Registry($this->get('cache.cache'), $this->get('lock'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'theme_handler' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Extension\ThemeHandler A Drupal\Core\Extension\ThemeHandler instance.
+     */
+    protected function getThemeHandlerService()
+    {
+        return $this->services['theme_handler'] = new \Drupal\Core\Extension\ThemeHandler($this->get('config.factory'), $this->get('module_handler'), $this->get('cache.cache'), $this->get('info_parser'), $this->get('config.installer'), $this->get('router.builder'));
+    }
+
+    /**
+     * Gets the 'title_resolver' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Controller\TitleResolver A Drupal\Core\Controller\TitleResolver instance.
+     */
+    protected function getTitleResolverService()
+    {
+        return $this->services['title_resolver'] = new \Drupal\Core\Controller\TitleResolver($this->get('controller_resolver'), $this->get('string_translation'));
+    }
+
+    /**
+     * Gets the 'token' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Utility\Token A Drupal\Core\Utility\Token instance.
+     */
+    protected function getTokenService()
+    {
+        return $this->services['token'] = new \Drupal\Core\Utility\Token($this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'transliteration' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Transliteration\PHPTransliteration A Drupal\Core\Transliteration\PHPTransliteration instance.
+     */
+    protected function getTransliterationService()
+    {
+        return $this->services['transliteration'] = new \Drupal\Core\Transliteration\PHPTransliteration();
+    }
+
+    /**
+     * Gets the 'twig' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Template\TwigEnvironment A Drupal\Core\Template\TwigEnvironment instance.
+     */
+    protected function getTwigService()
+    {
+        $this->services['twig'] = $instance = new \Drupal\Core\Template\TwigEnvironment($this->get('twig.loader.filesystem'), array('cache' => true, 'autoescape' => false, 'debug' => false, 'auto_reload' => NULL), $this->get('module_handler'), $this->get('theme_handler'));
+
+        $instance->addExtension(new \Drupal\Core\Template\TwigExtension());
+        $instance->addExtension(new \Twig_Extension_Debug());
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'twig.loader.filesystem' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Twig_Loader_Filesystem A Twig_Loader_Filesystem instance.
+     */
+    protected function getTwig_Loader_FilesystemService()
+    {
+        return $this->services['twig.loader.filesystem'] = new \Twig_Loader_Filesystem('/home/adnen/myProjects/drupalProjects/drupal8');
+    }
+
+    /**
+     * Gets the 'typed_data_manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\TypedData\TypedDataManager A Drupal\Core\TypedData\TypedDataManager instance.
+     */
+    protected function getTypedDataManagerService()
+    {
+        $this->services['typed_data_manager'] = $instance = new \Drupal\Core\TypedData\TypedDataManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+
+        $instance->setValidationConstraintManager($this->get('validation.constraint'));
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'update.fetcher' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\update\UpdateFetcher A Drupal\update\UpdateFetcher instance.
+     */
+    protected function getUpdate_FetcherService()
+    {
+        return $this->services['update.fetcher'] = new \Drupal\update\UpdateFetcher($this->get('config.factory'), $this->get('http_default_client'));
+    }
+
+    /**
+     * Gets the 'update.manager' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\update\UpdateManager A Drupal\update\UpdateManager instance.
+     */
+    protected function getUpdate_ManagerService()
+    {
+        return $this->services['update.manager'] = new \Drupal\update\UpdateManager($this->get('config.factory'), $this->get('module_handler'), $this->get('update.processor'), $this->get('string_translation'), $this->get('keyvalue.expirable'));
+    }
+
+    /**
+     * Gets the 'update.processor' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\update\UpdateProcessor A Drupal\update\UpdateProcessor instance.
+     */
+    protected function getUpdate_ProcessorService()
+    {
+        return $this->services['update.processor'] = new \Drupal\update\UpdateProcessor($this->get('config.factory'), $this->get('queue'), $this->get('update.fetcher'), $this->get('state'), $this->get('private_key'), $this->get('keyvalue'), $this->get('keyvalue.expirable'));
+    }
+
+    /**
+     * Gets the 'url_generator' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Routing\UrlGenerator A Drupal\Core\Routing\UrlGenerator instance.
+     */
+    protected function getUrlGeneratorService()
+    {
+        $this->services['url_generator'] = $instance = new \Drupal\Core\Routing\UrlGenerator($this->get('router.route_provider'), $this->get('path_processor_manager'), $this->get('route_processor_manager'), $this->get('config.factory'), $this->get('settings'));
+
+        if ($this->has('request')) {
+            $instance->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));
+        }
+        if ($this->has('router.request_context')) {
+            $instance->setContext($this->get('router.request_context', ContainerInterface::NULL_ON_INVALID_REFERENCE));
+        }
+
+        return $instance;
+    }
+
+    /**
+     * Gets the 'user.auth' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\UserAuth A Drupal\user\UserAuth instance.
+     */
+    protected function getUser_AuthService()
+    {
+        return $this->services['user.auth'] = new \Drupal\user\UserAuth($this->get('entity.manager'), $this->get('password'));
+    }
+
+    /**
+     * Gets the 'user.autocomplete' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\UserAutocomplete A Drupal\user\UserAutocomplete instance.
+     */
+    protected function getUser_AutocompleteService()
+    {
+        return $this->services['user.autocomplete'] = new \Drupal\user\UserAutocomplete($this->get('database'), $this->get('config.factory'), $this->get('entity.manager'), $this->get('entity.query'));
+    }
+
+    /**
+     * Gets the 'user.data' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\UserData A Drupal\user\UserData instance.
+     */
+    protected function getUser_DataService()
+    {
+        return $this->services['user.data'] = new \Drupal\user\UserData($this->get('database'));
+    }
+
+    /**
+     * Gets the 'user.permissions_hash' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\PermissionsHash A Drupal\user\PermissionsHash instance.
+     */
+    protected function getUser_PermissionsHashService()
+    {
+        return $this->services['user.permissions_hash'] = new \Drupal\user\PermissionsHash($this->get('private_key'), $this->get('cache.cache'));
+    }
+
+    /**
+     * Gets the 'user.tempstore' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\TempStoreFactory A Drupal\user\TempStoreFactory instance.
+     */
+    protected function getUser_TempstoreService()
+    {
+        return $this->services['user.tempstore'] = new \Drupal\user\TempStoreFactory($this->get('database'), $this->get('lock'));
+    }
+
+    /**
+     * Gets the 'user_maintenance_mode_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\user\EventSubscriber\MaintenanceModeSubscriber A Drupal\user\EventSubscriber\MaintenanceModeSubscriber instance.
+     */
+    protected function getUserMaintenanceModeSubscriberService()
+    {
+        return $this->services['user_maintenance_mode_subscriber'] = new \Drupal\user\EventSubscriber\MaintenanceModeSubscriber();
+    }
+
+    /**
+     * Gets the 'uuid' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Component\Uuid\Php A Drupal\Component\Uuid\Php instance.
+     */
+    protected function getUuidService()
+    {
+        return $this->services['uuid'] = new \Drupal\Component\Uuid\Php();
+    }
+
+    /**
+     * Gets the 'validation.constraint' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\Validation\ConstraintManager A Drupal\Core\Validation\ConstraintManager instance.
+     */
+    protected function getValidation_ConstraintService()
+    {
+        return $this->services['validation.constraint'] = new \Drupal\Core\Validation\ConstraintManager($this->get('container.namespaces'), $this->get('cache.cache'), $this->get('language_manager'), $this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'view_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\Core\EventSubscriber\ViewSubscriber A Drupal\Core\EventSubscriber\ViewSubscriber instance.
+     */
+    protected function getViewSubscriberService()
+    {
+        return $this->services['view_subscriber'] = new \Drupal\Core\EventSubscriber\ViewSubscriber($this->get('content_negotiation'), $this->get('title_resolver'), $this->get('ajax_response_renderer'));
+    }
+
+    /**
+     * Gets the 'views.analyzer' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\Analyzer A Drupal\views\Analyzer instance.
+     */
+    protected function getViews_AnalyzerService()
+    {
+        return $this->services['views.analyzer'] = new \Drupal\views\Analyzer($this->get('module_handler'));
+    }
+
+    /**
+     * Gets the 'views.executable' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\ViewExecutableFactory A Drupal\views\ViewExecutableFactory instance.
+     */
+    protected function getViews_ExecutableService()
+    {
+        return $this->services['views.executable'] = new \Drupal\views\ViewExecutableFactory($this->get('current_user'));
+    }
+
+    /**
+     * Gets the 'views.exposed_form_cache' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\ExposedFormCache A Drupal\views\ExposedFormCache instance.
+     */
+    protected function getViews_ExposedFormCacheService()
+    {
+        return $this->services['views.exposed_form_cache'] = new \Drupal\views\ExposedFormCache();
+    }
+
+    /**
+     * Gets the 'views.route_access_check' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\ViewsAccessCheck A Drupal\views\ViewsAccessCheck instance.
+     */
+    protected function getViews_RouteAccessCheckService()
+    {
+        return $this->services['views.route_access_check'] = new \Drupal\views\ViewsAccessCheck();
+    }
+
+    /**
+     * Gets the 'views.route_subscriber' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\EventSubscriber\RouteSubscriber A Drupal\views\EventSubscriber\RouteSubscriber instance.
+     */
+    protected function getViews_RouteSubscriberService()
+    {
+        return $this->services['views.route_subscriber'] = new \Drupal\views\EventSubscriber\RouteSubscriber($this->get('entity.manager'), $this->get('state'));
+    }
+
+    /**
+     * Gets the 'views.views_data' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\ViewsData A Drupal\views\ViewsData instance.
+     */
+    protected function getViews_ViewsDataService()
+    {
+        return $this->services['views.views_data'] = new \Drupal\views\ViewsData($this->get('cache.data'), $this->get('config.factory'), $this->get('module_handler'), $this->get('language_manager'));
+    }
+
+    /**
+     * Gets the 'views.views_data_helper' service.
+     *
+     * This service is shared.
+     * This method always returns the same instance of the service.
+     *
+     * @return Drupal\views\ViewsDataHelper A Drupal\views\ViewsDataHelper instance.
+     */
+    protected function getViews_ViewsDataHelperService()
+    {
+        return $this->services['views.views_data_helper'] = new \Drupal\views\ViewsDataHelper($this->get('views.views_data'));
+    }
+
+    /**
+     * Updates the 'request' service.
+     */
+    protected function synchronizeRequestService()
+    {
+        if ($this->initialized('form_builder')) {
+                    if ($this->has('request')) {
+    $this->get('form_builder')->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));        }
+
+        }
+        if ($this->initialized('router.request_context')) {
+            $this->get('router.request_context')->fromRequest($this->get('request'));
+        }
+        if ($this->initialized('router.admin_context')) {
+                    if ($this->has('request')) {
+    $this->get('router.admin_context')->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));        }
+
+        }
+        if ($this->initialized('url_generator')) {
+                    if ($this->has('request')) {
+    $this->get('url_generator')->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));        }
+
+        }
+        if ($this->initialized('access_manager')) {
+                    if ($this->has('request')) {
+    $this->get('access_manager')->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));        }
+
+        }
+        if ($this->initialized('current_user')) {
+                    if ($this->has('request')) {
+    $this->get('current_user')->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));        }
+
+        }
+        if ($this->initialized('system.manager')) {
+                    if ($this->has('request')) {
+    $this->get('system.manager')->setRequest($this->get('request', ContainerInterface::NULL_ON_INVALID_REFERENCE));        }
+
+        }
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function getParameter($name)
+    {
+        $name = strtolower($name);
+
+        if (!(isset($this->parameters[$name]) || array_key_exists($name, $this->parameters))) {
+            throw new InvalidArgumentException(sprintf('The parameter "%s" must be defined.', $name));
+        }
+
+        return $this->parameters[$name];
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function hasParameter($name)
+    {
+        $name = strtolower($name);
+
+        return isset($this->parameters[$name]) || array_key_exists($name, $this->parameters);
+    }
+
+    /**
+     * {@inheritdoc}
+     */
+    public function setParameter($name, $value)
+    {
+        throw new LogicException('Impossible to call set() on a frozen ParameterBag.');
+    }
+
+    /**
+     * {@inheritDoc}
+     */
+    public function getParameterBag()
+    {
+        if (null === $this->parameterBag) {
+            $this->parameterBag = new FrozenParameterBag($this->parameters);
+        }
+
+        return $this->parameterBag;
+    }
+    /**
+     * Gets the default parameters.
+     *
+     * @return array An array of the default parameters
+     */
+    protected function getDefaultParameters()
+    {
+        return array(
+            'kernel.environment' => 'prod',
+            'container.service_providers' => array(
+                0 => 'Drupal\\Core\\CoreServiceProvider',
+                1 => 'Drupal\\language\\LanguageServiceProvider',
+            ),
+            'container.modules' => array(
+                'block' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/block/block.info.yml',
+                    'filename' => 'block.module',
+                ),
+                'breakpoint' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/breakpoint/breakpoint.info.yml',
+                    'filename' => 'breakpoint.module',
+                ),
+                'ckeditor' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/ckeditor/ckeditor.info.yml',
+                    'filename' => 'ckeditor.module',
+                ),
+                'color' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/color/color.info.yml',
+                    'filename' => 'color.module',
+                ),
+                'comment' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/comment/comment.info.yml',
+                    'filename' => 'comment.module',
+                ),
+                'config' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/config/config.info.yml',
+                    'filename' => 'config.module',
+                ),
+                'contact' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/contact/contact.info.yml',
+                    'filename' => 'contact.module',
+                ),
+                'contextual' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/contextual/contextual.info.yml',
+                    'filename' => 'contextual.module',
+                ),
+                'custom_block' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/block/custom_block/custom_block.info.yml',
+                    'filename' => 'custom_block.module',
+                ),
+                'datetime' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/datetime/datetime.info.yml',
+                    'filename' => 'datetime.module',
+                ),
+                'dblog' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/dblog/dblog.info.yml',
+                    'filename' => 'dblog.module',
+                ),
+                'edit' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/edit/edit.info.yml',
+                    'filename' => 'edit.module',
+                ),
+                'editor' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/editor/editor.info.yml',
+                    'filename' => 'editor.module',
+                ),
+                'entity' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/entity/entity.info.yml',
+                    'filename' => 'entity.module',
+                ),
+                'entity_reference' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/entity_reference/entity_reference.info.yml',
+                    'filename' => 'entity_reference.module',
+                ),
+                'field' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/field/field.info.yml',
+                    'filename' => 'field.module',
+                ),
+                'field_ui' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/field_ui/field_ui.info.yml',
+                    'filename' => 'field_ui.module',
+                ),
+                'file' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/file/file.info.yml',
+                    'filename' => 'file.module',
+                ),
+                'filter' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/filter/filter.info.yml',
+                    'filename' => 'filter.module',
+                ),
+                'help' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/help/help.info.yml',
+                    'filename' => 'help.module',
+                ),
+                'history' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/history/history.info.yml',
+                    'filename' => 'history.module',
+                ),
+                'image' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/image/image.info.yml',
+                    'filename' => 'image.module',
+                ),
+                'language' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/language/language.info.yml',
+                    'filename' => 'language.module',
+                ),
+                'locale' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/locale/locale.info.yml',
+                    'filename' => 'locale.module',
+                ),
+                'menu' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/menu/menu.info.yml',
+                    'filename' => 'menu.module',
+                ),
+                'menu_link' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/menu_link/menu_link.info.yml',
+                    'filename' => 'menu_link.module',
+                ),
+                'node' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/node/node.info.yml',
+                    'filename' => 'node.module',
+                ),
+                'options' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/options/options.info.yml',
+                    'filename' => 'options.module',
+                ),
+                'path' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/path/path.info.yml',
+                    'filename' => 'path.module',
+                ),
+                'rdf' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/rdf/rdf.info.yml',
+                    'filename' => 'rdf.module',
+                ),
+                'search' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/search/search.info.yml',
+                    'filename' => 'search.module',
+                ),
+                'shortcut' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/shortcut/shortcut.info.yml',
+                    'filename' => 'shortcut.module',
+                ),
+                'system' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/system/system.info.yml',
+                    'filename' => 'system.module',
+                ),
+                'taxonomy' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/taxonomy/taxonomy.info.yml',
+                    'filename' => 'taxonomy.module',
+                ),
+                'text' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/text/text.info.yml',
+                    'filename' => 'text.module',
+                ),
+                'toolbar' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/toolbar/toolbar.info.yml',
+                    'filename' => 'toolbar.module',
+                ),
+                'tour' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/tour/tour.info.yml',
+                    'filename' => 'tour.module',
+                ),
+                'update' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/update/update.info.yml',
+                    'filename' => 'update.module',
+                ),
+                'user' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/user/user.info.yml',
+                    'filename' => 'user.module',
+                ),
+                'views_ui' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/views_ui/views_ui.info.yml',
+                    'filename' => 'views_ui.module',
+                ),
+                'views' => array(
+                    'type' => 'module',
+                    'pathname' => 'core/modules/views/views.info.yml',
+                    'filename' => 'views.module',
+                ),
+                'standard' => array(
+                    'type' => 'profile',
+                    'pathname' => 'core/profiles/standard/standard.info.yml',
+                    'filename' => 'standard.profile',
+                ),
+            ),
+            'container.namespaces' => array(
+                'Drupal\\block' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/block/lib',
+                'Drupal\\breakpoint' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/breakpoint/lib',
+                'Drupal\\ckeditor' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/ckeditor/lib',
+                'Drupal\\color' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/color/lib',
+                'Drupal\\comment' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/comment/lib',
+                'Drupal\\config' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/config/lib',
+                'Drupal\\contact' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/contact/lib',
+                'Drupal\\contextual' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/contextual/lib',
+                'Drupal\\custom_block' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/block/custom_block/lib',
+                'Drupal\\datetime' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/datetime/lib',
+                'Drupal\\dblog' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/dblog/lib',
+                'Drupal\\edit' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/edit/lib',
+                'Drupal\\editor' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/editor/lib',
+                'Drupal\\entity' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/entity/lib',
+                'Drupal\\entity_reference' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/entity_reference/lib',
+                'Drupal\\field' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/field/lib',
+                'Drupal\\field_ui' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/field_ui/lib',
+                'Drupal\\file' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/file/lib',
+                'Drupal\\filter' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/filter/lib',
+                'Drupal\\help' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/help/lib',
+                'Drupal\\history' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/history/lib',
+                'Drupal\\image' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/image/lib',
+                'Drupal\\language' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/language/lib',
+                'Drupal\\locale' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/locale/lib',
+                'Drupal\\menu' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/menu/lib',
+                'Drupal\\menu_link' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/menu_link/lib',
+                'Drupal\\node' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/node/lib',
+                'Drupal\\options' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/options/lib',
+                'Drupal\\path' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/path/lib',
+                'Drupal\\rdf' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/rdf/lib',
+                'Drupal\\search' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/search/lib',
+                'Drupal\\shortcut' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/shortcut/lib',
+                'Drupal\\system' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/system/lib',
+                'Drupal\\taxonomy' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/taxonomy/lib',
+                'Drupal\\text' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/text/lib',
+                'Drupal\\toolbar' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/toolbar/lib',
+                'Drupal\\tour' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/tour/lib',
+                'Drupal\\update' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/update/lib',
+                'Drupal\\user' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/user/lib',
+                'Drupal\\views_ui' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/views_ui/lib',
+                'Drupal\\views' => '/home/adnen/myProjects/drupalProjects/drupal8/core/modules/views/lib',
+                'Drupal\\standard' => '/home/adnen/myProjects/drupalProjects/drupal8/core/profiles/standard/lib',
+                'Drupal\\Core\\TypedData' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib',
+                'Drupal\\Core\\Validation' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib',
+                'Drupal\\Core\\Http' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib',
+                'Drupal\\Core\\Field' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib',
+                'Drupal\\Core\\Entity' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib',
+                'Drupal\\Core\\Mail' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib',
+                'Drupal\\Component\\Annotation' => '/home/adnen/myProjects/drupalProjects/drupal8/core/lib',
+            ),
+            'language.default_values' => array(
+                'id' => 'fr',
+                'label' => 'French',
+                'direction' => 0,
+                'weight' => 0,
+                'locked' => false,
+                'status' => true,
+                'uuid' => 'dbc9e8c6-230c-4bfe-8800-0cee629dd6cd',
+                'langcode' => 'en',
+                'dependencies' => array(
+
+                ),
+                'default' => true,
+            ),
+            'persistids' => array(
+                0 => 'class_loader',
+                1 => 'kernel',
+                2 => 'service_container',
+                3 => 'container.namespaces',
+                4 => 'request',
+            ),
+            'cache_bins' => array(
+                'cache.bootstrap' => 'bootstrap',
+                'cache.config' => 'config',
+                'cache.cache' => 'cache',
+                'cache.entity' => 'entity',
+                'cache.render' => 'render',
+                'cache.data' => 'data',
+                'cache.filter' => 'filter',
+                'cache.toolbar' => 'toolbar',
+            ),
+            'cache_contexts' => array(
+                0 => 'cache_context.url',
+                1 => 'cache_context.language',
+                2 => 'cache_context.theme',
+                3 => 'cache_context.user',
+                4 => 'cache_context.user.roles',
+            ),
+        );
+    }
+}
diff --git a/sites/default/files/php/twig/.htaccess b/sites/default/files/php/twig/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#09#22#69e5a385a3150543bf034b7135a99a343fc2c15bd74ea58769781059ee46.php/.htaccess b/sites/default/files/php/twig/1#09#22#69e5a385a3150543bf034b7135a99a343fc2c15bd74ea58769781059ee46.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#09#22#69e5a385a3150543bf034b7135a99a343fc2c15bd74ea58769781059ee46.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#09#22#69e5a385a3150543bf034b7135a99a343fc2c15bd74ea58769781059ee46.php/c563b4b3cf9e64b01cd49a299748779aea34438858da7492d5b883a377b594ae.php b/sites/default/files/php/twig/1#09#22#69e5a385a3150543bf034b7135a99a343fc2c15bd74ea58769781059ee46.php/c563b4b3cf9e64b01cd49a299748779aea34438858da7492d5b883a377b594ae.php
new file mode 100644
index 0000000..81ebbae
--- /dev/null
+++ b/sites/default/files/php/twig/1#09#22#69e5a385a3150543bf034b7135a99a343fc2c15bd74ea58769781059ee46.php/c563b4b3cf9e64b01cd49a299748779aea34438858da7492d5b883a377b594ae.php
@@ -0,0 +1,41 @@
+<?php
+
+/* core/modules/system/templates/container.html.twig */
+class __TwigTemplate_092269e5a385a3150543bf034b7135a99a343fc2c15bd74ea58769781059ee46 extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 18
+        echo "<div";
+        echo twig_render_var((isset($context["attributes"]) ? $context["attributes"] : null));
+        echo ">";
+        echo twig_render_var((isset($context["children"]) ? $context["children"] : null));
+        echo "</div>
+";
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/container.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  71 => 55,  66 => 54,  54 => 50,  49 => 52,  31 => 47,  20 => 44,  42 => 19,  33 => 17,  77 => 58,  74 => 43,  68 => 41,  48 => 48,  45 => 51,  39 => 49,  60 => 53,  57 => 51,  51 => 55,  47 => 47,  35 => 44,  25 => 45,  354 => 207,  348 => 204,  345 => 203,  343 => 202,  340 => 201,  334 => 198,  330 => 197,  326 => 196,  322 => 195,  319 => 194,  317 => 193,  312 => 190,  306 => 187,  302 => 186,  298 => 185,  295 => 184,  293 => 183,  288 => 180,  282 => 177,  279 => 176,  277 => 175,  274 => 174,  268 => 171,  265 => 170,  263 => 169,  257 => 166,  252 => 165,  246 => 162,  243 => 161,  241 => 160,  236 => 159,  230 => 156,  227 => 155,  225 => 154,  220 => 153,  214 => 150,  211 => 149,  209 => 148,  205 => 147,  202 => 146,  196 => 145,  190 => 142,  186 => 140,  180 => 137,  177 => 136,  175 => 135,  172 => 134,  166 => 131,  163 => 130,  161 => 129,  157 => 127,  151 => 124,  148 => 123,  141 => 120,  138 => 119,  128 => 114,  121 => 113,  119 => 112,  103 => 107,  96 => 106,  83 => 101,  75 => 99,  72 => 98,  63 => 53,  61 => 95,  50 => 91,  38 => 88,  32 => 43,  29 => 46,  27 => 83,  23 => 27,  26 => 41,  21 => 13,  155 => 93,  149 => 90,  146 => 122,  143 => 88,  137 => 85,  134 => 117,  131 => 83,  125 => 81,  122 => 80,  116 => 111,  113 => 110,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 105,  90 => 67,  84 => 64,  81 => 46,  79 => 62,  76 => 58,  70 => 56,  67 => 54,  64 => 39,  58 => 94,  55 => 37,  52 => 51,  46 => 47,  43 => 46,  41 => 46,  36 => 31,  30 => 28,  28 => 42,  24 => 40,  19 => 18,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#10#d5#c0d0c072ecd38c25100225f97545a21904ac19cbd261127842acc5010b3b.php/.htaccess b/sites/default/files/php/twig/1#10#d5#c0d0c072ecd38c25100225f97545a21904ac19cbd261127842acc5010b3b.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#10#d5#c0d0c072ecd38c25100225f97545a21904ac19cbd261127842acc5010b3b.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#10#d5#c0d0c072ecd38c25100225f97545a21904ac19cbd261127842acc5010b3b.php/66c650290f0366903a15d29fabc19b0ca05299b183dd64925c53f95e89a04832.php b/sites/default/files/php/twig/1#10#d5#c0d0c072ecd38c25100225f97545a21904ac19cbd261127842acc5010b3b.php/66c650290f0366903a15d29fabc19b0ca05299b183dd64925c53f95e89a04832.php
new file mode 100644
index 0000000..2383a6a
--- /dev/null
+++ b/sites/default/files/php/twig/1#10#d5#c0d0c072ecd38c25100225f97545a21904ac19cbd261127842acc5010b3b.php/66c650290f0366903a15d29fabc19b0ca05299b183dd64925c53f95e89a04832.php
@@ -0,0 +1,41 @@
+<?php
+
+/* core/modules/system/templates/form.html.twig */
+class __TwigTemplate_10d5c0d0c072ecd38c25100225f97545a21904ac19cbd261127842acc5010b3b extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 15
+        echo "<form";
+        echo twig_render_var((isset($context["attributes"]) ? $context["attributes"] : null));
+        echo "><div>";
+        echo twig_render_var((isset($context["children"]) ? $context["children"] : null));
+        echo "</div></form>
+";
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/form.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  71 => 55,  66 => 54,  54 => 50,  49 => 52,  31 => 47,  20 => 44,  42 => 19,  33 => 17,  77 => 58,  74 => 43,  68 => 41,  48 => 48,  45 => 51,  39 => 49,  60 => 53,  57 => 51,  51 => 55,  47 => 47,  35 => 44,  25 => 45,  354 => 207,  348 => 204,  345 => 203,  343 => 202,  340 => 201,  334 => 198,  330 => 197,  326 => 196,  322 => 195,  319 => 194,  317 => 193,  312 => 190,  306 => 187,  302 => 186,  298 => 185,  295 => 184,  293 => 183,  288 => 180,  282 => 177,  279 => 176,  277 => 175,  274 => 174,  268 => 171,  265 => 170,  263 => 169,  257 => 166,  252 => 165,  246 => 162,  243 => 161,  241 => 160,  236 => 159,  230 => 156,  227 => 155,  225 => 154,  220 => 153,  214 => 150,  211 => 149,  209 => 148,  205 => 147,  202 => 146,  196 => 145,  190 => 142,  186 => 140,  180 => 137,  177 => 136,  175 => 135,  172 => 134,  166 => 131,  163 => 130,  161 => 129,  157 => 127,  151 => 124,  148 => 123,  141 => 120,  138 => 119,  128 => 114,  121 => 113,  119 => 112,  103 => 107,  96 => 106,  83 => 101,  75 => 99,  72 => 98,  63 => 53,  61 => 95,  50 => 91,  38 => 88,  32 => 43,  29 => 46,  27 => 83,  23 => 27,  26 => 41,  21 => 13,  155 => 93,  149 => 90,  146 => 122,  143 => 88,  137 => 85,  134 => 117,  131 => 83,  125 => 81,  122 => 80,  116 => 111,  113 => 110,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 105,  90 => 67,  84 => 64,  81 => 46,  79 => 62,  76 => 58,  70 => 56,  67 => 54,  64 => 39,  58 => 94,  55 => 37,  52 => 51,  46 => 47,  43 => 46,  41 => 46,  36 => 31,  30 => 28,  28 => 42,  24 => 40,  19 => 15,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#24#df#a18883d54ad6a1373e0f6c8d2c3ccd741ad635e7493962ead8ceb92bf412.php/.htaccess b/sites/default/files/php/twig/1#24#df#a18883d54ad6a1373e0f6c8d2c3ccd741ad635e7493962ead8ceb92bf412.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#24#df#a18883d54ad6a1373e0f6c8d2c3ccd741ad635e7493962ead8ceb92bf412.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#24#df#a18883d54ad6a1373e0f6c8d2c3ccd741ad635e7493962ead8ceb92bf412.php/46dae0099fb8f945bab4edd14958c5d84e86d4fff64f93be680ff77c42b5bdca.php b/sites/default/files/php/twig/1#24#df#a18883d54ad6a1373e0f6c8d2c3ccd741ad635e7493962ead8ceb92bf412.php/46dae0099fb8f945bab4edd14958c5d84e86d4fff64f93be680ff77c42b5bdca.php
new file mode 100644
index 0000000..d499f67
--- /dev/null
+++ b/sites/default/files/php/twig/1#24#df#a18883d54ad6a1373e0f6c8d2c3ccd741ad635e7493962ead8ceb92bf412.php/46dae0099fb8f945bab4edd14958c5d84e86d4fff64f93be680ff77c42b5bdca.php
@@ -0,0 +1,375 @@
+<?php
+
+/* core/themes/bartik/templates/page.html.twig */
+class __TwigTemplate_24dfa18883d54ad6a1373e0f6c8d2c3ccd741ad635e7493962ead8ceb92bf412 extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 80
+        echo "<div id=\"page-wrapper\"><div id=\"page\">
+
+  <header id=\"header\" class=\"";
+        // line 82
+        echo twig_render_var((((isset($context["secondary_menu"]) ? $context["secondary_menu"] : null)) ? ("with-secondary-menu") : ("without-secondary-menu")));
+        echo "\" role=\"banner\"><div class=\"section clearfix\">
+   ";
+        // line 83
+        if ((isset($context["secondary_menu"]) ? $context["secondary_menu"] : null)) {
+            // line 84
+            echo "      <nav id=\"secondary-menu\" class=\"navigation\" role=\"navigation\">
+        ";
+            // line 85
+            echo twig_render_var((isset($context["secondary_menu"]) ? $context["secondary_menu"] : null));
+            echo "
+      </nav> <!-- /#secondary-menu -->
+    ";
+        }
+        // line 88
+        echo "
+    ";
+        // line 89
+        if ((isset($context["logo"]) ? $context["logo"] : null)) {
+            // line 90
+            echo "      <a href=\"";
+            echo twig_render_var((isset($context["front_page"]) ? $context["front_page"] : null));
+            echo "\" title=\"";
+            echo twig_render_var(t("Home"));
+            echo "\" rel=\"home\" id=\"logo\">
+        <img src=\"";
+            // line 91
+            echo twig_render_var((isset($context["logo"]) ? $context["logo"] : null));
+            echo "\" alt=\"";
+            echo twig_render_var(t("Home"));
+            echo "\" />
+      </a>
+    ";
+        }
+        // line 94
+        echo "
+    ";
+        // line 95
+        if (((isset($context["site_name"]) ? $context["site_name"] : null) || (isset($context["site_slogan"]) ? $context["site_slogan"] : null))) {
+            // line 96
+            echo "      <div id=\"name-and-slogan\"";
+            if (((isset($context["hide_site_name"]) ? $context["hide_site_name"] : null) && (isset($context["hide_site_slogan"]) ? $context["hide_site_slogan"] : null))) {
+                echo " class=\"visually-hidden\"";
+            }
+            echo ">
+        ";
+            // line 97
+            if ((isset($context["site_name"]) ? $context["site_name"] : null)) {
+                // line 98
+                echo "          ";
+                if ((isset($context["title"]) ? $context["title"] : null)) {
+                    // line 99
+                    echo "            <div id=\"site-name\"";
+                    if ((isset($context["hide_site_name"]) ? $context["hide_site_name"] : null)) {
+                        echo " class=\"visually-hidden\"";
+                    }
+                    echo ">
+              <strong>
+                <a href=\"";
+                    // line 101
+                    echo twig_render_var((isset($context["front_page"]) ? $context["front_page"] : null));
+                    echo "\" title=\"";
+                    echo twig_render_var(t("Home"));
+                    echo "\" rel=\"home\"><span>";
+                    echo twig_render_var((isset($context["site_name"]) ? $context["site_name"] : null));
+                    echo "</span></a>
+              </strong>
+            </div>
+          ";
+                    // line 105
+                    echo "          ";
+                } else {
+                    // line 106
+                    echo "            <h1 id=\"site-name\"";
+                    if ((isset($context["hide_site_name"]) ? $context["hide_site_name"] : null)) {
+                        echo " class=\"visually-hidden\" ";
+                    }
+                    echo ">
+              <a href=\"";
+                    // line 107
+                    echo twig_render_var((isset($context["front_page"]) ? $context["front_page"] : null));
+                    echo "\" title=\"";
+                    echo twig_render_var(t("Home"));
+                    echo "\" rel=\"home\"><span>";
+                    echo twig_render_var((isset($context["site_name"]) ? $context["site_name"] : null));
+                    echo "</span></a>
+            </h1>
+          ";
+                }
+                // line 110
+                echo "        ";
+            }
+            // line 111
+            echo "
+        ";
+            // line 112
+            if ((isset($context["site_slogan"]) ? $context["site_slogan"] : null)) {
+                // line 113
+                echo "          <div id=\"site-slogan\"";
+                if ((isset($context["hide_site_slogan"]) ? $context["hide_site_slogan"] : null)) {
+                    echo " class=\"visually-hidden\"";
+                }
+                echo ">
+            ";
+                // line 114
+                echo twig_render_var((isset($context["site_slogan"]) ? $context["site_slogan"] : null));
+                echo "
+          </div>
+        ";
+            }
+            // line 117
+            echo "      </div><!-- /#name-and-slogan -->
+    ";
+        }
+        // line 119
+        echo "
+    ";
+        // line 120
+        echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "header"));
+        echo "
+
+    ";
+        // line 122
+        if ((isset($context["main_menu"]) ? $context["main_menu"] : null)) {
+            // line 123
+            echo "      <nav id =\"main-menu\" class=\"navigation\" role=\"navigation\">
+        ";
+            // line 124
+            echo twig_render_var((isset($context["main_menu"]) ? $context["main_menu"] : null));
+            echo "
+      </nav> <!-- /#main-menu -->
+    ";
+        }
+        // line 127
+        echo "  </div></header> <!-- /.section, /#header-->
+
+  ";
+        // line 129
+        if ((isset($context["messages"]) ? $context["messages"] : null)) {
+            // line 130
+            echo "    <div id=\"messages\"><div class=\"section clearfix\">
+      ";
+            // line 131
+            echo twig_render_var((isset($context["messages"]) ? $context["messages"] : null));
+            echo "
+    </div></div> <!-- /.section, /#messages -->
+  ";
+        }
+        // line 134
+        echo "
+  ";
+        // line 135
+        if ($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "featured")) {
+            // line 136
+            echo "    <aside id=\"featured\"><div class=\"section clearfix\">
+      ";
+            // line 137
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "featured"));
+            echo "
+    </div></aside> <!-- /.section, /#featured -->
+  ";
+        }
+        // line 140
+        echo "
+  <div id=\"main-wrapper\" class=\"clearfix\"><div id=\"main\" class=\"clearfix\">
+    ";
+        // line 142
+        echo twig_render_var((isset($context["breadcrumb"]) ? $context["breadcrumb"] : null));
+        echo "
+
+    <main id=\"content\" class=\"column\" role=\"main\"><section class=\"section\">
+      ";
+        // line 145
+        if ($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "highlighted")) {
+            echo "<div id=\"highlighted\">";
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "highlighted"));
+            echo "</div>";
+        }
+        // line 146
+        echo "      <a id=\"main-content\"></a>
+      ";
+        // line 147
+        echo twig_render_var((isset($context["title_prefix"]) ? $context["title_prefix"] : null));
+        echo "
+        ";
+        // line 148
+        if ((isset($context["title"]) ? $context["title"] : null)) {
+            // line 149
+            echo "          <h1 class=\"title\" id=\"page-title\">
+            ";
+            // line 150
+            echo twig_render_var((isset($context["title"]) ? $context["title"] : null));
+            echo "
+          </h1>
+        ";
+        }
+        // line 153
+        echo "      ";
+        echo twig_render_var((isset($context["title_suffix"]) ? $context["title_suffix"] : null));
+        echo "
+        ";
+        // line 154
+        if ((isset($context["tabs"]) ? $context["tabs"] : null)) {
+            // line 155
+            echo "          <nav class=\"tabs\" role=\"navigation\">
+            ";
+            // line 156
+            echo twig_render_var((isset($context["tabs"]) ? $context["tabs"] : null));
+            echo "
+          </nav>
+        ";
+        }
+        // line 159
+        echo "      ";
+        echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "help"));
+        echo "
+        ";
+        // line 160
+        if ((isset($context["action_links"]) ? $context["action_links"] : null)) {
+            // line 161
+            echo "          <ul class=\"action-links\">
+            ";
+            // line 162
+            echo twig_render_var((isset($context["action_links"]) ? $context["action_links"] : null));
+            echo "
+          </ul>
+        ";
+        }
+        // line 165
+        echo "      ";
+        echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "content"));
+        echo "
+      ";
+        // line 166
+        echo twig_render_var((isset($context["feed_icons"]) ? $context["feed_icons"] : null));
+        echo "
+    </section></main> <!-- /.section, /#content -->
+
+    ";
+        // line 169
+        if ($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "sidebar_first")) {
+            // line 170
+            echo "      <div id=\"sidebar-first\" class=\"column sidebar\"><aside class=\"section\">
+        ";
+            // line 171
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "sidebar_first"));
+            echo "
+      </aside></div><!-- /.section, /#sidebar-first -->
+    ";
+        }
+        // line 174
+        echo "
+    ";
+        // line 175
+        if ($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "sidebar_second")) {
+            // line 176
+            echo "      <div id=\"sidebar-second\" class=\"column sidebar\"><aside class=\"section\">
+        ";
+            // line 177
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "sidebar_second"));
+            echo "
+      </aside></div><!-- /.section, /#sidebar-second -->
+    ";
+        }
+        // line 180
+        echo "
+  </div></div><!-- /#main, /#main-wrapper -->
+
+  ";
+        // line 183
+        if ((($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "triptych_first") || $this->getAttribute((isset($context["page"]) ? $context["page"] : null), "triptych_middle")) || $this->getAttribute((isset($context["page"]) ? $context["page"] : null), "triptych_last"))) {
+            // line 184
+            echo "    <div id=\"triptych-wrapper\"><aside id=\"triptych\" class=\"clearfix\">
+      ";
+            // line 185
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "triptych_first"));
+            echo "
+      ";
+            // line 186
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "triptych_middle"));
+            echo "
+      ";
+            // line 187
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "triptych_last"));
+            echo "
+    </aside></div><!-- /#triptych, /#triptych-wrapper -->
+  ";
+        }
+        // line 190
+        echo "
+  <div id=\"footer-wrapper\"><footer class=\"section\">
+
+    ";
+        // line 193
+        if (((($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "footer_firstcolumn") || $this->getAttribute((isset($context["page"]) ? $context["page"] : null), "footer_secondcolumn")) || $this->getAttribute((isset($context["page"]) ? $context["page"] : null), "footer_thirdcolumn")) || $this->getAttribute((isset($context["page"]) ? $context["page"] : null), "footer_fourthcolumn"))) {
+            // line 194
+            echo "      <div id=\"footer-columns\" class=\"clearfix\">
+        ";
+            // line 195
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "footer_firstcolumn"));
+            echo "
+        ";
+            // line 196
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "footer_secondcolumn"));
+            echo "
+        ";
+            // line 197
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "footer_thirdcolumn"));
+            echo "
+        ";
+            // line 198
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "footer_fourthcolumn"));
+            echo "
+      </div><!-- /#footer-columns -->
+    ";
+        }
+        // line 201
+        echo "
+    ";
+        // line 202
+        if ($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "footer")) {
+            // line 203
+            echo "      <div id=\"footer\" role=\"contentinfo\" class=\"clearfix\">
+        ";
+            // line 204
+            echo twig_render_var($this->getAttribute((isset($context["page"]) ? $context["page"] : null), "footer"));
+            echo "
+      </div> <!-- /#footer -->
+   ";
+        }
+        // line 207
+        echo "
+  </footer></div> <!-- /.section, /#footer-wrapper -->
+
+</div></div> <!-- /#page, /#page-wrapper -->
+";
+    }
+
+    public function getTemplateName()
+    {
+        return "core/themes/bartik/templates/page.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  354 => 207,  348 => 204,  345 => 203,  343 => 202,  340 => 201,  334 => 198,  330 => 197,  326 => 196,  322 => 195,  319 => 194,  317 => 193,  312 => 190,  306 => 187,  302 => 186,  298 => 185,  295 => 184,  293 => 183,  288 => 180,  282 => 177,  279 => 176,  277 => 175,  274 => 174,  268 => 171,  265 => 170,  263 => 169,  257 => 166,  252 => 165,  246 => 162,  243 => 161,  241 => 160,  236 => 159,  230 => 156,  227 => 155,  225 => 154,  220 => 153,  214 => 150,  211 => 149,  209 => 148,  205 => 147,  202 => 146,  196 => 145,  190 => 142,  186 => 140,  180 => 137,  177 => 136,  175 => 135,  172 => 134,  166 => 131,  163 => 130,  161 => 129,  157 => 127,  151 => 124,  148 => 123,  141 => 120,  138 => 119,  128 => 114,  121 => 113,  119 => 112,  103 => 107,  96 => 106,  83 => 101,  75 => 99,  72 => 98,  63 => 96,  61 => 95,  50 => 91,  38 => 88,  32 => 85,  29 => 84,  27 => 83,  23 => 82,  26 => 25,  21 => 24,  155 => 93,  149 => 90,  146 => 122,  143 => 88,  137 => 85,  134 => 117,  131 => 83,  125 => 81,  122 => 80,  116 => 111,  113 => 110,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 105,  90 => 67,  84 => 64,  81 => 63,  79 => 62,  76 => 61,  70 => 97,  67 => 57,  64 => 56,  58 => 94,  55 => 52,  52 => 51,  46 => 48,  43 => 90,  41 => 89,  36 => 45,  30 => 43,  28 => 42,  24 => 41,  19 => 80,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#2f#e6#731474abffaab9149b7817b79c9e41ec2edc0902fb20bf5e36ffd3c29cfb.php/.htaccess b/sites/default/files/php/twig/1#2f#e6#731474abffaab9149b7817b79c9e41ec2edc0902fb20bf5e36ffd3c29cfb.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#2f#e6#731474abffaab9149b7817b79c9e41ec2edc0902fb20bf5e36ffd3c29cfb.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#2f#e6#731474abffaab9149b7817b79c9e41ec2edc0902fb20bf5e36ffd3c29cfb.php/68883bd0640c7c5d50afcf707deac0863f98c96aa6b687ecbab52624b01c4884.php b/sites/default/files/php/twig/1#2f#e6#731474abffaab9149b7817b79c9e41ec2edc0902fb20bf5e36ffd3c29cfb.php/68883bd0640c7c5d50afcf707deac0863f98c96aa6b687ecbab52624b01c4884.php
new file mode 100644
index 0000000..74b7153
--- /dev/null
+++ b/sites/default/files/php/twig/1#2f#e6#731474abffaab9149b7817b79c9e41ec2edc0902fb20bf5e36ffd3c29cfb.php/68883bd0640c7c5d50afcf707deac0863f98c96aa6b687ecbab52624b01c4884.php
@@ -0,0 +1,95 @@
+<?php
+
+/* core/modules/system/templates/form-element.html.twig */
+class __TwigTemplate_2fe6731474abffaab9149b7817b79c9e41ec2edc0902fb20bf5e36ffd3c29cfb extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 39
+        echo "<div";
+        echo twig_render_var((isset($context["attributes"]) ? $context["attributes"] : null));
+        echo ">
+  ";
+        // line 40
+        if (twig_in_filter((isset($context["label_display"]) ? $context["label_display"] : null), array(0 => "before", 1 => "invisible"))) {
+            // line 41
+            echo "    ";
+            echo twig_render_var((isset($context["label"]) ? $context["label"] : null));
+            echo "
+  ";
+        }
+        // line 43
+        echo "  ";
+        if ((!twig_test_empty((isset($context["prefix"]) ? $context["prefix"] : null)))) {
+            // line 44
+            echo "    <span class=\"field-prefix\">";
+            echo twig_render_var((isset($context["prefix"]) ? $context["prefix"] : null));
+            echo "</span>
+  ";
+        }
+        // line 46
+        echo "  ";
+        echo twig_render_var((isset($context["children"]) ? $context["children"] : null));
+        echo "
+  ";
+        // line 47
+        if ((!twig_test_empty((isset($context["suffix"]) ? $context["suffix"] : null)))) {
+            // line 48
+            echo "    <span class=\"field-suffix\">";
+            echo twig_render_var((isset($context["suffix"]) ? $context["suffix"] : null));
+            echo "</span>
+  ";
+        }
+        // line 50
+        echo "  ";
+        if (((isset($context["label_display"]) ? $context["label_display"] : null) == "after")) {
+            // line 51
+            echo "    ";
+            echo twig_render_var((isset($context["label"]) ? $context["label"] : null));
+            echo "
+  ";
+        }
+        // line 53
+        echo "  ";
+        if ($this->getAttribute((isset($context["description"]) ? $context["description"] : null), "content")) {
+            // line 54
+            echo "    <div";
+            echo twig_render_var($this->getAttribute((isset($context["description"]) ? $context["description"] : null), "attributes"));
+            echo ">
+      ";
+            // line 55
+            echo twig_render_var($this->getAttribute((isset($context["description"]) ? $context["description"] : null), "content"));
+            echo "
+    </div>
+  ";
+        }
+        // line 58
+        echo "</div>
+";
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/form-element.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  71 => 55,  66 => 54,  54 => 50,  49 => 52,  31 => 47,  20 => 44,  42 => 19,  33 => 17,  77 => 58,  74 => 43,  68 => 41,  48 => 48,  45 => 51,  39 => 49,  60 => 53,  57 => 51,  51 => 55,  47 => 47,  35 => 44,  25 => 45,  354 => 207,  348 => 204,  345 => 203,  343 => 202,  340 => 201,  334 => 198,  330 => 197,  326 => 196,  322 => 195,  319 => 194,  317 => 193,  312 => 190,  306 => 187,  302 => 186,  298 => 185,  295 => 184,  293 => 183,  288 => 180,  282 => 177,  279 => 176,  277 => 175,  274 => 174,  268 => 171,  265 => 170,  263 => 169,  257 => 166,  252 => 165,  246 => 162,  243 => 161,  241 => 160,  236 => 159,  230 => 156,  227 => 155,  225 => 154,  220 => 153,  214 => 150,  211 => 149,  209 => 148,  205 => 147,  202 => 146,  196 => 145,  190 => 142,  186 => 140,  180 => 137,  177 => 136,  175 => 135,  172 => 134,  166 => 131,  163 => 130,  161 => 129,  157 => 127,  151 => 124,  148 => 123,  141 => 120,  138 => 119,  128 => 114,  121 => 113,  119 => 112,  103 => 107,  96 => 106,  83 => 101,  75 => 99,  72 => 98,  63 => 53,  61 => 95,  50 => 91,  38 => 88,  32 => 43,  29 => 46,  27 => 83,  23 => 27,  26 => 41,  21 => 13,  155 => 93,  149 => 90,  146 => 122,  143 => 88,  137 => 85,  134 => 117,  131 => 83,  125 => 81,  122 => 80,  116 => 111,  113 => 110,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 105,  90 => 67,  84 => 64,  81 => 46,  79 => 62,  76 => 58,  70 => 56,  67 => 54,  64 => 39,  58 => 94,  55 => 37,  52 => 51,  46 => 47,  43 => 46,  41 => 46,  36 => 31,  30 => 28,  28 => 42,  24 => 40,  19 => 39,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#35#ca#5584f86d850eb82a77e3976bcdf84b15585d9640f14404e0c228c06ad57e.php/.htaccess b/sites/default/files/php/twig/1#35#ca#5584f86d850eb82a77e3976bcdf84b15585d9640f14404e0c228c06ad57e.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#35#ca#5584f86d850eb82a77e3976bcdf84b15585d9640f14404e0c228c06ad57e.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#35#ca#5584f86d850eb82a77e3976bcdf84b15585d9640f14404e0c228c06ad57e.php/2b7331cffd63de4353d907a8e70413dcfcf65d761048cf670b1cd5d7d2c5d1ab.php b/sites/default/files/php/twig/1#35#ca#5584f86d850eb82a77e3976bcdf84b15585d9640f14404e0c228c06ad57e.php/2b7331cffd63de4353d907a8e70413dcfcf65d761048cf670b1cd5d7d2c5d1ab.php
new file mode 100644
index 0000000..25bad8d
--- /dev/null
+++ b/sites/default/files/php/twig/1#35#ca#5584f86d850eb82a77e3976bcdf84b15585d9640f14404e0c228c06ad57e.php/2b7331cffd63de4353d907a8e70413dcfcf65d761048cf670b1cd5d7d2c5d1ab.php
@@ -0,0 +1,46 @@
+<?php
+
+/* core/modules/system/templates/pager.html.twig */
+class __TwigTemplate_35ca5584f86d850eb82a77e3976bcdf84b15585d9640f14404e0c228c06ad57e extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 14
+        if ((isset($context["items"]) ? $context["items"] : null)) {
+            // line 15
+            echo "  <h2 class=\"visually-hidden\">";
+            echo twig_render_var(t("Pages"));
+            echo "</h2>
+  ";
+            // line 16
+            echo twig_render_var((isset($context["items"]) ? $context["items"] : null));
+            echo "
+";
+        }
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/pager.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  26 => 16,  21 => 15,  155 => 93,  149 => 90,  146 => 89,  143 => 88,  137 => 85,  134 => 84,  131 => 83,  125 => 81,  122 => 80,  116 => 77,  113 => 76,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 68,  90 => 67,  84 => 64,  81 => 63,  79 => 62,  76 => 61,  70 => 58,  67 => 57,  64 => 56,  58 => 53,  55 => 52,  52 => 51,  46 => 48,  43 => 47,  41 => 46,  36 => 45,  30 => 43,  28 => 42,  24 => 41,  19 => 14,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#5b#89#22fd308ecc6197b2eec2621bd6cf63e375dfa9e62c99ef980ec91d0358b1.php/.htaccess b/sites/default/files/php/twig/1#5b#89#22fd308ecc6197b2eec2621bd6cf63e375dfa9e62c99ef980ec91d0358b1.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#5b#89#22fd308ecc6197b2eec2621bd6cf63e375dfa9e62c99ef980ec91d0358b1.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#5b#89#22fd308ecc6197b2eec2621bd6cf63e375dfa9e62c99ef980ec91d0358b1.php/8420be5a9904ee2e3830a3e4dd1094799e897e451ff0680222cc0288d88a552a.php b/sites/default/files/php/twig/1#5b#89#22fd308ecc6197b2eec2621bd6cf63e375dfa9e62c99ef980ec91d0358b1.php/8420be5a9904ee2e3830a3e4dd1094799e897e451ff0680222cc0288d88a552a.php
new file mode 100644
index 0000000..f6889bc
--- /dev/null
+++ b/sites/default/files/php/twig/1#5b#89#22fd308ecc6197b2eec2621bd6cf63e375dfa9e62c99ef980ec91d0358b1.php/8420be5a9904ee2e3830a3e4dd1094799e897e451ff0680222cc0288d88a552a.php
@@ -0,0 +1,94 @@
+<?php
+
+/* core/modules/system/templates/links.html.twig */
+class __TwigTemplate_5b8922fd308ecc6197b2eec2621bd6cf63e375dfa9e62c99ef980ec91d0358b1 extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 38
+        if ((isset($context["links"]) ? $context["links"] : null)) {
+            // line 39
+            if ((isset($context["heading"]) ? $context["heading"] : null)) {
+                // line 40
+                if ($this->getAttribute((isset($context["heading"]) ? $context["heading"] : null), "level")) {
+                    // line 41
+                    echo "<";
+                    echo twig_render_var($this->getAttribute((isset($context["heading"]) ? $context["heading"] : null), "level"));
+                    echo twig_render_var($this->getAttribute((isset($context["heading"]) ? $context["heading"] : null), "attributes"));
+                    echo ">";
+                    echo twig_render_var($this->getAttribute((isset($context["heading"]) ? $context["heading"] : null), "text"));
+                    echo "</";
+                    echo twig_render_var($this->getAttribute((isset($context["heading"]) ? $context["heading"] : null), "level"));
+                    echo ">";
+                } else {
+                    // line 43
+                    echo "<h2";
+                    echo twig_render_var($this->getAttribute((isset($context["heading"]) ? $context["heading"] : null), "attributes"));
+                    echo ">";
+                    echo twig_render_var($this->getAttribute((isset($context["heading"]) ? $context["heading"] : null), "text"));
+                    echo "</h2>";
+                }
+            }
+            // line 46
+            echo "<ul";
+            echo twig_render_var((isset($context["attributes"]) ? $context["attributes"] : null));
+            echo ">";
+            // line 47
+            $context['_parent'] = (array) $context;
+            $context['_seq'] = twig_ensure_traversable((isset($context["links"]) ? $context["links"] : null));
+            foreach ($context['_seq'] as $context["_key"] => $context["item"]) {
+                // line 48
+                echo "<li";
+                echo twig_render_var($this->getAttribute((isset($context["item"]) ? $context["item"] : null), "attributes"));
+                echo ">";
+                // line 49
+                if ($this->getAttribute((isset($context["item"]) ? $context["item"] : null), "link")) {
+                    // line 50
+                    echo twig_render_var($this->getAttribute((isset($context["item"]) ? $context["item"] : null), "link"));
+                } elseif ($this->getAttribute((isset($context["item"]) ? $context["item"] : null), "text_attributes")) {
+                    // line 52
+                    echo "<span";
+                    echo twig_render_var($this->getAttribute((isset($context["item"]) ? $context["item"] : null), "text_attributes"));
+                    echo ">";
+                    echo twig_render_var($this->getAttribute((isset($context["item"]) ? $context["item"] : null), "text"));
+                    echo "</span>";
+                } else {
+                    // line 54
+                    echo twig_render_var($this->getAttribute((isset($context["item"]) ? $context["item"] : null), "text"));
+                }
+                // line 56
+                echo "</li>";
+            }
+            $_parent = $context['_parent'];
+            unset($context['_seq'], $context['_iterated'], $context['_key'], $context['item'], $context['_parent'], $context['loop']);
+            $context = array_intersect_key($context, $_parent) + $_parent;
+            // line 58
+            echo "</ul>";
+        }
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/links.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  60 => 52,  57 => 50,  51 => 48,  47 => 47,  35 => 43,  25 => 41,  354 => 207,  348 => 204,  345 => 203,  343 => 202,  340 => 201,  334 => 198,  330 => 197,  326 => 196,  322 => 195,  319 => 194,  317 => 193,  312 => 190,  306 => 187,  302 => 186,  298 => 185,  295 => 184,  293 => 183,  288 => 180,  282 => 177,  279 => 176,  277 => 175,  274 => 174,  268 => 171,  265 => 170,  263 => 169,  257 => 166,  252 => 165,  246 => 162,  243 => 161,  241 => 160,  236 => 159,  230 => 156,  227 => 155,  225 => 154,  220 => 153,  214 => 150,  211 => 149,  209 => 148,  205 => 147,  202 => 146,  196 => 145,  190 => 142,  186 => 140,  180 => 137,  177 => 136,  175 => 135,  172 => 134,  166 => 131,  163 => 130,  161 => 129,  157 => 127,  151 => 124,  148 => 123,  141 => 120,  138 => 119,  128 => 114,  121 => 113,  119 => 112,  103 => 107,  96 => 106,  83 => 101,  75 => 99,  72 => 98,  63 => 96,  61 => 95,  50 => 91,  38 => 88,  32 => 85,  29 => 84,  27 => 83,  23 => 40,  26 => 25,  21 => 39,  155 => 93,  149 => 90,  146 => 122,  143 => 88,  137 => 85,  134 => 117,  131 => 83,  125 => 81,  122 => 80,  116 => 111,  113 => 110,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 105,  90 => 67,  84 => 64,  81 => 63,  79 => 62,  76 => 58,  70 => 56,  67 => 54,  64 => 56,  58 => 94,  55 => 49,  52 => 51,  46 => 48,  43 => 46,  41 => 89,  36 => 45,  30 => 43,  28 => 42,  24 => 41,  19 => 38,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#5c#2b#274e8db9ffa699d393a310fb6ac73caee38126698b4b3fbdabaf71e6e243.php/.htaccess b/sites/default/files/php/twig/1#5c#2b#274e8db9ffa699d393a310fb6ac73caee38126698b4b3fbdabaf71e6e243.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#5c#2b#274e8db9ffa699d393a310fb6ac73caee38126698b4b3fbdabaf71e6e243.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#5c#2b#274e8db9ffa699d393a310fb6ac73caee38126698b4b3fbdabaf71e6e243.php/d659df16cc6caf37a18f98c2c282999a08517d1ba137e2b1b05ec6805f78f260.php b/sites/default/files/php/twig/1#5c#2b#274e8db9ffa699d393a310fb6ac73caee38126698b4b3fbdabaf71e6e243.php/d659df16cc6caf37a18f98c2c282999a08517d1ba137e2b1b05ec6805f78f260.php
new file mode 100644
index 0000000..0c345d4
--- /dev/null
+++ b/sites/default/files/php/twig/1#5c#2b#274e8db9ffa699d393a310fb6ac73caee38126698b4b3fbdabaf71e6e243.php/d659df16cc6caf37a18f98c2c282999a08517d1ba137e2b1b05ec6805f78f260.php
@@ -0,0 +1,43 @@
+<?php
+
+/* core/modules/system/templates/feed-icon.html.twig */
+class __TwigTemplate_5c2b274e8db9ffa699d393a310fb6ac73caee38126698b4b3fbdabaf71e6e243 extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 18
+        echo "<a href=\"";
+        echo twig_render_var((isset($context["url"]) ? $context["url"] : null));
+        echo "\"";
+        echo twig_render_var((isset($context["attributes"]) ? $context["attributes"] : null));
+        echo ">";
+        echo twig_render_var((isset($context["icon"]) ? $context["icon"] : null));
+        echo "</a>
+";
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/feed-icon.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  19 => 18,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#68#4c#13e24e8070829dfcd0f2ce8fd342fd9c3c50256596bdbf7ed0cfcf9233c7.php/.htaccess b/sites/default/files/php/twig/1#68#4c#13e24e8070829dfcd0f2ce8fd342fd9c3c50256596bdbf7ed0cfcf9233c7.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#68#4c#13e24e8070829dfcd0f2ce8fd342fd9c3c50256596bdbf7ed0cfcf9233c7.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#68#4c#13e24e8070829dfcd0f2ce8fd342fd9c3c50256596bdbf7ed0cfcf9233c7.php/85abf702fc0fb6e55f5966e2e3686ec75cb95a4aca6cc279772895dcf936dc2a.php b/sites/default/files/php/twig/1#68#4c#13e24e8070829dfcd0f2ce8fd342fd9c3c50256596bdbf7ed0cfcf9233c7.php/85abf702fc0fb6e55f5966e2e3686ec75cb95a4aca6cc279772895dcf936dc2a.php
new file mode 100644
index 0000000..760145e
--- /dev/null
+++ b/sites/default/files/php/twig/1#68#4c#13e24e8070829dfcd0f2ce8fd342fd9c3c50256596bdbf7ed0cfcf9233c7.php/85abf702fc0fb6e55f5966e2e3686ec75cb95a4aca6cc279772895dcf936dc2a.php
@@ -0,0 +1,62 @@
+<?php
+
+/* core/modules/system/templates/breadcrumb.html.twig */
+class __TwigTemplate_684c13e24e8070829dfcd0f2ce8fd342fd9c3c50256596bdbf7ed0cfcf9233c7 extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 12
+        if ((isset($context["breadcrumb"]) ? $context["breadcrumb"] : null)) {
+            // line 13
+            echo "  <nav class=\"breadcrumb\" role=\"navigation\">
+    <h2 class=\"visually-hidden\">";
+            // line 14
+            echo twig_render_var(t("You are here"));
+            echo "</h2>
+    <ol>
+    ";
+            // line 16
+            $context['_parent'] = (array) $context;
+            $context['_seq'] = twig_ensure_traversable((isset($context["breadcrumb"]) ? $context["breadcrumb"] : null));
+            foreach ($context['_seq'] as $context["_key"] => $context["item"]) {
+                // line 17
+                echo "      <li>";
+                echo twig_render_var((isset($context["item"]) ? $context["item"] : null));
+                echo "</li>
+    ";
+            }
+            $_parent = $context['_parent'];
+            unset($context['_seq'], $context['_iterated'], $context['_key'], $context['item'], $context['_parent'], $context['loop']);
+            $context = array_intersect_key($context, $_parent) + $_parent;
+            // line 19
+            echo "    </ol>
+  </nav>
+";
+        }
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/breadcrumb.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  42 => 19,  33 => 17,  77 => 44,  74 => 43,  68 => 41,  48 => 35,  45 => 34,  39 => 32,  60 => 52,  57 => 50,  51 => 36,  47 => 47,  35 => 43,  25 => 41,  354 => 207,  348 => 204,  345 => 203,  343 => 202,  340 => 201,  334 => 198,  330 => 197,  326 => 196,  322 => 195,  319 => 194,  317 => 193,  312 => 190,  306 => 187,  302 => 186,  298 => 185,  295 => 184,  293 => 183,  288 => 180,  282 => 177,  279 => 176,  277 => 175,  274 => 174,  268 => 171,  265 => 170,  263 => 169,  257 => 166,  252 => 165,  246 => 162,  243 => 161,  241 => 160,  236 => 159,  230 => 156,  227 => 155,  225 => 154,  220 => 153,  214 => 150,  211 => 149,  209 => 148,  205 => 147,  202 => 146,  196 => 145,  190 => 142,  186 => 140,  180 => 137,  177 => 136,  175 => 135,  172 => 134,  166 => 131,  163 => 130,  161 => 129,  157 => 127,  151 => 124,  148 => 123,  141 => 120,  138 => 119,  128 => 114,  121 => 113,  119 => 112,  103 => 107,  96 => 106,  83 => 101,  75 => 99,  72 => 98,  63 => 96,  61 => 95,  50 => 91,  38 => 88,  32 => 29,  29 => 16,  27 => 83,  23 => 27,  26 => 25,  21 => 13,  155 => 93,  149 => 90,  146 => 122,  143 => 88,  137 => 85,  134 => 117,  131 => 83,  125 => 81,  122 => 80,  116 => 111,  113 => 110,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 105,  90 => 67,  84 => 64,  81 => 46,  79 => 62,  76 => 58,  70 => 56,  67 => 54,  64 => 39,  58 => 94,  55 => 37,  52 => 51,  46 => 48,  43 => 46,  41 => 89,  36 => 31,  30 => 28,  28 => 42,  24 => 14,  19 => 12,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#6a#ff#480f131819a0c0cdcf7500aea12bb733052e974c799a3960f7700231ea09.php/.htaccess b/sites/default/files/php/twig/1#6a#ff#480f131819a0c0cdcf7500aea12bb733052e974c799a3960f7700231ea09.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#6a#ff#480f131819a0c0cdcf7500aea12bb733052e974c799a3960f7700231ea09.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#6a#ff#480f131819a0c0cdcf7500aea12bb733052e974c799a3960f7700231ea09.php/191f3326c034013cc1a881d8953b297489af080829736d4b5e79e5d1a1f7c037.php b/sites/default/files/php/twig/1#6a#ff#480f131819a0c0cdcf7500aea12bb733052e974c799a3960f7700231ea09.php/191f3326c034013cc1a881d8953b297489af080829736d4b5e79e5d1a1f7c037.php
new file mode 100644
index 0000000..46a78fd
--- /dev/null
+++ b/sites/default/files/php/twig/1#6a#ff#480f131819a0c0cdcf7500aea12bb733052e974c799a3960f7700231ea09.php/191f3326c034013cc1a881d8953b297489af080829736d4b5e79e5d1a1f7c037.php
@@ -0,0 +1,80 @@
+<?php
+
+/* core/modules/block/templates/block.html.twig */
+class __TwigTemplate_6aff480f131819a0c0cdcf7500aea12bb733052e974c799a3960f7700231ea09 extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+            'content' => array($this, 'block_content'),
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 44
+        echo "<div";
+        echo twig_render_var((isset($context["attributes"]) ? $context["attributes"] : null));
+        echo ">
+  ";
+        // line 45
+        echo twig_render_var((isset($context["title_prefix"]) ? $context["title_prefix"] : null));
+        echo "
+  ";
+        // line 46
+        if ((isset($context["label"]) ? $context["label"] : null)) {
+            // line 47
+            echo "    <h2";
+            echo twig_render_var((isset($context["title_attributes"]) ? $context["title_attributes"] : null));
+            echo ">";
+            echo twig_render_var((isset($context["label"]) ? $context["label"] : null));
+            echo "</h2>
+  ";
+        }
+        // line 49
+        echo "  ";
+        echo twig_render_var((isset($context["title_suffix"]) ? $context["title_suffix"] : null));
+        echo "
+
+  <div";
+        // line 51
+        echo twig_render_var((isset($context["content_attributes"]) ? $context["content_attributes"] : null));
+        echo ">
+    ";
+        // line 52
+        $this->displayBlock('content', $context, $blocks);
+        // line 55
+        echo "  </div>
+</div>
+";
+    }
+
+    // line 52
+    public function block_content($context, array $blocks = array())
+    {
+        // line 53
+        echo "      ";
+        echo twig_render_var((isset($context["content"]) ? $context["content"] : null));
+        echo "
+    ";
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/block/templates/block.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  49 => 52,  31 => 47,  20 => 44,  42 => 19,  33 => 17,  77 => 44,  74 => 43,  68 => 41,  48 => 35,  45 => 51,  39 => 49,  60 => 53,  57 => 52,  51 => 55,  47 => 47,  35 => 43,  25 => 45,  354 => 207,  348 => 204,  345 => 203,  343 => 202,  340 => 201,  334 => 198,  330 => 197,  326 => 196,  322 => 195,  319 => 194,  317 => 193,  312 => 190,  306 => 187,  302 => 186,  298 => 185,  295 => 184,  293 => 183,  288 => 180,  282 => 177,  279 => 176,  277 => 175,  274 => 174,  268 => 171,  265 => 170,  263 => 169,  257 => 166,  252 => 165,  246 => 162,  243 => 161,  241 => 160,  236 => 159,  230 => 156,  227 => 155,  225 => 154,  220 => 153,  214 => 150,  211 => 149,  209 => 148,  205 => 147,  202 => 146,  196 => 145,  190 => 142,  186 => 140,  180 => 137,  177 => 136,  175 => 135,  172 => 134,  166 => 131,  163 => 130,  161 => 129,  157 => 127,  151 => 124,  148 => 123,  141 => 120,  138 => 119,  128 => 114,  121 => 113,  119 => 112,  103 => 107,  96 => 106,  83 => 101,  75 => 99,  72 => 98,  63 => 96,  61 => 95,  50 => 91,  38 => 88,  32 => 29,  29 => 46,  27 => 83,  23 => 27,  26 => 25,  21 => 13,  155 => 93,  149 => 90,  146 => 122,  143 => 88,  137 => 85,  134 => 117,  131 => 83,  125 => 81,  122 => 80,  116 => 111,  113 => 110,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 105,  90 => 67,  84 => 64,  81 => 46,  79 => 62,  76 => 58,  70 => 56,  67 => 54,  64 => 39,  58 => 94,  55 => 37,  52 => 51,  46 => 48,  43 => 46,  41 => 89,  36 => 31,  30 => 28,  28 => 42,  24 => 14,  19 => 12,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#72#55#67976e66f73abd50ac42e47b10e39ac8d2374d171ef7b2d92cb24642a098.php/.htaccess b/sites/default/files/php/twig/1#72#55#67976e66f73abd50ac42e47b10e39ac8d2374d171ef7b2d92cb24642a098.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#72#55#67976e66f73abd50ac42e47b10e39ac8d2374d171ef7b2d92cb24642a098.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#72#55#67976e66f73abd50ac42e47b10e39ac8d2374d171ef7b2d92cb24642a098.php/f436036b297c5bca0cfe2c4b2fcf3b31b7f488dd4161f553d6ce6006544f7728.php b/sites/default/files/php/twig/1#72#55#67976e66f73abd50ac42e47b10e39ac8d2374d171ef7b2d92cb24642a098.php/f436036b297c5bca0cfe2c4b2fcf3b31b7f488dd4161f553d6ce6006544f7728.php
new file mode 100644
index 0000000..0fca45a
--- /dev/null
+++ b/sites/default/files/php/twig/1#72#55#67976e66f73abd50ac42e47b10e39ac8d2374d171ef7b2d92cb24642a098.php/f436036b297c5bca0cfe2c4b2fcf3b31b7f488dd4161f553d6ce6006544f7728.php
@@ -0,0 +1,39 @@
+<?php
+
+/* core/modules/system/templates/image.html.twig */
+class __TwigTemplate_725567976e66f73abd50ac42e47b10e39ac8d2374d171ef7b2d92cb24642a098 extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 14
+        echo "<img";
+        echo twig_render_var((isset($context["attributes"]) ? $context["attributes"] : null));
+        echo " />
+";
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/image.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  19 => 14,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#75#e2#7db003adf896cb8bcd1fd475dd0ce6921ddf5ebce8b048c7b4eecfa371cc.php/.htaccess b/sites/default/files/php/twig/1#75#e2#7db003adf896cb8bcd1fd475dd0ce6921ddf5ebce8b048c7b4eecfa371cc.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#75#e2#7db003adf896cb8bcd1fd475dd0ce6921ddf5ebce8b048c7b4eecfa371cc.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#75#e2#7db003adf896cb8bcd1fd475dd0ce6921ddf5ebce8b048c7b4eecfa371cc.php/76c677c15aa3df2e034b333753c502567610daf44aec818c619b80dfb7cc6e50.php b/sites/default/files/php/twig/1#75#e2#7db003adf896cb8bcd1fd475dd0ce6921ddf5ebce8b048c7b4eecfa371cc.php/76c677c15aa3df2e034b333753c502567610daf44aec818c619b80dfb7cc6e50.php
new file mode 100644
index 0000000..fb4029f
--- /dev/null
+++ b/sites/default/files/php/twig/1#75#e2#7db003adf896cb8bcd1fd475dd0ce6921ddf5ebce8b048c7b4eecfa371cc.php/76c677c15aa3df2e034b333753c502567610daf44aec818c619b80dfb7cc6e50.php
@@ -0,0 +1,47 @@
+<?php
+
+/* core/modules/system/templates/region.html.twig */
+class __TwigTemplate_75e27db003adf896cb8bcd1fd475dd0ce6921ddf5ebce8b048c7b4eecfa371cc extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 23
+        if ((isset($context["content"]) ? $context["content"] : null)) {
+            // line 24
+            echo "  <div";
+            echo twig_render_var((isset($context["attributes"]) ? $context["attributes"] : null));
+            echo ">
+    ";
+            // line 25
+            echo twig_render_var((isset($context["content"]) ? $context["content"] : null));
+            echo "
+  </div>
+";
+        }
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/region.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  26 => 25,  21 => 24,  155 => 93,  149 => 90,  146 => 89,  143 => 88,  137 => 85,  134 => 84,  131 => 83,  125 => 81,  122 => 80,  116 => 77,  113 => 76,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 68,  90 => 67,  84 => 64,  81 => 63,  79 => 62,  76 => 61,  70 => 58,  67 => 57,  64 => 56,  58 => 53,  55 => 52,  52 => 51,  46 => 48,  43 => 47,  41 => 46,  36 => 45,  30 => 43,  28 => 42,  24 => 41,  19 => 23,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#98#e1#2b3866249ba551c10736653bfa026887f8babc246af4227be5d53c0a90e2.php/.htaccess b/sites/default/files/php/twig/1#98#e1#2b3866249ba551c10736653bfa026887f8babc246af4227be5d53c0a90e2.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#98#e1#2b3866249ba551c10736653bfa026887f8babc246af4227be5d53c0a90e2.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#98#e1#2b3866249ba551c10736653bfa026887f8babc246af4227be5d53c0a90e2.php/48db4e171154ffffb0fb7d36c603df84f4bfb291c8205ceccce11e2f0530837f.php b/sites/default/files/php/twig/1#98#e1#2b3866249ba551c10736653bfa026887f8babc246af4227be5d53c0a90e2.php/48db4e171154ffffb0fb7d36c603df84f4bfb291c8205ceccce11e2f0530837f.php
new file mode 100644
index 0000000..369a938
--- /dev/null
+++ b/sites/default/files/php/twig/1#98#e1#2b3866249ba551c10736653bfa026887f8babc246af4227be5d53c0a90e2.php/48db4e171154ffffb0fb7d36c603df84f4bfb291c8205ceccce11e2f0530837f.php
@@ -0,0 +1,173 @@
+<?php
+
+/* core/modules/views/templates/views-view.html.twig */
+class __TwigTemplate_98e12b3866249ba551c10736653bfa026887f8babc246af4227be5d53c0a90e2 extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 40
+        echo "<div";
+        echo twig_render_var((isset($context["attributes"]) ? $context["attributes"] : null));
+        echo ">
+  ";
+        // line 41
+        echo twig_render_var((isset($context["title_prefix"]) ? $context["title_prefix"] : null));
+        echo "
+  ";
+        // line 42
+        if ((isset($context["title"]) ? $context["title"] : null)) {
+            // line 43
+            echo "    ";
+            echo twig_render_var((isset($context["title"]) ? $context["title"] : null));
+            echo "
+  ";
+        }
+        // line 45
+        echo "  ";
+        echo twig_render_var((isset($context["title_suffix"]) ? $context["title_suffix"] : null));
+        echo "
+  ";
+        // line 46
+        if ((isset($context["header"]) ? $context["header"] : null)) {
+            // line 47
+            echo "    <div class=\"view-header\">
+      ";
+            // line 48
+            echo twig_render_var((isset($context["header"]) ? $context["header"] : null));
+            echo "
+    </div>
+  ";
+        }
+        // line 51
+        echo "  ";
+        if ((isset($context["exposed"]) ? $context["exposed"] : null)) {
+            // line 52
+            echo "    <div class=\"view-filters\">
+      ";
+            // line 53
+            echo twig_render_var((isset($context["exposed"]) ? $context["exposed"] : null));
+            echo "
+    </div>
+  ";
+        }
+        // line 56
+        echo "  ";
+        if ((isset($context["attachment_before"]) ? $context["attachment_before"] : null)) {
+            // line 57
+            echo "    <div class=\"attachment attachment-before\">
+      ";
+            // line 58
+            echo twig_render_var((isset($context["attachment_before"]) ? $context["attachment_before"] : null));
+            echo "
+    </div>
+  ";
+        }
+        // line 61
+        echo "
+  ";
+        // line 62
+        if ((isset($context["rows"]) ? $context["rows"] : null)) {
+            // line 63
+            echo "    <div class=\"view-content\">
+      ";
+            // line 64
+            echo twig_render_var((isset($context["rows"]) ? $context["rows"] : null));
+            echo "
+    </div>
+  ";
+        } elseif ((isset($context["empty"]) ? $context["empty"] : null)) {
+            // line 67
+            echo "    <div class=\"view-empty\">
+      ";
+            // line 68
+            echo twig_render_var((isset($context["empty"]) ? $context["empty"] : null));
+            echo "
+    </div>
+  ";
+        }
+        // line 71
+        echo "
+  ";
+        // line 72
+        if ((isset($context["pager"]) ? $context["pager"] : null)) {
+            // line 73
+            echo "    ";
+            echo twig_render_var((isset($context["pager"]) ? $context["pager"] : null));
+            echo "
+  ";
+        }
+        // line 75
+        echo "  ";
+        if ((isset($context["attachment_after"]) ? $context["attachment_after"] : null)) {
+            // line 76
+            echo "    <div class=\"attachment attachment-after\">
+      ";
+            // line 77
+            echo twig_render_var((isset($context["attachment_after"]) ? $context["attachment_after"] : null));
+            echo "
+    </div>
+  ";
+        }
+        // line 80
+        echo "  ";
+        if ((isset($context["more"]) ? $context["more"] : null)) {
+            // line 81
+            echo "    ";
+            echo twig_render_var((isset($context["more"]) ? $context["more"] : null));
+            echo "
+  ";
+        }
+        // line 83
+        echo "  ";
+        if ((isset($context["footer"]) ? $context["footer"] : null)) {
+            // line 84
+            echo "    <div class=\"view-footer\">
+      ";
+            // line 85
+            echo twig_render_var((isset($context["footer"]) ? $context["footer"] : null));
+            echo "
+    </div>
+  ";
+        }
+        // line 88
+        echo "  ";
+        if ((isset($context["feed_icon"]) ? $context["feed_icon"] : null)) {
+            // line 89
+            echo "    <div class=\"feed-icon\">
+      ";
+            // line 90
+            echo twig_render_var((isset($context["feed_icon"]) ? $context["feed_icon"] : null));
+            echo "
+    </div>
+  ";
+        }
+        // line 93
+        echo "</div>
+";
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/views/templates/views-view.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  155 => 93,  149 => 90,  146 => 89,  143 => 88,  137 => 85,  134 => 84,  131 => 83,  125 => 81,  122 => 80,  116 => 77,  113 => 76,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 68,  90 => 67,  84 => 64,  81 => 63,  79 => 62,  76 => 61,  70 => 58,  67 => 57,  64 => 56,  58 => 53,  55 => 52,  52 => 51,  46 => 48,  43 => 47,  41 => 46,  36 => 45,  30 => 43,  28 => 42,  24 => 41,  19 => 40,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#ec#36#0d1558ee2ff202a903492344e611221a8e9efa8a190ab1999376c2027f42.php/.htaccess b/sites/default/files/php/twig/1#ec#36#0d1558ee2ff202a903492344e611221a8e9efa8a190ab1999376c2027f42.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#ec#36#0d1558ee2ff202a903492344e611221a8e9efa8a190ab1999376c2027f42.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#ec#36#0d1558ee2ff202a903492344e611221a8e9efa8a190ab1999376c2027f42.php/79db53bdb3951b34f8d02671ccb6f2c4879933a28ce8f0ceeabb802ed701499c.php b/sites/default/files/php/twig/1#ec#36#0d1558ee2ff202a903492344e611221a8e9efa8a190ab1999376c2027f42.php/79db53bdb3951b34f8d02671ccb6f2c4879933a28ce8f0ceeabb802ed701499c.php
new file mode 100644
index 0000000..f14919a
--- /dev/null
+++ b/sites/default/files/php/twig/1#ec#36#0d1558ee2ff202a903492344e611221a8e9efa8a190ab1999376c2027f42.php/79db53bdb3951b34f8d02671ccb6f2c4879933a28ce8f0ceeabb802ed701499c.php
@@ -0,0 +1,83 @@
+<?php
+
+/* core/modules/system/templates/html.html.twig */
+class __TwigTemplate_ec360d1558ee2ff202a903492344e611221a8e9efa8a190ab1999376c2027f42 extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 29
+        echo "<!DOCTYPE html>
+<html";
+        // line 30
+        echo twig_render_var((isset($context["html_attributes"]) ? $context["html_attributes"] : null));
+        echo ">
+  <head>
+    ";
+        // line 32
+        echo twig_render_var((isset($context["head"]) ? $context["head"] : null));
+        echo "
+    <title>";
+        // line 33
+        echo twig_render_var((isset($context["head_title"]) ? $context["head_title"] : null));
+        echo "</title>
+    ";
+        // line 34
+        echo twig_render_var((isset($context["styles"]) ? $context["styles"] : null));
+        echo "
+    ";
+        // line 35
+        echo twig_render_var((isset($context["scripts"]) ? $context["scripts"] : null));
+        echo "
+  </head>
+  <body";
+        // line 37
+        echo twig_render_var((isset($context["attributes"]) ? $context["attributes"] : null));
+        echo ">
+    <a href=\"#main-content\" class=\"visually-hidden focusable skip-link\">
+      ";
+        // line 39
+        echo twig_render_var(t("Skip to main content"));
+        echo "
+    </a>
+    ";
+        // line 41
+        echo twig_render_var((isset($context["page_top"]) ? $context["page_top"] : null));
+        echo "
+    ";
+        // line 42
+        echo twig_render_var((isset($context["page"]) ? $context["page"] : null));
+        echo "
+    ";
+        // line 43
+        echo twig_render_var((isset($context["page_bottom"]) ? $context["page_bottom"] : null));
+        echo "
+  </body>
+</html>
+";
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/html.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  62 => 43,  44 => 37,  22 => 30,  59 => 35,  56 => 33,  37 => 28,  71 => 55,  66 => 54,  54 => 41,  49 => 39,  31 => 33,  20 => 44,  42 => 19,  33 => 17,  77 => 58,  74 => 43,  68 => 41,  48 => 48,  45 => 51,  39 => 35,  60 => 53,  57 => 51,  51 => 31,  47 => 47,  35 => 34,  25 => 24,  354 => 207,  348 => 204,  345 => 203,  343 => 202,  340 => 201,  334 => 198,  330 => 197,  326 => 196,  322 => 195,  319 => 194,  317 => 193,  312 => 190,  306 => 187,  302 => 186,  298 => 185,  295 => 184,  293 => 183,  288 => 180,  282 => 177,  279 => 176,  277 => 175,  274 => 174,  268 => 171,  265 => 170,  263 => 169,  257 => 166,  252 => 165,  246 => 162,  243 => 161,  241 => 160,  236 => 159,  230 => 156,  227 => 155,  225 => 154,  220 => 153,  214 => 150,  211 => 149,  209 => 148,  205 => 147,  202 => 146,  196 => 145,  190 => 142,  186 => 140,  180 => 137,  177 => 136,  175 => 135,  172 => 134,  166 => 131,  163 => 130,  161 => 129,  157 => 127,  151 => 124,  148 => 123,  141 => 120,  138 => 119,  128 => 114,  121 => 113,  119 => 112,  103 => 107,  96 => 106,  83 => 101,  75 => 99,  72 => 98,  63 => 53,  61 => 95,  50 => 91,  38 => 88,  32 => 27,  29 => 46,  27 => 32,  23 => 23,  26 => 41,  21 => 22,  155 => 93,  149 => 90,  146 => 122,  143 => 88,  137 => 85,  134 => 117,  131 => 83,  125 => 81,  122 => 80,  116 => 111,  113 => 110,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 105,  90 => 67,  84 => 64,  81 => 46,  79 => 62,  76 => 58,  70 => 56,  67 => 54,  64 => 39,  58 => 42,  55 => 37,  52 => 51,  46 => 47,  43 => 46,  41 => 29,  36 => 31,  30 => 26,  28 => 42,  24 => 40,  19 => 29,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#f4#4a#1364b7a699f44605eaab5cd80b9bee30b45218cfd74b5ea927dc5e371971.php/.htaccess b/sites/default/files/php/twig/1#f4#4a#1364b7a699f44605eaab5cd80b9bee30b45218cfd74b5ea927dc5e371971.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#f4#4a#1364b7a699f44605eaab5cd80b9bee30b45218cfd74b5ea927dc5e371971.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#f4#4a#1364b7a699f44605eaab5cd80b9bee30b45218cfd74b5ea927dc5e371971.php/795b1d43b1c1be0bab9cb64e4b969d2041648cacbcd40155503c3d3da7feda05.php b/sites/default/files/php/twig/1#f4#4a#1364b7a699f44605eaab5cd80b9bee30b45218cfd74b5ea927dc5e371971.php/795b1d43b1c1be0bab9cb64e4b969d2041648cacbcd40155503c3d3da7feda05.php
new file mode 100644
index 0000000..aa97def
--- /dev/null
+++ b/sites/default/files/php/twig/1#f4#4a#1364b7a699f44605eaab5cd80b9bee30b45218cfd74b5ea927dc5e371971.php/795b1d43b1c1be0bab9cb64e4b969d2041648cacbcd40155503c3d3da7feda05.php
@@ -0,0 +1,103 @@
+<?php
+
+/* core/modules/system/templates/status-messages.html.twig */
+class __TwigTemplate_f44a1364b7a699f44605eaab5cd80b9bee30b45218cfd74b5ea927dc5e371971 extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 26
+        $context['_parent'] = (array) $context;
+        $context['_seq'] = twig_ensure_traversable((isset($context["message_list"]) ? $context["message_list"] : null));
+        foreach ($context['_seq'] as $context["type"] => $context["messages"]) {
+            // line 27
+            echo "  <div class=\"messages messages--";
+            echo twig_render_var((isset($context["type"]) ? $context["type"] : null));
+            echo "\" role=\"contentinfo\" aria-label=\"";
+            echo twig_render_var($this->getAttribute((isset($context["status_headings"]) ? $context["status_headings"] : null), (isset($context["type"]) ? $context["type"] : null), array(), "array"));
+            echo "\">
+    ";
+            // line 28
+            if (((isset($context["type"]) ? $context["type"] : null) == "error")) {
+                // line 29
+                echo "      <div role=\"alert\">
+    ";
+            }
+            // line 31
+            echo "      ";
+            if ($this->getAttribute((isset($context["status_headings"]) ? $context["status_headings"] : null), (isset($context["type"]) ? $context["type"] : null), array(), "array")) {
+                // line 32
+                echo "        <h2 class=\"visually-hidden\">";
+                echo twig_render_var($this->getAttribute((isset($context["status_headings"]) ? $context["status_headings"] : null), (isset($context["type"]) ? $context["type"] : null), array(), "array"));
+                echo "</h2>
+      ";
+            }
+            // line 34
+            echo "      ";
+            if ((twig_length_filter($this->env, (isset($context["messages"]) ? $context["messages"] : null)) > 1)) {
+                // line 35
+                echo "        <ul class=\"messages__list\">
+          ";
+                // line 36
+                $context['_parent'] = (array) $context;
+                $context['_seq'] = twig_ensure_traversable((isset($context["messages"]) ? $context["messages"] : null));
+                foreach ($context['_seq'] as $context["_key"] => $context["message"]) {
+                    // line 37
+                    echo "            <li class=\"messages__item\">";
+                    echo twig_render_var((isset($context["message"]) ? $context["message"] : null));
+                    echo "</li>
+          ";
+                }
+                $_parent = $context['_parent'];
+                unset($context['_seq'], $context['_iterated'], $context['_key'], $context['message'], $context['_parent'], $context['loop']);
+                $context = array_intersect_key($context, $_parent) + $_parent;
+                // line 39
+                echo "        </ul>
+      ";
+            } else {
+                // line 41
+                echo "        ";
+                echo twig_render_var($this->getAttribute((isset($context["messages"]) ? $context["messages"] : null), 0));
+                echo "
+      ";
+            }
+            // line 43
+            echo "    ";
+            if (((isset($context["type"]) ? $context["type"] : null) == "error")) {
+                // line 44
+                echo "      </div>
+    ";
+            }
+            // line 46
+            echo "  </div>
+";
+        }
+        $_parent = $context['_parent'];
+        unset($context['_seq'], $context['_iterated'], $context['type'], $context['messages'], $context['_parent'], $context['loop']);
+        $context = array_intersect_key($context, $_parent) + $_parent;
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/status-messages.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  77 => 44,  74 => 43,  68 => 41,  48 => 35,  45 => 34,  39 => 32,  60 => 52,  57 => 50,  51 => 36,  47 => 47,  35 => 43,  25 => 41,  354 => 207,  348 => 204,  345 => 203,  343 => 202,  340 => 201,  334 => 198,  330 => 197,  326 => 196,  322 => 195,  319 => 194,  317 => 193,  312 => 190,  306 => 187,  302 => 186,  298 => 185,  295 => 184,  293 => 183,  288 => 180,  282 => 177,  279 => 176,  277 => 175,  274 => 174,  268 => 171,  265 => 170,  263 => 169,  257 => 166,  252 => 165,  246 => 162,  243 => 161,  241 => 160,  236 => 159,  230 => 156,  227 => 155,  225 => 154,  220 => 153,  214 => 150,  211 => 149,  209 => 148,  205 => 147,  202 => 146,  196 => 145,  190 => 142,  186 => 140,  180 => 137,  177 => 136,  175 => 135,  172 => 134,  166 => 131,  163 => 130,  161 => 129,  157 => 127,  151 => 124,  148 => 123,  141 => 120,  138 => 119,  128 => 114,  121 => 113,  119 => 112,  103 => 107,  96 => 106,  83 => 101,  75 => 99,  72 => 98,  63 => 96,  61 => 95,  50 => 91,  38 => 88,  32 => 29,  29 => 84,  27 => 83,  23 => 27,  26 => 25,  21 => 39,  155 => 93,  149 => 90,  146 => 122,  143 => 88,  137 => 85,  134 => 117,  131 => 83,  125 => 81,  122 => 80,  116 => 111,  113 => 110,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 105,  90 => 67,  84 => 64,  81 => 46,  79 => 62,  76 => 58,  70 => 56,  67 => 54,  64 => 39,  58 => 94,  55 => 37,  52 => 51,  46 => 48,  43 => 46,  41 => 89,  36 => 31,  30 => 28,  28 => 42,  24 => 41,  19 => 26,);
+    }
+}
diff --git a/sites/default/files/php/twig/1#fb#90#cc9696d0acddba8ba3f0637268830cd8250b1473f838da710481d4de49d0.php/.htaccess b/sites/default/files/php/twig/1#fb#90#cc9696d0acddba8ba3f0637268830cd8250b1473f838da710481d4de49d0.php/.htaccess
new file mode 100644
index 0000000..4cd97e2
--- /dev/null
+++ b/sites/default/files/php/twig/1#fb#90#cc9696d0acddba8ba3f0637268830cd8250b1473f838da710481d4de49d0.php/.htaccess
@@ -0,0 +1,17 @@
+Deny from all
+
+# Turn off all options we don't need.
+Options None
+Options +FollowSymLinks
+
+# Set the catch-all handler to prevent scripts from being executed.
+SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
+<Files *>
+  # Override the handler again if we're run later in the evaluation list.
+  SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
+</Files>
+
+# If we know how to do it safely, disable the PHP engine entirely.
+<IfModule mod_php5.c>
+  php_flag engine off
+</IfModule>
\ No newline at end of file
diff --git a/sites/default/files/php/twig/1#fb#90#cc9696d0acddba8ba3f0637268830cd8250b1473f838da710481d4de49d0.php/b98b7647891a767254f30707ce63ea140f8676c57c770c90c882c98a8f1bb06b.php b/sites/default/files/php/twig/1#fb#90#cc9696d0acddba8ba3f0637268830cd8250b1473f838da710481d4de49d0.php/b98b7647891a767254f30707ce63ea140f8676c57c770c90c882c98a8f1bb06b.php
new file mode 100644
index 0000000..3df038e
--- /dev/null
+++ b/sites/default/files/php/twig/1#fb#90#cc9696d0acddba8ba3f0637268830cd8250b1473f838da710481d4de49d0.php/b98b7647891a767254f30707ce63ea140f8676c57c770c90c882c98a8f1bb06b.php
@@ -0,0 +1,77 @@
+<?php
+
+/* core/modules/system/templates/item-list.html.twig */
+class __TwigTemplate_fb90cc9696d0acddba8ba3f0637268830cd8250b1473f838da710481d4de49d0 extends Twig_Template
+{
+    public function __construct(Twig_Environment $env)
+    {
+        parent::__construct($env);
+
+        $this->parent = false;
+
+        $this->blocks = array(
+        );
+    }
+
+    protected function doDisplay(array $context, array $blocks = array())
+    {
+        // line 21
+        if (((isset($context["items"]) ? $context["items"] : null) || (isset($context["empty"]) ? $context["empty"] : null))) {
+            // line 22
+            echo "<div class=\"item-list\">";
+            // line 23
+            if ((isset($context["title"]) ? $context["title"] : null)) {
+                // line 24
+                echo "<h3>";
+                echo twig_render_var((isset($context["title"]) ? $context["title"] : null));
+                echo "</h3>";
+            }
+            // line 26
+            if ((isset($context["items"]) ? $context["items"] : null)) {
+                // line 27
+                echo "<";
+                echo twig_render_var((isset($context["list_type"]) ? $context["list_type"] : null));
+                echo twig_render_var((isset($context["attributes"]) ? $context["attributes"] : null));
+                echo ">";
+                // line 28
+                $context['_parent'] = (array) $context;
+                $context['_seq'] = twig_ensure_traversable((isset($context["items"]) ? $context["items"] : null));
+                foreach ($context['_seq'] as $context["_key"] => $context["item"]) {
+                    // line 29
+                    echo "<li";
+                    echo twig_render_var($this->getAttribute((isset($context["item"]) ? $context["item"] : null), "attributes"));
+                    echo ">";
+                    echo twig_render_var($this->getAttribute((isset($context["item"]) ? $context["item"] : null), "value"));
+                    echo "</li>";
+                }
+                $_parent = $context['_parent'];
+                unset($context['_seq'], $context['_iterated'], $context['_key'], $context['item'], $context['_parent'], $context['loop']);
+                $context = array_intersect_key($context, $_parent) + $_parent;
+                // line 31
+                echo "</";
+                echo twig_render_var((isset($context["list_type"]) ? $context["list_type"] : null));
+                echo ">";
+            } else {
+                // line 33
+                echo twig_render_var((isset($context["empty"]) ? $context["empty"] : null));
+            }
+            // line 35
+            echo "</div>";
+        }
+    }
+
+    public function getTemplateName()
+    {
+        return "core/modules/system/templates/item-list.html.twig";
+    }
+
+    public function isTraitable()
+    {
+        return false;
+    }
+
+    public function getDebugInfo()
+    {
+        return array (  59 => 35,  56 => 33,  37 => 28,  71 => 55,  66 => 54,  54 => 50,  49 => 52,  31 => 47,  20 => 44,  42 => 19,  33 => 17,  77 => 58,  74 => 43,  68 => 41,  48 => 48,  45 => 51,  39 => 49,  60 => 53,  57 => 51,  51 => 31,  47 => 47,  35 => 44,  25 => 24,  354 => 207,  348 => 204,  345 => 203,  343 => 202,  340 => 201,  334 => 198,  330 => 197,  326 => 196,  322 => 195,  319 => 194,  317 => 193,  312 => 190,  306 => 187,  302 => 186,  298 => 185,  295 => 184,  293 => 183,  288 => 180,  282 => 177,  279 => 176,  277 => 175,  274 => 174,  268 => 171,  265 => 170,  263 => 169,  257 => 166,  252 => 165,  246 => 162,  243 => 161,  241 => 160,  236 => 159,  230 => 156,  227 => 155,  225 => 154,  220 => 153,  214 => 150,  211 => 149,  209 => 148,  205 => 147,  202 => 146,  196 => 145,  190 => 142,  186 => 140,  180 => 137,  177 => 136,  175 => 135,  172 => 134,  166 => 131,  163 => 130,  161 => 129,  157 => 127,  151 => 124,  148 => 123,  141 => 120,  138 => 119,  128 => 114,  121 => 113,  119 => 112,  103 => 107,  96 => 106,  83 => 101,  75 => 99,  72 => 98,  63 => 53,  61 => 95,  50 => 91,  38 => 88,  32 => 27,  29 => 46,  27 => 83,  23 => 23,  26 => 41,  21 => 22,  155 => 93,  149 => 90,  146 => 122,  143 => 88,  137 => 85,  134 => 117,  131 => 83,  125 => 81,  122 => 80,  116 => 111,  113 => 110,  110 => 75,  104 => 73,  102 => 72,  99 => 71,  93 => 105,  90 => 67,  84 => 64,  81 => 46,  79 => 62,  76 => 58,  70 => 56,  67 => 54,  64 => 39,  58 => 94,  55 => 37,  52 => 51,  46 => 47,  43 => 46,  41 => 29,  36 => 31,  30 => 26,  28 => 42,  24 => 40,  19 => 21,);
+    }
+}
diff --git a/sites/default/files/translations/drupal-8.0-alpha2.fr.po b/sites/default/files/translations/drupal-8.0-alpha2.fr.po
new file mode 100644
index 0000000..a6e1d38
--- /dev/null
+++ b/sites/default/files/translations/drupal-8.0-alpha2.fr.po
@@ -0,0 +1,17011 @@
+# French translation of Drupal core (8.0-alpha2)
+# Copyright (c) 2014 by the French translation team
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Drupal core (8.0-alpha2)\n"
+"POT-Creation-Date: 2014-02-25 05:30+0000\n"
+"PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n"
+"Language-Team: French\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n>1);\n"
+
+msgid "Home"
+msgstr "Accueil"
+msgid "User interface"
+msgstr "Interface utilisateur"
+msgid "Title"
+msgstr "Titre"
+msgid "Body"
+msgstr "Corps"
+msgid "Next"
+msgstr "Suivant"
+msgid "user"
+msgstr "utilisateur"
+msgid "Pages"
+msgstr "Pages"
+msgid "Save configuration"
+msgstr "Enregistrer la configuration"
+msgid "Reset to defaults"
+msgstr "Réinitialiser aux valeurs par défaut"
+msgid "delete"
+msgstr "supprimer"
+msgid "Status"
+msgstr "Statut"
+msgid "Create a new user account."
+msgstr "Créer un nouveau compte utilisateur."
+msgid "Request new password via e-mail."
+msgstr "Demander un nouveau mot de passe par courriel."
+msgid "Prefix"
+msgstr "Préfixe"
+msgid "Suffix"
+msgstr "Suffixe"
+msgid "approve"
+msgstr "approuver"
+msgid "E-mail"
+msgstr "Courriel"
+msgid "Approve"
+msgstr "Approuver"
+msgid "Delete"
+msgstr "Supprimer"
+msgid "Submit"
+msgstr "Soumettre"
+msgid "Operations"
+msgstr "Actions"
+msgid "Content"
+msgstr "Contenu"
+msgid "Value"
+msgstr "Valeur"
+msgid "Username"
+msgstr "Nom d'utilisateur"
+msgid "Email address"
+msgstr "Adresse de courriel"
+msgid "content"
+msgstr "contenu"
+msgid "Development"
+msgstr "Développement"
+msgid "Group"
+msgstr "Groupe"
+msgid "Type"
+msgstr "Type"
+msgid "Author"
+msgstr "Auteur"
+msgid "Replies"
+msgstr "Réponses"
+msgid "Closed"
+msgstr "Fermé"
+msgid "yes"
+msgstr "oui"
+msgid "List"
+msgstr "Lister"
+msgid "Subject"
+msgstr "Objet"
+msgid "closed"
+msgstr "fermé"
+msgid "Actions"
+msgstr "Actions"
+msgid "disabled"
+msgstr "désactivé"
+msgid "Confirm"
+msgstr "Confirmer"
+msgid "Cancel"
+msgstr "Annuler"
+msgid "Remove"
+msgstr "Retirer"
+msgid "Last comment"
+msgstr "Dernier commentaire"
+msgid "Description"
+msgstr "Description"
+msgid "Language"
+msgstr "Langue"
+msgid "Read more"
+msgstr "Lire la suite"
+msgid "Log"
+msgstr "Journal"
+msgid "RSS feed"
+msgstr "Flux RSS"
+msgid "more"
+msgstr "plus"
+msgid "Enable"
+msgstr "Activer"
+msgid "Disable"
+msgstr "Désactiver"
+msgid "Explanation or submission guidelines"
+msgstr "Explication ou directives pour la contribution"
+msgid "Article"
+msgstr "Article"
+msgid "Disabled"
+msgstr "Désactivé"
+msgid "Enabled"
+msgstr "Activé"
+msgid "Administration"
+msgstr "Administration"
+msgid "footer"
+msgstr "pied de page"
+msgid "Comments"
+msgstr "Commentaires"
+msgid "More"
+msgstr "Plus"
+msgid "not verified"
+msgstr "non vérifié"
+msgid "Action"
+msgstr "Action"
+msgid "Last updated"
+msgstr "Dernière mise à jour"
+msgid "On"
+msgstr "Activé"
+msgid "For"
+msgstr "Pour"
+msgid "new"
+msgstr "nouveau"
+msgid "error"
+msgstr "erreur"
+msgid "Tags"
+msgstr "Étiquettes"
+msgid "Block title"
+msgstr "Titre du bloc"
+msgid "The title of the block as shown to the user."
+msgstr "Le titre du bloc tel qu'il est affiché à l'utilisateur"
+msgid "Taxonomy"
+msgstr "Taxonomie"
+msgid "Yes"
+msgstr "Oui"
+msgid "No"
+msgstr "Non"
+msgid "cron"
+msgstr "tâche planifiée (cron)"
+msgid "Content types"
+msgstr "Types de contenu"
+msgid "Homepage"
+msgstr "Page d'accueil"
+msgid "Home page"
+msgstr "Page d'accueil"
+msgid "Categories"
+msgstr "Catégories"
+msgid "Download"
+msgstr "Téléchargement"
+msgid "view"
+msgstr "voir"
+msgid "updated"
+msgstr "mis à jour"
+msgid "Overview"
+msgstr "Vue d'ensemble"
+msgid "File information"
+msgstr "Information sur le fichier"
+msgid "File"
+msgstr "Fichier"
+msgid "Tag"
+msgstr "Étiquette"
+msgid "Advanced options"
+msgstr "Options avancées"
+msgid "Release notes"
+msgstr "Notes de version"
+msgid "Edit"
+msgstr "Modifier"
+msgid "Date"
+msgstr "Date"
+msgid "Size"
+msgstr "Taille"
+msgid "Search"
+msgstr "Rechercher"
+msgid "Reset"
+msgstr "Réinitialiser"
+msgid "Daily"
+msgstr "Quotidien"
+msgid "Weekly"
+msgstr "Hebdomadaire"
+msgid "None"
+msgstr "Aucun(e)"
+msgid "Use count"
+msgstr "Nombre d'utilisations"
+msgid "Display settings"
+msgstr "Paramètres d'affichage"
+msgid "This action cannot be undone."
+msgstr "Cette action est irréversible."
+msgid "Test"
+msgstr "Tester"
+msgid "Message"
+msgstr "Message"
+msgid "No log messages available."
+msgstr "Aucune entrée du journal n'est disponible."
+msgid "Password"
+msgstr "Mot de passe"
+msgid "Block settings"
+msgstr "Paramètres du bloc"
+msgid "- None -"
+msgstr "- Aucun -"
+msgid "Weight"
+msgstr "Poids"
+msgid "The configuration options have been saved."
+msgstr "Les options de configuration ont été enregistrées."
+msgid "Link"
+msgstr "Lien"
+msgid "Image"
+msgstr "Image"
+msgid "Center"
+msgstr "Centre"
+msgid "Help text"
+msgstr "Texte d'aide"
+msgid "Types"
+msgstr "Types"
+msgid "Required"
+msgstr "Requis"
+msgid "root"
+msgstr "racine"
+msgid "Parent"
+msgstr "Parent"
+msgid "Pages at a given level are ordered first by weight and then by title."
+msgstr ""
+"Les pages d'un même niveau sont d'abord classées par poids, puis "
+"dans l’ordre alphabétique des titres."
+msgid "Depth"
+msgstr "Profondeur"
+msgid "none"
+msgstr "aucun(e)"
+msgid "Category"
+msgstr "Catégorie"
+msgid "Add container"
+msgstr "Ajouter un conteneur"
+msgid "Settings"
+msgstr "Paramètres"
+msgid "Add category"
+msgstr "Ajouter une catégorie"
+msgid "Feed"
+msgstr "Flux"
+msgid "Name"
+msgstr "Nom"
+msgid "edit container"
+msgstr "modifier le conteneur"
+msgid "edit"
+msgstr "modifier"
+msgid "Go to previous page"
+msgstr "Aller à la page précédente"
+msgid "Go to parent page"
+msgstr "Aller à la page parente"
+msgid "Go to next page"
+msgstr "Aller à la page suivante"
+msgid "Import"
+msgstr "Importer"
+msgid "Book"
+msgstr "Livre"
+msgid "Export"
+msgstr "Exporter"
+msgid "Taxonomy term"
+msgstr "Terme de taxonomie"
+msgid "Description field"
+msgstr "Champ description"
+msgid "settings"
+msgstr "paramètres"
+msgid "Node ID"
+msgstr "Identifiant (ID) du nœud"
+msgid "Field"
+msgstr "Champ"
+msgid "(none)"
+msgstr "(aucun)"
+msgid "Outline"
+msgstr "Structure"
+msgid "header"
+msgstr "en-tête"
+msgid "Label"
+msgstr "Étiquette"
+msgid "Preview"
+msgstr "Aperçu"
+msgid "Save"
+msgstr "Enregistrer"
+msgid "Session opened for %name."
+msgstr "Session ouverte pour %name."
+msgid "Help"
+msgstr "Aide"
+msgid "True"
+msgstr "Vrai"
+msgid "False"
+msgstr "Faux"
+msgid "Default"
+msgstr "Par défaut"
+msgid "Summary"
+msgstr "Résumé"
+msgid "Update"
+msgstr "Mettre à jour"
+msgid "Open"
+msgstr "Ouvert"
+msgid "Blank"
+msgstr "Vide"
+msgid "Top"
+msgstr "Haut"
+msgid "Sunday"
+msgstr "Dimanche"
+msgid "Monday"
+msgstr "Lundi"
+msgid "Tuesday"
+msgstr "Mardi"
+msgid "Wednesday"
+msgstr "Mercredi"
+msgid "Thursday"
+msgstr "Jeudi"
+msgid "Friday"
+msgstr "Vendredi"
+msgid "Saturday"
+msgstr "Samedi"
+msgid "High"
+msgstr "Haute"
+msgid "Low"
+msgstr "Faible"
+msgid "Add new"
+msgstr "Ajouter nouveau"
+msgid "Time"
+msgstr "Heure"
+msgid "Views"
+msgstr "Vues"
+msgid "Access"
+msgstr "Accès"
+msgid "Add"
+msgstr "Ajouter"
+msgid "View"
+msgstr "Voir"
+msgid "Format"
+msgstr "Format"
+msgid "hidden"
+msgstr "caché"
+msgid "URL"
+msgstr "URL"
+msgid "Path"
+msgstr "Chemin"
+msgid "Filename"
+msgstr "Nom du fichier"
+msgid "Vocabularies"
+msgstr "Vocabulaires"
+msgid "Modules"
+msgstr "Modules"
+msgid "Clear index"
+msgstr "Vider l'index"
+msgid "General discussion"
+msgstr "Discussion générale"
+msgid "edit forum"
+msgstr "modifier le forum"
+msgid "Forum name"
+msgstr "Nom du forum"
+msgid "forum"
+msgstr "forum"
+msgid "Refresh"
+msgstr "Actualiser"
+msgid "Region"
+msgstr "Région"
+msgid "Visible"
+msgstr "Visible"
+msgid "Anchor"
+msgstr "Ancre"
+msgid "Display"
+msgstr "Affichage"
+msgid "Node type"
+msgstr "Type de nœud"
+msgid "Menu"
+msgstr "Menu"
+msgid "Advanced settings"
+msgstr "Paramètres avancés"
+msgid "results"
+msgstr "résultats"
+msgid "search"
+msgstr "rechercher"
+msgid "GUID"
+msgstr "GUID"
+msgid "never"
+msgstr "jamais"
+msgid "The username %name does not exist."
+msgstr "Le nom d'utilisateur %name n'existe pas."
+msgid "mail"
+msgstr "courriel"
+msgid "Updated"
+msgstr "Mis à jour"
+msgid "Text"
+msgstr "Texte"
+msgid "Theme"
+msgstr "Thème"
+msgid "aggregator"
+msgstr "agrégateur"
+msgid "read more"
+msgstr "lire la suite"
+msgid "Update interval"
+msgstr "Fréquence des mises à jour"
+msgid "The fully-qualified URL of the feed."
+msgstr "L'adresse URL complète du flux."
+msgid "Add forum"
+msgstr "Ajouter un forum"
+msgid "Add term"
+msgstr "Ajouter un terme"
+msgid "theme"
+msgstr "thème"
+msgid "no screenshot"
+msgstr "pas de capture d'écran"
+msgid "Timestamp"
+msgstr "Horodatage"
+msgid "Keywords"
+msgstr "Mots-clés"
+msgid "Preview comment"
+msgstr "Aperçu du commentaire"
+msgid "Component"
+msgstr "Composant"
+msgid "ID"
+msgstr "Identifiant (ID)"
+msgid "Statistics"
+msgstr "Statistiques"
+msgid "Advanced search"
+msgstr "Recherche avancée"
+msgid "You are not authorized to access this page."
+msgstr "Vous n'êtes pas autorisé(e) à accéder à cette page."
+msgid "Unknown"
+msgstr "Inconnu"
+msgid "Attachment"
+msgstr "Fichier attaché"
+msgid "n/a"
+msgstr "n/a"
+msgid "Upload"
+msgstr "Transférer"
+msgid "Picture"
+msgstr "Image"
+msgid "Before"
+msgstr "Avant"
+msgid "After"
+msgstr "Après"
+msgid "Database type"
+msgstr "Type de base de données"
+msgid "Promoted"
+msgstr "Promu"
+msgid "User"
+msgstr "Utilisateur"
+msgid "Content type"
+msgstr "Type de contenu"
+msgid "action"
+msgstr "action"
+msgid "Continue"
+msgstr "Continuer"
+msgid "Configure"
+msgstr "Configurer"
+msgid "Email"
+msgstr "Courriel"
+msgid "Files"
+msgstr "Fichiers"
+msgid "file"
+msgstr "fichier"
+msgid "status"
+msgstr "statut"
+msgid "User ID"
+msgstr "Identifiant (ID) utilisateur"
+msgid "Error"
+msgstr "Erreur"
+msgid "Options"
+msgstr "Options"
+msgid "Contact"
+msgstr "Contact"
+msgid "no"
+msgstr "non"
+msgid "New user: %name %email."
+msgstr "Nouvel utilisateur : %name %email."
+msgid "Created"
+msgstr "Créé(e)"
+msgid "Node"
+msgstr "Nœud"
+msgid "Sent email to %recipient"
+msgstr "Courriel envoyé à %recipient"
+msgid "Unable to send email to %recipient"
+msgstr "Impossible d'envoyer un courriel à %recipient"
+msgid "The subject of the message."
+msgstr "Le sujet du message."
+msgid "Number of columns"
+msgstr "Nombre de colonnes"
+msgid "Create"
+msgstr "Créer"
+msgid "Separator"
+msgstr "Séparateur"
+msgid "Exclude"
+msgstr "Exclure"
+msgid "Horizontal"
+msgstr "Horizontal"
+msgid "Vertical"
+msgstr "Vertical"
+msgid "Are you sure you want to delete %title?"
+msgstr "Êtes-vous sûr(e) de vouloir supprimer %title ?"
+msgid "Open link in new window"
+msgstr "Ouvrir le lien dans une nouvelle fenêtre"
+msgid "Save categories"
+msgstr "Enregistrer les catégories"
+msgid "term"
+msgstr "terme"
+msgid "Parent item"
+msgstr "Élément parent"
+msgid "Add child page"
+msgstr "Ajouter une page enfant"
+msgid "Printer-friendly version"
+msgstr "Version imprimable"
+msgid "Content type for child pages"
+msgstr "Type de contenu pour les pages enfants"
+msgid "Update options"
+msgstr "Mettre à jour les options"
+msgid "Remove from outline"
+msgstr "Retirer de la structure"
+msgid "Unknown export format."
+msgstr "Format d'export inconnu."
+msgid "All"
+msgstr "Tout"
+msgid "Active"
+msgstr "Actif"
+msgid "Done"
+msgstr "Terminé"
+msgid "Access denied"
+msgstr "Accès refusé"
+msgid "Year"
+msgstr "Année"
+msgid "Date format"
+msgstr "Format de date"
+msgid "Add content"
+msgstr "Ajouter du contenu"
+msgid "Page title"
+msgstr "Titre de page"
+msgid "Block"
+msgstr "Bloc"
+msgid "Override title"
+msgstr "Supplanter le titre"
+msgid "CSS class"
+msgstr "Classe CSS"
+msgid "Display links"
+msgstr "Afficher les liens"
+msgid "Page"
+msgstr "Page"
+msgid "Pager ID"
+msgstr "ID de la pagination"
+msgid "View arguments"
+msgstr "Arguments de la vue"
+msgid "Bottom"
+msgstr "Bas"
+msgid "1 hour"
+msgid_plural "@count hours"
+msgstr[0] "@count heure"
+msgstr[1] "@count heures"
+msgid "1 day"
+msgid_plural "@count days"
+msgstr[0] "@count jour"
+msgstr[1] "@count jours"
+msgid "Configuration saved."
+msgstr "Configuration enregistrée."
+msgid "Taxonomy terms"
+msgstr "Termes de taxonomie"
+msgid "Logo"
+msgstr "Logo"
+msgid "Site name"
+msgstr "Nom du site"
+msgid "Site slogan"
+msgstr "Slogan du site"
+msgid "Good"
+msgstr "Bien"
+msgid "php"
+msgstr "php"
+msgid "Drupal"
+msgstr "Drupal"
+msgid "Not found"
+msgstr "Non trouvé"
+msgid "Module"
+msgstr "Module"
+msgid "PHP"
+msgstr "PHP"
+msgid "Off"
+msgstr "Désactivé"
+msgid "Host"
+msgstr "Hôte"
+msgid "PostgreSQL"
+msgstr "PostgreSQL"
+msgid "Available updates"
+msgstr "Mises à jour disponibles"
+msgid "Manual update check"
+msgstr "Vérification manuelle des mises à jour"
+msgid "Never"
+msgstr "Jamais"
+msgid "Check manually"
+msgstr "Vérifier manuellement"
+msgid "Up to date"
+msgstr "À jour"
+msgid "Update available"
+msgstr "Mise à jour disponible"
+msgid "Drupal core update status"
+msgstr "Statut de mise à jour du cœur de Drupal"
+msgid "Out of date"
+msgstr "Non à jour"
+msgid "Header"
+msgstr "Entête"
+msgid "Left sidebar"
+msgstr "Barre latérale gauche"
+msgid "Right sidebar"
+msgstr "Barre latérale droite"
+msgid "Footer"
+msgstr "Pied de page"
+msgid "Inline"
+msgstr "Sur la même ligne"
+msgid "Recipients"
+msgstr "Destinataires"
+msgid "Selected"
+msgstr "Sélectionné"
+msgid "Your name"
+msgstr "Votre nom"
+msgid "Your e-mail address"
+msgstr "Votre adresse de courriel"
+msgid "Send e-mail"
+msgstr "Envoyer le courriel"
+msgid "[!category] !subject"
+msgstr "[!category] !subject"
+msgid "Menu link"
+msgstr "Lien du menu"
+msgid "To"
+msgstr "À"
+msgid "Aggregator category"
+msgstr "Catégorie d'agrégateur"
+msgid "Aggregator feed"
+msgstr "Flux d'agrégateur"
+msgid "Aggregator feed ID"
+msgstr "L'identifiant(ID) de l’agrégateur de flux"
+msgid "Feed description"
+msgstr "Description du flux"
+msgid "Aggregator item"
+msgstr "Élément d'agrégateur"
+msgid "Custom"
+msgstr "Personnalisé"
+msgid "Roles"
+msgstr "Rôles"
+msgid "Revision ID"
+msgstr "Identifiant (ID) de révision"
+msgid "Comment"
+msgstr "Commentaire"
+msgid "Comment ID"
+msgstr "Identifiant (ID) du commentaire"
+msgid "Hostname"
+msgstr "Nom d'hôte"
+msgid "Published"
+msgstr "Publié"
+msgid "Signature"
+msgstr "Signature"
+msgid "Filter"
+msgstr "Filtrer"
+msgid "Location"
+msgstr "Emplacement"
+msgid "Source string"
+msgstr "Chaîne source"
+msgid "Locale"
+msgstr "Localisation"
+msgid "Title field label"
+msgstr "Libellé du champ titre"
+msgid "Promoted to front page"
+msgstr "Promu en page d'accueil"
+msgid "Sticky at top of lists"
+msgstr "Epinglé en haut des listes"
+msgid "Revisions"
+msgstr "Révisions"
+msgid "Log message"
+msgstr "Message de journal"
+msgid "URL alias"
+msgstr "Alias d'URL"
+msgid "File ID"
+msgstr "Identifiant (ID) de fichier"
+msgid "File name"
+msgstr "Nom du fichier"
+msgid "File MIME type"
+msgstr "Type MIME du fichier"
+msgid "File size"
+msgstr "Taille du fichier"
+msgid "Vocabulary"
+msgstr "Vocabulaire"
+msgid "Vocabulary ID"
+msgstr "Identifiant (ID) de vocabulaire"
+msgid "Vocabulary name"
+msgstr "Nom du vocabulaire"
+msgid "Term"
+msgstr "Terme"
+msgid "Term ID"
+msgstr "Identifiant (ID) du terme"
+msgid "Term name"
+msgstr "Nom du terme"
+msgid "User role"
+msgstr "Rôle de l'utilisateur"
+msgid "Role name"
+msgstr "Nom du rôle"
+msgid "E-mail address"
+msgstr "Adresse de courriel"
+msgid "Last access"
+msgstr "Dernier accès"
+msgid "Last login"
+msgstr "Dernière connexion"
+msgid "Time zone"
+msgstr "Fuseau horaire"
+msgid "Severity"
+msgstr "Importance"
+msgid "Field name"
+msgstr "Nom du champ"
+msgid "Field type"
+msgstr "Type de champ"
+msgid "Global settings"
+msgstr "Paramètres globaux"
+msgid "Fields"
+msgstr "Champs"
+msgid "Widget type"
+msgstr "Type de widget"
+msgid "Contains"
+msgstr "Contient"
+msgid "Does not contain"
+msgstr "Ne contient pas"
+msgid "Is less than"
+msgstr "Est inférieur à"
+msgid "Is less than or equal to"
+msgstr "Est inférieur ou égal à"
+msgid "Is equal to"
+msgstr "Est égal à"
+msgid "Is greater than or equal to"
+msgstr "Est supérieur ou égal à"
+msgid "Is greater than"
+msgstr "Est supérieur à"
+msgid "Is not equal to"
+msgstr "N'est pas égal à"
+msgid "Average"
+msgstr "Moyenne"
+msgid "Count"
+msgstr "Décompte"
+msgid "Overridden"
+msgstr "Supplanté"
+msgid "Set name"
+msgstr "Nom de l'ensemble"
+msgid "Original image"
+msgstr "Image originale"
+msgid "Heading"
+msgstr "Entête"
+msgid "Search settings"
+msgstr "Paramètres de recherche"
+msgid "Warning"
+msgstr "Avertissement"
+msgid "blocked"
+msgstr "bloqué"
+msgid "active"
+msgstr "actif(s)"
+msgid "N/A"
+msgstr "N/A"
+msgid "OK"
+msgstr "OK"
+msgid "OPML feed"
+msgstr "Flux OPML"
+msgid "configure"
+msgstr "configurer"
+msgid "Number of news items in block"
+msgstr "Nombre d'éléments du bloc"
+msgid "View this feed's recent news."
+msgstr "Voir les nouvelles récentes de ce flux."
+msgid "View this category's recent news."
+msgstr "Voir les dernières publications dans cette catégorie."
+msgid "Feed overview"
+msgstr "Vue d'ensemble par flux"
+msgid "Items"
+msgstr "Éléments"
+msgid "Last update"
+msgstr "Dernière mise à jour"
+msgid "Next update"
+msgstr "Prochaine mise à jour"
+msgid "%time ago"
+msgstr "Il y a %time"
+msgid "%time left"
+msgstr "%time restant"
+msgid "Category overview"
+msgstr "Vue d'ensemble par catégorie"
+msgid "Categorize"
+msgstr "Classer"
+msgid "The categories have been saved."
+msgstr "Les catégories ont été enregistrées."
+msgid "%age old"
+msgstr "il y a %age"
+msgid "%ago ago"
+msgstr "il y a %ago"
+msgid "Nodes"
+msgstr "Nœuds"
+msgid "Authored by"
+msgstr "Écrit par"
+msgid "Advanced"
+msgstr "Avancé"
+msgid "The feed %feed has been updated."
+msgstr "Le flux %feed a été mis à jour."
+msgid "Feed %feed deleted."
+msgstr "Flux %feed supprimé."
+msgid "The feed %feed has been deleted."
+msgstr "Le flux %feed a été supprimé."
+msgid "Feed %feed added."
+msgstr "Le flux %feed a été ajouté."
+msgid "The feed %feed has been added."
+msgstr "Le flux %feed a été ajouté."
+msgid "The news items from %site have been removed."
+msgstr "Les nouvelles de %site ont été supprimées."
+msgid "Sort order"
+msgstr "Ordre de tri"
+msgid "Performance"
+msgstr "Performance"
+msgid "Width"
+msgstr "Largeur"
+msgid "Height"
+msgstr "Hauteur"
+msgid "This field is required."
+msgstr "Ce champ est requis."
+msgid "Maximum"
+msgstr "Maximum"
+msgid "Line"
+msgstr "Ligne"
+msgid "Scale"
+msgstr "Échelle"
+msgid "Medium"
+msgstr "Moyen"
+msgid "Media"
+msgstr "Média"
+msgid "Sortable"
+msgstr "Classable"
+msgid "Plain text"
+msgstr "Texte brut"
+msgid "Caching"
+msgstr "Mise en cache"
+msgid "Month"
+msgstr "Mois"
+msgid "Details"
+msgstr "Détails"
+msgid "Widget"
+msgstr "Widget"
+msgid "Last reply"
+msgstr "Dernière réponse"
+msgid "Prev"
+msgstr "Préc."
+msgid "System"
+msgstr "Système"
+msgid "Domain"
+msgstr "Domaine"
+msgid "Processors"
+msgstr "Processeurs"
+msgid "Unlimited"
+msgstr "Illimité"
+msgid "Current"
+msgstr "Actuel"
+msgid "Enter a valid username."
+msgstr "Saisissez un nom d'utilisateur valide."
+msgid "Owner"
+msgstr "Propriétaire"
+msgid "Recipient"
+msgstr "Destinataire"
+msgid "next"
+msgstr "suivant"
+msgid "OR"
+msgstr "OU (OR)"
+msgid "Add a role to the selected users"
+msgstr "Ajouter un rôle aux utilisateurs sélectionnés."
+msgid "Remove a role from the selected users"
+msgstr "Retirer un rôle aux utilisateurs sélectionnés."
+msgid "security"
+msgstr "sécurité"
+msgid "node"
+msgstr "nœud"
+msgid "Administer content"
+msgstr "Administrer le contenu"
+msgid "General"
+msgstr "Général"
+msgid "Method"
+msgstr "Méthode"
+msgid "Egypt"
+msgstr "Égypte"
+msgid "Namibia"
+msgstr "Namibie"
+msgid "Israel"
+msgstr "Israël"
+msgid "New Zealand"
+msgstr "Nouvelle-Zélande"
+msgid "Tonga"
+msgstr "Tonga"
+msgid "Russian Federation"
+msgstr "Russie (Fédération de)"
+msgid "Cuba"
+msgstr "Cuba"
+msgid "Brazil"
+msgstr "Brésil"
+msgid "Chile"
+msgstr "Chili"
+msgid "Paraguay"
+msgstr "Paraguay"
+msgid "Jamaica"
+msgstr "Jamaïque"
+msgid "Japan"
+msgstr "Japon"
+msgid "Libya"
+msgstr "Lybie"
+msgid "Poland"
+msgstr "Pologne"
+msgid "Portugal"
+msgstr "Portugal"
+msgid "Singapore"
+msgstr "Singapour"
+msgid "Turkey"
+msgstr "Turquie"
+msgid "Day"
+msgstr "Jour"
+msgid "Table"
+msgstr "Tableau"
+msgid "Mon"
+msgstr "lun"
+msgid "Tue"
+msgstr "mar"
+msgid "Wed"
+msgstr "mer"
+msgid "Thu"
+msgstr "jeu"
+msgid "Fri"
+msgstr "ven"
+msgid "Sat"
+msgstr "sam"
+msgid "Sun"
+msgstr "dim"
+msgid "January"
+msgstr "janvier"
+msgid "February"
+msgstr "Février"
+msgid "March"
+msgstr "mars"
+msgid "April"
+msgstr "avril"
+msgid "May"
+msgstr "mai"
+msgid "June"
+msgstr "juin"
+msgid "am"
+msgstr "am"
+msgid "pm"
+msgstr "pm"
+msgid "Forum"
+msgstr "Forum"
+msgid "Configuration"
+msgstr "Configuration"
+msgid "!time ago"
+msgstr "Il y a !time"
+msgid "Other"
+msgstr "Autre"
+msgid "Align"
+msgstr "Aligner"
+msgid "Display title"
+msgstr "Afficher le titre"
+msgid "Background color"
+msgstr "Couleur d'arrière-plan"
+msgid "Text color"
+msgstr "Couleur du texte"
+msgid "Navigation"
+msgstr "Navigation"
+msgid "Basic"
+msgstr "Basique"
+msgid "Appearance"
+msgstr "Apparence"
+msgid "List type"
+msgstr "Type de liste"
+msgid "Attributes"
+msgstr "Attributs"
+msgid "Role"
+msgstr "Rôle"
+msgid "Select all"
+msgstr "Tout sélectionner"
+msgid "User login"
+msgstr "Connexion utilisateur"
+msgid "Log in"
+msgstr "Se connecter"
+msgid "Updated URL for feed %title to %url."
+msgstr "URL du flux %url mise à jour pour le flux %title."
+msgid "Link text"
+msgstr "Texte du lien"
+msgid "1 comment"
+msgstr "1 commentaire"
+msgid "@count comments"
+msgstr "@count commentaires"
+msgid "Jump to the first comment of this posting."
+msgstr "Aller directement au premier commentaire de ce message."
+msgid "1 new comment"
+msgstr "1 nouveau commentaire"
+msgid "@count new comments"
+msgstr "@count nouveaux commentaires"
+msgid "Jump to the first new comment of this posting."
+msgstr "Aller directement au premier nouveau commentaire de ce message."
+msgid "Add new comment"
+msgstr "Ajouter un commentaire"
+msgid "Add a new comment to this page."
+msgstr "Ajouter un nouveau commentaire à cette page."
+msgid "Share your thoughts and opinions related to this posting."
+msgstr "Partager vos idées et opinions au sujet de cette contribution."
+msgid "String"
+msgstr "Chaîne de caractères"
+msgid "Case"
+msgstr "Casse"
+msgid "Users"
+msgstr "Utilisateurs"
+msgid "Not installed"
+msgstr "Non installé"
+msgid "Referrer"
+msgstr "Référent"
+msgid ""
+"@site is currently under maintenance. We should be back shortly. Thank "
+"you for your patience."
+msgstr ""
+"@site est en cours de maintenance. Nous serons de retour très "
+"bientôt. Merci de votre patience."
+msgid "Default front page"
+msgstr "Page d'accueil par défaut"
+msgid "Both"
+msgstr "Les deux"
+msgid "Text processing"
+msgstr "Traitement du texte"
+msgid "Maximum length"
+msgstr "Taille maximale"
+msgid "Rows"
+msgstr "Rangées"
+msgid "Save changes"
+msgstr "Enregistrer les modifications"
+msgid "access denied"
+msgstr "accès refusé"
+msgid "Anonymous"
+msgstr "Anonyme"
+msgid "Uninstall"
+msgstr "Désinstaller"
+msgid "Install"
+msgstr "Installer"
+msgid "Save and edit"
+msgstr "Enregistrer et éditer"
+msgid "Tools"
+msgstr "Outils"
+msgid "Edit view"
+msgstr "Modifier la vue"
+msgid "Clone"
+msgstr "Cloner"
+msgid "Administer views"
+msgstr "Administrer les vues"
+msgid "Existing Views"
+msgstr "Vues existantes"
+msgid "Default Views"
+msgstr "Vues par défaut"
+msgid "Ascending"
+msgstr "Ascendant"
+msgid "Descending"
+msgstr "Descendant"
+msgid "Normal menu item"
+msgstr "Élément de menu normal"
+msgid "Option"
+msgstr "Option"
+msgid "Arguments"
+msgstr "Arguments"
+msgid "Operator"
+msgstr "Opérateur"
+msgid "Filters"
+msgstr "Filtres"
+msgid "Optional"
+msgstr "Facultatif"
+msgid "Exposed Filters"
+msgstr "Filtres exposés"
+msgid "Order"
+msgstr "Ordre"
+msgid "Recent comments"
+msgstr "Commentaires récents"
+msgid "Random"
+msgstr "Au hasard"
+msgid "Uncategorized"
+msgstr "Non catégorisé"
+msgid "Plain"
+msgstr "Brut"
+msgid "Set default"
+msgstr "Définir par défaut"
+msgid "Position"
+msgstr "Position"
+msgid "Integer"
+msgstr "Entier"
+msgid "IP Address"
+msgstr "Adresse IP"
+msgid "Pattern"
+msgstr "Motif"
+msgid "The comment and all its replies have been deleted."
+msgstr "Le commentaire et toutes ses réponses ont été supprimés."
+msgid "Last checked"
+msgstr "Vérifié pour la dernière fois"
+msgid "Preformatted"
+msgstr "Texte préformaté"
+msgid "module"
+msgstr "module"
+msgid "Anonymous users"
+msgstr "Utilisateurs anonymes"
+msgid "Clear cache"
+msgstr "Purger le cache"
+msgid "Close"
+msgstr "Fermer"
+msgid "Visibility settings"
+msgstr "Paramètres de visibilité"
+msgid "Task"
+msgstr "Tâche"
+msgid "Term description"
+msgstr "Description du terme"
+msgid "fields"
+msgstr "champs"
+msgid "Save settings"
+msgstr "Enregistrer les paramètres"
+msgid "UID"
+msgstr "UID"
+msgid "reply"
+msgstr "répondre"
+msgid "Duration"
+msgstr "Durée"
+msgid "Function"
+msgstr "Fonction"
+msgid "Session closed for %name."
+msgstr "Session fermée pour %name."
+msgid "Tracker"
+msgstr "Suivi"
+msgid "You have to specify a valid date."
+msgstr "Vous devez saisir une date valide."
+msgid "Server settings"
+msgstr "Paramètres du serveur"
+msgid "="
+msgstr "="
+msgid "Germany"
+msgstr "Allemagne"
+msgid "Logout"
+msgstr "Déconnexion"
+msgid "with comments"
+msgstr "avec commentaires"
+msgid "without comments"
+msgstr "sans commentaires"
+msgid "Sort by"
+msgstr "Trier par"
+msgid "Created date"
+msgstr "Date de création"
+msgid "Updated date"
+msgstr "Date de mise à jour"
+msgid "comments"
+msgstr "commentaires"
+msgid "Full"
+msgstr "Complet"
+msgid "1 new"
+msgid_plural "@count new"
+msgstr[0] "1 nouveau"
+msgstr[1] "@count nouveaux"
+msgid "Default language"
+msgstr "Langue par défaut"
+msgid "Afghanistan"
+msgstr "Afghanistan"
+msgid "Albania"
+msgstr "Albanie"
+msgid "Algeria"
+msgstr "Algérie"
+msgid "American Samoa"
+msgstr "Samoa américaines"
+msgid "Andorra"
+msgstr "Andorre"
+msgid "Angola"
+msgstr "Angola"
+msgid "Anguilla"
+msgstr "Anguilla"
+msgid "Antarctica"
+msgstr "Antarctique"
+msgid "Antigua and Barbuda"
+msgstr "Antigua-et-Barbuda"
+msgid "Argentina"
+msgstr "Argentine"
+msgid "Armenia"
+msgstr "Arménie"
+msgid "Aruba"
+msgstr "Aruba"
+msgid "Australia"
+msgstr "Australie"
+msgid "Austria"
+msgstr "Autriche"
+msgid "Azerbaijan"
+msgstr "Azerbaïdjan"
+msgid "Bahamas"
+msgstr "Bahamas"
+msgid "Bahrain"
+msgstr "Bahreïn"
+msgid "Bangladesh"
+msgstr "Bangladesh"
+msgid "Barbados"
+msgstr "Barbade"
+msgid "Belarus"
+msgstr "Biélorussie"
+msgid "Belgium"
+msgstr "Belgique"
+msgid "Belize"
+msgstr "Belize"
+msgid "Benin"
+msgstr "Bénin"
+msgid "Bermuda"
+msgstr "Bermudes"
+msgid "Bhutan"
+msgstr "Bhoutan"
+msgid "Bosnia and Herzegovina"
+msgstr "Bosnie-Herzégovine"
+msgid "Botswana"
+msgstr "Botswana"
+msgid "Bouvet Island"
+msgstr "Île Bouvet"
+msgid "Bulgaria"
+msgstr "Bulgarie"
+msgid "Burkina Faso"
+msgstr "Burkina Faso"
+msgid "Burundi"
+msgstr "Burundi"
+msgid "Cambodia"
+msgstr "Cambodge"
+msgid "Cameroon"
+msgstr "Cameroun"
+msgid "Canada"
+msgstr "Canada"
+msgid "Cape Verde"
+msgstr "Cap-Vert"
+msgid "Cayman Islands"
+msgstr "Îles Caïmans"
+msgid "Central African Republic"
+msgstr "République centrafricaine"
+msgid "Chad"
+msgstr "Tchad"
+msgid "China"
+msgstr "Chine"
+msgid "Christmas Island"
+msgstr "Île Christmas"
+msgid "Cocos (Keeling) Islands"
+msgstr "Îles Cocos (Keeling)"
+msgid "Colombia"
+msgstr "Colombie"
+msgid "Comoros"
+msgstr "Comores"
+msgid "Congo"
+msgstr "Congo"
+msgid "Cook Islands"
+msgstr "Îles Cook"
+msgid "Costa Rica"
+msgstr "Costa Rica"
+msgid "Cyprus"
+msgstr "Chypre"
+msgid "Czech Republic"
+msgstr "République tchèque"
+msgid "Denmark"
+msgstr "Danemark"
+msgid "Djibouti"
+msgstr "Djibouti"
+msgid "Dominica"
+msgstr "Dominique"
+msgid "Dominican Republic"
+msgstr "République dominicaine"
+msgid "Ecuador"
+msgstr "Équateur"
+msgid "El Salvador"
+msgstr "Salvador"
+msgid "Equatorial Guinea"
+msgstr "Guinée équatoriale"
+msgid "Eritrea"
+msgstr "Érythrée"
+msgid "Estonia"
+msgstr "Estonie"
+msgid "Ethiopia"
+msgstr "Éthiopie"
+msgid "Faroe Islands"
+msgstr "Îles Féroé"
+msgid "Finland"
+msgstr "Finlande"
+msgid "France"
+msgstr "France"
+msgid "French Guiana"
+msgstr "Guyane française"
+msgid "French Polynesia"
+msgstr "Polynésie française"
+msgid "Gabon"
+msgstr "Gabon"
+msgid "Gambia"
+msgstr "Gambie"
+msgid "Georgia"
+msgstr "Géorgie"
+msgid "Ghana"
+msgstr "Ghana"
+msgid "Gibraltar"
+msgstr "Gibraltar"
+msgid "Greece"
+msgstr "Grèce"
+msgid "Greenland"
+msgstr "Groenland"
+msgid "Grenada"
+msgstr "Grenade"
+msgid "Guadeloupe"
+msgstr "Guadeloupe"
+msgid "Guam"
+msgstr "Guam"
+msgid "Guatemala"
+msgstr "Guatemala"
+msgid "Guinea"
+msgstr "Guinée"
+msgid "Guinea-Bissau"
+msgstr "Guinée-Bissau"
+msgid "Guyana"
+msgstr "Guyana"
+msgid "Haiti"
+msgstr "Haïti"
+msgid "Heard Island and McDonald Islands"
+msgstr "Îles Heard et MacDonald"
+msgid "Honduras"
+msgstr "Honduras"
+msgid "Hungary"
+msgstr "Hongrie"
+msgid "Iceland"
+msgstr "Islande"
+msgid "India"
+msgstr "Inde"
+msgid "Indonesia"
+msgstr "Indonésie"
+msgid "Iraq"
+msgstr "Irak"
+msgid "Ireland"
+msgstr "Irlande"
+msgid "Italy"
+msgstr "Italie"
+msgid "Jordan"
+msgstr "Jordanie"
+msgid "Kazakhstan"
+msgstr "Kazakhstan"
+msgid "Kenya"
+msgstr "Kenya"
+msgid "Kiribati"
+msgstr "Kiribati"
+msgid "Kuwait"
+msgstr "Koweït"
+msgid "Kyrgyzstan"
+msgstr "Kirghizistan"
+msgid "Latvia"
+msgstr "Lettonie"
+msgid "Lebanon"
+msgstr "Liban"
+msgid "Lesotho"
+msgstr "Lesotho"
+msgid "Liberia"
+msgstr "Libéria"
+msgid "Liechtenstein"
+msgstr "Liechtenstein"
+msgid "Lithuania"
+msgstr "Lituanie"
+msgid "Luxembourg"
+msgstr "Luxembourg"
+msgid "Madagascar"
+msgstr "Madagascar"
+msgid "Malawi"
+msgstr "Malawi"
+msgid "Malaysia"
+msgstr "Malaisie"
+msgid "Maldives"
+msgstr "Maldives"
+msgid "Mali"
+msgstr "Mali"
+msgid "Malta"
+msgstr "Malte"
+msgid "Marshall Islands"
+msgstr "Îles Marshall"
+msgid "Martinique"
+msgstr "Martinique"
+msgid "Mauritania"
+msgstr "Mauritanie"
+msgid "Mauritius"
+msgstr "Maurice"
+msgid "Mayotte"
+msgstr "Mayotte"
+msgid "Mexico"
+msgstr "Mexique"
+msgid "Monaco"
+msgstr "Monaco"
+msgid "Mongolia"
+msgstr "Mongolie"
+msgid "Montserrat"
+msgstr "Montserrat"
+msgid "Morocco"
+msgstr "Maroc"
+msgid "Mozambique"
+msgstr "Mozambique"
+msgid "Myanmar"
+msgstr "Birmanie"
+msgid "Nauru"
+msgstr "Nauru"
+msgid "Nepal"
+msgstr "Népal"
+msgid "Netherlands"
+msgstr "Pays-Bas"
+msgid "Netherlands Antilles"
+msgstr "Antilles néerlandaises"
+msgid "New Caledonia"
+msgstr "Nouvelle-Calédonie"
+msgid "Nicaragua"
+msgstr "Nicaragua"
+msgid "Niger"
+msgstr "Niger"
+msgid "Nigeria"
+msgstr "Nigeria"
+msgid "Niue"
+msgstr "Niue"
+msgid "Norfolk Island"
+msgstr "Île Norfolk"
+msgid "Northern Mariana Islands"
+msgstr "Îles Mariannes du Nord"
+msgid "Norway"
+msgstr "Norvège"
+msgid "Oman"
+msgstr "Oman"
+msgid "Pakistan"
+msgstr "Pakistan"
+msgid "Palau"
+msgstr "Palaos"
+msgid "Panama"
+msgstr "Panama"
+msgid "Papua New Guinea"
+msgstr "Papouasie-Nouvelle-Guinée"
+msgid "Peru"
+msgstr "Pérou"
+msgid "Philippines"
+msgstr "Philippines"
+msgid "Puerto Rico"
+msgstr "Porto Rico"
+msgid "Qatar"
+msgstr "Qatar"
+msgid "Romania"
+msgstr "Roumanie"
+msgid "Rwanda"
+msgstr "Rwanda"
+msgid "Samoa"
+msgstr "Samoa"
+msgid "San Marino"
+msgstr "Saint-Marin"
+msgid "Saudi Arabia"
+msgstr "Arabie Saoudite"
+msgid "Senegal"
+msgstr "Sénégal"
+msgid "Seychelles"
+msgstr "Seychelles"
+msgid "Sierra Leone"
+msgstr "Sierra Leone"
+msgid "Slovakia"
+msgstr "Slovaquie"
+msgid "Slovenia"
+msgstr "Slovénie"
+msgid "Solomon Islands"
+msgstr "Îles Salomon"
+msgid "Somalia"
+msgstr "Somalie"
+msgid "South Africa"
+msgstr "Afrique du Sud"
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "Géorgie du Sud et les Îles Sandwich du Sud"
+msgid "Spain"
+msgstr "Espagne"
+msgid "Sri Lanka"
+msgstr "Sri Lanka"
+msgid "Sudan"
+msgstr "Soudan"
+msgid "Suriname"
+msgstr "Suriname"
+msgid "Svalbard and Jan Mayen"
+msgstr "Svalbard et Île Jan Mayen"
+msgid "Swaziland"
+msgstr "Swaziland"
+msgid "Sweden"
+msgstr "Suède"
+msgid "Switzerland"
+msgstr "Suisse"
+msgid "Tajikistan"
+msgstr "Tadjikistan"
+msgid "Thailand"
+msgstr "Thaïlande"
+msgid "Togo"
+msgstr "Togo"
+msgid "Tokelau"
+msgstr "Tokelau"
+msgid "Trinidad and Tobago"
+msgstr "Trinité-et-Tobago"
+msgid "Tunisia"
+msgstr "Tunisie"
+msgid "Turkmenistan"
+msgstr "Turkménistan"
+msgid "Turks and Caicos Islands"
+msgstr "Îles Turques-et-Caïques"
+msgid "Tuvalu"
+msgstr "Tuvalu"
+msgid "Uganda"
+msgstr "Ouganda"
+msgid "Ukraine"
+msgstr "Ukraine"
+msgid "United Arab Emirates"
+msgstr "Émirats arabes unis"
+msgid "United Kingdom"
+msgstr "Royaume-Uni"
+msgid "United States"
+msgstr "États-Unis"
+msgid "United States Minor Outlying Islands"
+msgstr "Îles mineures éloignées des États-Unis"
+msgid "Uruguay"
+msgstr "Uruguay"
+msgid "Uzbekistan"
+msgstr "Ouzbékistan"
+msgid "Vanuatu"
+msgstr "Vanuatu"
+msgid "Viet Nam"
+msgstr "Viêt Nam"
+msgid "Wallis and Futuna"
+msgstr "Wallis et Futuna"
+msgid "Yemen"
+msgstr "Yémen"
+msgid "Zambia"
+msgstr "Zambie"
+msgid "Zimbabwe"
+msgstr "Zimbabwe"
+msgid "Modified"
+msgstr "Modifié"
+msgid "Table prefix"
+msgstr "Préfixe de table"
+msgid "Database username"
+msgstr "Nom d'utilisateur de la base de données"
+msgid "Database password"
+msgstr "Mot de passe de la base de données"
+msgid "Database name"
+msgstr "Nom de la base de données"
+msgid "Add user"
+msgstr "Ajouter un utilisateur"
+msgid "Port"
+msgstr "Port"
+msgid "Regular expression"
+msgstr "Expression régulière"
+msgid "Size of textfield"
+msgstr "Taille du champ texte"
+msgid "Authoring information"
+msgstr "Informations de publication"
+msgid "Authored on"
+msgstr "Écrit le"
+msgid "Leave blank for %anonymous."
+msgstr "Laisser vide pour %anonymous."
+msgid "Hidden"
+msgstr "Caché"
+msgid "Approved"
+msgstr "Approuvé"
+msgid "Are you sure you want to delete %name?"
+msgstr "Êtes-vous sûr(e) de vouloir supprimer %name ?"
+msgid "Queued"
+msgstr "En file d'attente"
+msgid "Show"
+msgstr "Afficher"
+msgid ""
+"Enable or disable page caching for anonymous users and set CSS and JS "
+"bandwidth optimization options."
+msgstr ""
+"Activer ou désactiver le cache des pages pour les utilisateurs "
+"anonymes, et régler les options d'optimisation des CSS et des "
+"Javascript."
+msgid "Other queries"
+msgstr "Autres requêtes"
+msgid "Key"
+msgstr "Clef"
+msgid "Link to content"
+msgstr "Lier au contenu"
+msgid "Site language"
+msgstr "Langue du site"
+msgid "Change"
+msgstr "Modifier"
+msgid "Arabic"
+msgstr "Arabe"
+msgid "English"
+msgstr "Anglais"
+msgid "French"
+msgstr "Français"
+msgid "Italian"
+msgstr "Italien"
+msgid "Spanish"
+msgstr "Espagnol"
+msgid "Japanese"
+msgstr "Japonais"
+msgid "Korean"
+msgstr "Coréen"
+msgid "in"
+msgstr "dans"
+msgid ""
+"A valid e-mail address. All e-mails from the system will be sent to "
+"this address. The e-mail address is not made public and will only be "
+"used if you wish to receive a new password or wish to receive certain "
+"news or notifications by e-mail."
+msgstr ""
+"Une adresse électronique valide. Le système enverra tous les "
+"courriels à cette adresse. L'adresse électronique ne sera pas rendue "
+"publique et ne sera utilisée que pour la réception d'un nouveau mot "
+"de passe ou pour la réception de certaines notifications désirées."
+msgid ""
+"The e-mail address %email is already registered. <a "
+"href=\"@password\">Have you forgotten your password?</a>"
+msgstr ""
+"L'adresse électronique %email est déjà enregistrée. <a "
+"href=\"@password\">Avez-vous oublié votre mot de passe ?</a>"
+msgid "Import OPML"
+msgstr "Import OPML"
+msgid "Remove items"
+msgstr "Supprimer les éléments"
+msgid "OPML File"
+msgstr "Fichier OPML"
+msgid "Allowed HTML tags"
+msgstr "Balises HTML autorisées"
+msgid "Sources"
+msgstr "Sources"
+msgid "The category %category has been updated."
+msgstr "La catégorie %category a été mise à jour."
+msgid "Category %category deleted."
+msgstr "Catégorie %category supprimée."
+msgid "The category %category has been deleted."
+msgstr "La catégorie %category a été supprimée."
+msgid "Category %category added."
+msgstr "Catégorie %category ajoutée."
+msgid "The category %category has been added."
+msgstr "La catégorie %category a été ajoutée."
+msgid "aggregator - @title"
+msgstr "agrégateur - @title"
+msgid "1 item"
+msgid_plural "@count items"
+msgstr[0] "@count élement"
+msgstr[1] "@count éléments"
+msgid "Add menu"
+msgstr "Ajouter un menu"
+msgid "menu"
+msgstr "menu"
+msgid "‹ previous"
+msgstr "‹ précédent"
+msgid "next ›"
+msgstr "suivant ›"
+msgid "No items selected."
+msgstr "Aucun élément sélectionné."
+msgid "The update has been performed."
+msgstr "La mise à jour a été effectuée."
+msgid "Browser"
+msgstr "Navigateur"
+msgid "View user profile."
+msgstr "Voir le profil utilisateur."
+msgid "Titles only"
+msgstr "Titres seulement"
+msgid "Full text"
+msgstr "Texte entier"
+msgid "Feed settings"
+msgstr "Paramètres de flux"
+msgid "Source"
+msgstr "Source"
+msgid "published"
+msgstr "publié"
+msgid "The changes have been saved."
+msgstr "Les changements ont été enregistrés."
+msgid "Undo"
+msgstr "Annuler"
+msgid "Member for"
+msgstr "Membre depuis"
+msgid "@time ago"
+msgstr "il y a @time"
+msgid "No users selected."
+msgstr "Aucun utilisateur sélectionné."
+msgid "Select all rows in this table"
+msgstr "Sélectionner toutes les lignes du tableau"
+msgid "Deselect all rows in this table"
+msgstr "Désélectionner toutes les lignes du tableau"
+msgid "Your search yielded no results"
+msgstr "Votre recherche n'a donné aucun résultat"
+msgid "Please enter some keywords."
+msgstr "Veuillez saisir des mots-clés."
+msgid "Front page"
+msgstr "Page d'accueil"
+msgid "Request new password"
+msgstr "Demander un nouveau mot de passe"
+msgid "Replacement patterns"
+msgstr "Motifs de remplacement"
+msgid "Deleted"
+msgstr "Supprimé"
+msgid "Display name"
+msgstr "Nom de l'affichage"
+msgid "Languages"
+msgstr "Langues"
+msgid "Topic"
+msgstr "Sujet"
+msgid "Allowed values list"
+msgstr "Liste des valeurs autorisées"
+msgid "Today"
+msgstr "Aujourd'hui"
+msgid "The subject of the contact message."
+msgstr "Le sujet du message de contact."
+msgid "Edit menu"
+msgstr "Modifier le menu"
+msgid "Delete menu"
+msgstr "Supprimer le menu"
+msgid "Edit menu item"
+msgstr "Modifier l'élément de menu"
+msgid "Publishing options"
+msgstr "Options de publication"
+msgid "Create new revision"
+msgstr "Créer une nouvelle révision"
+msgid "Limit"
+msgstr "Limite"
+msgid "Minimum height"
+msgstr "Hauteur minimum"
+msgid "Minimum width"
+msgstr "Largeur minimum"
+msgid "Query"
+msgstr "Requête"
+msgid "Locale settings"
+msgstr "Paramètres régionaux"
+msgid "Search fields"
+msgstr "Champs de recherche"
+msgid "Configure block"
+msgstr "Configurer le bloc"
+msgid "Block name"
+msgstr "Nom du bloc"
+msgid "How many content items to display in \"day\" list."
+msgstr ""
+"Nombre d'éléments de contenu afficher dans la liste "
+"« aujourd'hui »."
+msgid "Jan"
+msgstr "jan"
+msgid "Feb"
+msgstr "fév"
+msgid "Mar"
+msgstr "mar"
+msgid "Apr"
+msgstr "avr"
+msgid "Jun"
+msgstr "juin"
+msgid "Jul"
+msgstr "juil"
+msgid "Aug"
+msgstr "aoû"
+msgid "Sep"
+msgstr "sep"
+msgid "Oct"
+msgstr "oct"
+msgid "Nov"
+msgstr "nov"
+msgid "Dec"
+msgstr "déc"
+msgid "Hour"
+msgstr "Heure"
+msgid "Minute"
+msgstr "Minute"
+msgid "Second"
+msgstr "Seconde"
+msgid "Select list"
+msgstr "Liste de sélection"
+msgid "Text field"
+msgstr "Champ texte"
+msgid "Granularity"
+msgstr "Granularité"
+msgid "Map"
+msgstr "Carte"
+msgid "Alignment"
+msgstr "Alignement"
+msgid "Configure permissions"
+msgstr "Configurer les droits d'accès"
+msgid "Workflow"
+msgstr "Processus"
+msgid "Randomize"
+msgstr "Générer au hasard"
+msgid "author"
+msgstr "auteur"
+msgid "Entity"
+msgstr "Entité"
+msgid "AND"
+msgstr "ET (AND)"
+msgid "Fixed"
+msgstr "Fixe"
+msgid "Revert"
+msgstr "Rétablir"
+msgid "Are you sure you want to delete %label?"
+msgstr "Êtes-vous certain de vouloir supprimer %label ?"
+msgid "Existing system path"
+msgstr "Chemin système existant"
+msgid "Path alias"
+msgstr "Alias de chemin"
+msgid ""
+"Specify an alternative path by which this data can be accessed. For "
+"example, type \"about\" when writing an about page. Use a relative "
+"path and don't add a trailing slash or the URL alias won't work."
+msgstr ""
+"Spécifier un chemin alternatif par lequel cette information peut "
+"être accessible. Par exemple, saisissez \"a-propos\" lors de "
+"l'écriture d'une page présentant votre site. Utilisez un chemin "
+"relatif et n'ajoutez pas la barre oblique de fin sinon l'alias d'URL "
+"ne fonctionnera pas."
+msgid "Greater than"
+msgstr "Supérieur"
+msgid "Less than"
+msgstr "Inférieur"
+msgid "Notice"
+msgstr "Information"
+msgid "any"
+msgstr "tous"
+msgid "Log out"
+msgstr "Se déconnecter"
+msgid "Number of day's top views to display"
+msgstr "Nombre de visualisations du top du jour à afficher"
+msgid "Number of all time views to display"
+msgstr "Nombre de visualisations depuis toujours à afficher"
+msgid "Number of most recent views to display"
+msgstr "Nombre de visualisations les plus récentes à afficher"
+msgid "Extend"
+msgstr "Étendre"
+msgid "characters"
+msgstr "caractères"
+msgid "Su"
+msgstr "Di"
+msgid "Mo"
+msgstr "Lu"
+msgid "Tu"
+msgstr "Ma"
+msgid "We"
+msgstr "Me"
+msgid "Th"
+msgstr "Je"
+msgid "Fr"
+msgstr "Ve"
+msgid "Sa"
+msgstr "Sa"
+msgid "First day of week"
+msgstr "Premier jour de la semaine"
+msgid "Autocomplete taxonomy"
+msgstr "Compléter la taxonomie automatiquement"
+msgid "Left"
+msgstr "Gauche"
+msgid "Right"
+msgstr "Droit"
+msgid "Send yourself a copy."
+msgstr "M'envoyer une copie."
+msgid "Your message has been sent."
+msgstr "Votre message a été envoyé."
+msgid "Create new account"
+msgstr "Créer un nouveau compte"
+msgid "Seconds"
+msgstr "Secondes"
+msgid "role"
+msgstr "rôle"
+msgid "Are you sure you want to delete the block %name?"
+msgstr "Êtes-vous sûr(e) de vouloir supprimer le bloc %name ?"
+msgid "The block %name has been removed."
+msgstr "Le bloc %name a été supprimé."
+msgid "Info"
+msgstr "Info"
+msgid "People"
+msgstr "Personnes"
+msgid "list terms"
+msgstr "lister les termes"
+msgid "add terms"
+msgstr "ajouter des termes"
+msgid "Created new term %term."
+msgstr "Le nouveau terme '%term' a été créé."
+msgid "Are you sure you want to delete the term %title?"
+msgstr "Êtes-vous sûr(e) de vouloir supprimer le terme '%title' ?"
+msgid "Deleted term %name."
+msgstr "Le terme %name a été supprimé."
+msgid "warning"
+msgstr "avertissement"
+msgid "Last run !time ago"
+msgstr "Dernière exécution il y a !time"
+msgid "Site information"
+msgstr "Informations"
+msgid "Blocked"
+msgstr "Bloqué"
+msgid "Enabled filters"
+msgstr "Filtres activés"
+msgid "or"
+msgstr "ou"
+msgid "Results"
+msgstr "Résultats"
+msgid "open"
+msgstr "ouvert"
+msgid "Promote"
+msgstr "Promouvoir en page d'accueil"
+msgid "Binary"
+msgstr "Binaire"
+msgid ""
+"Deleting a term will delete all its children if there are any. This "
+"action cannot be undone."
+msgstr ""
+"La suppression d'un terme supprimera tous les termes enfants s'il y'en "
+"a. Cette action est irréversible."
+msgid "Parent term"
+msgstr "Terme parent"
+msgid "Parent terms"
+msgstr "Termes parents"
+msgid "Created new term %name."
+msgstr "Nouveau terme %name créé."
+msgid "Syndicate"
+msgstr "Syndiquer"
+msgid "Books"
+msgstr "Livres"
+msgid "Forums"
+msgstr "Forums"
+msgid "Superscript"
+msgstr "Exposant"
+msgid "Revisions for %title"
+msgstr "Révisions pour « %title »"
+msgid "!date by !username"
+msgstr "!date par !username"
+msgid "Revision"
+msgstr "Révision"
+msgid "current revision"
+msgstr "version en cours"
+msgid "The specified passwords do not match."
+msgstr "Les mots de passe ne correspondent pas."
+msgid "Session"
+msgstr "Session"
+msgid "Track"
+msgstr "Suivi"
+msgid "No forums defined"
+msgstr "Aucun forum défini"
+msgid "This topic has been moved"
+msgstr "Ce sujet a été déplacé"
+msgid "Permissions"
+msgstr "Droits"
+msgid "e-mail"
+msgstr "courriel"
+msgid "Your settings have been saved."
+msgstr "Vos paramètres ont été enregistrés."
+msgid "Cron"
+msgstr "Tâche planifiée (cron)"
+msgid "permission"
+msgstr "permission"
+msgid "Last modified"
+msgstr "Dernière modification"
+msgid "Link color"
+msgstr "Couleur des liens"
+msgid "Duplicate"
+msgstr "Doublon"
+msgid "Reversed"
+msgstr "Inversé"
+msgid "Changed"
+msgstr "Modifié"
+msgid "Date created"
+msgstr "Date de création"
+msgid "Reverse"
+msgstr "Inversé"
+msgid "Testing"
+msgstr "Test"
+msgid "Brunei Darussalam"
+msgstr "Brunei Darussalam"
+msgid "Fiji"
+msgstr "Fidji"
+msgid "Hong Kong"
+msgstr "Hong Kong"
+msgid "Saint Kitts and Nevis"
+msgstr "Saint-Christophe-et-Niévès"
+msgid "Saint Lucia"
+msgstr "Sainte-Lucie"
+msgid "Sao Tome and Principe"
+msgstr "Sao Tomé-et-Principe"
+msgid "French Southern Territories"
+msgstr "Terres australes françaises"
+msgid "Saint Vincent and the Grenadines"
+msgstr "Saint-Vincent-et-les-Grenadines"
+msgid "Guernsey"
+msgstr "Guernesey"
+msgid "Jersey"
+msgstr "Jersey"
+msgid "Confirm delete"
+msgstr "Confirmer la suppression"
+msgid "Templates"
+msgstr "Modèles"
+msgid "Not published"
+msgstr "Non publié"
+msgid "Menu settings"
+msgstr "Paramètres du menu"
+msgid "Color scheme"
+msgstr "Schéma de couleurs"
+msgid "Unformatted"
+msgstr "Non mis en forme"
+msgid "@type: deleted %title."
+msgstr "@type : %title supprimé."
+msgid "RSS Feed"
+msgstr "Flux RSS"
+msgid "Allowed file extensions"
+msgstr "Extensions de fichier autorisées"
+msgid "New comments"
+msgstr "Nouveaux commentaires"
+msgid "New"
+msgstr "Nouveau"
+msgid "Redirect to URL"
+msgstr "Redirection vers une URL"
+msgid "Relationships"
+msgstr "Relations"
+msgid "Relationship"
+msgstr "Relation"
+msgid "relationships"
+msgstr "relations"
+msgid "The username %name has not been activated or is blocked."
+msgstr "Le nom d'utilisateur %name n'a pas été activé ou est bloqué."
+msgid "Login attempt failed for %user."
+msgstr "Échec de connexion pour %user."
+msgid "image"
+msgstr "image"
+msgid "Oldest first"
+msgstr "Les plus anciens d'abord"
+msgid "Sort criteria"
+msgstr "Critères de tri"
+msgid "Base path"
+msgstr "Chemin de base"
+msgid "Revision of %title from %date"
+msgstr "Révision de %title du %date"
+msgid "Parent menu item"
+msgstr "Élément de menu parent"
+msgid "The username of the user to which you would like to assign ownership."
+msgstr ""
+"Le nom d'utilisateur auquel vous voulez donner la possession du "
+"contenu."
+msgid "Manage the actions defined for your site."
+msgstr "Gérer les actions définies pour votre site."
+msgid "Delete action"
+msgstr "Supprimer l'action"
+msgid "The action has been successfully saved."
+msgstr "L'action a été enregistrée."
+msgid "Deleted action %aid (%action)"
+msgstr "Action %aid (%action) supprimée."
+msgid "Themes"
+msgstr "Thèmes"
+msgid "Security update"
+msgstr "Mises à jour de sécurité"
+msgid "JPEG quality"
+msgstr "Qualité JPEG"
+msgid "%"
+msgstr "%"
+msgid "Delete comments"
+msgstr "Supprimer les commentaires"
+msgid "not published"
+msgstr "non publié"
+msgid "Published comments"
+msgstr "Commentaires publiés"
+msgid "!name field is required."
+msgstr "Le champ !name est requis."
+msgid "Protected"
+msgstr "Protégé"
+msgid "Automatic"
+msgstr "Automatique"
+msgid "Comment settings"
+msgstr "Paramètres des commentaires"
+msgid "Sticky"
+msgstr "Épinglé (en haut des listes)"
+msgid "Default options"
+msgstr "Options par défaut"
+msgid "Ok"
+msgstr "Ok"
+msgid "Contact settings"
+msgstr "Paramètres de contact"
+msgid "Reset password"
+msgstr "Réinitialiser le mot de passe"
+msgid "Processing"
+msgstr "En cours de traitement"
+msgid "Finished"
+msgstr "Fin de l'installation"
+msgid "disable"
+msgstr "désactiver"
+msgid "Output format"
+msgstr "Format de sortie"
+msgid "Temporary directory"
+msgstr "Dossier temporaire"
+msgid "File upload error. Could not move uploaded file."
+msgstr ""
+"Erreur de transfert de fichier. Impossible de déplacer le fichier "
+"transféré."
+msgid "Shortcuts"
+msgstr "Raccourcis"
+msgid "Shortcut"
+msgstr "Raccourci"
+msgid "Default value"
+msgstr "Valeur par défaut"
+msgid "Timezone"
+msgstr "Fuseau horaire"
+msgid "Password strength:"
+msgstr "Sécurité du mot de passe :"
+msgid "Passwords match:"
+msgstr "Concordance des mots de passe :"
+msgid "Slogan"
+msgstr "Slogan"
+msgid "The name used to indicate anonymous users."
+msgstr "Le nom utilisé pour nommer les utilisateurs anonymes."
+msgid "Alternate text"
+msgstr "Texte alternatif"
+msgid "URI"
+msgstr "URI"
+msgid "Apply"
+msgstr "Appliquer"
+msgid "Translation language"
+msgstr "Langue de traduction"
+msgid "Please wait..."
+msgstr "Veuillez patienter..."
+msgid "Not translated"
+msgstr "Non traduit"
+msgid "Select"
+msgstr "Sélectionner"
+msgid "Translatable"
+msgstr "Traduisible"
+msgid "Show blocks"
+msgstr "Afficher les blocs"
+msgid "Go to first page"
+msgstr "Aller à la première page"
+msgid "Go to last page"
+msgstr "Aller à la dernière page"
+msgid "Go to page @number"
+msgstr "Aller à la page @number"
+msgid "Enter the terms you wish to search for."
+msgstr "Indiquer les termes à rechercher"
+msgid "Bold"
+msgstr "Gras"
+msgid "Underlined"
+msgstr "Souligné"
+msgid "Copy"
+msgstr "Copier"
+msgid "Tasks"
+msgstr "Tâches"
+msgid "Delete role"
+msgstr "Supprimer le rôle"
+msgid "PHP Code"
+msgstr "Code PHP"
+msgid "Basic configuration"
+msgstr "Configuration de base"
+msgid "List menus"
+msgstr "Lister les menus"
+msgid "British Indian Ocean Territory"
+msgstr "Territoire britannique de l'océan Indien"
+msgid "Croatia"
+msgstr "Croatie"
+msgid "Korea, Republic of"
+msgstr "Corée du Sud"
+msgid "Lao People's Democratic Republic"
+msgstr "Laos"
+msgid "Moldova, Republic of"
+msgstr "Moldavie"
+msgid "Pitcairn"
+msgstr "Pitcairn"
+msgid "Western Sahara"
+msgstr "Sahara occidental"
+msgid "Language switcher"
+msgstr "Sélecteur de langue"
+msgid "Block description"
+msgstr "Description du bloc"
+msgid "Translation"
+msgstr "Traduction"
+msgid "Blocks"
+msgstr "Blocs"
+msgid ""
+"Configure what block content appears in your site's sidebars and other "
+"regions."
+msgstr ""
+"Configurer quels blocs apparaissent dans les barres latérales et "
+"autres régions de votre site."
+msgid "Delete block"
+msgstr "Supprimer le bloc"
+msgid "Save blocks"
+msgstr "Enregistrer les blocs"
+msgid "The block settings have been updated."
+msgstr "Les paramètres du bloc ont été mis à jour."
+msgid "Show block for specific roles"
+msgstr "Afficher le bloc pour des rôles spécifiques"
+msgid ""
+"Show this block only for the selected role(s). If you select no roles, "
+"the block will be visible to all users."
+msgstr ""
+"Afficher ce bloc seulement pour le(s) rôle(s) sélectionné(s). Si "
+"vous ne sélectionnez aucun rôle, le bloc sera visible par tous les "
+"utilisateurs."
+msgid "Show block on specific pages"
+msgstr "Afficher le bloc sur certaines pages seulement"
+msgid "Save block"
+msgstr "Enregistrer le bloc"
+msgid "The block configuration has been saved."
+msgstr "La configuration du bloc a été enregistrée."
+msgid "Menus"
+msgstr "Menus"
+msgid "Any customizations will be lost. This action cannot be undone."
+msgstr ""
+"Toutes les personnalisations seront perdues. Cette action est "
+"irréversible."
+msgid "Add vocabulary"
+msgstr "Ajouter un vocabulaire"
+msgid "edit vocabulary"
+msgstr "modifier le vocabulaire"
+msgid "Created new vocabulary %name."
+msgstr "Le vocabulaire '%name' a été créé."
+msgid "Updated vocabulary %name."
+msgstr "Le vocabulaire %name a été mis à jour."
+msgid "Are you sure you want to delete the vocabulary %title?"
+msgstr "Êtes-vous sûr de vouloir supprimer le vocabulaire '%title' ?"
+msgid ""
+"Deleting a vocabulary will delete all the terms in it. This action "
+"cannot be undone."
+msgstr ""
+"La suppression d'un vocabulaire entraînera la suppression de tous les "
+"termes qu'il contient. Cette action est irréversible."
+msgid "Deleted vocabulary %name."
+msgstr "Le vocabulaire « %name » a été supprimé."
+msgid "Above"
+msgstr "Au-dessus"
+msgid "@min and @max"
+msgstr "@min et @max"
+msgid "Default time zone"
+msgstr "Fuseau horaire par défaut"
+msgid "Add another item"
+msgstr "Ajouter un autre élément"
+msgid "Manage fields"
+msgstr "Gérer les champs"
+msgid "Trimmed"
+msgstr "Coupé"
+msgid "Text area"
+msgstr "Zone de texte"
+msgid "Used in"
+msgstr "Utilisé dans"
+msgid "Save field settings"
+msgstr "Enregistrer les paramètres du champ"
+msgid "The update has encountered an error."
+msgstr "La mise à jour a échoué."
+msgid "1 item successfully processed:"
+msgid_plural "@count items successfully processed:"
+msgstr[0] "1 élément traité avec succès :"
+msgstr[1] "@count éléments traités avec succès :"
+msgid "Provide a comma separated list of arguments to pass to the view."
+msgstr ""
+"Fournir une liste d'arguments, séparés par des virgules, à passer "
+"à la vue."
+msgid "Decimal"
+msgstr "Décimal"
+msgid "Float"
+msgstr "Réel (Float)"
+msgid "Minimum"
+msgstr "Minimum"
+msgid "Precision"
+msgstr "Précision"
+msgid ""
+"The total number of digits to store in the database, including those "
+"to the right of the decimal."
+msgstr ""
+"Le nombre total de chiffres à stocker dans la base de données, en "
+"incluant ceux à droite de la virgule."
+msgid "The number of digits to the right of the decimal."
+msgstr "Nombre de chiffres à la droite du marqueur décimal."
+msgid "Decimal marker"
+msgstr "Séparateur de décimales"
+msgid ""
+"For a 'single on/off checkbox' widget, define the 'off' value first, "
+"then the 'on' value in the <strong>Allowed values</strong> section. "
+"Note that the checkbox will be labeled with the label of the 'on' "
+"value."
+msgstr ""
+"Pour un widget 'case à cocher oui/non', définissez la valeur 'non' "
+"en premier, puis la valeur 'oui', dans la section <strong>Valeurs "
+"autorisées</strong>. Notez que la case à cocher sera étiquetée "
+"avec l'étiquette de la valeur du 'oui'."
+msgid "Check boxes/radio buttons"
+msgstr "Cases à cocher/boutons radio"
+msgid "Single on/off checkbox"
+msgstr "Case à cocher on/off unique"
+msgid "Text area (multiple rows)"
+msgstr "Zone de texte (plusieurs lignes)"
+msgid "Index"
+msgstr "Index"
+msgid "Permalink"
+msgstr "Permalien"
+msgid "Theme-engine-specific settings"
+msgstr "Paramètres spécifiques du thème dédié aux moteurs de recherche"
+msgid "Debug"
+msgstr "Debug"
+msgid "Exceptions"
+msgstr "Exceptions"
+msgid "Exception"
+msgstr "Exception"
+msgid "1 minute"
+msgstr "1 minute"
+msgid "Permission"
+msgstr "Droit"
+msgid "@module module"
+msgstr "module @module"
+msgid "Incompatible with this version of PHP"
+msgstr "Incompatible avec cette version de PHP"
+msgid ""
+"This module requires PHP version @php_required and is incompatible "
+"with PHP version !php_version."
+msgstr ""
+"Ce module requière la version @php_required de PHP et est "
+"incompatible avec la version !php_version."
+msgid "More information"
+msgstr "Plus d'information"
+msgid "!title !required"
+msgstr "!title !required"
+msgid "Grid"
+msgstr "Grille"
+msgid "Redo"
+msgstr "Refaire"
+msgid "Italic"
+msgstr "Italique"
+msgid "Editor"
+msgstr "Éditeur"
+msgid "Hide"
+msgstr "Masquer"
+msgid "Anonymous commenting"
+msgstr "Commentaires anonymes"
+msgid "Anonymous posters may not enter their contact information"
+msgstr "Les utilisateurs anonymes ne peuvent pas saisir leur coordonnées"
+msgid "Anonymous posters may leave their contact information"
+msgstr "Les utilisateurs anonymes peuvent laisser leurs coordonnées"
+msgid "Anonymous posters must leave their contact information"
+msgstr "Les utilisateurs anonymes doivent laisser leur coordonnées"
+msgid ""
+"The content of this field is kept private and will not be shown "
+"publicly."
+msgstr ""
+"Le contenu de ce champ sera maintenu privé et ne sera pas affiché "
+"publiquement."
+msgid "Your signature will be publicly displayed at the end of your comments."
+msgstr ""
+"Votre signature sera affichée publiquement à la fin de vos "
+"commentaires."
+msgid "Date - newest first"
+msgstr "Par date - du plus récent au plus ancien"
+msgid "Date - oldest first"
+msgstr "Par date - du plus ancien au plus récent"
+msgid "1 comment"
+msgid_plural "@count comments"
+msgstr[0] "@count commentaire"
+msgstr[1] "@count commentaires"
+msgid "1 new comment"
+msgid_plural "@count new comments"
+msgstr[0] "@count nouveau commentaire"
+msgstr[1] "@count nouveaux commentaires"
+msgid "Save content type"
+msgstr "Enregistrer le type de contenu"
+msgid "Global"
+msgstr "Global"
+msgid "Show descriptions"
+msgstr "Afficher les descriptions"
+msgid "Three"
+msgstr "Trois"
+msgid "Subtitle"
+msgstr "Sous-titre"
+msgid "Language code"
+msgstr "Code de la langue"
+msgid "Not present"
+msgstr "Absent"
+msgid "!title field is required."
+msgstr "Le champ !title est obligatoire."
+msgid "file system"
+msgstr "système de fichiers"
+msgid "Source code"
+msgstr "Code source"
+msgid "Menu link title"
+msgstr "Titre du lien dans le menu"
+msgid ""
+"The menu system stores system paths only, but will use the URL alias "
+"for display. %link_path has been stored as %normal_path"
+msgstr ""
+"Le système de menu enregistre uniquement les chemins systèmes, mais "
+"utilisera les alias d'URLs au moment de l'affichage. %link_path a "
+"été enregistré comme %normal_path"
+msgid ""
+"The path '@link_path' is either invalid or you do not have access to "
+"it."
+msgstr ""
+"Le chemin '@link_path' est invalide ou vous n'êtes pas autorisé à y "
+"accéder."
+msgid "There was an error saving the menu link."
+msgstr ""
+"Une erreur s'est produite lors de l'enregistrement de l'élement de "
+"menu."
+msgid "Menu name"
+msgstr "Nom du menu"
+msgid "Are you sure you want to delete the custom menu %title?"
+msgstr ""
+"Êtes-vous certain de vouloir supprimer le menu personnalisé "
+"%title ?"
+msgid "Display message"
+msgstr "Afficher le message"
+msgid "Number of users to display"
+msgstr "Nombre d'utilisateurs à afficher"
+msgid "..."
+msgstr "..."
+msgid "Edit profile"
+msgstr "Modifier le profil"
+msgid "Edit container"
+msgstr "Modifier le conteneur"
+msgid "Subscript"
+msgstr "Sous-script"
+msgid "Indent"
+msgstr "Retrait négatif"
+msgid "Outdent"
+msgstr "Retrait positif"
+msgid "Unlink"
+msgstr "Supprimer le lien"
+msgid "Thread"
+msgstr "Fil de discussion"
+msgid "Hot topic threshold"
+msgstr "Seuil de sujet brûlant"
+msgid "Topics per page"
+msgstr "Sujets par page"
+msgid "Posts - most active first"
+msgstr "Contributions - les plus actives d'abord"
+msgid "Posts - least active first"
+msgstr "Contributions - les moins actives d'abord"
+msgid "URL path settings"
+msgstr "Paramètres des chemins d'URL"
+msgid "Title text"
+msgstr "Texte du titre"
+msgid "Are you sure you want to revert to the revision from %revision-date?"
+msgstr "Êtes-vous sûr(e) de vouloir rétablir la version du %revision-date?"
+msgid "Are you sure you want to delete the revision from %revision-date?"
+msgstr ""
+"Êtes vous sûr(e) de vouloir supprimer la version du "
+"%revision-date ?"
+msgid "Distinct"
+msgstr "Distinct"
+msgid "Maximum upload size"
+msgstr "Taille maximale de transfert"
+msgid "Extension"
+msgstr "Extension"
+msgid "Space"
+msgstr "Espace"
+msgid "New forum topics"
+msgstr "Nouveaux sujets"
+msgid "@type: deleted %title revision %revision."
+msgstr "@type : \"%title\" - révision \"%revision\" supprimée."
+msgid "Page not found"
+msgstr "Page non trouvée"
+msgid "Language neutral"
+msgstr "Indépendant de la langue"
+msgid "More help"
+msgstr "Plus d'aide"
+msgid "Preview trimmed version"
+msgstr "Aperçu de la version abrégée"
+msgid "Preview full version"
+msgstr "Aperçu de la version complète"
+msgid "Bullet list"
+msgstr "Liste à puces"
+msgid "Account blocked"
+msgstr "Compte bloqué"
+msgid "Expand"
+msgstr "Déplier"
+msgid "The name %name is already taken."
+msgstr "Le nom %name est déjà pris."
+msgid "The current date"
+msgstr "La date actuelle"
+msgid "Provided by"
+msgstr "Fourni par"
+msgid "Aggregate"
+msgstr "Agréger"
+msgid "<Any>"
+msgstr "-Tout-"
+msgid "« first"
+msgstr "« premier"
+msgid "last »"
+msgstr "dernier »"
+msgid "Resize"
+msgstr "Redimensionner"
+msgid "Loading"
+msgstr "En cours de chargement"
+msgid "Zip"
+msgstr "Zip"
+msgid "The directory %directory does not exist."
+msgstr "Le répertoire %directory n'existe pas."
+msgid "Blockquote"
+msgstr "Citation"
+msgid "Rearrange"
+msgstr "Réordonner"
+msgid "No comments available."
+msgstr "Aucun commentaire disponible."
+msgid "ok"
+msgstr "ok"
+msgid "empty"
+msgstr "vide"
+msgid "Rebuild permissions"
+msgstr "Reconstruire les droits d'accès"
+msgid "@type: updated %title."
+msgstr "@type : %title mis à jour."
+msgid "@type: added %title."
+msgstr "@type : %title ajouté."
+msgid "Message field is required."
+msgstr "Le champ Message est requis."
+msgid "Add role"
+msgstr "Ajouter un rôle"
+msgid "Path to custom logo"
+msgstr "Chemin vers le logo personnalisé"
+msgid "taxonomy"
+msgstr "taxonomie"
+msgid "Updated term %term."
+msgstr "Le terme '%term' a été mis à jour."
+msgid "- None selected -"
+msgstr "- Aucun -"
+msgid "Parser"
+msgstr "Analyseur syntaxique"
+msgid "Discard items older than"
+msgstr "Supprimer les éléments plus vieux que"
+msgid "@site_name - aggregated feeds in category @title"
+msgstr "@site_name - flux agrégés dans la catégorie @title"
+msgid "@site_name - aggregated feeds"
+msgstr "@site_name - flux agrégés"
+msgid "@site_name aggregator"
+msgstr "@site_name - agrégateur"
+msgid "!title feed"
+msgstr "flux !title"
+msgid "Aggregator"
+msgstr "Agrégateur"
+msgid "There is no new syndicated content from %site."
+msgstr "Il n'y a pas de nouveau contenu syndiqué sur %site."
+msgid "There is new syndicated content from %site."
+msgstr "Il y a du contenu récemment syndiqué sur %site."
+msgid "Feed aggregator"
+msgstr "Agrégateur de flux"
+msgid "Last time feed was checked for new items, as Unix timestamp."
+msgstr ""
+"La dernière fois où le flux a été vérifiée pour la "
+"disponibilité de nouveaux éléments  (exprimé en tant que timestamp "
+"Unix)."
+msgid "An image representing the feed."
+msgstr "Une image représentant le flux."
+msgid "Entity tag HTTP response header, used for validating cache."
+msgstr "En-tête de réponse Entity-tag, utilisé pour valider le cache."
+msgid "When the feed was last modified, as a Unix timestamp."
+msgstr ""
+"La dernière fois où le flux a été modifié (exprimé en tant que "
+"timestamp Unix)."
+msgid "Unique identifier for the feed item."
+msgstr "Identifiant unique de l'élément du flux."
+msgid "Alias"
+msgstr "Alias"
+msgid "Account settings"
+msgstr "Paramètres de compte"
+msgid "Add Page"
+msgstr "Ajouter une page"
+msgid "The content type %name has been deleted."
+msgstr "Le type de contenu %name a été supprimé."
+msgid "Deleted content type %name."
+msgstr "Type de contenu %name supprimé."
+msgid "Enter your keywords"
+msgstr "Saisissez vos mots-clés"
+msgid "My account"
+msgstr "Mon compte"
+msgid "Updated term %name."
+msgstr "Terme %name mis à jour."
+msgid "Number of topics"
+msgstr "Nombre de sujets"
+msgid "Active forum topics"
+msgstr "Sujets actifs"
+msgid "Read the latest forum topics."
+msgstr "Lire les derniers sujets."
+msgid "HTTP authentication"
+msgstr "Authentification HTTP"
+msgid "User activity"
+msgstr "Activité de l'utilisateur"
+msgid "Attach to"
+msgstr "Attacher à"
+msgid "New feed items are automatically filed in the checked categories."
+msgstr ""
+"Les nouveaux éléments de flux sont automatiquement classés dans les "
+"catégories sélectionnées."
+msgid ""
+"A user is considered online for this long after they have last viewed "
+"a page."
+msgstr ""
+"Durée pendant laquelle on considère qu'un utilisateur est en ligne "
+"après qu'il ait vu une page pour la dernière fois."
+msgid "Maximum number of currently online users to display."
+msgstr "Nombre maximal d'utilisateurs en ligne à afficher."
+msgid "ajax"
+msgstr "ajax"
+msgid "Context"
+msgstr "Contexte"
+msgid "Book navigation"
+msgstr "Navigation du livre"
+msgid "Pager"
+msgstr "Pagination"
+msgid "Taxonomy vocabulary"
+msgstr "Vocabulaire de taxonomie"
+msgid "Remove this item"
+msgstr "Supprimer cet élément"
+msgid "1 year"
+msgid_plural "@count years"
+msgstr[0] "@count année"
+msgstr[1] "@count années"
+msgid "1 week"
+msgid_plural "@count weeks"
+msgstr[0] "@count semaine"
+msgstr[1] "@count semaines"
+msgid "1 min"
+msgid_plural "@count min"
+msgstr[0] "@count min"
+msgstr[1] "@count min"
+msgid "1 sec"
+msgid_plural "@count sec"
+msgstr[0] "@count sec"
+msgstr[1] "@count sec"
+msgid "Module name"
+msgstr "Nom du module"
+msgid "Page settings"
+msgstr "Paramètres de la page"
+msgid "Use pager"
+msgstr "Utiliser la pagination"
+msgid "Items to display"
+msgstr "Éléments à afficher"
+msgid "More link"
+msgstr "Lien \"plus\""
+msgid "More link text"
+msgstr "Texte du lien \"Plus\""
+msgid "Failed to set field @name to @value"
+msgstr "Impossible de définir la valeur @value dans le champ @name"
+msgid "No temporary directories to remove."
+msgstr "Aucun répertoire temporaire à supprimer."
+msgid "Falkland Islands (Malvinas)"
+msgstr "Îles Malouines"
+msgid "Bulgarian"
+msgstr "Bulgare"
+msgid "Croatian"
+msgstr "Croate"
+msgid "Czech"
+msgstr "Tchèque"
+msgid "Danish"
+msgstr "Danois"
+msgid "Dutch"
+msgstr "Néerlandais"
+msgid "Finnish"
+msgstr "Finlandais"
+msgid "German"
+msgstr "Allemand"
+msgid "Greek"
+msgstr "Grec"
+msgid "Hebrew"
+msgstr "Hébreux"
+msgid "Hungarian"
+msgstr "Hongrois"
+msgid "Indonesian"
+msgstr "Indonésien"
+msgid "Polish"
+msgstr "Polonais"
+msgid "Romanian"
+msgstr "Roumain"
+msgid "Russian"
+msgstr "Russe"
+msgid "Slovak"
+msgstr "Slovaque"
+msgid "Swedish"
+msgstr "Suédois"
+msgid "Turkish"
+msgstr "Turque"
+msgid "The term name."
+msgstr "Nom du terme."
+msgid "contains"
+msgstr "contient"
+msgid "Send message"
+msgstr "Envoyer le message"
+msgid "Machine name"
+msgstr "Nom système"
+msgid "Allow Upscaling"
+msgstr "Autoriser l'Agrandissement"
+msgid "Let scale make images larger than their original size"
+msgstr ""
+"Autoriser l'outil d'échelle à rendre les images plus grands que leur "
+"taille originale"
+msgid "Rotation angle"
+msgstr "Angle de rotation"
+msgid ""
+"The number of degrees the image should be rotated. Positive numbers "
+"are clockwise, negative are counter-clockwise."
+msgstr ""
+"Le nombre de degrés duquel l'image doit être pivotée. Les nombres "
+"positifs sont dans le sens des aiguilles d'une montre, les nombres "
+"négatifs dans le sens inverse des aiguilles d'une montre."
+msgid ""
+"Randomize the rotation angle for each image. The angle specified above "
+"is used as a maximum."
+msgstr ""
+"Générer au hasard l'angle de rotation pour chaque image. L'angle "
+"spécifié ci-dessus est utilisé comme maximum."
+msgid "The file could not be created."
+msgstr "Le fichier n'a pas pu être créé."
+msgid "Locked"
+msgstr "Verrouillé"
+msgid "Password reset instructions mailed to %name at %email."
+msgstr ""
+"Les instructions de réinitialisation de mot de passe ont été "
+"envoyées à %name, à l'adresse %email."
+msgid "The e-mail address %mail is not valid."
+msgstr "L'adresse électronique %mail n'est pas valide."
+msgid "Data"
+msgstr "Données"
+msgid "Selection type"
+msgstr "Type de sélection"
+msgid "Any"
+msgstr "Tout"
+msgid "E-mail addresses to notify when updates are available"
+msgstr ""
+"Adresses de courriels à notifier lorsque des mises à jour sont "
+"disponibles"
+msgid ""
+"Whenever your site checks for available updates and finds new "
+"releases, it can notify a list of users via e-mail. Put each address "
+"on a separate line. If blank, no e-mails will be sent."
+msgstr ""
+"Chaque fois que votre site vérifie la disponibilité de mises à jour "
+"et trouve de nouvelles versions, il peut notifier une liste "
+"d'utilisateurs par courriel. Écrivez une adresse par ligne. Si le "
+"champ reste vide, aucun courriel ne sera envoyé."
+msgid "Check for updates"
+msgstr "Vérifier les mises à jour"
+msgid "All newer versions"
+msgstr "Toutes les nouvelles versions"
+msgid "Only security updates"
+msgstr "Les mises à jour de sécurité uniquement"
+msgid "%email is not a valid e-mail address."
+msgstr "%email n'est pas une adresse de courriel valide."
+msgid "%emails are not valid e-mail addresses."
+msgstr "%emails ne sont pas des adresses de courriels valides."
+msgid "No update data available"
+msgstr "Pas de données sur les mises à jour disponibles"
+msgid "Not secure!"
+msgstr "Non sécurisé !"
+msgid "Revoked!"
+msgstr "Révoquée !"
+msgid "Unsupported release"
+msgstr "Version non supportée"
+msgid "Can not determine status"
+msgstr "Impossible de déterminer le status"
+msgid "(version @version available)"
+msgstr "(version @version disponible)"
+msgid "See the available updates page for more information:"
+msgstr "Voir la page des mises à jour disponibles pour plus d'informations :"
+msgid "New release(s) available for !site_name"
+msgstr "Nouvelle(s) version(s) disponible(s) pour !site_name"
+msgid ""
+"There is a security update available for your version of Drupal. To "
+"ensure the security of your server, you should update immediately!"
+msgstr ""
+"Une mise à jour de sécurité est disponible pour votre version de "
+"Drupal. Afin de garantir la sécurité de votre serveur, effectuez "
+"immédiatement la mise à jour !"
+msgid ""
+"Your version of Drupal has been revoked and is no longer available for "
+"download. Upgrading is strongly recommended!"
+msgstr ""
+"La version de Drupal installée a été révoquée et n'est plus "
+"disponible au téléchargement. Il est fortement recommandé de la "
+"mettre à jour !"
+msgid ""
+"The installed version of at least one of your modules or themes has "
+"been revoked and is no longer available for download. Upgrading or "
+"disabling is strongly recommended!"
+msgstr ""
+"La version installée d'au moins un de vos modules ou thèmes a été "
+"révoquée et n'est plus disponible au téléchargement. Il est "
+"fortement recommandé de les mettre à jour ou de les désactiver !"
+msgid ""
+"Your version of Drupal is no longer supported. Upgrading is strongly "
+"recommended!"
+msgstr ""
+"Votre version de Drupal n'est plus supportée. Il est fortement "
+"recommandé de la mettre à jour !"
+msgid ""
+"There are updates available for your version of Drupal. To ensure the "
+"proper functioning of your site, you should update as soon as "
+"possible."
+msgstr ""
+"Des mises à jour sont disponibles pour votre version de Drupal. Pour "
+"assurer le bon fonctionnement de votre site, vous devriez procédez à "
+"la mise à jour dès que possible."
+msgid ""
+"See the <a href=\"@available_updates\">available updates</a> page for "
+"more information."
+msgstr ""
+"Voir la page des <a href=\"@available_updates\">mises à jour "
+"disponibles</a> pour plus d'informations."
+msgid "Project not secure"
+msgstr "Projet non sécurisé"
+msgid ""
+"This project has been labeled insecure by the Drupal security team, "
+"and is no longer available for download. Immediately disabling "
+"everything included by this project is strongly recommended!"
+msgstr ""
+"Ce projet a été marqué comme posant un risque de sécurité par "
+"l'équipe de sécurité de Drupal, et n'est plus disponible au "
+"téléchargement. Il est fortement recommandé de désactiver "
+"immédiatement l'ensemble des modules et thèmes de ce projet !"
+msgid "Project revoked"
+msgstr "Projet rejeté"
+msgid ""
+"This project has been revoked, and is no longer available for "
+"download. Disabling everything included by this project is strongly "
+"recommended!"
+msgstr ""
+"Ce projet a été révoqué, et n'est plus disponible au "
+"téléchargement. Il est fortement recommandé de désactiver "
+"immédiatement l'ensemble des modules et thèmes de ce projet !"
+msgid "Project not supported"
+msgstr "Projet non supporté"
+msgid ""
+"This project is no longer supported, and is no longer available for "
+"download. Disabling everything included by this project is strongly "
+"recommended!"
+msgstr ""
+"Ce projet n'est plus supporté, et n'est plus disponible au "
+"téléchargement. Il est fortement recommandé de désactiver "
+"immédiatement l'ensemble des modules et thèmes de ce projet !"
+msgid "No available releases found"
+msgstr "Aucune version disponible"
+msgid "Release revoked"
+msgstr "Version révoquée"
+msgid ""
+"Your currently installed release has been revoked, and is no longer "
+"available for download. Disabling everything included in this release "
+"or upgrading is strongly recommended!"
+msgstr ""
+"La version installée a été révoquée, et n'est plus disponible au "
+"téléchargement. Il est fortement recommandé de désactiver "
+"immédiatement l'ensemble des modules et thèmes de cette version !"
+msgid "Release not supported"
+msgstr "Version non supportée"
+msgid ""
+"Your currently installed release is now unsupported, and is no longer "
+"available for download. Disabling everything included in this release "
+"or upgrading is strongly recommended!"
+msgstr ""
+"Cette version n'est plus supportée, et n'est plus disponible au "
+"téléchargement. Il est fortement recommandé de désactiver "
+"immédiatement l'ensemble des modules et thèmes de cette version !"
+msgid "Invalid info"
+msgstr "Information invalide"
+msgid "Security update required!"
+msgstr "Mise à jour de sécurité nécessaire !"
+msgid "Not supported!"
+msgstr "Non supportée !"
+msgid "Recommended version:"
+msgstr "Version recommandée :"
+msgid "Security update:"
+msgstr "Mise à jour de sécurité :"
+msgid "Latest version:"
+msgstr "Dernière version :"
+msgid "Development version:"
+msgstr "Version de développement :"
+msgid "Also available:"
+msgstr "Également disponible :"
+msgid "No name"
+msgstr "Aucun nom"
+msgid "Node count"
+msgstr "Comptage des nœuds"
+msgid "Field settings"
+msgstr "Paramètres du champ"
+msgid "1 new post"
+msgid_plural "@count new posts"
+msgstr[0] "1 nouveau contenu"
+msgstr[1] "@count nouveaux contenus"
+msgid "Edit forum"
+msgstr "Modifier le forum"
+msgid "Default order"
+msgstr "Ordre par défaut"
+msgid ""
+"This is the designated forum vocabulary. Some of the normal vocabulary "
+"options have been removed."
+msgstr ""
+"Ce vocabulaire gère l'arborescence des forums. Certaines des options "
+"habituelles des vocabulaires ont été supprimées."
+msgid "Leave shadow copy"
+msgstr "Laisser une trace"
+msgid ""
+"If you move this topic, you can leave a link in the old forum to the "
+"new forum."
+msgstr ""
+"Si vous déplacez ce sujet, vous pouvez laisser un lien dans l'ancien "
+"forum pointant vers le nouveau."
+msgid "Container name"
+msgstr "Nom du conteneur"
+msgid "forum container"
+msgstr "conteneur de forum"
+msgid "Created new @type %term."
+msgstr "Le @type %term a été créé."
+msgid "The @type %term has been updated."
+msgstr "Le @type %term a été mis à jour."
+msgid "Add new field"
+msgstr "Ajouter un nouveau champ"
+msgid "Containing any of the words"
+msgstr "Contenant n'importe lequel des mots"
+msgid "Containing the phrase"
+msgstr "Contenant l'expression"
+msgid "Containing none of the words"
+msgstr "Ne contenant aucun des mots"
+msgid "Only of the type(s)"
+msgstr "Seulement du ou des types"
+msgid "Content ranking"
+msgstr "Classement du contenu"
+msgid ""
+"The following numbers control which properties the content search "
+"should favor when ordering the results. Higher numbers mean more "
+"influence, zero means the property is ignored. Changing these numbers "
+"does not require the search index to be rebuilt. Changes take effect "
+"immediately."
+msgstr ""
+"Les paramètres suivants permettent de favoriser certaines "
+"propriétés plutôt que d'autres lors du tri des résultats de "
+"recherche. Un nombre plus élevé signifie que la propriété aura "
+"plus d'influence, zero signifie que la propriété sera ignorée. "
+"Changer ces paramètres n'oblige pas à recréer l'index : les "
+"changements prennent effet immédiatement."
+msgid "Keyword relevance"
+msgstr "Pertinence des mots clés"
+msgid "Recently posted"
+msgstr "Posté récemment"
+msgid "Number of comments"
+msgstr "Nombre de commentaires"
+msgid "Number of views"
+msgstr "Nombre de lectures"
+msgid "Factor"
+msgstr "Facteur"
+msgid "Expand layout to include descriptions."
+msgstr "Produit une mise en page moins compacte qui inclut des descriptions."
+msgid "Hide descriptions"
+msgstr "Masquer les descriptions"
+msgid "Compress layout by hiding descriptions."
+msgstr "Produit une mise en page plus compacte en cachant les descriptions."
+msgid "Or"
+msgstr "Ou"
+msgid "Color set"
+msgstr "Jeu de couleurs"
+msgid "Content ID"
+msgstr "Identifiant (ID) du contenu"
+msgid "Cut"
+msgstr "Couper"
+msgid "Paste"
+msgstr "Coller"
+msgid "Ordered list"
+msgstr "Liste ordonnée"
+msgid "Unordered list"
+msgstr "Liste non ordonnée"
+msgid "About"
+msgstr "À propos"
+msgid "Database host"
+msgstr "Serveur de base de données"
+msgid "Maximum link text length"
+msgstr "Longueur maximale des textes des liens"
+msgid ""
+"URLs longer than this number of characters will be truncated to "
+"prevent long strings that break formatting. The link itself will be "
+"retained; just the text portion of the link will be truncated."
+msgstr ""
+"Les URLs comportant plus de caractères que le nombre ci-dessus seront "
+"tronqués pour éviter les chaînes de caractères trop longues, qui "
+"briseraient la mise en page. Le lien en tant que tel sera conservé ; "
+"seule la partie textuelle du lien sera tronquée."
+msgid "Reports"
+msgstr "Rapports"
+msgid "Add row"
+msgstr "Ajouter une ligne"
+msgid "Toggle display"
+msgstr "Activer/désactiver l'affichage"
+msgid ""
+"If you don't have direct file access to the server, use this field to "
+"upload your logo."
+msgstr ""
+"Si vous n'avez pas un accès direct aux fichiers sur le serveur, "
+"utilisez ce champs pour téléverser votre logo."
+msgid "Link class"
+msgstr "Classe du lien"
+msgid "%percentage of the site has been indexed."
+msgstr "%percentage du site a été indexé."
+msgid "File directory"
+msgstr "Répertoire du fichier"
+msgid "Default theme"
+msgstr "Thème par défaut"
+msgid "Web server"
+msgstr "Serveur web"
+msgid "regex"
+msgstr "regex"
+msgid "There is 1 item left to index."
+msgid_plural "There are @count items left to index."
+msgstr[0] "Il reste @count élément à indexer."
+msgstr[1] "Il reste @count éléments à indexer."
+msgid "The content access permissions have been rebuilt."
+msgstr "Les permissions d'accès au contenu ont été reconstruites."
+msgid "Column"
+msgstr "Colonne"
+msgid "Default sort"
+msgstr "Tri par défaut"
+msgid "sort by @s"
+msgstr "trier par @s"
+msgid ""
+"Sorry, unrecognized username or password. <a href=\"@password\">Have "
+"you forgotten your password?</a>"
+msgstr ""
+"Désolé, nom d'utilisateur ou mot de passe non reconnu. <a "
+"href=\"@password\">Avez-vous oublié votre mot de passe ?</a>"
+msgid "and"
+msgstr "et"
+msgid "Manage actions"
+msgstr "Gérer les actions"
+msgid "Configure an advanced action"
+msgstr "Configurer une action avancée"
+msgid "Delete an action."
+msgstr "Supprimer une action."
+msgid "Choose an advanced action"
+msgstr "Choisissez une action avancée"
+msgid "Action type"
+msgstr "Type d'action"
+msgid "Are you sure you want to delete the action %action?"
+msgstr "Êtes-vous sûr de vouloir supprimer l'action '%action' ?"
+msgid "Action %action was deleted"
+msgstr "L'action '%action' a été supprimée"
+msgid "Display a message to the user"
+msgstr "Afficher un message à l'utilisateur"
+msgid "Unpublish comment"
+msgstr "Dépublier le commentaire"
+msgid "Unpublish comment containing keyword(s)"
+msgstr "Retirer les commentaires contenant ce(s) mot(s) clé(s)"
+msgid "- Select -"
+msgstr "- Sélectionner -"
+msgid "Path prefix"
+msgstr "Prefixe de chemin"
+msgid "Auto-reply"
+msgstr "Réponse automatique"
+msgid ""
+"Optional auto-reply. Leave empty if you do not want to send the user "
+"an auto-reply message."
+msgstr ""
+"Réponse automatique optionnelle. Laissez vide si vous ne souhaitez "
+"pas envoyer un message de réponse automatique à l'expéditeur."
+msgid "%recipient is an invalid e-mail address."
+msgstr "%recipient n'est pas une adresse de courriel valide."
+msgid "forward"
+msgstr "faire suivre"
+msgid "Add @type"
+msgstr "Ajouter @type"
+msgid "Lithuanian"
+msgstr "Lithuanien"
+msgid "Not promoted"
+msgstr "Non promu"
+msgid "Not sticky"
+msgstr "Non épinglé"
+msgid "Nid"
+msgstr "Nid"
+msgid "Parent comment"
+msgstr "Commentaire parent"
+msgid "The parent comment."
+msgstr "Le commentaire parent."
+msgid "Author's website"
+msgstr "Site web de l'auteur"
+msgid "Display the depth of the comment if it is threaded."
+msgstr "Afficher la profondeur du commentaire s'il apparaît dans un fil."
+msgid ""
+"Sort by the threaded order. This will keep child comments together "
+"with their parents."
+msgstr ""
+"Trier suivant l'ordre du fil. Ceci maintient les commentaires enfants "
+"avec leurs parents."
+msgid "Provide a simple link to reply to the comment."
+msgstr "Fournir un lien pour répondre au commentaire."
+msgid "Text to display"
+msgstr "Texte à afficher"
+msgid "Link this field to its user or an author's homepage"
+msgstr "Lier ce champ à son utilisateur ou à la page d'accueil d'un auteur"
+msgid "Newest first"
+msgstr "Les plus récents d'abord"
+msgid "!message"
+msgstr "!message"
+msgid "field"
+msgstr "champ"
+msgid "nodes"
+msgstr "nœuds"
+msgid "Formatter"
+msgstr "Outil de mise en forme"
+msgid "Some required modules must be enabled"
+msgstr "Certains modules requis doivent être activés"
+msgid "New posts"
+msgstr "Nouvelles contributions"
+msgid "Week @week"
+msgstr "Semaine @week"
+msgid "mm/dd/yy"
+msgstr "dd/mm/yy"
+msgid "Delete view"
+msgstr "Supprimer la vue"
+msgid "Translate"
+msgstr "Traduire"
+msgid "Translation file"
+msgstr "Fichier de traduction"
+msgid "File to import not found."
+msgstr "Le fichier à importer n'a pas été trouvé."
+msgid "Save translations"
+msgstr "Enregistrer les traductions"
+msgid "Target"
+msgstr "Cible"
+msgid "Time ago"
+msgstr "Il y a"
+msgid "Create @name"
+msgstr "Créer @name"
+msgid "The custom menu %title has been deleted."
+msgstr "Le menu personnalisé '%title' a été supprimé."
+msgid "@type %title has been deleted."
+msgstr "Le contenu '%title', de type '@type', a été supprimé."
+msgid "Crop"
+msgstr "Recadrer"
+msgid "Not enabled"
+msgstr "Non activé"
+msgid ""
+"Instructions to present to the user below this field on the editing "
+"form.<br />Allowed HTML tags: @tags"
+msgstr ""
+"Instructions à présenter à l'utilisateur sous ce champ, dans le "
+"formulaire de modification.<br />Balises HTML autorisées : @tags"
+msgid "Sort direction"
+msgstr "Sens du tri"
+msgid "Radios"
+msgstr "Boutons radios"
+msgid "Block type"
+msgstr "Type de bloc"
+msgid "@module (<span class=\"admin-disabled\">disabled</span>)"
+msgstr "@module (<span class=\"admin-disabled\">désactivé</span>)"
+msgid "Web services"
+msgstr "Services Web"
+msgid "XML-RPC"
+msgstr "XML-RPC"
+msgid "Save permissions"
+msgstr "Enregistrer les droits d'accès"
+msgid "The e-mail address %email is already taken."
+msgstr "L'adresse de courriel %email est déjà utilisée."
+msgid "Effect"
+msgstr "Effet"
+msgid "starting from @count"
+msgstr "en commençant à @count"
+msgid "Output"
+msgstr "Sortie"
+msgid "Embed"
+msgstr "Intégré"
+msgid "Error message"
+msgstr "Message d'erreur"
+msgid "The language the content is in."
+msgstr "Langue de rédaction du contenu."
+msgid "Delete content type"
+msgstr "Supprimer le type de contenu"
+msgid "Quick edit"
+msgstr "Édition rapide"
+msgid "Change book (update list of parents)"
+msgstr "Changer de livre (mettre à jour la liste des parents)"
+msgid "Manage your site's book outlines."
+msgstr "Gérer les structures des livres de votre site."
+msgid "For security reasons, your upload has been renamed to %filename."
+msgstr ""
+"Pour des raisons de sécurité, votre fichier a été renommé en "
+"%filename."
+msgid "Entity type"
+msgstr "Type d'entité"
+msgid "Installed version"
+msgstr "Version installée"
+msgid "Recommended version"
+msgstr "Version recommandée"
+msgid "Cron run successfully."
+msgstr "Tâches planifiées (cron) terminées avec succès."
+msgid "User roles"
+msgstr "Rôles de l'utilisateur"
+msgid "User account"
+msgstr "Compte utilisateur"
+msgid "File download"
+msgstr "Téléchargement de fichier"
+msgid "Acronym"
+msgstr "Acronyme"
+msgid "More link path"
+msgstr "Chemin du lien \"plus\""
+msgid "No vocabularies available."
+msgstr "Aucun vocabulaire disponible."
+msgid "original"
+msgstr "original"
+msgid "Title only"
+msgstr "Titre seulement"
+msgid "Dates"
+msgstr "Dates"
+msgid "Not defined"
+msgstr "Non défini"
+msgid "Validator"
+msgstr "Validateur"
+msgid "Debugging"
+msgstr "Débogage"
+msgid "Inherit"
+msgstr "Hériter"
+msgid "pixels"
+msgstr "pixels"
+msgid "Mime type"
+msgstr "Type MIME"
+msgid "1 month"
+msgid_plural "@count months"
+msgstr[0] "@count mois"
+msgstr[1] "@count mois"
+msgid "Save order"
+msgstr "Enregistrer l'ordre"
+msgid "done"
+msgstr "fait"
+msgid "List, edit, or add user roles."
+msgstr "Afficher, ajouter ou modifier des rôles d'utilisateur."
+msgid "Display format"
+msgstr "Format d'affichage"
+msgid "Custom format"
+msgstr "Format d'entrée personnalisé"
+msgid "The date the node was last updated."
+msgstr "Date de dernière mise à jour du nœud."
+msgid "Category ID"
+msgstr "Identifiant de catégorie"
+msgid "Direction"
+msgstr "Direction"
+msgid "%name: illegal value."
+msgstr "%name : valeur illégale."
+msgid "Drupal core"
+msgstr "Drupal core"
+msgid "Book navigation block display"
+msgstr "Affichage du bloc de navigation du livre"
+msgid "Relations"
+msgstr "Relations"
+msgid "!group: !field"
+msgstr "!group : !field"
+msgid "Invalid display id @display"
+msgstr "Identifiant (ID) de l'affichage @display invalide"
+msgid "Error: handler for @table > @field doesn't exist!"
+msgstr "Erreur : le gestionnaire pour @table > @field n'existe pas !"
+msgid "Do not use a relationship"
+msgstr "Ne pas utiliser de relation"
+msgid "Password field is required."
+msgstr "Le champ mot de passe est obligatoire."
+msgid "Display type"
+msgstr "Type d'affichage"
+msgid "Confirm password"
+msgstr "Confirmer le mot de passe"
+msgid "Not applicable"
+msgstr "Non applicable"
+msgid "No content available."
+msgstr "Aucun contenu disponible."
+msgid "Administration theme"
+msgstr "Thème de l'administration"
+msgid "The cache has been cleared."
+msgstr "Le cache a été vidé."
+msgid ""
+"Thank you for applying for an account. Your account is currently "
+"pending approval by the site administrator.<br />In the meantime, a "
+"welcome message with further instructions has been sent to your e-mail "
+"address."
+msgstr ""
+"Merci d'avoir demandé un nouveau compte. Votre demande est en attente "
+"de validation par l'administrateur du site.<br />En attendant, un "
+"message de bienvenue a été envoyé à votre adresse de courriel."
+msgid "Isle of Man"
+msgstr "Île de Man"
+msgid "Montenegro"
+msgstr "Monténégro"
+msgid "Saint Pierre and Miquelon"
+msgstr "Saint-Pierre-et-Miquelon"
+msgid "Serbia"
+msgstr "Serbie"
+msgid "Run cron"
+msgstr "Lancer la tâche planifiée (cron)"
+msgid "Warning message"
+msgstr "Message d'avertissement"
+msgid "of"
+msgstr "sur"
+msgid "Title field"
+msgstr "Champ titre"
+msgid "translate"
+msgstr "traduire"
+msgid ""
+"Security warning: Couldn't write .htaccess file. Please create a "
+".htaccess file in your %directory directory which contains the "
+"following lines: <code>!htaccess</code>"
+msgstr ""
+"Avertissement de sécurité : impossible de créer le fichier "
+".htaccess. Créez un fichier .htaccess dans le répertoire %directory "
+"contenant les lignes suivantes : <code>!htaccess</code>"
+msgid ""
+"The specified file %file was not copied because it would overwrite "
+"itself."
+msgstr ""
+"Le fichier spécifié %file n'a pas pu être copié parce qu'il "
+"s'écraserait lui-même."
+msgid "The file %file could not be saved. An unknown error has occurred."
+msgstr ""
+"Le fichier %file n'a pas pu être enregistré. Une erreur inconnue "
+"s'est produite."
+msgid "The specified file %name could not be uploaded."
+msgstr "Le fichier spécifié %name n'a pas pu être transféré."
+msgid "The file's name is empty. Please give a name to the file."
+msgstr "Le nom du fichier est vide. Veuillez donner un nom au fichier."
+msgid "Only files with the following extensions are allowed: %files-allowed."
+msgstr ""
+"Seuls les fichiers se terminant par les extensions suivantes sont "
+"autorisés : %files-allowed."
+msgid "The file is %filesize exceeding the maximum file size of %maxsize."
+msgstr ""
+"Le fichier fait %filesize, ce qui dépasse la taille maximale "
+"autorisée (%maxsize)."
+msgid "The file is %filesize which would exceed your disk quota of %quota."
+msgstr ""
+"Le fichier fait %filesize, ce qui dépasserait votre quota de disque "
+"(%quota)."
+msgid "Only JPEG, PNG and GIF images are allowed."
+msgstr "Seules les images JPEG, PNG et GIF sont autorisées."
+msgid ""
+"The image was resized to fit within the maximum allowed dimensions of "
+"%dimensions pixels."
+msgstr ""
+"L'image a été redimensionnée pour tenir dans les dimensions "
+"maximales autorisées (%dimensions pixels)."
+msgid "The image is too large; the maximum dimensions are %dimensions pixels."
+msgstr ""
+"L'image est trop grande ; les dimensions maximales sont de %dimensions "
+"pixels."
+msgid "The image is too small; the minimum dimensions are %dimensions pixels."
+msgstr ""
+"L'image transférée est trop petite ; les dimensions minimales sont "
+"de %dimensions pixels."
+msgid ""
+"Upload error. Could not move uploaded file %file to destination "
+"%destination."
+msgstr ""
+"Erreur de transfert. Impossible de déplacer le fichier transféré "
+"(%file) vers la destination (%destination)."
+msgid "Add to book outline"
+msgstr "Ajouter à la structure du livre"
+msgid "New set"
+msgstr "Nouvel ensemble"
+msgid "No link"
+msgstr "Aucun lien"
+msgid "outdated"
+msgstr "traduction périmée"
+msgid "<strong>@language_name</strong> (source)"
+msgstr "<strong>@language_name</strong> (source)"
+msgid "Translations of %title"
+msgstr "Traductions de %title"
+msgid "Is not one of"
+msgstr "Ne fait pas partie de"
+msgid "Manage tagging, categorization, and classification of your content."
+msgstr ""
+"Gérer les étiquettes, les catégories et la classification de votre "
+"contenu."
+msgid "Database port"
+msgstr "Port de la base de données"
+msgid "Re-index site"
+msgstr "Réindexer le site"
+msgid "Are you sure you want to re-index the site?"
+msgstr "Êtes-vous sûr de vouloir réindexer le site ?"
+msgid "cURL"
+msgstr "cURL"
+msgid "Pass"
+msgstr "Réussite"
+msgid "Fail"
+msgstr "Echec"
+msgid "No test results to display."
+msgstr "Aucun résultat de test à afficher."
+msgid "Save and continue"
+msgstr "Enregistrer et continuer"
+msgid ""
+"These options are only necessary for some sites. If you're not sure "
+"what you should enter here, leave the default settings or check with "
+"your hosting provider."
+msgstr ""
+"Ces options ne sont nécessaires que pour certains sites. Si vous ne "
+"savez pas quoi saisir ici, gardez les valeurs par défaut ou "
+"interrogez votre hébergeur."
+msgid "If your database is located on a different server, change this."
+msgstr ""
+"Si votre base de données est située sur un serveur différent, "
+"changez ce paramètre."
+msgid ""
+"If your database server is listening to a non-standard port, enter its "
+"number."
+msgstr ""
+"Si votre base de données écoute sur un port non standard, saisissez "
+"son numéro ici."
+msgid "Database port must be a number."
+msgstr "Le port de la base de données doit être un nombre."
+msgid ""
+"Spaces are allowed; punctuation is not allowed except for periods, "
+"hyphens, and underscores."
+msgstr ""
+"Les espaces sont autorisés, mais pas les signes de ponctuation à "
+"l'exception des points, traits d'unions et tirets bas."
+msgid "IP address"
+msgstr "Adresse IP"
+msgid "not found"
+msgstr "pas trouvé"
+msgid "Maximum height"
+msgstr "Hauteur maximum"
+msgid "Maximum width"
+msgstr "Largeur maximum"
+msgid "Autocomplete matching"
+msgstr "Correspondance de l'autocomplétion"
+msgid "Starts with"
+msgstr "Commence par"
+msgid "Macao"
+msgstr "Macao"
+msgid "Timor-Leste"
+msgstr "Timor oriental"
+msgid "Åland Islands"
+msgstr "Îles Aland"
+msgid "Primary tabs"
+msgstr "Onglets principaux"
+msgid "Secondary tabs"
+msgstr "Onglets secondaires"
+msgid "Enable or disable the display of certain page elements."
+msgstr "Activer ou désactiver l'affichage de certains éléments des pages."
+msgid "Autocomplete"
+msgstr "Autocomplétion"
+msgid "Add new content"
+msgstr "Ajouter du nouveau contenu"
+msgid "Boolean"
+msgstr "Booléen"
+msgid "Maximum image resolution"
+msgstr "Résolution maximale de l'image"
+msgid ""
+"An illegal choice has been detected. Please contact the site "
+"administrator."
+msgstr ""
+"Un choix interdit a été détecté. Veuillez contacter "
+"l'administrateur du site."
+msgid "Illegal choice %choice in !name element."
+msgstr "Choix interdit %choice dans l'élément !name."
+msgid "Bundles"
+msgstr "Paquets"
+msgid "Status report"
+msgstr "Tableau de bord d'administration"
+msgid "Not writable"
+msgstr "Non accessible en écriture"
+msgid "Decimal point"
+msgstr "Marqueur décimal"
+msgid "Permanent"
+msgstr "Permanent"
+msgid "Temporary"
+msgstr "Temporaire"
+msgid "Custom date format"
+msgstr "Format de date personnalisé"
+msgid "Book outline"
+msgstr "Structure du livre"
+msgid "This will be the top-level page in this book."
+msgstr "Ceci sera la préface (niveau supérieur) dans ce livre."
+msgid "Revision information"
+msgstr "Informations sur les révisions"
+msgid "Notify user of new account"
+msgstr "Notifier l'utilisateur de la création de son nouveau compte"
+msgid "close"
+msgstr "fermer"
+msgid "Is one of"
+msgstr "Fait partie de"
+msgid "View comment"
+msgstr "Voir le commentaire"
+msgid "Access will be granted to users with the specified permission string."
+msgstr ""
+"L'accès sera accordé aux utilisateurs avec la chaine de permission "
+"spécifiée."
+msgid "Comma"
+msgstr "Virgule"
+msgid "Show All"
+msgstr "Montrer tous"
+msgid "Uses"
+msgstr "Utilisations"
+msgid "Path to custom icon"
+msgstr "Chemin vers l'icône personnalisée"
+msgid "Comments are responses to node content."
+msgstr "Les commentaires sont des réponses au contenu des nœuds."
+msgid "Users who have created accounts on your site."
+msgstr "Utilisateurs ayant créé un compte sur votre site."
+msgid "Current user"
+msgstr "Utilisateur courant"
+msgid "!group: !title"
+msgstr "!group : !title"
+msgid "Digest"
+msgstr "Récapitulatif"
+msgid "You are not authorized to post comments."
+msgstr "Vous n'êtes pas autorisé à poster des commentaires."
+msgid "The comment you are replying to does not exist."
+msgstr "Le commentaire auquel vous répondez n'existe plus."
+msgid "This discussion is closed: you can't post new comments."
+msgstr ""
+"La discussion est fermée, vous ne pouvez pas poster de nouveaux "
+"commentaires."
+msgid "You are not authorized to view comments."
+msgstr "Vous n'êtes pas autorisé à voir les commentaires."
+msgid "Are you sure you want to delete the comment %title?"
+msgstr "Êtes-vous sûr(e) de vouloir supprimer le commentaire %title ?"
+msgid ""
+"Any replies to this comment will be lost. This action cannot be "
+"undone."
+msgstr ""
+"Toutes les réponses à ce commentaire seront perdues. Cette action ne "
+"peut être annulée."
+msgid "Publish the selected comments"
+msgstr "Publier les commentaires sélectionnés"
+msgid "Unpublish the selected comments"
+msgstr "Retirer les commentaires sélectionnés"
+msgid "Are you sure you want to delete these comments and all their children?"
+msgstr ""
+"Êtes-vous sûr de vouloir supprimer ces commentaires et tout leurs "
+"éléments enfants ?"
+msgid "You have to specify a valid author."
+msgstr "Vous devez saisir un auteur valide."
+msgid "The name you used belongs to a registered user."
+msgstr ""
+"Le nom que vous avez utilisé appartient à un utilisateur "
+"enregistré."
+msgid "(No subject)"
+msgstr "(sans sujet)"
+msgid "!="
+msgstr "!="
+msgid "Is empty (NULL)"
+msgstr "Est vide (NULL)"
+msgid "not empty"
+msgstr "non vide"
+msgid "Default image"
+msgstr "Image par défaut"
+msgid ""
+"This text will be used by screen readers, search engines, or when the "
+"image cannot be loaded."
+msgstr ""
+"Ce texte sera utilisé par les lecteurs d'écran, les moteurs de "
+"recherche, ou lorsque l'image ne peut être chargée."
+msgid "Theming information"
+msgstr "Informations de thème"
+msgid "Add feed"
+msgstr "Ajouter un flux"
+msgid "List links"
+msgstr "Lister les liens"
+msgid "MIME type"
+msgstr "Type MIME"
+msgid "File system"
+msgstr "Système de fichiers"
+msgid "Ends with"
+msgstr "Finit par"
+msgid "Enter your @s username."
+msgstr "Saisissez votre nom d'utilisateur pour @s."
+msgid "Posted in"
+msgstr "Posté sur"
+msgid ""
+"Comment: unauthorized comment submitted or comment submitted to a "
+"closed post %subject."
+msgstr ""
+"Commentaire : commentaire non autorisé ou soumis sur un billet fermé "
+"'%subject'."
+msgid "Upload date"
+msgstr "Date de transfert"
+msgid "Do not cache"
+msgstr "Ne pas mettre en cache"
+msgid "Link this field to its user"
+msgstr "Lier ce champ à l'utilisateur correspondant"
+msgid "This will override any other link you have set."
+msgstr "Ceci supplantera tout autre lien que vous avez défini."
+msgid "Overwrite the value to display for anonymous users"
+msgstr "Supplanter cette valeur à afficher pour les utilisateurs anonymes"
+msgid "Text to display for anonymous users"
+msgstr "Texte à afficher pour les utilisateurs anonymes"
+msgid "Use default RSS settings"
+msgstr "Utiliser les paramètres RSS par défaut"
+msgid "Title plus teaser"
+msgstr "Titre plus accroche"
+msgid "Parent ID"
+msgstr "ID parent"
+msgid "Email:"
+msgstr "Courriel :"
+msgid "The node ID of the node."
+msgstr "Identifiant du nœud."
+msgid "Tab weight"
+msgstr "Poids de l'onglet"
+msgid "Delete all revisions"
+msgstr "Supprimer toutes les révisions"
+msgid "No role"
+msgstr "Aucun rôle"
+msgid "The file's MIME type."
+msgstr "Le type MIME du fichier."
+msgid "The size of the file."
+msgstr "La taille du fichier."
+msgid "The MIME type of the file."
+msgstr "Le type MIME du fichier."
+msgid "Link this field"
+msgstr "Lier ce champ"
+msgid "@type %title has been created."
+msgstr "Le contenu '%title', de type '@type', a été créé."
+msgid "@type %title has been updated."
+msgstr "Le contenu '%title', de type '@type', a été mis à jour."
+msgid "The post could not be saved."
+msgstr "Le contenu n'a pu être enregistré."
+msgid "1 character"
+msgid_plural "@count characters"
+msgstr[0] "@count caractère"
+msgstr[1] "@count caractères"
+msgid "Filter settings"
+msgstr "Paramètres de filtrage"
+msgid "You do not have any administrative items."
+msgstr "Vous n'avez accès à aucune page d'administration."
+msgid ""
+"One or more problems were detected with your Drupal installation. "
+"Check the <a href=\"@status\">status report</a> for more information."
+msgstr ""
+"Un ou plusieurs problèmes ont été détectés dans votre "
+"installation Drupal. Vérifiez le <a href=\"@status\">tableau de bord "
+"d'administration</a> pour plus d'information."
+msgid "Help topics"
+msgstr "Rubriques d'aide"
+msgid "Help is available on the following items:"
+msgstr "De l'aide est disponible pour les éléments suivants:"
+msgid "No help is available for module %module."
+msgstr "Aucune aide n'est disponible pour le module « %module »."
+msgid "@module administration pages"
+msgstr "Pages d'administration de @module"
+msgid "Filter the view to the currently logged in user."
+msgstr "Filtre la vue pour montrer les utilisateurs actuellement connectés."
+msgid "Add language"
+msgstr "Ajouter une langue"
+msgid "locale"
+msgstr "paramètre régional"
+msgid "AM"
+msgstr "AM"
+msgid "PM"
+msgstr "PM"
+msgid "Cache once for everything (global)"
+msgstr "Mettre en cache une fois pour tout (global)"
+msgid "Per page"
+msgstr "Par page"
+msgid "Per role"
+msgstr "Par rôle"
+msgid "Per role per page"
+msgstr "Par rôle par page"
+msgid "Per user"
+msgstr "Par utilisateur"
+msgid "Per user per page"
+msgstr "Par utilisateur par page"
+msgid "PHP extensions"
+msgstr "Extensions PHP"
+msgid "Comments per page"
+msgstr "Commentaires par page"
+msgid "Publish comment"
+msgstr "Publier un commentaire"
+msgid "The file could not be uploaded."
+msgstr "Le fichier n'a pas pu être transféré."
+msgid "Export configuration"
+msgstr "Exporter la configuration"
+msgid "FTP"
+msgstr "FTP"
+msgid "Collaboration"
+msgstr "Collaboration"
+msgid "Administration pages"
+msgstr "Pages d’administration"
+msgid "Currently using !item !version"
+msgstr "En cours d'utilisation : !item !version"
+msgid "Capitalize first letter"
+msgstr "Mettre la première lettre en majuscule"
+msgid "Created content type %type."
+msgstr "Le type de contenu %type a été créé."
+msgid "User created with name %name and pass %pass"
+msgstr "Utilisateur créé avec le nom %name et le mot de passe %pass"
+msgid "Created permissions: @perms"
+msgstr "Permissions créées : @perms"
+msgid "Invalid permission %permission."
+msgstr "Permission %permission non valide."
+msgid "Username field found."
+msgstr "Champ Nom d'utilisateur trouvé."
+msgid "Password field found."
+msgstr "Champ Mot de passe trouvé."
+msgid "!method @url returned @status (!length)."
+msgstr "!method @url a retourné @status (!length)."
+msgid "Valid HTML found on \"@path\""
+msgstr "HTML valide trouvé dans \"@path\""
+msgid "Parsed page successfully."
+msgstr "Analyse de la page réussi"
+msgid "Did not find field by name @name"
+msgstr "Le champ n'a pas été trouvé à partir de son nom @name"
+msgid "Found field by id @id"
+msgstr "Le champ a été trouvé à partir de son identifiant (ID) @id"
+msgid "Did not find field by id @id"
+msgstr "Le champ n'a pas été trouvé à partir de son identifiant (ID) @id"
+msgid "HTTP response expected !code, actual !curl_code"
+msgstr ""
+"La réponse HTTP attendue est !code or la réponse obtenue est "
+"!curl_code"
+msgid "Tests"
+msgstr "Tests"
+msgid "Run tests"
+msgstr "Lancer les tests"
+msgid "Clean test environment"
+msgstr "Purger l'environnement de test"
+msgid ""
+"Remove tables with the prefix \"simpletest\" and temporary directories "
+"that are left over from tests that crashed. This is intended for "
+"developers when creating tests."
+msgstr ""
+"Retirer les tables avec le préfixe \"simpletest\" et les répertoires "
+"temporaires laissés par les tests qui ont échoué. Ceci est destiné "
+"aux développeurs lors de la création des tests."
+msgid "Clean environment"
+msgstr "Nettoyer l'environnement"
+msgid "No tests to display."
+msgstr "Aucun test à afficher."
+msgid "@pass, @fail, and @exception"
+msgstr "@pass, @fail et @exception"
+msgid "No test(s) selected."
+msgstr "Aucun test sélectionné."
+msgid "Processing test @num of @max - %test."
+msgstr "Test en cours d'exécution @num de @max - %test."
+msgid "@name: @summary"
+msgstr "@name : @summary"
+msgid "Processed test @num of @max - %test."
+msgstr "Test exécuté @num de @max - %test."
+msgid "1 pass"
+msgid_plural "@count passes"
+msgstr[0] "@count réussi"
+msgstr[1] "@count réussis"
+msgid "1 fail"
+msgid_plural "@count fails"
+msgstr[0] "@count échoué"
+msgstr[1] "@count échoués"
+msgid "1 exception"
+msgid_plural "@count exceptions"
+msgstr[0] "@count exception"
+msgstr[1] "@count exceptions"
+msgid "PHP DOMDocument class"
+msgstr "Classe PHP DOMDocument"
+msgid "Main menu"
+msgstr "Menu principal"
+msgid "Hindi"
+msgstr "Hindou"
+msgid "User %name used one-time login link at time %timestamp."
+msgstr ""
+"L'utilisateur %name a utilisé un lien de connexion temporaire à "
+"%timestamp."
+msgid ""
+"Created a new user account for <a href=\"@url\">%name</a>. No e-mail "
+"has been sent."
+msgstr ""
+"Nouveau compte utilisateur créé pour <a href=\"@url\">%name</a>. "
+"Aucun e-mail n'a été envoyé."
+msgid "Registration successful. You are now logged in."
+msgstr "Enregistrement effectué. Vous êtes maintenant identifié."
+msgid "Uid"
+msgstr "Uid"
+msgid "Custom text"
+msgstr "Texte personnalisé"
+msgid "Sum"
+msgstr "Somme"
+msgid "sorted by"
+msgstr "trié par"
+msgid "Not Approved"
+msgstr "Non approuvé"
+msgid "Available actions"
+msgstr "Actions disponibles"
+msgid "Remove group"
+msgstr "Supprimer le groupe"
+msgid "The comment ID."
+msgstr "L'identifiant (ID) du commentaire."
+msgid "Add link"
+msgstr "Ajouter un lien"
+msgid "Numbered list"
+msgstr "Liste ordonnée"
+msgid "View comments"
+msgstr "Voir les commentaires"
+msgid "Username or e-mail address"
+msgstr "Nom d'utilisateur ou adresse électronique."
+msgid "%name: this field cannot hold more than @count values."
+msgstr "%name : ce champ ne peut pas contenir plus de @count valeurs."
+msgid "No fields available."
+msgstr "Aucun champ disponible."
+msgid "Content author"
+msgstr "Auteur du contenu"
+msgid "Vertical Tabs"
+msgstr "Vertical Tabs"
+msgid "Not in book"
+msgstr "Pas dans le livre"
+msgid "New book"
+msgstr "Nouveau livre"
+msgid "By @name on @date"
+msgstr "Par @name le @date"
+msgid "By @name"
+msgstr "Par @name"
+msgid "Not in menu"
+msgstr "Pas dans le menu"
+msgid "Alias: @alias"
+msgstr "Alias : @alias"
+msgid "No alias"
+msgstr "Aucun alias"
+msgid "Source language"
+msgstr "Langue d'origine"
+msgid "Initializing."
+msgstr "Initialisation."
+msgid "An error has occurred."
+msgstr "Une erreur s'est produite."
+msgid "Please continue to <a href=\"@error_url\">the error page</a>"
+msgstr "Veuillez continuer sur la <a href=\"@error_url\">page d'erreur</a>"
+msgid "Your page will be a part of the selected book."
+msgstr "Votre page fera une partie du livre sélectionné."
+msgid "Numeric"
+msgstr "Numérique"
+msgid "@label"
+msgstr "@label"
+msgid "Custom URL"
+msgstr "URL personnalisée"
+msgid "0 sec"
+msgstr "0 s"
+msgid "form"
+msgstr "formulaire"
+msgid "Submit button text"
+msgstr "Texte du bouton de soumission"
+msgid "Filter log messages"
+msgstr "Filtrer les messages du journal"
+msgid "You must select something to filter by."
+msgstr "Vous devez sélectionnez un critère de filtrage."
+msgid "New revision"
+msgstr "Nouvelle révision"
+msgid ""
+"To change the current user password, enter the new password in both "
+"fields."
+msgstr ""
+"Pour modifier le mot de passe actuel, saisissez le nouveau mot de "
+"passe dans les deux champs de texte."
+msgid ""
+"You have tried to use a one-time login link that has expired. Please "
+"request a new one using the form below."
+msgstr ""
+"Vous avez tenté d'utiliser un lien de connexion temporaire qui a "
+"expiré. Demandez-en un nouveau en utilisant le formulaire ci-dessous."
+msgid "This login can be used only once."
+msgstr "Cet identifiant ne peut être utilisé qu'une fois."
+msgid "Add comment link"
+msgstr "Ajouter un lien de commentaire"
+msgid "Strike-through"
+msgstr "Barré"
+msgid "Horizontal rule"
+msgstr "Règle horizontale"
+msgid "Paste Text"
+msgstr "Coller le Texte"
+msgid "Paste from Word"
+msgstr "Coller à partir de Word"
+msgid "Remove format"
+msgstr "Supprimer le formatage"
+msgid "Character map"
+msgstr "Table des caractères"
+msgid "HTML block format"
+msgstr "Format de bloc HTML"
+msgid "Font style"
+msgstr "Style de police"
+msgid "Abbreviation"
+msgstr "Abrévation"
+msgid "Inserted"
+msgstr "Inséré"
+msgid "Provide a password for the new account in both fields."
+msgstr "Saisissez un mot de passe pour le nouveau compte dans les deux champs."
+msgid "Ajax callback for view loading."
+msgstr "Procédure de rappel (callback) AJAX pour le chargement de la vue."
+msgid "Changes cannot be made to a locked view."
+msgstr "Aucun changement ne peut être effectué dans une vue verrouillée."
+msgid "Broken/missing handler"
+msgstr "Gestionnaire défectueux/manquant"
+msgid ""
+"The handler for this item is broken or missing and cannot be used. If "
+"a module provided the handler and was disabled, re-enabling the module "
+"may restore it. Otherwise, you should probably delete this item."
+msgstr ""
+"Le gestionnaire de cet élément est défectueux ou absent et ne peut "
+"donc pas être utilisé. Si un module fournissant ce gestionnaire a "
+"été désactivé, sa réactivation pourrait le restaurer. Si ce n'est "
+"pas le cas, il est conseillé de supprimer cet élément."
+msgid "Current date"
+msgstr "Date actuelle"
+msgid "Current node's creation time"
+msgstr "Date de création du nœud courant"
+msgid "Current node's update time"
+msgstr "Date de mise à jour du nœud courant"
+msgid "Do not display items with no value in summary"
+msgstr "Ne pas afficher les éléments sans valeur dans le résumé"
+msgid "Invalid input"
+msgstr "Saisie invalide"
+msgid "Fail basic validation if any argument is given"
+msgstr "Faire échouer la validation de base si un argument est fourni"
+msgid ""
+"By checking this field, you can use this to make sure views with more "
+"arguments than necessary fail validation."
+msgstr ""
+"En cochant cette case, vous pouvez utiliser ceci pour vérifier que la "
+"validation des vues présentant plus d'arguments que nécessaire "
+"échoue."
+msgid "Glossary mode"
+msgstr "Mode glossaire"
+msgid "Character limit"
+msgstr "Limite de caractères"
+msgid "No transform"
+msgstr "Aucune transformation"
+msgid "Upper case"
+msgstr "Majuscules"
+msgid "Lower case"
+msgstr "Minuscules"
+msgid "Capitalize each word"
+msgstr "Mettre chaque mot en majuscules"
+msgid "Case in path"
+msgstr "Casse dans les chemins"
+msgid "Transform spaces to dashes in URL"
+msgstr "Transformer les espaces en tirets dans les URL"
+msgid "Exclude from display"
+msgstr "Exclure de l'affichage"
+msgid ""
+"The text to display for this field. You may include HTML. You may "
+"enter data from this view as per the \"Replacement patterns\" below."
+msgstr ""
+"Texte à afficher pour ce champ. Vous pouvez utiliser du HTML. Vous "
+"pouvez entrer des données utilisées par cette vue à l'aide des "
+"jetons ci-dessous."
+msgid "Link path"
+msgstr "Chemin du lien"
+msgid ""
+"The Drupal path or absolute URL for this link. You may enter data from "
+"this view as per the \"Replacement patterns\" below."
+msgstr ""
+"Le chemin Drupal ou une URL absolue pour ce lien. Vous pouvez utilisez "
+"des données de cette vue avec les \"Motifs de remplacement\" "
+"ci-dessous."
+msgid "The CSS class to apply to the link."
+msgstr "La classe CSS à appliquer au lien."
+msgid "Prefix text"
+msgstr "Texte de préfixe"
+msgid "Any text to display before this link. You may include HTML."
+msgstr ""
+"N'importe quel texte à afficher avant ce lien. Vous pouvez utiliser "
+"du HTML."
+msgid "Suffix text"
+msgstr "Texte de suffixe"
+msgid "Any text to display after this link. You may include HTML."
+msgstr ""
+"N'importe quel texte à afficher après ce lien. Vous pouvez utiliser "
+"du HTML."
+msgid ""
+"<p>You must add some additional fields to this display before using "
+"this field. These fields may be marked as <em>Exclude from "
+"display</em> if you prefer. Note that due to rendering order, you "
+"cannot use fields that come after this field; if you need a field not "
+"listed here, rearrange your fields.</p>"
+msgstr ""
+"<p>Vous devez ajouter des champ additionnels avant d'utiliser ce "
+"champ. Ces champs peuvent être défini en <em>Ne pas afficher</em> si "
+"vous le souhaitez. Notez qu'à cause de l'ordre d'affichage, vous ne "
+"pouvez pas utiliser des champs qui viennent après celui-ci&nbsp;; si "
+"vous avez besoin d'un champ qui n'est pas listé ici, réarrangez vos "
+"champs.</p>"
+msgid "Trim only on a word boundary"
+msgstr "Couper sur une frontière de mot"
+msgid ""
+"If checked, this field be trimmed only on a word boundary. This is "
+"guaranteed to be the maximum characters stated or less. If there are "
+"no word boundaries this could trim a field to nothing."
+msgstr ""
+"Si coché, ce champ sera coupé sur un mot entier. Il est garanti que "
+"le maximum de caractères ou moins sera utilisé. S'il n'est pas "
+"possible de se limiter à un mot entier, alors le champ sera limité "
+"à un champ vide."
+msgid "Strip HTML tags"
+msgstr "Retirer les balises HTML"
+msgid "Field can contain HTML"
+msgstr "Le champ peut contenir du HTML"
+msgid "File size display"
+msgstr "Affichage de la taille de fichier"
+msgid "Formatted (in KB or MB)"
+msgstr "Formatée (en Ko ou Mo)"
+msgid "Raw bytes"
+msgstr "Octets bruts"
+msgid "If checked, true will be displayed as false."
+msgstr "Si cette option est cochée, Vrai apparaîtra comme Faux."
+msgid "Time ago (with \"ago\" appended)"
+msgstr "Temps relatif (avec \"il y a\" ajouté)"
+msgid "Time span (with \"ago/hence\" appended)"
+msgstr "Durée (avec \"il y a/dans\" ajouté)"
+msgid "Round"
+msgstr "Arrondi"
+msgid "If checked, the number will be rounded."
+msgstr "Si cette option est cochée, le nombre sera arrondi."
+msgid "Specify how many digits to print after the decimal point."
+msgstr ""
+"Précisez le nombre de chiffres à afficher après le marqueur "
+"décimal."
+msgid "What single character to use as a decimal point."
+msgstr "Caractère à utiliser comme marqueur décimal"
+msgid "What single character to use as the thousands separator."
+msgstr "Caractère à utiliser comme séparateur de milliers."
+msgid "Text to put before the number, such as currency symbol."
+msgstr ""
+"Texte à faire figurer avant le nombre, par exemple une unité "
+"monétaire."
+msgid "Text to put after the number, such as currency symbol."
+msgstr ""
+"Texte à faire figurer après le nombre, par exemple une unité "
+"monétaire."
+msgid "Simple separator"
+msgstr "Séparateur simple"
+msgid "Display as link"
+msgstr "Afficher comme lien"
+msgid "Operator identifier"
+msgstr "Identifiant de l'opérateur"
+msgid "This will appear in the URL after the ? to identify this operator."
+msgstr ""
+"Ceci apparaîtra dans l'URL après le point d'interrogation ? pour "
+"identifier cet opérateur."
+msgid "Filter identifier"
+msgstr "Identifiant du filtre"
+msgid ""
+"This will appear in the URL after the ? to identify this filter. "
+"Cannot be blank."
+msgstr ""
+"Ceci apparaîtra dans l'URL après le ? pour identifier ce filtre. Ne "
+"peut pas être vide."
+msgid ""
+"This exposed filter is optional and will have added options to allow "
+"it not to be set."
+msgstr ""
+"Ce filtre exposé est facultatif et proposera des options "
+"supplémentaires pour permettre de ne pas le paramétrer."
+msgid "Remember"
+msgstr "Mémoriser"
+msgid "Remember the last setting the user gave this filter."
+msgstr ""
+"Mémoriser le dernier paramétrage utilisé par l'utilisateur pour ce "
+"filtre."
+msgid "The identifier is required if the filter is exposed."
+msgstr "Cet identifiant est requis si le filtre est exposé."
+msgid "This identifier is not allowed."
+msgstr "Cet identifiant n'est pas autorisé."
+msgid "- Any -"
+msgstr "- Tout -"
+msgid "exposed"
+msgstr "exposé"
+msgid "Value type"
+msgstr "Type de valeur"
+msgid ""
+"A date in any machine readable format. CCYY-MM-DD HH:MM:SS is "
+"preferred."
+msgstr ""
+"Date dans n'importe quel format machine. AAAA-MM-JJ HH:MM:SS est "
+"préférable"
+msgid "Invalid date format."
+msgstr "Format de date invalide."
+msgid "Limit list to selected items"
+msgstr "Limiter la liste aux éléments sélectionnés"
+msgid ""
+"If checked, the only items presented to the user will be the ones "
+"selected here."
+msgstr ""
+"Si coché, les seuls éléments présentés à l'utilisateur seront "
+"ceux sélectionnés ici."
+msgid "not in"
+msgstr "pas dans"
+msgid "<>"
+msgstr "<>"
+msgid "Is all of"
+msgstr "Tout parmi"
+msgid "Is none of"
+msgstr "Aucun parmi"
+msgid "not"
+msgstr "pas"
+msgid "<"
+msgstr "<"
+msgid "<="
+msgstr "<="
+msgid ">="
+msgstr ">="
+msgid ">"
+msgstr ">"
+msgid "Is between"
+msgstr "Est compris entre"
+msgid "between"
+msgstr "entre"
+msgid "Is not between"
+msgstr "N'est pas compris entre"
+msgid "not between"
+msgstr "pas entre"
+msgid "Min"
+msgstr "Min"
+msgid "And max"
+msgstr "Et max"
+msgid "And"
+msgstr "Et"
+msgid "Contains any word"
+msgstr "Contient n'importe quel mot"
+msgid "has word"
+msgstr "contient le mot"
+msgid "Contains all words"
+msgstr "Contient tous les mots"
+msgid "has all"
+msgstr "contient tous"
+msgid "begins"
+msgstr "commence"
+msgid "ends"
+msgstr "finit"
+msgid "!has"
+msgstr "!has"
+msgid "Require this relationship"
+msgstr "Exiger cette relation"
+msgid "asc"
+msgstr "asc"
+msgid "desc"
+msgstr "desc"
+msgid ""
+"The granularity is the smallest unit to use when determining whether "
+"two dates are the same; for example, if the granularity is \"Year\" "
+"then all dates in 1999, regardless of when they fall in 1999, will be "
+"considered the same date."
+msgstr ""
+"La granularité est la plus petite unité à utiliser pour déterminer "
+"si deux dates sont identiques ; par exemple, si la granularité est "
+"\"Année\", toutes les dates de l'année 1999, indépendamment du mois "
+"et du jour, seront considérées comme identiques."
+msgid "Broken"
+msgstr "Brisé"
+msgid "Displays"
+msgstr "Affichages"
+msgid "These queries were run during view rendering:"
+msgstr ""
+"Ces requêtes ont été exécutées lors de l'affichage de la "
+"vue&nbsp;:"
+msgid "This display has no path."
+msgstr "Cet affichage n'a pas de chemin"
+msgid "Query build time"
+msgstr "Durée de construction de la requête"
+msgid "@time ms"
+msgstr "@time ms"
+msgid "Query execute time"
+msgstr "Durée d'exécution de la requête"
+msgid "View render time"
+msgstr "Durée de rendu de la vue"
+msgid "No query was run"
+msgstr "Aucune requête n'a été exécutée"
+msgid "Unable to preview due to validation errors."
+msgstr "Impossible de prévisualiser à cause d'erreurs de validation."
+msgid "View name"
+msgstr "Nom de la vue"
+msgid "View description"
+msgstr "Description de la vue"
+msgid ""
+"This description will appear on the Views administrative UI to tell "
+"you what the view is about."
+msgstr ""
+"Cette description apparaîtra dans l'interface utilisateur "
+"d'administration de Views pour vous indiquer l'objet de cette vue."
+msgid "View tag"
+msgstr "Étiquette de la vue"
+msgid "Break lock"
+msgstr "Faire sauter le verrou"
+msgid "The lock has been broken and you may now edit this view."
+msgstr "Le verrou a été cassé, vous pouvez maintenant modifier cette vue."
+msgid "Click on an item to edit that item's details."
+msgstr "Cliquez sur un élément pour modifier ses détails."
+msgid "Go to the real page for this display"
+msgstr "Aller à la vraie page de cet affichage"
+msgid "Invalid"
+msgstr "Invalide"
+msgid "Missing style plugin"
+msgstr "Plugin de style manquant"
+msgid "Change settings for this style"
+msgstr "Modifier les paramètres pour ce style"
+msgid "View analysis"
+msgstr "Analyse de la vue"
+msgid "Rearrange @type"
+msgstr "Réarranger @type"
+msgid "Broken field @id"
+msgstr "Champ @id brisé"
+msgid "There are no @types available to add."
+msgstr "Il n'y a aucun @types disponible à ajouter."
+msgid "Configure extra settings for @type %item"
+msgstr "Configurer des paramètres supplémentaires pour @type %item"
+msgid "Clear Views' cache"
+msgstr "Vider le cache de Views"
+msgid "Add Views signature to all SQL queries"
+msgstr "Ajouter la signature Views à toutes les requêtes SQL"
+msgid "Disable views data caching"
+msgstr "Désactiver la mise en cache des données Views"
+msgid ""
+"Views caches data about tables, modules and views available, to "
+"increase performance. By checking this box, Views will skip this cache "
+"and always rebuild this data when needed. This can have a serious "
+"performance impact on your site."
+msgstr ""
+"Views met en cache des données relatives aux tables, aux modules et "
+"aux vues disponibles afin d'améliorer les performances. En cochant "
+"cette case, vous obligez Views à sauter cette mise en cache et à "
+"reconstruire systématiquement la base de données dès que "
+"nécessaire. Cela peut avoir un impact important sur les performances "
+"de votre site."
+msgid "Show other queries run during render during live preview"
+msgstr ""
+"Afficher les autres requêtes exécutées pendant l'affichage de "
+"l'aperçu en temps réel"
+msgid ""
+"Drupal has the potential to run many queries while a view is being "
+"rendered. Checking this box will display every query run during view "
+"render as part of the live preview."
+msgstr ""
+"Drupal a la possibilité d'exécuter beaucoup de requêtes pendant "
+"qu'une vue est exécutée. Cocher cette case affichera toutes les "
+"requêtes exécutées lors de l'exécution de la vue en mode aperçu "
+"temps réel."
+msgid "View analysis can find nothing to report."
+msgstr "L'analyse de la vue n'a rien trouvé à signaler."
+msgid ""
+"This view has only a default display and therefore will not be placed "
+"anywhere on your site; perhaps you want to add a page or a block "
+"display."
+msgstr ""
+"Cette vue ne possède qu'un affichage par défaut et, par conséquent, "
+"n'apparaîtra nulle part sur votre site ; peut-être devrez-vous "
+"ajouter un affichage de page ou de bloc."
+msgid "Reduce duplicates"
+msgstr "Supprimer les doublons"
+msgid "Default settings for this view."
+msgstr "Paramètres par défaut pour cette vue."
+msgid "Display the view as a page, with a URL and menu links."
+msgstr "Afficher la vue en tant que page, avec une URL et des liens de menu."
+msgid "Display the view as a block."
+msgstr "Afficher la vue en tant que bloc."
+msgid ""
+"Attachments added to other displays to achieve multiple views in the "
+"same view."
+msgstr ""
+"Fichiers attachés à d'autres affichages pour parvenir à plusieurs "
+"vues à l'intérieur de la même vue."
+msgid "Display the view as a feed, such as an RSS feed."
+msgstr "Afficher la vue en tant que flux, par exemple un flux RSS."
+msgid "Displays rows one after another."
+msgstr "Afficher les lignes les unes après les autres."
+msgid "HTML List"
+msgstr "Liste HTML"
+msgid "Displays rows in a grid."
+msgstr "Affiche les lignes dans une grille."
+msgid "Displays rows in a table."
+msgstr "Afficher les lignes dans un tableau."
+msgid "Displays the default summary as a list."
+msgstr "Affiche le sommaire par défaut comme une liste."
+msgid ""
+"Displays the summary unformatted, with option for one after another or "
+"inline."
+msgstr ""
+"Affiche le sommaire sans mise en forme, les informations apparaissant, "
+"soit les unes après les autres, soit en ligne."
+msgid "Generates an RSS feed from a view."
+msgstr "Génère un flux RSS à partir d'une vue."
+msgid "Displays the fields with an optional template."
+msgstr "Affiche les champs avec un template facultatif."
+msgid "Will be available to all users."
+msgstr "Sera disponible pour l'ensemble des utilisateurs."
+msgid "Access will be granted to users with any of the specified roles."
+msgstr ""
+"L'accès sera accordé aux utilisateurs ayant n'importe lequel des "
+"rôles spécifiés."
+msgid "No caching of Views data."
+msgstr "Pas de mise en cache des données Views."
+msgid "Time-based"
+msgstr "En fonction du temps écoulé"
+msgid "Simple time-based caching of data."
+msgstr "Mise en cache simple en fonction du temps écoulé"
+msgid "sort criteria"
+msgstr "critères de tri"
+msgid "Sort criterion"
+msgstr "Critère de tri"
+msgid "sort criterion"
+msgstr "critère de tri"
+msgid "filter"
+msgstr "filtre"
+msgid "Aggregator items are imported from external RSS and Atom news feeds."
+msgstr ""
+"Les éléments d'agrégateur sont importés depuis des flux RSS et "
+"Atom externes."
+msgid "The title of the aggregator item."
+msgstr "Le titre de l'élément d'agrégateur."
+msgid "The link to the original source URL of the item."
+msgstr "Lien vers l'URL source de l'élément."
+msgid "The author of the original imported item."
+msgstr "Auteur de l'élément importé."
+msgid "The actual content of the imported item."
+msgstr "Le contenu de l'élément importé."
+msgid ""
+"The date the original feed item was posted. (With some feeds, this "
+"will be the date it was imported.)"
+msgstr ""
+"Date de la publication de l'élément du flux. (Dans certains cas, il "
+"peut s'agir de la date d'importation du flux.)"
+msgid "Feed ID"
+msgstr "Identifiant du flux"
+msgid "The unique ID of the aggregator feed."
+msgstr "L'identifiant unique du flux d'agrégateur."
+msgid "The title of the aggregator feed."
+msgstr "Le titre du flux d'agrégateur."
+msgid "The link to the source URL of the feed."
+msgstr "Le URL source du flux."
+msgid "The date the feed was last checked for new content."
+msgstr "La date à laquelle le flux a été vérifié pour la dernière fois."
+msgid "The description of the aggregator feed."
+msgstr "La description du flux d'agrégateur."
+msgid "The unique ID of the aggregator category."
+msgstr "L'identifiant unique de la catégorie d'agrégateur."
+msgid "The title of the aggregator category."
+msgstr "Le titre de la catégorie d'agrégateur."
+msgid "Display the aggregator item using the data from the original source."
+msgstr ""
+"Affiche l'élément d'agrégateur en utilisant les données de la "
+"source originale."
+msgid "The title of the comment."
+msgstr "Le titre du commentaire."
+msgid "The comment ID of the field"
+msgstr "L'identifiant du commentaire du champ"
+msgid ""
+"The name of the comment's author. Can be rendered as a link to the "
+"author's homepage."
+msgstr ""
+"Le nom de l'auteur du commentaire. Peut être affiché comme un lien "
+"vers la page d'accueil de l'utilisateur."
+msgid ""
+"The website address of the comment's author. Can be rendered as a "
+"link. Will be empty if the author is a registered user."
+msgstr ""
+"L'adresse du site web de l'auteur du commentaire. Peut être affiché "
+"comme un lien. Sera vide si l'auteur est un utilisateur enregistré."
+msgid "Post date"
+msgstr "Date de publication"
+msgid "Provide a simple link to view the comment."
+msgstr "Fournir un lien pour afficher le commentaire."
+msgid "Provide a simple link to edit the comment."
+msgstr "Fournir un lien pour modifier le commentaire."
+msgid "Provide a simple link to delete the comment."
+msgstr "Fournit un lien pour supprimer le commentaire."
+msgid "The User ID of the comment's author."
+msgstr "L'identifiant utilisateur de l'auteur du commentaire."
+msgid "Parent CID"
+msgstr "Identifiant du commentaire (CID) parent"
+msgid "The Comment ID of the parent comment."
+msgstr "L'identifiant (ID) du commentaire parent."
+msgid "Last comment time"
+msgstr "Heure du dernier commentaire"
+msgid "Date and time of when the last comment was posted."
+msgstr "Date et heure de publication du dernier commentaire."
+msgid "Last comment author"
+msgstr "Auteur du dernier commentaire"
+msgid "The name of the author of the last posted comment."
+msgstr "Le nom de l'auteur ayant rédigé le dernier commentaire."
+msgid "Comment count"
+msgstr "Nombre de commentaires"
+msgid "The number of comments a node has."
+msgstr "Le nombre de commentaires que présente un nœud."
+msgid "Updated/commented date"
+msgstr "Date de mise à jour/commentaire"
+msgid "The most recent of last comment posted or node updated time."
+msgstr ""
+"L'information la plus récente entre le dernier commentaire publié et "
+"la date de dernière mise à jour du nœud."
+msgid "The number of new comments on the node."
+msgstr "Le nombre de nouveaux commentaires au sein du nœud."
+msgid "Comment status"
+msgstr "Statut du commentaire"
+msgid "Whether comments are enabled or disabled on the node."
+msgstr ""
+"Indiquer si les commentaires sont activés ou désactivés sur le "
+"nœud."
+msgid "User posted or commented"
+msgstr "Publié ou commenté par l'utilisateur"
+msgid "Display nodes only if a user posted the node or commented on the node."
+msgstr ""
+"Affiche les nœuds seulement si l'utilisateur a créé le nœud ou "
+"commenté le nœud."
+msgid "Display the comment as RSS."
+msgstr "Afficher le commentaire en tant que RSS."
+msgid "The title of the node."
+msgstr "Titre du nœud."
+msgid "The date the node was posted."
+msgstr "Date de publication du nœud."
+msgid "Whether or not the node is published."
+msgstr "Si le nœud est publié."
+msgid "Created year + month"
+msgstr "Année + mois de création"
+msgid "Created year"
+msgstr "Année de création"
+msgid "Created month"
+msgstr "Mois de création"
+msgid "Created day"
+msgstr "Jour de création"
+msgid "Created week"
+msgstr "Semaine de création"
+msgid "Updated year + month"
+msgstr "Année et mois de mise à jour"
+msgid "Updated year"
+msgstr "Année de mise à jour"
+msgid "Updated month"
+msgstr "Mois de mise à jour"
+msgid "Updated day"
+msgstr "Jour de mise à jour"
+msgid "Updated week"
+msgstr "Semaine de mise à jour"
+msgid "Vid"
+msgstr "Vid"
+msgid "The log message entered when the revision was created."
+msgstr ""
+"Le message enregistré dans le journal à la création de la "
+"révision."
+msgid "Provide a simple link to revert to the revision."
+msgstr "Fournir un lien pour rétablir une révision antérieure."
+msgid "Filter by access."
+msgstr "Filtrer par accès."
+msgid "Has new content"
+msgstr "Présente des contenus nouveaux"
+msgid ""
+"Display %display has no access control but does not contain a filter "
+"for published nodes."
+msgstr ""
+"L'affichage @display ne présente aucun contrôle d'accès mais il ne "
+"contient pas de filtre pour les nœuds publiés."
+msgid "Total views"
+msgstr "Nombre total d'affichages"
+msgid "The total number of times the node has been viewed."
+msgstr "Le nombre total d'affichages du nœud."
+msgid "Views today"
+msgstr "Affichages aujourd'hui"
+msgid "The total number of times the node has been viewed today."
+msgstr "Le nombre total d'affichages du nœud aujourd'hui."
+msgid "Most recent view"
+msgstr "Dernier affichage"
+msgid "The most recent time the node has been viewed."
+msgstr "Date de dernier affichage du nœud."
+msgid "Files maintained by Drupal and various modules."
+msgstr "Fichiers maintenus par Drupal et différents modules."
+msgid "The ID of the file."
+msgstr "Identifiant du fichier."
+msgid "The name of the file."
+msgstr "Le nom du fichier."
+msgid "The path of the file."
+msgstr "Le chemin du fichier."
+msgid "The mime type of the file."
+msgstr "Le type MIME du fichier."
+msgid "The status of the file."
+msgstr "Le statut du fichier."
+msgid "The date the file was uploaded."
+msgstr "La date de transfert du fichier."
+msgid "Taxonomy terms are attached to nodes."
+msgstr "Les termes de taxonomie sont rattachés aux nœuds."
+msgid "Taxonomy term name."
+msgstr "Nom du terme de taxonomie."
+msgid "The term weight field"
+msgstr "Champ du poids du terme"
+msgid "The description associated with a taxonomy term."
+msgstr "La description associée à un terme de classification."
+msgid "Filter the results of \"Taxonomy: Term\" to a particular vocabulary."
+msgstr ""
+"Filtrer les résultats de \"Taxonomie : Terme\" dans un vocabulaire "
+"spécifique."
+msgid ""
+"Display all taxonomy terms associated with a node from specified "
+"vocabularies."
+msgstr ""
+"Afficher tous les termes de taxonomie associés à un nœud depuis les "
+"vocabulaires spécifiés."
+msgid ""
+"The parent term of the term. This can produce duplicate entries if you "
+"are using a vocabulary that allows multiple parents."
+msgstr ""
+"Le terme parent du terme. Ceci peut produire des doublons si vous "
+"utilisez un vocabulaire qui autorise plusieurs parents."
+msgid "The parent term of the term."
+msgstr "Le terme parent du terme."
+msgid "The user ID"
+msgstr "Identifiant (ID) de l'utilisateur"
+msgid "The user or author name."
+msgstr "Le nom de l'utilisateur ou de l'auteur."
+msgid "Language of the user"
+msgstr "Langue de l'utilisateur"
+msgid "The date the user was created."
+msgstr "Date de création de l'utilisateur."
+msgid "The user's last access date."
+msgstr "La date de dernier accès de l'utilisateur."
+msgid "The user's last login date."
+msgstr "La date de dernière connexion de l'utilisateur."
+msgid "Whether a user is active or blocked."
+msgstr "Indique si un utilisateur est actif ou bloqué."
+msgid "The user's signature."
+msgstr "La signature de l'utilisateur."
+msgid "Provide a simple link to edit the user."
+msgstr "Fournir un lien pour modifier l'utilisateur."
+msgid "Roles that a user belongs to."
+msgstr "Rôles auxquels appartient un utilisateur."
+msgid "User ID from URL"
+msgstr "Identifiant (ID) utilisateur à partir de l'URL"
+msgid "User ID from logged in user"
+msgstr "Identifiant (ID) utilisateur de l'utilisateur connecté"
+msgid "Randomize the display order."
+msgstr "Rendre l'ordre d'affichage aléatoire."
+msgid "Null"
+msgstr "Vide"
+msgid "Provide custom text or link."
+msgstr "Fournir un texte personnalisé ou un lien."
+msgid "View result counter"
+msgstr "Voir le compteur de résultats"
+msgid "Displays the actual position of the view result"
+msgstr "Afficher la position actuelle du résultat de la vue"
+msgid "Link this field to its aggregator category page"
+msgstr "Lier ce champ à sa page de catégorie d'agrégateur"
+msgid "No user"
+msgstr "Aucun utilisateur"
+msgid "Link this field to its comment"
+msgstr "Lier ce champ à son commentaire"
+msgid "Show teaser-style link"
+msgstr "Afficher un lien résumé"
+msgid "Link this field to new comments"
+msgstr "Lier ce champ aux nouveaux commentaires"
+msgid "contact"
+msgstr "contact"
+msgid "Unknown language"
+msgstr "Langue inconnue"
+msgid "Current user's language"
+msgstr "Langue de l'utilisateur actuel"
+msgid "Default site language"
+msgstr "Langue par défaut du site"
+msgid "Check for new comments as well"
+msgstr "Vérifier aussi la présence de nouveaux commentaires"
+msgid "Node IDs separated by , or +"
+msgstr "Identifiants des nœuds séparés par des virgules ou des +"
+msgid "No alternate"
+msgstr "Pas d'alternance"
+msgid "Alternative sort"
+msgstr "Tri alternatif"
+msgid "Alternate sort order"
+msgstr "Alterner l'ordre du tri"
+msgid "On empty input"
+msgstr "En cas de saisie vide"
+msgid "Show None"
+msgstr "Montrer aucun"
+msgid ""
+"Search for either of the two terms with uppercase <strong>OR</strong>. "
+"For example, <strong>cats OR dogs</strong>."
+msgstr ""
+"Cherche l'un ou l'autre termes avec <strong>OR</strong> en majuscule. "
+"Par exemple : <strong>chats OR chiens</strong>."
+msgid "Display score"
+msgstr "Afficher le score"
+msgid "Link this field to download the file"
+msgstr "Liez ce champ pour télécharger le fichier"
+msgid "Set the breadcrumb for the term parents"
+msgstr "Faire apparaître les parents du terme dans le fil d'Ariane"
+msgid ""
+"If selected, the breadcrumb trail will include all parent terms, each "
+"one linking to this view. Note that this only works if just one term "
+"was received."
+msgstr ""
+"Si cette option est sélectionnée, le fil d'Ariane inclura tous les "
+"termes parents, chacun comportant un lien vers cette vue. Notez que "
+"cela fonctionne uniquement si un seul terme a été reçu."
+msgid ""
+"The depth will match nodes tagged with terms in the hierarchy. For "
+"example, if you have the term \"fruit\" and a child term \"apple\", "
+"with a depth of 1 (or higher) then filtering for the term \"fruit\" "
+"will get nodes that are tagged with \"apple\" as well as \"fruit\". If "
+"negative, the reverse is true; searching for \"apple\" will also pick "
+"up nodes tagged with \"fruit\" if depth is -1 (or lower)."
+msgstr ""
+"La profondeur assurera la correspondance avec les nœuds étiquetés "
+"par des termes de la hiérarchie. Si, par exemple, vous avez le terme "
+"\"fruit\" et le terme enfant \"pomme\", avec une profondeur de 1 ou "
+"plus, alors un filtrage sur le terme \"fruit\" renverra des nœuds "
+"étiquetés par \"pomme\" aussi bien que par \"fruit\". Si la "
+"profondeur est négative, l'inverse est également vrai : rechercher "
+"\"pomme\" avec une profondeur de -1 (ou moins) renverra également les "
+"nœuds étiquetés par \"fruit\"."
+msgid "No vocabulary"
+msgstr "Aucun vocabulaire"
+msgid "Link this field to its taxonomy term page"
+msgstr "Lier ce champ vers la page de terme de classification correspondante"
+msgid "Link this field to its term page"
+msgstr "Lier ce champ vers la page de terme correspondante"
+msgid "Limit terms by vocabulary"
+msgstr "Limiter les termes par vocabulaire"
+msgid "Select which vocabulary to show terms for in the regular options."
+msgstr ""
+"Sélectionnez le vocabulaire pour lequel montrer les termes dans les "
+"options normales."
+msgid "Dropdown"
+msgstr "Liste déroulante"
+msgid "Show hierarchy in dropdown"
+msgstr "Montrer la hiérarchie dans la liste déroulante"
+msgid "An invalid vocabulary is selected. Please change it in the options."
+msgstr ""
+"Un vocabulaire invalide a été sélectionné. Merci de le modifier "
+"dans les options."
+msgid "Select terms from vocabulary @voc"
+msgstr "Sélectionner les termes dans le vocabulaire @voc"
+msgid "Select terms"
+msgstr "Sélectionner les termes"
+msgid "Unable to find term: @terms"
+msgid_plural "Unable to find terms: @terms"
+msgstr[0] "Impossible de trouver le terme @terms"
+msgstr[1] "Impossible de trouver les termes @terms"
+msgid ""
+"If you wish to validate for specific vocabularies, check them; if none "
+"are checked, all terms will pass."
+msgstr ""
+"Si vous souhaitez valider des vocabulaires spécifiques, cochez "
+"les&nbsp;; si aucun n'est coché, tous les termes passeront la "
+"validation."
+msgid "Term IDs separated by , or +"
+msgstr "Identifiants de termes, séparés par des virgules ou des +"
+msgid "To the user"
+msgstr "Vers l'utilisateur"
+msgid "With a mailto:"
+msgstr "Avec un mailto:"
+msgid "Is the logged in user"
+msgstr "Est l'utilisateur connecté"
+msgid "Usernames"
+msgstr "Noms d'utilisateurs"
+msgid "Enter a comma separated list of user names."
+msgstr "Saisissez une liste de noms d'utilisateurs séparés par des virgules."
+msgid "Unable to find user: @users"
+msgid_plural "Unable to find users: @users"
+msgstr[0] "Impossible de trouver l'utilisateur @users"
+msgstr[1] "Impossible de trouver les utilisateurs @users"
+msgid "Also look for a node and use the node author"
+msgstr "Rechercher aussi un nœud et utiliser l'auteur du nœud"
+msgid "Only allow numeric UIDs"
+msgstr "N'autoriser que les UID numériques"
+msgid "Only allow string usernames"
+msgstr "N'autorise que les chaînes de noms d'utilisateur"
+msgid "Allow both numeric UIDs and string usernames"
+msgstr "Autoriser à la fois les UIDs numériques et les noms d'utilisateurs"
+msgid "Restrict user based on role"
+msgstr "Restreindre l'utilisateur en se basant sur le rôle"
+msgid "Restrict to the selected roles"
+msgstr "Restreindre aux rôles sélectionnés"
+msgid "If no roles are selected, users from any role will be allowed."
+msgstr ""
+"Si aucun rôle n'est sélectionné, les utilisateurs de n'importe quel "
+"rôle seront autorisés."
+msgid "Unrestricted"
+msgstr "Libre"
+msgid ""
+"Only users with the selected permission flag will be able to access "
+"this display. Note that users with \"access all views\" can see any "
+"view, regardless of other permissions."
+msgstr ""
+"Seuls les utilisateurs disposant du droit d'accès approprié pourront "
+"accéder à cet affichage. Notez que les utilisateurs disposant des "
+"droits \"accéder à toutes les vues\" pourront consulter toutes les "
+"vues, indépendamment des autres droits."
+msgid "No role(s) selected"
+msgstr "Pas de rôle(s) sélectionné(s)"
+msgid "Multiple roles"
+msgstr "Rôles multiples"
+msgid ""
+"Only the checked roles will be able to access this display. Note that "
+"users with \"access all views\" can see any view, regardless of role."
+msgstr ""
+"Seuls les rôles cochés seront en mesure d'accéder à cet affichage. "
+"Notez que les utilisateurs disposant des droits \"accéder à toutes "
+"les vues\" pourront consulter toutes les vues, quel que soit leur "
+"rôle."
+msgid "You must select at least one role if type is \"by role\""
+msgstr ""
+"Vous devez sélectionner au moins un rôle si le type est \"par "
+"rôle\""
+msgid "PHP validate code"
+msgstr "Code de validation PHP"
+msgid "Never cache"
+msgstr "Ne jamais mettre en cache"
+msgid "Query results"
+msgstr "Résultats de requête"
+msgid "The length of time raw query results should be cached."
+msgstr ""
+"La durée pendant laquelle les résultats bruts de la requête "
+"devraient être mis en cache."
+msgid "Rendered output"
+msgstr "Rendu de l'affichage"
+msgid "The length of time rendered HTML output should be cached."
+msgstr ""
+"La durée pendant laquelle le HTML généré devrait être mis en "
+"cache."
+msgid "Broken field"
+msgstr "Champ brisé"
+msgid "Change the title that this display will use."
+msgstr "Changer le titre que cet affichage utilisera."
+msgid "Use AJAX"
+msgstr "Utiliser AJAX"
+msgid "Change whether or not this display will use AJAX."
+msgstr "Modifier si cet affichage utilisera ou non AJAX."
+msgid "Mini"
+msgstr "Mini"
+msgid "Change this display's pager setting."
+msgstr "Modifier les paramètres de pagination de cet affichage."
+msgid "Items per page"
+msgstr "Éléments par page"
+msgid "Specify whether this display will provide a \"more\" link."
+msgstr "Spécifie si cet affichage proposera un lien \"plus\"."
+msgid "Specify access control type for this display."
+msgstr "Spécifiez le type de contrôle d'accès pour cet affichage."
+msgid "Change settings for this access type."
+msgstr "Changer les paramètres pour ce type d'accès."
+msgid "Specify caching type for this display."
+msgstr "Spécifiez le type de mise en cache pour cet affichage."
+msgid "Change settings for this caching type."
+msgstr "Changer les paramètres pour ce type de mise à jour."
+msgid "Link display"
+msgstr "Affichage de lien"
+msgid "Exposed form in block"
+msgstr "Formulaire exposé dans un bloc"
+msgid "Allow the exposed form to appear in a block instead of the view."
+msgstr ""
+"Permet au formulaire exposé d'apparaître dans un block au lieu de la "
+"vue."
+msgid "Get information on how to theme this display"
+msgstr ""
+"Obtenir des informations sur comment créer un thème pour cet "
+"affichage"
+msgid "The title of this view"
+msgstr "le titre de cette vue"
+msgid ""
+"This title will be displayed with the view, wherever titles are "
+"normally displayed; i.e, as the page title, block title, etc."
+msgstr ""
+"Ce titre sera affiché avec la vue, partout où des titres sont "
+"normalement affichés (par exemple titre de page, titre de bloc, "
+"etc.)."
+msgid "Use AJAX when available to load this view"
+msgstr "Utiliser AJAX lorsque c'est possible pour charger cette vue"
+msgid ""
+"Unless you're experiencing problems with pagers related to this view, "
+"you should leave this at 0. If using multiple pagers on one page you "
+"may need to set this number to a higher value so as not to conflict "
+"within the ?page= array. Large values will add a lot of commas to your "
+"URLs, so avoid if possible."
+msgstr ""
+"À moins que vous ne rencontriez des difficultés avec la pagination "
+"associée à cette vue, vous devriez laisser cette option à 0. Si "
+"vous utilisez plusieurs paginations sur une page, vous pouvez être "
+"amené à choisir une valeur plus élevée pour ce nombre afin "
+"d'éviter tout conflit avec ?page=array. Les grandes valeurs "
+"ajouteront un grand nombre de virgules à vos URL et sont donc à "
+"éviter autant que possible."
+msgid "The number of items to display per page. Enter 0 for no limit."
+msgstr ""
+"Nombre d'éléments à afficher par page. Choisissez 0 pour un nombre "
+"illimité."
+msgid "Add a more link to the bottom of the display."
+msgstr "Ajouter un lien \"plus\" en bas de l'affichage."
+msgid "Create more link"
+msgstr "Créer un lien \"plus\""
+msgid "The text to display for the more link."
+msgstr "Le texte à afficher pour le lien \"plus\"."
+msgid ""
+"This will make the view display only distinct items. If there are "
+"multiple identical items, each will be displayed only once. You can "
+"use this to try and remove duplicates from a view, though it does not "
+"always work. Note that this can slow queries down, so use it with "
+"caution."
+msgstr ""
+"Ceci contraint la vue à ne présenter que des éléments distincts. "
+"S'il existe plusieurs éléments identiques, chacun n'apparaîtra "
+"qu'une seule fois. Vous pouvez utiliser cette option pour essayer de "
+"supprimer les doublons d'une vue, bien que cela ne fonctionne pas "
+"toujours. Notez que cela peut ralentir les requêtes, c'est donc une "
+"option à utiliser avec précautions."
+msgid "Access restrictions"
+msgstr "Restrictions d'accès"
+msgid "Access options"
+msgstr "Options d'accès"
+msgid "Caching options"
+msgstr "Options de mise en cache"
+msgid "Display even if view has no result"
+msgstr "Afficher même si la vue n'a pas de résultat"
+msgid "How should this view be styled"
+msgstr "Quel style appliquer à cette vue"
+msgid ""
+"If the style you choose has settings, be sure to click the settings "
+"button that will appear next to it in the View summary."
+msgstr ""
+"Si le style de votre choix possède des paramètres, veillez à "
+"cliquer sur le bouton de paramétrage qui apparaîtra à côté dans "
+"le résumé de la vue."
+msgid "Style options"
+msgstr "Options de style"
+msgid "Row style options"
+msgstr "Options de style de ligne"
+msgid "How should each row in this view be styled"
+msgstr "Quel style appliquer aux lignes de cette vue"
+msgid "Which display to use for path"
+msgstr "Affichage à utiliser pour le chemin"
+msgid ""
+"Which display to use to get this display's path for things like "
+"summary links, rss feed links, more links, etc."
+msgstr ""
+"Quel affichage utiliser pour obtenir le chemin de cet affichage pour "
+"des éléments du type liens de résumé, liens de flux RSS, liens "
+"\"plus\", etc."
+msgid "Display output"
+msgstr "Sortie de l'affichage"
+msgid "Style output"
+msgstr "Sortie du style"
+msgid "Row style output"
+msgstr "Sortie du style de ligne"
+msgid "Field @field (ID: @id)"
+msgstr "Champ @field (ID: @id)"
+msgid ""
+"This section lists all possible templates for the display plugin and "
+"for the style plugins, ordered roughly from the least specific to the "
+"most specific. The active template for each plugin -- which is the "
+"most specific template found on the system -- is highlighted in bold."
+msgstr ""
+"Cette section liste tous les gabarits possibles pour l'affichage et "
+"les plugins de style, triés approximativement du moins spécifique au "
+"plus spécifique. Le gabarit actif pour chaque plugin — qui est le "
+"gabarit le plus spécifique trouvé dans le système — est mis en "
+"gras."
+msgid "Change theme"
+msgstr "Changer le thème"
+msgid "Rescan template files"
+msgstr "Re-scanner les fichiers de template"
+msgid ""
+"<strong>Important!</strong> When adding, removing, or renaming "
+"template files, it is necessary to make Drupal aware of the changes by "
+"making it rescan the files on your system. By clicking this button you "
+"clear Drupal's theme registry and thereby trigger this rescanning "
+"process. The highlighted templates above will then reflect the new "
+"state of your system."
+msgstr ""
+"<strong>Important !<strong> Lors de l'ajout, de la suppression ou du "
+"renommage de fichiers de gabarit, il est nécessaire d'indiquer à "
+"Drupal vos changement en ré-analysant les fichiers de votre système. "
+"En cliquant sur ce bouton, vous videz le cache du registre de thème "
+"de Drupal et ainsi déclenchez le processus d'analyse. Les gabarits "
+"mis en gras refléteront le nouvel état du système."
+msgid "Theming information (display)"
+msgstr "Informations de thème (affichage)"
+msgid "Back to !info."
+msgstr "Revenir à !info."
+msgid "theming information"
+msgstr "informations de thème"
+msgid "This display has no theming information"
+msgstr "Cet affichage n'a aucune information de thème"
+msgid "This is the default theme template used for this display."
+msgstr ""
+"Ceci est le template de thème par défaut utilisé pour cet "
+"affichage."
+msgid "Theming information (style)"
+msgstr "Informations de thème (style)"
+msgid "This display has no style theming information"
+msgstr "Cet affichage n'a aucune information de thème de style"
+msgid "This is the default theme template used for this style."
+msgstr "Ceci est le template de thème par défaut utilisé pour ce style."
+msgid "Theming information (row style)"
+msgstr "Informations de thème (style de ligne)"
+msgid "This display has no row style theming information"
+msgstr "Cet affichage n'a aucune information de thème de style de ligne"
+msgid "This is the default theme template used for this row style."
+msgstr ""
+"Ceci est le template de thème par défaut utilisé pour ce style de "
+"ligne."
+msgid "Put the exposed form in a block"
+msgstr "Mettre le formulaire exposé dans un bloc"
+msgid ""
+"If set, any exposed widgets will not appear with this view. Instead, a "
+"block will be made available to the Drupal block administration "
+"system, and the exposed form will appear there. Note that this block "
+"must be enabled manually, Views will not enable it for you."
+msgstr ""
+"Si défini, tous les widgets exposés n'apparaitront pas avec cette "
+"vue. A la place, un bloc sera disponible dans le système "
+"d'administration des blocs de Drupal, et les formulaire exposé "
+"apparaitra dans celui-ci. Notez que ce bloc doit être activé "
+"manuellement, Views ne l'activera pas pour vous."
+msgid "File found in folder @template-path"
+msgstr "fichier trouvé dans le dossier @template-path"
+msgid "(File not found, in folder @template-path)"
+msgstr "(Fichier non trouvé dans le dossier @template-path)"
+msgid ""
+"Display \"@display\" uses fields but there are none defined for it or "
+"all are excluded."
+msgstr ""
+"L'affichage \"@display\" utilise des champs, mais il n'y en a pas de "
+"défini pour lui ou ils sont tous exclus."
+msgid "Display \"@display\" uses a path but the path is undefined."
+msgstr ""
+"L'affichage \"@display\" utilise un chemin mais le chemin n'est pas "
+"défini."
+msgid "Display \"@display\" has an invalid style plugin."
+msgstr "L'affichage \"@display\" a un plugin de style invalide."
+msgid "Exposed form: @view-@display_id"
+msgstr "Formulaire exposé : @view-@display_id"
+msgid "Attachment settings"
+msgstr "Paramètres de fichiers attachés"
+msgid "Inherit exposed filters"
+msgstr "Hériter les filtres exposés"
+msgid "Multiple displays"
+msgstr "Affichages multiples"
+msgid ""
+"Should this display inherit its exposed filter values from the parent "
+"display to which it is attached?"
+msgstr ""
+"Cet affichage doit-il hériter des valeurs des filtres exposés "
+"provenant de l'affichage parent auquel il est attaché ?"
+msgid "Attach before or after the parent display?"
+msgstr "Attacher avant ou après l'affichage parent ?"
+msgid "Select which display or displays this should attach to."
+msgstr "Sélectionnez à quel(s) affichage(s) ceci doit s'attacher."
+msgid "Block admin description"
+msgstr "Description pour l'administration des blocs"
+msgid "Block caching type"
+msgstr "Type de mise en cache des blocs"
+msgid ""
+"This sets the default status for Drupal's built-in block caching "
+"method; this requires that caching be turned on in block "
+"administration, and be careful because you have little control over "
+"when this cache is flushed."
+msgstr ""
+"Ceci positionne l'état par défaut pour la méthode de mise en cache "
+"de blocs intégrée à Drupal. Ceci nécessite d'activer la mise en "
+"cache dans l'administration des blocs. Attention car vous n'avez que "
+"très peu de contrôle sur la fréquence de vidage du cache."
+msgid "Using the site name"
+msgstr "Utilise le nom du site"
+msgid "Use the site name for the title"
+msgstr "Utiliser le nom du site comme titre"
+msgid "The feed icon will be available only to the selected displays."
+msgstr ""
+"L'icône du flux ne sera disponible que pour les affichages "
+"sélectionnés."
+msgid "No menu"
+msgstr "Pas de menu"
+msgid "Normal: @title"
+msgstr "Normal : @title"
+msgid "Tab: @title"
+msgstr "Onglet : @title"
+msgid "Change settings for the parent menu"
+msgstr "Changer les paramètres pour le menu parent"
+msgid "The menu path or URL of this view"
+msgstr "Le chemin ou l'URL de menu pour cette vue"
+msgid "Menu item entry"
+msgstr "Entrée d'élément de menu"
+msgid "No menu entry"
+msgstr "Aucune entrée de menu"
+msgid "Normal menu entry"
+msgstr "Entrée de menu normale"
+msgid "Menu tab"
+msgstr "Onglet de menu"
+msgid "Default menu tab"
+msgstr "Onglet de menu par défaut"
+msgid "Insert item into an available menu."
+msgstr "Insérer l'élément dans un menu disponible."
+msgid "Menu selection requires the activation of menu module."
+msgstr "La sélection du menu requiert l'activation du module menu."
+msgid "Default tab options"
+msgstr "Options d'onglet par défaut"
+msgid ""
+"When providing a menu item as a tab, Drupal needs to know what the "
+"parent menu item of that tab will be. Sometimes the parent will "
+"already exist, but other times you will need to have one created. The "
+"path of a parent item will always be the same path with the last part "
+"left off. i.e, if the path to this view is <em>foo/bar/baz</em>, the "
+"parent path would be <em>foo/bar</em>."
+msgstr ""
+"Lorsque l'on fournit un élément de menu en tant qu'onglet, Drupal a "
+"besoin de savoir quel sera l'élément de menu parent de cet onglet. "
+"Parfois le parent existe déjà, mais vous pouvez également être "
+"amené à en créer un. Le chemin d'un élément parent sera toujours "
+"le même chemin, dont la dernière partie est supprimée. Par exemple, "
+"si le chemin vers cette vue est <em>foo/bar/baz</em>, le chemin parent "
+"sera alors <em>foo/bar</em>."
+msgid "Already exists"
+msgstr "Existe déjà"
+msgid "If creating a parent menu item, enter the title of the item."
+msgstr ""
+"Si vous créez un élément de menu parent, saisissez le titre de "
+"l'élément."
+msgid "If creating a parent menu item, enter the description of the item."
+msgstr ""
+"Si création d'un élément de menu parent, entrez la description de "
+"l'élément."
+msgid "\"%\" may not be used for the first segment of a path."
+msgstr "\"%\" ne peut pas être utilisé comme premier segment d'un chemin."
+msgid "Views cannot create normal menu items for paths with a % in them."
+msgstr ""
+"Views ne peut pas créer d'élément de menu normal pour les chemins "
+"comportant un %."
+msgid "A display whose path ends with a % cannot be a tab."
+msgstr ""
+"Un affichage dont le chemin se termine par un % ne peut être un "
+"onglet."
+msgid "Title is required for this menu type."
+msgstr "Le titre est obligatoire pour ce type de menu."
+msgid "Inline fields"
+msgstr "Champs en ligne"
+msgid ""
+"The separator may be placed between inline fields to keep them from "
+"squishing up next to each other. You can use HTML in this field."
+msgstr ""
+"Le séparateur peut être placé entre les champs en ligne pour "
+"éviter qu'ils ne s'entassent les uns sur les autres. Vous pouvez "
+"utiliser du HTML pour ce champ."
+msgid ""
+"You may optionally specify a field by which to group the records. "
+"Leave blank to not group."
+msgstr ""
+"Vous pouvez spécifier un champ en option par lequel grouper les "
+"résultats. Laisser vide pour ne pas grouper."
+msgid "Style @style requires a row style but the row plugin is invalid."
+msgstr ""
+"Le style @style nécessite un style de ligne mais le plugin de ligne "
+"est invalide."
+msgid ""
+"Horizontal alignment will place items starting in the upper left and "
+"moving right. Vertical alignment will place items starting in the "
+"upper left and moving down."
+msgstr ""
+"L'alignement horizontal place les éléments depuis le coin supérieur "
+"gauche et en allant vers la droite. L'alignement vertical positionne "
+"les éléments depuis le coin supérieur gauche et en allant vers le "
+"bas."
+msgid "RSS description"
+msgstr "Description RSS"
+msgid "This will appear in the RSS feed itself."
+msgstr "Ceci apparaîtra dans le flux RSS lui-même."
+msgid "Display record count with link"
+msgstr "Afficher le décompte d'enregistrements avec lien"
+msgid "Override number of items to display"
+msgstr "Supplanter le nombre d'éléments à afficher"
+msgid "Display items inline"
+msgstr "Afficher les éléments en ligne"
+msgid ""
+"You need at least one field before you can configure your table "
+"settings"
+msgstr ""
+"Vous avez besoin d'au moins un champ avant de pouvoir configurer vos "
+"paramètres de tableau"
+msgid "Override normal sorting if click sorting is used"
+msgstr "Supplanter le tri normal si le tri par clic est utilisé"
+msgid "Enable Drupal style \"sticky\" table headers (Javascript)"
+msgstr "Activer les entêtes de tableau \"collants\" de Drupal (JavaScript)"
+msgid ""
+"(Sticky header effects will not be active for preview below, only on "
+"live output.)"
+msgstr ""
+"(Les effets d'entêtes collants ne seront pas actifs pour la "
+"prévisualisation ci-dessous, uniquement pour une sortie réelle)."
+msgid ""
+"Place fields into columns; you may combine multiple fields into the "
+"same column. If you do, the separator in the column specified will be "
+"used to separate the fields. Check the sortable box to make that "
+"column click sortable, and check the default sort radio to determine "
+"which column will be sorted by default, if any. You may control column "
+"order and field labels in the fields section."
+msgstr ""
+"Placez les champ dans les colonnes ; vous pouvez combiner plusieurs "
+"champs dans la même colonne. Dans ce cas, le séparateur de la "
+"colonne spécifiée sera utilisé pour séparer les champs. Cochez la "
+"case Classable pour rendre cette colonne classable par clic et, le cas "
+"échéant, cochez le bouton radio de tri par défaut pour déterminer "
+"la colonne de tri par défaut. Vous pouvez contrôler l'ordre des "
+"colonnes et les étiquettes des champs dans la section Champs."
+msgid ""
+"This view is being edited by user !user, and is therefore locked from "
+"editing by others. This lock is !age old. Click here to <a "
+"href=\"!break\">break this lock</a>."
+msgstr ""
+"Cette vue est en train d'être éditée par l'utilisateur !user, et "
+"est par conséquent verrouillée pour les autres utilisateurs. Ce "
+"verrou est vieux de !age. Cliquez ici pour <a href=\"!break\">casser "
+"ce verrou</a>."
+msgid "‹‹"
+msgstr "‹‹"
+msgid "››"
+msgstr "››"
+msgid "Administration menu"
+msgstr "Menu d'administration"
+msgid "Placeholder"
+msgstr "Placeholder"
+msgid "Language settings"
+msgstr "Paramètres de langue"
+msgid "Attempting to re-run cron while it is already running."
+msgstr ""
+"Tentative de relance du planificateur de tâche (Cron) alors qu'il "
+"fonctionne déjà."
+msgid "Cron run completed."
+msgstr "Exécution du planificateur de tâche (Cron) réussie."
+msgid "- All -"
+msgstr "- Tout -"
+msgid "Visitors"
+msgstr "Visiteurs"
+msgid "Allow multiple values"
+msgstr "Autoriser plusieurs valeurs"
+msgid ""
+"Sorry, unrecognized username or password. Have you forgotten your "
+"password?"
+msgstr ""
+"Désolé, nom d'utilisateur et mot de passe non reconnus. Avez-vous "
+"oublié votre mot de passe ?"
+msgid "The maximum length of the field in characters."
+msgstr "La longueur maximale du champ en nombre de caractères."
+msgid "Machine-readable name"
+msgstr "Nom système"
+msgid "Update translations"
+msgstr "Mettre à jour les traductions"
+msgid "Publishing status"
+msgstr "Statut de publication"
+msgid "Who's new"
+msgstr "Nouveaux membres"
+msgid "Language name"
+msgstr "Nom de la langue"
+msgid "Edit language"
+msgstr "Modifier la langue"
+msgid "Add translation"
+msgstr "Ajouter une traduction"
+msgid "Filter criteria"
+msgstr "Critères de filtrage"
+msgid "Edit category"
+msgstr "Modifier la catégorie"
+msgid "The content type %name has been updated."
+msgstr "Le type de contenu %name a été mis à jour."
+msgid "The content type %name has been added."
+msgstr "Le type de contenu %name a été ajouté."
+msgid "Catalan"
+msgstr "Catalan"
+msgid "Drag to re-order"
+msgstr "Cliquer-déposer pour ré-organiser"
+msgid ""
+"Changes made in this table will not be saved until the form is "
+"submitted."
+msgstr ""
+"Les changements effectués dans ce tableau ne seront pris en compte "
+"que lorsque la configuration aura été enregistrée."
+msgid "Blue Lagoon (default)"
+msgstr "Bleu lagon (par défaut)"
+msgid "The requested page could not be found."
+msgstr "La page demandée n'a pas pu être trouvée."
+msgid "Standard deviation"
+msgstr "Déviation standard"
+msgid "The user account %id does not exist."
+msgstr "Le compte utilisateur %id n'existe pas."
+msgid "Attempted to cancel non-existing user account: %id."
+msgstr "Essaie d'annuler un compte utilisateur inexistant: %id."
+msgid "Requirements problem"
+msgstr "Pré-requis non satisfaits"
+msgid "Database configuration"
+msgstr "Configuration de la base de données"
+msgid "The type of database your @drupal data will be stored in."
+msgstr "Le type de base dans laquelle vos données @drupal seront stockées."
+msgid ""
+"If more than one application will be sharing this database, enter a "
+"table prefix such as %prefix for your @drupal site here."
+msgstr ""
+"Si plus d'une application partage cette base de données, indiquez un "
+"préfixe de table pour votre site @drupal, comme par exemple %prefix."
+msgid "Select an installation profile"
+msgstr "Choisissez un profil d'installation"
+msgid "Choose language"
+msgstr "Choix de la langue d'installation"
+msgid "No profiles available"
+msgstr "Aucun profil d'installation n'est disponible"
+msgid "Drupal already installed"
+msgstr "Drupal est déjà installé"
+msgid "Installing @drupal"
+msgstr "Installation de @drupal"
+msgid "The installation has encountered an error."
+msgstr "Une erreur s'est produite durant l'installation."
+msgid "Configure site"
+msgstr "Configuration du site"
+msgid "@drupal installation complete"
+msgstr "Installation de @drupal terminée"
+msgid "Installed %module module."
+msgstr "Le module %module a été installé."
+msgid "Choose profile"
+msgstr "Choix du profil"
+msgid "Verify requirements"
+msgstr "Vérification des pré-requis"
+msgid "Set up database"
+msgstr "Installation de la base de données"
+msgid "Set up translations"
+msgstr "Installation des traductions"
+msgid "Install site"
+msgstr "Installation du site"
+msgid "Finish translations"
+msgstr "Finalisation des traductions"
+msgid "Site e-mail address"
+msgstr "Adresse de courriel du site"
+msgid ""
+"The <em>From</em> address in automated e-mails sent during "
+"registration and new password requests, and other notifications. (Use "
+"an address ending in your site's domain to help prevent this e-mail "
+"being flagged as spam.)"
+msgstr ""
+"Le champ <em>De</em> des courriels automatiques envoyés pendant la "
+"procédure d'enregistrement, les demandes de nouveaux mot de passe et "
+"les autres notifications. (Utilisez une adresse se terminant par le "
+"domaine de votre site afin de minimiser les risques que votre courriel "
+"ne soit marqué comme pourriel (spam).)"
+msgid ""
+"By default, dates in this site will be displayed in the chosen time "
+"zone."
+msgstr ""
+"Par défaut, les dates et les heures sur ce site seront affichées "
+"selon ce fuseau horaire."
+msgid "Update notifications"
+msgstr "Notification des mises à jour"
+msgid "Check for updates automatically"
+msgstr "Vérifier automatiquement les mises à jour"
+msgid "1 byte"
+msgid_plural "@count bytes"
+msgstr[0] "@count octet"
+msgstr[1] "@count octets"
+msgid ""
+"!name cannot be longer than %max characters but is currently %length "
+"characters long."
+msgstr ""
+"Le champ « !name » ne peut pas être plus long que %max caractères "
+"mais comporte actuellement %length caractères."
+msgid "Illegal choice %choice in %name element."
+msgstr "Choix « %choice » interdit dans l'élément « %name »."
+msgid "GD2 image manipulation toolkit"
+msgstr "Boîte à outils de traitement d'image GD2"
+msgid ""
+"Define the image quality for JPEG manipulations. Ranges from 0 to 100. "
+"Higher values mean better image quality but bigger files."
+msgstr ""
+"Définir la qualité d'image pour les conversions en JPEG, sur une "
+"échelle de 0 à 100. Une valeur élevée signifie une image de "
+"meilleure qualité mais un fichier de taille plus importante."
+msgid "Right to left"
+msgstr "De droite à gauche"
+msgid "Left to right"
+msgstr "De gauche à droite"
+msgid "Add custom language"
+msgstr "Ajouter une langue personnalisée"
+msgid "Save language"
+msgstr "Enregistrer la langue"
+msgid "Direction that text in this language is presented."
+msgstr "Direction d'écriture du texte."
+msgid "The default language cannot be deleted."
+msgstr "La langue par défaut ne peut être supprimée."
+msgid ""
+"Deleting a language will remove all interface translations associated "
+"with it, and posts in this language will be set to be language "
+"neutral. This action cannot be undone."
+msgstr ""
+"Supprimer une langue supprimera également la traduction de "
+"l'interface qui lui est associée. Les contenus dans cette langue "
+"seront dorénavant indiqués en \"indépendant de la langue\". Cette "
+"action ne peut pas être annulée."
+msgid "Language negotiation configuration saved."
+msgstr "Les options de négociation de la langue ont été enregistrées."
+msgid "String contains"
+msgstr "La chaîne contient"
+msgid "Leave blank to show all strings. The search is case sensitive."
+msgstr ""
+"Laisser vide pour afficher tous les termes. La recherche est sensible "
+"à la casse."
+msgid "Search in"
+msgstr "Rechercher dans"
+msgid "Both translated and untranslated strings"
+msgstr "A la fois les chaînes traduites et celles qui ne le sont pas"
+msgid "Only translated strings"
+msgstr "Seulement les termes traduits"
+msgid "Only untranslated strings"
+msgstr "Seulement les termes non traduits"
+msgid "Languages not yet added"
+msgstr "Langues non encore installées"
+msgid "The language %language has been created."
+msgstr "La langue %language a été créée."
+msgid "The submitted string contains disallowed HTML: %string"
+msgstr "La chaîne soumise contient des balises HTML invalides : %string"
+msgid "The string has been saved."
+msgstr "Le terme a été enregistré."
+msgid "Importing interface translations"
+msgstr "Importation de traductions de l'interface utilisateur"
+msgid "Error importing interface translations"
+msgstr "Erreur à l'importation des traductions de l'interface"
+msgid ""
+"Attempted submission of a translation string with disallowed HTML: "
+"%string"
+msgstr ""
+"Tentative de soumission d'une traduction contenant des balises HTML "
+"invalides : %string"
+msgid "Updated JavaScript translation file for the language %language."
+msgstr ""
+"Mise à jour du fichier de traduction Javascript de la langue "
+"%language."
+msgid "Created JavaScript translation file for the language %language."
+msgstr "Création du fichier de traduction Javascript de la langue %language."
+msgid ""
+"An error occurred during creation of the JavaScript translation file "
+"for the language %language."
+msgstr ""
+"Une erreur s'est produite lors de la création du fichier de "
+"traduction JavaScript de la langue %language."
+msgid "Afrikaans"
+msgstr "Afrikaans"
+msgid "Amharic"
+msgstr "Amharique"
+msgid "Azerbaijani"
+msgstr "Azerbaïdjanais"
+msgid "Belarusian"
+msgstr "Belorussien"
+msgid "Bengali"
+msgstr "Bengali"
+msgid "Tibetan"
+msgstr "Tibétain"
+msgid "Bosnian"
+msgstr "Bosniaque"
+msgid "Welsh"
+msgstr "Gallois"
+msgid "Esperanto"
+msgstr "Espéranto"
+msgid "Estonian"
+msgstr "Estonien"
+msgid "Basque"
+msgstr "Basque"
+msgid "Faeroese"
+msgstr "Féroïen"
+msgid "Scots Gaelic"
+msgstr "Gaéliques écossais"
+msgid "Galician"
+msgstr "Galicien"
+msgid "Gujarati"
+msgstr "Gujarati"
+msgid "Icelandic"
+msgstr "Islandais"
+msgid "Javanese"
+msgstr "Javanais"
+msgid "Georgian"
+msgstr "Géorgien"
+msgid "Kazakh"
+msgstr "Kazakh"
+msgid "Kannada"
+msgstr "Kannada"
+msgid "Kurdish"
+msgstr "Kurde"
+msgid "Latvian"
+msgstr "Latvian"
+msgid "Malagasy"
+msgstr "Malgache"
+msgid "Macedonian"
+msgstr "Macédonien"
+msgid "Malayalam"
+msgstr "Malayalam"
+msgid "Mongolian"
+msgstr "Mongolien"
+msgid "Marathi"
+msgstr "Marathi"
+msgid "Burmese"
+msgstr "Birman"
+msgid "Nepali"
+msgstr "Népalien"
+msgid "Norwegian Bokmål"
+msgstr "Norvégien classique"
+msgid "Norwegian Nynorsk"
+msgstr "Néo-norvégien"
+msgid "Occitan"
+msgstr "Occitan"
+msgid "Punjabi"
+msgstr "Pendjabi"
+msgid "Portuguese, Portugal"
+msgstr "Portugais, Portugal"
+msgid "Portuguese, Brazil"
+msgstr "Portugais, Brésil"
+msgid "Northern Sami"
+msgstr "Sami Nordique"
+msgid "Sinhala"
+msgstr "Sinhala"
+msgid "Slovenian"
+msgstr "Slovène"
+msgid "Albanian"
+msgstr "Albanais"
+msgid "Serbian"
+msgstr "Serbe"
+msgid "Tamil"
+msgstr "Tamil"
+msgid "Telugu"
+msgstr "Telugu"
+msgid "Thai"
+msgstr "Thaïlandais"
+msgid "Ukrainian"
+msgstr "Ukrainien"
+msgid "Urdu"
+msgstr "Urdu"
+msgid "Vietnamese"
+msgstr "Vietnamien"
+msgid "Chinese, Simplified"
+msgstr "Chinois, Simplifié"
+msgid "Chinese, Traditional"
+msgstr "Chinois, Traditionnel"
+msgid "Error sending e-mail (from %from to %to)."
+msgstr "Erreur à l'envoi du courriel (de %from à %to)."
+msgid "sort ascending"
+msgstr "trier par ordre croissant"
+msgid "sort descending"
+msgstr "trier par ordre décroissant"
+msgid ""
+"Operations on Unicode strings are emulated on a best-effort basis. "
+"Install the <a href=\"@url\">PHP mbstring extension</a> for improved "
+"Unicode support."
+msgstr ""
+"Les opérations sur les chaînes de caractères Unicode sont émulées "
+"le mieux possible. Installer <a href=\"@url\">l'extension PHP "
+"mbstring</a> pour une meilleure prise en charge de l'Unicode."
+msgid ""
+"Multibyte string function overloading in PHP is active and must be "
+"disabled. Check the php.ini <em>mbstring.func_overload</em> setting. "
+"Please refer to the <a href=\"@url\">PHP mbstring documentation</a> "
+"for more information."
+msgstr ""
+"La surcharge des fonctions normales par l'extension \"PHP Multibyte\" "
+"est active et doit être désactivée. Vérifiez le paramètre "
+"<em>mbstring.func_overload</em> dans le fichier php.ini. Consultez la "
+"<a href=\"@url\">documentation PHP mbstring</a> pour plus "
+"d'information."
+msgid ""
+"Multibyte string input conversion in PHP is active and must be "
+"disabled. Check the php.ini <em>mbstring.encoding_translation</em> "
+"setting. Please refer to the <a href=\"@url\">PHP mbstring "
+"documentation</a> for more information."
+msgstr ""
+"La conversion des chaînes de caractères multibyte en entrée dans "
+"PHP est active et doit être désactivée. Vérifiez le paramètre "
+"<em>mbstring.encoding_translation</em> dans le fichier php.ini. "
+"Consultez la <a href=\"@url\">documentation PHP mbstring</a> pour plus "
+"d'information."
+msgid ""
+"Multibyte string input conversion in PHP is active and must be "
+"disabled. Check the php.ini <em>mbstring.http_input</em> setting. "
+"Please refer to the <a href=\"@url\">PHP mbstring documentation</a> "
+"for more information."
+msgstr ""
+"La conversion des chaînes de caractères multibyte en entrée dans "
+"PHP est active et doit être désactivée. Vérifiez le paramètre "
+"<em>mbstring.http_input</em> dans le fichier php.ini. Consultez la <a "
+"href=\"@url\">documentation PHP mbstring</a> pour plus d'information."
+msgid ""
+"Multibyte string output conversion in PHP is active and must be "
+"disabled. Check the php.ini <em>mbstring.http_output</em> setting. "
+"Please refer to the <a href=\"@url\">PHP mbstring documentation</a> "
+"for more information."
+msgstr ""
+"La conversion des chaînes de caractères multibyte en sortie dans PHP "
+"est active et doit être désactivée. Vérifiez le paramètre "
+"<em>mbstring.http_output</em> dans le fichier php.ini. Consultez la <a "
+"href=\"@url\">documentation PHP mbstring</a> pour plus d'information."
+msgid "Standard PHP"
+msgstr "PHP standard"
+msgid "PHP Mbstring Extension"
+msgstr "Extension PHP mbstring"
+msgid "Unicode library"
+msgstr "Bibliothèque Unicode"
+msgid "Could not convert XML encoding %s to UTF-8."
+msgstr "Impossible de convertir l'encodage XML %s en UTF-8."
+msgid ""
+"Unsupported encoding %s. Please install iconv, GNU recode or mbstring "
+"for PHP."
+msgstr ""
+"Codage %s non pris en charge. Installez iconv, GNU recode ou mbstring "
+"pour PHP."
+msgid "Parse error. Not well formed"
+msgstr "Erreur d'analyse. Non conforme"
+msgid "Parse error. Request not well formed."
+msgstr "Erreur d'analyse. Requête non conforme."
+msgid "Server error. Invalid XML-RPC. Request must be a methodCall."
+msgstr ""
+"Erreur serveur. XML-RPC non conforme aux spécifications. La requête "
+"doit être un methodCall."
+msgid "Server error. Requested method @methodname not specified."
+msgstr ""
+"Erreur serveur. La méthode demandée (@methodname) n'est pas "
+"spécifiée."
+msgid "Server error. Wrong number of method parameters."
+msgstr "Erreur serveur. Nombre de paramètres erroné."
+msgid "Server error. Invalid method parameters."
+msgstr "Erreur serveur. Paramètres non valides."
+msgid "Server error. Requested function @method does not exist."
+msgstr "Erreur serveur. La méthode demandée (@method) n'existe pas."
+msgid "Invalid syntax for system.multicall."
+msgstr "Syntaxe non valide pour system.multicall."
+msgid "Recursive calls to system.multicall are forbidden."
+msgstr "Les appels récursifs de system.multicall sont interdits."
+msgid "Server error. Requested method @methodname signature not specified."
+msgstr ""
+"Erreur serveur. La signature de la méthode demandée (@methodname) "
+"n'est pas spécifiée."
+msgid "The name of the feed (or the name of the website providing the feed)."
+msgstr "Le nom du flux (ou le nom du site web fournissant le flux)."
+msgid "Categorize news items"
+msgstr "Classer les nouvelles"
+msgid "Are you sure you want to remove all items from the feed %feed?"
+msgstr ""
+"Êtes-vous sûr(e) de vouloir supprimer tous les éléments du flux "
+"%feed ?"
+msgid "checkboxes"
+msgstr "cases à cocher"
+msgid "multiple selector"
+msgstr "sélecteur multiple"
+msgid ""
+"Thousands of sites (particularly news sites and blogs) publish their "
+"latest headlines and posts in feeds, using a number of standardized "
+"XML-based formats. Formats supported by the aggregator include <a "
+"href=\"@rss\">RSS</a>, <a href=\"@rdf\">RDF</a>, and <a "
+"href=\"@atom\">Atom</a>."
+msgstr ""
+"Des milliers de sites (en particulier des sites d'information et des "
+"blogs) publient leurs derniers titres et contibutions dans des flux en "
+"utilisant des formats standardisés basés sur XML. Les formats pris "
+"en charge par l'agrégateur incluent <a href=\"@rss\">RSS</a>, <a "
+"href=\"@rdf\">RDF</a>, et <a href=\"@atom\">Atom</a>."
+msgid ""
+"Current feeds are listed below, and <a href=\"@addfeed\">new feeds may "
+"be added</a>. For each feed or feed category, the <em>latest "
+"items</em> block may be enabled at the <a href=\"@block\">blocks "
+"administration page</a>."
+msgstr ""
+"Les flux actuels sont listés ci-dessous et <a href=\"@addfeed\">de "
+"nouveaux flux peuvent être ajoutés</a>. Pour chaque flux ou "
+"catégorie de flux, le bloc des <em>derniers éléments</em> peut "
+"être activé depuis la <a href=\"@block\">page d'administration des "
+"blocs</a>."
+msgid "Add a feed in RSS, RDF or Atom format. A feed may only have one entry."
+msgstr ""
+"Ajouter un flux au format RSS, RDF ou Atom. Un flux ne peut avoir "
+"qu'une seule entrée."
+msgid ""
+"Categories allow feed items from different feeds to be grouped "
+"together. For example, several sport-related feeds may belong to a "
+"category named <em>Sports</em>. Feed items may be grouped "
+"automatically (by selecting a category when creating or editing a "
+"feed) or manually (via the <em>Categorize</em> page available from "
+"feed item listings). Each category provides its own feed page and "
+"block."
+msgstr ""
+"Les catégories permettent à des éléments de flux différents "
+"d'être regroupés. Par exemple, plusieurs flux relatifs au sport "
+"peuvent appartenir à une catégorie nommée <em>Sports</em>. Les "
+"éléments de flux peuvent être regroupés automatiquement (en "
+"sélectionnant une catégorie lors de la création ou la modification "
+"d'un flux) ou manuellement (via la page <em>Classer</em> disponible "
+"dans les listes d'éléments de flux). Chaque catégorie founit sa "
+"propre page et son propre bloc de flux."
+msgid ""
+"Configure which content your site aggregates from other sites, how "
+"often it polls them, and how they're categorized."
+msgstr ""
+"Configurer quel contenu votre site agrège à partir d'autres sites, "
+"la fréquence d'agrégation et leur catégorisation."
+msgid "Update items"
+msgstr "Mettre à jour les articles"
+msgid "Edit feed"
+msgstr "Modifier le flux"
+msgid "No blocks in this region"
+msgstr "Aucun bloc dans cette région"
+msgid ""
+"The block %info was assigned to the invalid region %region and has "
+"been disabled."
+msgstr ""
+"Le bloc %info était assigné à la région invalide %region et a "
+"été désactivé."
+msgid ""
+"The content type for the %add-child link must be one of those selected "
+"as an allowed book outline type."
+msgstr ""
+"Le type de contenu pour le lien %add-child doit être un de ceux "
+"sélectionnés en tant que type de plan de livre autorisé."
+msgid "Save book pages"
+msgstr "Enregistrer les pages du livre"
+msgid ""
+"This book has been modified by another user, the changes could not be "
+"saved."
+msgstr ""
+"Ce livre a été modifié par un autre utilisateur, les changements ne "
+"peuvent pas être enregistrés."
+msgid "Title changed from %original to %current."
+msgstr "Le titre a été modifié de %original en %current."
+msgid "Updated book %title."
+msgstr "Livre %title mis à jour."
+msgid "book: updated %title."
+msgstr "livre : %title mis à jour."
+msgid "Update book outline"
+msgstr "Mettre à jour la structure du livre"
+msgid "Remove from book outline"
+msgstr "Retirer de la structure du livre"
+msgid "No changes were made"
+msgstr "Aucun changement n'a été effectué"
+msgid ""
+"The post has been added to the selected book. You may now position it "
+"relative to other pages."
+msgstr ""
+"La contribution a été ajoutée au livre sélectionné. Vous pouvez "
+"désormais la placer par rapport aux autres pages."
+msgid "The book outline has been updated."
+msgstr "La structure du livre a été mise à jour."
+msgid "There was an error adding the post to the book."
+msgstr "Une erreur est survenue lors de l'ajout de la contribution au livre."
+msgid ""
+"%title has associated child pages, which will be relocated "
+"automatically to maintain their connection to the book. To recreate "
+"the hierarchy (as it was before removing this page), %title may be "
+"added again using the Outline tab, and each of its former child pages "
+"will need to be relocated manually."
+msgstr ""
+"%title dispose de pages associées, lesquelles vont être déplacées "
+"automatiquement afin de maintenir leurs relations au livre. Pour "
+"recréer la hiérarchie (telle qu'elle était avant de supprimer cette "
+"page), %title peut être réintroduit en utilisant l'onglet Plan, "
+"chacune de ces pages enfants devront être déplacées manuellement."
+msgid "%title may be added to hierarchy again using the Outline tab."
+msgstr ""
+"%title peut être réintroduit dans la hiérarchie en utilisant "
+"l'onglet Structure."
+msgid "Are you sure you want to remove %title from the book hierarchy?"
+msgstr ""
+"Êtes-vous sûr(e) de vouloir retirer %title de la hiérarchie du "
+"livre ?"
+msgid "The post has been removed from the book."
+msgstr "La contribution a été retirée du livre."
+msgid "Show a printer-friendly version of this book page and its sub-pages."
+msgstr ""
+"Affiche une version imprimable de cette page de livre et de ses "
+"sous-pages."
+msgid "Show block on all pages"
+msgstr "Afficher le bloc sur toutes les pages"
+msgid "Show block only on book pages"
+msgstr "Afficher le bloc seulement sur les pages de livre"
+msgid ""
+"If <em>Show block on all pages</em> is selected, the block will "
+"contain the automatically generated menus for all of the site's books. "
+"If <em>Show block only on book pages</em> is selected, the block will "
+"contain only the one menu corresponding to the current page's book. In "
+"this case, if the current page is not in a book, no block will be "
+"displayed. The <em>Page specific visibility settings</em> or other "
+"visibility settings can be used in addition to selectively display "
+"this block."
+msgstr ""
+"Si <em>Montrer le bloc sur toutes les pages</em> est sélectionné, le "
+"bloc contiendra le menu généré automatiquement pour tous les livres "
+"du site. Si <em>Montrer le bloc seulement sur les pages de livre</em> "
+"est sélectionné, le bloc contiendra seulement le menu correspondant "
+"aux pages du livre courant. Dans ce cas, si la page courante n'est pas "
+"dans un libre, aucun bloc ne sera affiché. Les <em>Paramètres "
+"spécifiques de visibilité de livre</em> et autres paramètres de "
+"visibilité peuvent être utilisés en complément pour afficher "
+"sélectivement ce bloc."
+msgid "This is the top-level page in this book."
+msgstr "Ceci est la préface (niveau supérieur) du livre."
+msgid "No book selected."
+msgstr "Aucun livre sélectionné."
+msgid ""
+"The parent page in the book. The maximum depth for a book and all "
+"child pages is !maxdepth. Some pages in the selected book may not be "
+"available as parents if selecting them would exceed this limit."
+msgstr ""
+"La page parente dans le livre. La profondeur maximale pour un livre et "
+"toutes ses pages est !maxdepth. Des pages dans le livre sélectionné "
+"pourraient ne pas être accessibles en tant que parents si leur "
+"sélection venait à dépasser cette limite."
+msgid ""
+"%title is part of a book outline, and has associated child pages. If "
+"you proceed with deletion, the child pages will be relocated "
+"automatically."
+msgstr ""
+"%title fait partie de la structure du livre et dispose de pages "
+"enfants. Si vous procédez à sa suppression, les pages enfants seront "
+"déplacées automatiquement."
+msgid "Re-order book pages and change titles"
+msgstr "Réordonner les pages de livre et changer les titres"
+msgid "Book page"
+msgstr "Page de livre"
+msgid ""
+"There is not enough memory available to PHP to change this theme's "
+"color scheme. You need at least %size more. Check the <a "
+"href=\"@url\">PHP documentation</a> for more information."
+msgstr ""
+"Il n'y pas assez de mémoire pour que PHP puisse changer le schéma de "
+"couleur de ce thème. Il en faut au moins %size de plus. Jetez un œil "
+"à la <a href=\"@url\">documentation PHP</a> pour plus d'information."
+msgid "Delete the selected comments"
+msgstr "Supprimer les commentaires sélectionnés"
+msgid "Example: 'website feedback' or 'product information'."
+msgstr ""
+"Exemple : « votre avis sur le site » ou « information sur les "
+"produits »."
+msgid ""
+"When listing categories, those with lighter (smaller) weights get "
+"listed before categories with heavier (larger) weights. Categories "
+"with equal weights are sorted alphabetically."
+msgstr ""
+"Lors de l'inventaire des catégories, celles ayant des poids plus "
+"légers (plus petits) apparaissent avant les catégories ayant des "
+"poids plus lourds (plus grands). Les catégories de même poids sont "
+"affichées par ordre alphabétique."
+msgid ""
+"The contact form has not been configured. <a href=\"@add\">Add one or "
+"more categories</a> to the form."
+msgstr ""
+"Le formulaire de contact n'est pas configuré. <a "
+"href=\"@add\">Ajouter une ou plusieurs catégories</a> au formulaire."
+msgid "Personal contact form"
+msgstr "Formulaire de contact personnel"
+msgid ""
+"Create a system contact form and set up categories for the form to "
+"use."
+msgstr ""
+"Créer un formulaire de contact système et configurer des catégories "
+"à utiliser pour ce formulaire."
+msgid "Edit contact category"
+msgstr "Modifier la catégorie de contact"
+msgid "View events that have recently been logged."
+msgstr "Voir les événements qui ont été enregistrés récemment."
+msgid "Top 'page not found' errors"
+msgstr "Principales erreurs de type « page non trouvée »"
+msgid "View 'page not found' errors (404s)."
+msgstr "Voir les erreurs « page non trouvée » (404)."
+msgid "Top 'access denied' errors"
+msgstr "Principales erreurs de type « accès refusé »"
+msgid "View 'access denied' errors (403s)."
+msgstr "Voir les erreurs « accès refusé » (403)."
+msgid "No roles may use this format"
+msgstr "Aucun rôle ne peut utiliser ce format"
+msgid "Allowed HTML tags: @tags"
+msgstr "Tags HTML autorisés : @tags"
+msgid "Anchors are used to make links to other pages."
+msgstr ""
+"Les ancres sont utilisées pour établir des liens vers d'autres "
+"pages."
+msgid ""
+"By default line break tags are automatically added, so use this tag to "
+"add additional ones. Use of this tag is different because it is not "
+"used with an open/close pair like all the others. Use the extra \" /\" "
+"inside the tag to maintain XHTML 1.0 compatibility"
+msgstr ""
+"Les balises de saut de ligne sont automatiquement ajoutées par "
+"défaut, utilisez ceci pour en ajouter d'autres. L'usage de cette "
+"balise est différent car elle n'est pas utilisée avec une paire "
+"ouvrante/fermante comme les autres. Utilisez le \" /\" supplémentaire "
+"dans la balise pour conserver la compatibilité XHTML 1.0"
+msgid "Text with <br />line break"
+msgstr "Texte avec <br />saut de ligne"
+msgid ""
+"By default paragraph tags are automatically added, so use this tag to "
+"add additional ones."
+msgstr ""
+"Les balises de paragraphe sont ajoutées par défaut. Utilisez "
+"celle-ci pour en ajouter."
+msgid "Paragraph one."
+msgstr "Paragraphe un."
+msgid "Paragraph two."
+msgstr "Paragraphe deux."
+msgid "Strong"
+msgstr "Fort"
+msgid "Emphasized"
+msgstr "Accentué"
+msgid "Cited"
+msgstr "Citation"
+msgid "Coded text used to show programming source code"
+msgstr "Text codé pour afficher du code de programmation"
+msgid "Coded"
+msgstr "Codé"
+msgid "Bolded"
+msgstr "Gras"
+msgid "Italicized"
+msgstr "Italique"
+msgid "Superscripted"
+msgstr "Exposant"
+msgid "<sup>Super</sup>scripted"
+msgstr "<sup>Exp</sup>osant"
+msgid "Subscripted"
+msgstr "Indice"
+msgid "<sub>Sub</sub>scripted"
+msgstr "<sub>Ind</sub>ice"
+msgid "<abbr title=\"Abbreviation\">Abbrev.</abbr>"
+msgstr "<abbr title=\"Abrévation\">Abrév.</abbr>"
+msgid "<acronym title=\"Three-Letter Acronym\">TLA</acronym>"
+msgstr "<acronym title=\"Acronyme de Trois Lettres\">ATL</acronym>"
+msgid "Block quoted"
+msgstr "Citation longue"
+msgid "Quoted inline"
+msgstr "Citation simple"
+msgid "Table header"
+msgstr "En-tête de tableau"
+msgid "Table cell"
+msgstr "Cellule de tableau"
+msgid "Ordered list - use the &lt;li&gt; to begin each list item"
+msgstr ""
+"Liste ordonnée - utilisez &lt;li&gt; pour débuter chaque élément "
+"de la liste"
+msgid "First item"
+msgstr "Premier élément"
+msgid "Second item"
+msgstr "Second élément"
+msgid "Unordered list - use the &lt;li&gt; to begin each list item"
+msgstr ""
+"Liste non ordonnée - utilisez &lt;li&gt; pour débuter chaque "
+"élément de la liste"
+msgid ""
+"Definition lists are similar to other HTML lists. &lt;dl&gt; begins "
+"the definition list, &lt;dt&gt; begins the definition term and "
+"&lt;dd&gt; begins the definition description."
+msgstr ""
+"Les listes de définition sont similaires aux autres listes HTML. "
+"&lt;dl&gt; délimite la liste de définitions, &lt;dt&gt; délimite le "
+"terme à définir &lt;dd&gt; délimite la définition proprement dite."
+msgid "First term"
+msgstr "Premier terme"
+msgid "First definition"
+msgstr "Première définition"
+msgid "Second term"
+msgstr "Second terme"
+msgid "Second definition"
+msgstr "Seconde définition"
+msgid "Subtitle three"
+msgstr "Sous-titre trois"
+msgid "Subtitle four"
+msgstr "Sous-titre quatre"
+msgid "Subtitle five"
+msgstr "Sous-titre cinq"
+msgid "Subtitle six"
+msgstr "Sous-titre six"
+msgid "Tag Description"
+msgstr "Description de la balise"
+msgid "You Type"
+msgstr "Vous saisissez"
+msgid "You Get"
+msgstr "Vous obtenez"
+msgid "No help provided for tag %tag."
+msgstr "Aucune aide n'est fournie pour la balise %tag."
+msgid "Ampersand"
+msgstr "Et commercial"
+msgid "Quotation mark"
+msgstr "Marque de citation"
+msgid "Character Description"
+msgstr "Description du caractère"
+msgid "Lines and paragraphs break automatically."
+msgstr "Les lignes et les paragraphes vont à la ligne automatiquement."
+msgid ""
+"Lines and paragraphs are automatically recognized. The &lt;br /&gt; "
+"line break, &lt;p&gt; paragraph and &lt;/p&gt; close paragraph tags "
+"are inserted automatically. If paragraphs are not recognized simply "
+"add a couple blank lines."
+msgstr ""
+"Les lignes et les paragraphes sont reconnus automatiquement. Les "
+"balises &lt;br /&gt; saut de ligne, &lt;p&gt; paragraphe et &lt;/p&gt; "
+"fin de paragraphe sont insérées automatiquement.Si les paragraphes "
+"ne sont pas reconnus ajoutez simplement quelques lignes vides."
+msgid "Web page addresses and e-mail addresses turn into links automatically."
+msgstr ""
+"Les adresses de pages web et de courriels sont transformées en liens "
+"automatiquement."
+msgid ""
+"Configure how content input by users is filtered, including allowed "
+"HTML tags. Also allows enabling of module-provided filters."
+msgstr ""
+"Configurer comment le contenu posté par les utilisateurs est filtré, "
+"et en particulier quels tags HTML sont acceptés. Permet également "
+"d'activer les filtres fournis par des modules externes."
+msgid "Compose tips"
+msgstr "Astuces de rédaction"
+msgid "Short but meaningful name for this collection of threaded discussions."
+msgstr ""
+"Nom court (mais significatif) pour cette collection de fils de "
+"discussion."
+msgid "Description and guidelines for discussions within this forum."
+msgstr ""
+"Description et instructions pour les discussions à l'intérieur de ce "
+"forum."
+msgid ""
+"Forums are displayed in ascending order by weight (forums with equal "
+"weights are displayed alphabetically)."
+msgstr ""
+"Les forums sont affichés par ordre croissant de poids (les forums de "
+"même poids sont affichés par ordre alphabétique)."
+msgid "Short but meaningful name for this collection of related forums."
+msgstr "Nom court (mais significatif) pour cette collection de forums liés."
+msgid "Description and guidelines for forums within this container."
+msgstr ""
+"Description et instructions pour les forums à l'intérieur de ce "
+"conteneur."
+msgid ""
+"Containers are displayed in ascending order by weight (containers with "
+"equal weights are displayed alphabetically)."
+msgstr ""
+"Les conteneurs sont affichés par ordre croissant de poids  (les "
+"conteneurs de même poids sont affichés par ordre alphabétique)."
+msgid "Default number of forum topics displayed per page."
+msgstr "Nombre de sujets affichés par défaut sur chaque page."
+msgid "Default display order for topics."
+msgstr "Ordre d'affichage par défaut des sujets de discussion."
+msgid ""
+"Containers are usually placed at the top (root) level, but may also be "
+"placed inside another container or forum."
+msgstr ""
+"Les conteneurs sont généralement placés au niveau le plus haut (la "
+"racine) de votre forum, mais peuvent également être placés à "
+"l'intérieur d'un autre conteneur ou forum."
+msgid ""
+"Forums may be placed at the top (root) level, or inside another "
+"container or forum."
+msgstr ""
+"Les forums peuvent être placés au niveau le plus haut (racine), ou "
+"à l'intérieur d'un autre conteneur ou forum."
+msgid ""
+"For more information, see the online handbook entry for <a "
+"href=\"@forum\">Forum module</a>."
+msgstr ""
+"Pour plus d'informations, consulter l'entrée du manuel en ligne pour "
+"le <a href=\"@forum\">module Forum</a>."
+msgid "Forum topic"
+msgstr "Sujet de discussion"
+msgid "You are not allowed to post new content in the forum."
+msgstr "Vous n'êtes pas autorisé à créer du contenu dans le forum."
+msgid ""
+"This page exports the translated strings used by your site. An export "
+"file may be in Gettext Portable Object (<em>.po</em>) form, which "
+"includes both the original string and the translation (used to share "
+"translations with others), or in Gettext Portable Object Template "
+"(<em>.pot</em>) form, which includes the original strings only (used "
+"to create new translations with a Gettext translation editor)."
+msgstr ""
+"Cette page permet d'exporter les traductions des chaînes utilisées "
+"sur votre site. Un fichier exporté peut être au format Gettext "
+"Portable Object (<em>.po</em>), qui inclut à la fois les chaînes "
+"originales et les traductions (il est utilisé pour partager les "
+"traductions avec autrui), ou au format Gettext Portable Template "
+"(<em>.pot</em>), qui inclut les chaînes originales seulement (et "
+"permet de créer de nouvelles traductions avec l'aide d'un éditeur de "
+"traduction)."
+msgid "Configure languages for content and the user interface."
+msgstr "Configurer les langues du contenu et de l'interface utilisateur."
+msgid "Submission form settings"
+msgstr "Paramètres du formulaire de contribution"
+msgid "This content type does not have a title field."
+msgstr "Ce type de contenu n'a pas de champ titre."
+msgid ""
+"The machine-readable name must contain only lowercase letters, "
+"numbers, and underscores."
+msgstr ""
+"Le nom système ne doit contenir que des lettres, des chiffres et des "
+"tirets bas."
+msgid "The human-readable name %name is already taken."
+msgstr "Le nom affiché \"%name\" est déjà utilisé."
+msgid "Are you sure you want to delete the content type %type?"
+msgstr "Voulez-vous vraiment supprimer le type de contenu « %type » ?"
+msgid "Added content type %name."
+msgstr "Type de contenu  %name ajouté."
+msgid "Changed the content type of 1 post from %old-type to %type."
+msgid_plural "Changed the content type of @count posts from %old-type to %type."
+msgstr[0] ""
+"Le type de contenu d'une publication a été changé de '%old-type' "
+"vers '%type'."
+msgstr[1] ""
+"Le type de contenu de @count publications a été changé de "
+"'%old-type' vers '%type'."
+msgid "Are you sure you want to rebuild the permissions on site content?"
+msgstr ""
+"Êtes vous sûrs de vouloir reconstruire les permissions du contenu du "
+"site ?"
+msgid ""
+"This action rebuilds all permissions on site content, and may be a "
+"lengthy process. This action cannot be undone."
+msgstr ""
+"Cette action va reconstruire toutes les permissions sur le contenu du "
+"site, et peut prendre du temps. Cette action ne peut pas être "
+"annulée."
+msgid "language"
+msgstr "langue"
+msgid "An error occurred and processing did not complete."
+msgstr "Une erreur s'est produite et le traitement ne s'est pas terminé."
+msgid ""
+"The trimmed version of your post shows what your post looks like when "
+"promoted to the main page or when exported for syndication.<span "
+"class=\"no-js\"> You can insert the delimiter \"&lt;!--break--&gt;\" "
+"(without the quotes) to fine-tune where your post gets split.</span>"
+msgstr ""
+"La version abrégée de votre contribution montre à quoi elle "
+"ressemble lorsqu'elle est promue sur la page d'accueil ou lorsqu'elle "
+"est exportée pour syndication.<span class=\"no-js\"> Vous pouvez "
+"insérer le délimiteur \"&lt;!--break--&gt;\" (sans les guillemets) "
+"pour ajuster avec finesse l'endroit où votre contribution se trouve "
+"séparée."
+msgid "Copy of the revision from %date."
+msgstr "Copie de la révision du %date."
+msgid ""
+"@type %title has been reverted back to the revision from "
+"%revision-date."
+msgstr "@type %title a été rétabli à la révision du %revision-date."
+msgid "Revision from %revision-date of @type %title has been deleted."
+msgstr ""
+"La version datée du %revision-date du contenu '%title', de type "
+"'@type', a été supprimée."
+msgid "@type: reverted %title revision %revision."
+msgstr "@type : la révision %revision de %title a été rétablie."
+msgid "The content access permissions need to be rebuilt."
+msgstr "Les permissions d'accès au contenu doivent être reconstruites."
+msgid ""
+"<strong>Configure your website</strong> Once logged in, visit the <a "
+"href=\"@admin\">administration section</a>, where you can <a "
+"href=\"@config\">customize and configure</a> all aspects of your "
+"website."
+msgstr ""
+"<strong>Configurez votre site web</strong> Une fois connecté, visitez "
+"la <a href=\"@admin\">section d'administration</a>, où vous pouvez <a "
+"href=\"@config\">personnaliser et configurer</a> tous les aspects de "
+"votre site web."
+msgid ""
+"<strong>Enable additional functionality</strong> Next, visit the <a "
+"href=\"@modules\">module list</a> and enable features which suit your "
+"specific needs. You can find additional modules in the <a "
+"href=\"@download_modules\">Drupal modules download section</a>."
+msgstr ""
+"<strong>Activez des fonctions supplémentaires</strong> Ensuite, "
+"visitez la <a href=\"@modules\">liste des modules</a> et activez les "
+"fonctionnalités qui conviennent à vos besoins spécifiques. Vous "
+"trouverez d'autres modules dans la <a "
+"href=\"@download_modules\">section de téléchargement de modules de "
+"Drupal</a>."
+msgid ""
+"<strong>Customize your website design</strong> To change the \"look "
+"and feel\" of your website, visit the <a href=\"@themes\">themes "
+"section</a>. You may choose from one of the included themes or "
+"download additional themes from the <a "
+"href=\"@download_themes\">Drupal themes download section</a>."
+msgstr ""
+"<strong>Personnaliser l'apparence de votre site web</strong> Pour "
+"changer l'apparence et le comportement de votre site web, visitez la "
+"<a href=\"@themes\">section des thèmes</a>. Vous pouvez choisir un "
+"des thèmes inclus ou télécharger d'autres thèmes dans la <a "
+"href=\"@download_themes\">section de téléchargement des thèmes de "
+"Drupal</a>."
+msgid "Rebuilding content access permissions"
+msgstr "Reconstruire les permissions d'accès au contenu"
+msgid "Content permissions have been rebuilt."
+msgstr "Les permissions d'accès au contenu ont été reconstruites."
+msgid "The content access permissions have not been properly rebuilt."
+msgstr ""
+"Les permission d'accès au contenu n'ont pas pu être reconstruites "
+"correctement."
+msgid "Add content type"
+msgstr "Ajouter un type de contenu"
+msgid "Revert to earlier revision"
+msgstr "Rétablir une version antérieure"
+msgid "Delete earlier revision"
+msgstr "Supprimer une version antérieure"
+msgid "The alias %alias is already in use in this language."
+msgstr "L'alias %alias est déjà utilisé dans ce langage."
+msgid "The alias has been saved."
+msgstr "L'alias a été enregistré."
+msgid "Are you sure you want to delete path alias %title?"
+msgstr "Êtes-vous sûr(e) de vouloir supprimer l'alias %title ?"
+msgid "Filter aliases"
+msgstr "Filtrer les alias"
+msgid ""
+"Enter the path you wish to create the alias for, followed by the name "
+"of the new alias."
+msgstr ""
+"Saisissez le chemin pour lequel vous souhaitez créer un alias, suivi "
+"du nom du nouvel alias."
+msgid "URL aliases"
+msgstr "Alias d'URL"
+msgid "Change your site's URL paths by aliasing them."
+msgstr "Modifie les URL de votre site en leur attribuant des alias."
+msgid "Edit alias"
+msgstr "Modifier l'alias"
+msgid "Delete alias"
+msgstr "Supprimer l'alias"
+msgid "Add alias"
+msgstr "Ajouter un alias"
+msgid ""
+"<a href=\"@drupal\">Drupal.org</a> offers <a "
+"href=\"@php-snippets\">some example PHP snippets</a>, or you can "
+"create your own with some PHP experience and knowledge of the Drupal "
+"system."
+msgstr ""
+"<a href=\"@drupal\">Drupal.org</a> offre <a "
+"href=\"@php-snippets\">quelques exemples de codes PHP</a>, ou vous "
+"pouvez créer le vôtre avec un peu d'expérience en PHP et une "
+"connaissance du système Drupal."
+msgid "You may post PHP code. You should include &lt;?php ?&gt; tags."
+msgstr ""
+"Vous pouvez utiliser du code PHP. Vous devrez inclure les tags "
+"&lt;?php ?&gt;."
+msgid "Using custom PHP code"
+msgstr "Utiliser du code PHP personnalisé"
+msgid ""
+"Custom PHP code may be embedded in some types of site content, "
+"including posts and blocks. While embedding PHP code inside a post or "
+"block is a powerful and flexible feature when used by a trusted user "
+"with PHP experience, it is a significant and dangerous security risk "
+"when used improperly. Even a small mistake when posting PHP code may "
+"accidentally compromise your site."
+msgstr ""
+"Du code PHP personnalisé peut être inséré dans certains types de "
+"contenu du site, tels les contribution et les blocs. Même si "
+"l'insertion du code PHP à l'intérieur d'un contenu ou d'un bloc est "
+"une fonctionnalité puissante et flexible pour les utilisateurs de "
+"confiance expérimentés en PHP, c'est une fonctionnalité qui "
+"présente un risque de danger significatif mis entre les mains "
+"d'utilisateurs malveillants. Même une petite erreur lors de "
+"l'inclusion du code PHP peut accidentellement compromettre votre site."
+msgid ""
+"If you are unfamiliar with PHP, SQL, or Drupal, avoid using custom PHP "
+"code within posts. Experimenting with PHP may corrupt your database, "
+"render your site inoperable, or significantly compromise security."
+msgstr ""
+"Si vous n'êtes pas familier de PHP, SQL ou Drupal, évitez d'utiliser "
+"du code PHP personnalisé dans les contributions. L'expérimentation "
+"avec PHP pourrait corrompre votre base de données, rendre votre site "
+"inopérant ou compromettre de façon significative sa sécurité."
+msgid "Notes:"
+msgstr "Notes :"
+msgid ""
+"Remember to double-check each line for syntax and logic errors "
+"<strong>before</strong> saving."
+msgstr ""
+"Souvenez-vous de vérifier par deux fois, ligne par ligne, les erreurs "
+"de syntax et de logique <strong>avant</strong> d'enregistrer."
+msgid "Statements must be correctly terminated with semicolons."
+msgstr ""
+"Les déclarations doivent être convenablement terminées par un "
+"point-virgule."
+msgid ""
+"Global variables used within your PHP code retain their values after "
+"your script executes."
+msgstr ""
+"Les variables globales utilisées au sein de votre code PHP perdurent "
+"après l'exécution de votre script."
+msgid ""
+"<code>register_globals</code> is <strong>turned off</strong>. If you "
+"need to use forms, understand and use the functions in <a "
+"href=\"@formapi\">the Drupal Form API</a>."
+msgstr ""
+"<code>register_globals</code> est <strong>désactivé</strong>. Si "
+"vous devez utiliser des formulaires, comprenez et utilisez les "
+"fonctions de l'<a href=\"@formapi\">API de formulaire Drupal</a>."
+msgid ""
+"Use a <code>print</code> or <code>return</code> statement in your code "
+"to output content."
+msgstr ""
+"Utiliser une déclaration <code>print</code> ou <code>return</code> "
+"dans votre code pour afficher du contenu."
+msgid ""
+"Develop and test your PHP code using a separate test script and sample "
+"database before deploying on a production site."
+msgstr ""
+"Développez et testez votre code PHP en utilisant un script et une "
+"base de données de test avant de déployer sur un site en production."
+msgid ""
+"Be aware that the ability to embed PHP code within content is provided "
+"by the PHP Filter module. If this module is disabled or deleted, then "
+"blocks and posts with embedded PHP may display, rather than execute, "
+"the PHP code."
+msgstr ""
+"Soyez avisé que la capacité à inclure du code PHP à l'intérieur "
+"du contenu est fournie par le module PHP Filter. Si ce module est "
+"désactivé ou supprimé, alors les blocs et contributions comportant "
+"du code PHP pourraient afficher, au lieu de l'exécuter, ce code PHP."
+msgid ""
+"A basic example: <em>Creating a \"Welcome\" block that greets visitors "
+"with a simple message.</em>"
+msgstr ""
+"Un exemple de base : <em>Créer un bloc \"Bienvenue\" pour saluer les "
+"visiteurs avec un message simple.</em>"
+msgid "PHP evaluator"
+msgstr "Interpréteur PHP"
+msgid ""
+"Executes a piece of PHP code. The usage of this filter should be "
+"restricted to administrators only!"
+msgstr ""
+"Exécute un morceau de code PHP. Pour des raisons de sécurité, "
+"l'utilisation de ce filtre devrait être réservée seulement aux "
+"administrateurs !"
+msgid "Are you sure you want to delete the field %field?"
+msgstr "Êtes-vous sûr(e) de vouloir supprimer le champ %field ?"
+msgid "Delete field"
+msgstr "Supprimer le champ"
+msgid "The index will be rebuilt."
+msgstr "L'index va être reconstruit."
+msgid "Indexing status"
+msgstr "Statut de l'indexation"
+msgid "Indexing throttle"
+msgstr "Seuil d'indexation"
+msgid "Number of items to index per cron run"
+msgstr "Nombre d'éléments à indexer par tâche cron"
+msgid ""
+"The maximum number of items indexed in each pass of a <a "
+"href=\"@cron\">cron maintenance task</a>. If necessary, reduce the "
+"number of items to prevent timeouts and memory errors while indexing."
+msgstr ""
+"Le nombre maximum d'éléments indexés lors de chaque passe d'une <a "
+"href=\"@cron\">tâche cron de maintenance</a>. Si nécessaire, "
+"réduire le nombre d'éléments peut prévenir des dépassements de "
+"temps ou de mémoire causant une erreur lors de l'indexation."
+msgid "Indexing settings"
+msgstr "Paramètres d'indexation"
+msgid ""
+"<p><em>Changing the settings below will cause the site index to be "
+"rebuilt. The search index is not cleared but systematically updated to "
+"reflect the new settings. Searching will continue to work but new "
+"content won't be indexed until all existing content has been "
+"re-indexed.</em></p><p><em>The default settings should be appropriate "
+"for the majority of sites.</em></p>"
+msgstr ""
+"<p><em>Changer les réglages suivants aura pour effet de recréer une "
+"indexation du site. L'index de recherche n'est pas initialisé mais "
+"systématiquement mis à jour pour refléter les nouveaux réglages. "
+"La recherche continuera à fonctionner mais les nouveaux contenus ne "
+"seront pas indexés jusqu'à que le contenu existant soit "
+"réindexé.</em></p><p><em>Les réglages par défaut devraient être "
+"idoine pour la plupart des sites.</em></p>"
+msgid "Minimum word length to index"
+msgstr "Taille minimale des mots à indexer"
+msgid ""
+"The number of characters a word has to be to be indexed. A lower "
+"setting means better search result ranking, but also a larger "
+"database. Each search query must contain at least one keyword that is "
+"this size (or longer)."
+msgstr ""
+"Le nombre de caractères qu'un mot doit avoir pour être indexé. Un "
+"paramètre plus faible signifie un meilleur classement des résultats "
+"de recherche, mais aussi une base de données plus grande. Chaque "
+"recherche doit contenir au moins un mot clé de cette taille (ou plus "
+"grand)."
+msgid "Simple CJK handling"
+msgstr "Gestion CJK simple"
+msgid ""
+"Whether to apply a simple Chinese/Japanese/Korean tokenizer based on "
+"overlapping sequences. Turn this off if you want to use an external "
+"preprocessor for this instead. Does not affect other languages."
+msgstr ""
+"Appliquer ou non un indicateur simple Chinois/Japonais/Coréen basé "
+"sur des séquences imbriquées. Désactivez cette option si vous "
+"voulez utiliser un préprocesseur externe pour faire cela. Cela "
+"n'affecte pas les autres langues."
+msgid ""
+"The search engine maintains an index of words found in your site's "
+"content. To build and maintain this index, a correctly configured <a "
+"href=\"@cron\">cron maintenance task</a> is required. Indexing "
+"behavior can be adjusted using the settings below."
+msgstr ""
+"Le moteur de recherche maintient un index des mots trouvés dans le "
+"contenu de votre site. Pour construire et maintenir cet index, <a "
+"href=\"@cron\">une tâche cron de maintenance</a> doit être "
+"correctement configuré. Le procédé d'indexation peut être ajusté "
+"en utilisant les réglages suivants."
+msgid "Search form"
+msgstr "Formulaire de recherche"
+msgid "Top search phrases"
+msgstr "Phrases les plus recherchées"
+msgid "View most popular search phrases."
+msgstr "Voir les phrases les plus recherchées."
+msgid "Content viewing counter settings"
+msgstr "Paramètres du compteur de visualisation de contenu"
+msgid "Count content views"
+msgstr "Compter le nombre d'affichage des contenus"
+msgid "Increment a counter each time content is viewed."
+msgstr "Incrémenter un compteur à chaque fois qu'un contenu est visualisé."
+msgid ""
+"Settings for the statistical information that Drupal will keep about "
+"the site. See <a href=\"@statistics\">site statistics</a> for the "
+"actual information."
+msgstr ""
+"Paramètres pour l'information statistique que Drupal conservera à "
+"propos du site. Voir les <a href=\"@statistics\">statistiques du "
+"site</a> pour l'information réelle."
+msgid "Popular content"
+msgstr "Contenu populaire"
+msgid "How many content items to display in \"all time\" list."
+msgstr ""
+"Nombre d'éléments de contenu afficher dans la liste « depuis "
+"toujours »."
+msgid "How many content items to display in \"recently viewed\" list."
+msgstr ""
+"Nombre d'éléments de contenu afficher dans la liste « vu "
+"récemment »."
+msgid "Today's:"
+msgstr "Aujourd'hui :"
+msgid "All time:"
+msgstr "Depuis toujours :"
+msgid "Last viewed:"
+msgstr "Dernier accès :"
+msgid "User pictures in posts"
+msgstr "Portrait des utilisateurs dans les contributions"
+msgid "User pictures in comments"
+msgstr "Portrait des utilisateurs dans les commentaires"
+msgid "Shortcut icon"
+msgstr "Icône de raccourci"
+msgid "Logo image settings"
+msgstr "Paramètres du logo"
+msgid "Upload logo image"
+msgstr "Envoyer le logo"
+msgid "Shortcut icon settings"
+msgstr "Paramètres de l'icône de raccourci"
+msgid ""
+"Your shortcut icon, or 'favicon', is displayed in the address bar and "
+"bookmarks of most browsers."
+msgstr ""
+"Votre icône de raccourci ou 'favicon' est affichée dans la barre "
+"d'adresse et les favoris de la plupart des navigateurs."
+msgid "Upload icon image"
+msgstr "Transférer l'icône"
+msgid ""
+"If you don't have direct file access to the server, use this field to "
+"upload your shortcut icon."
+msgstr ""
+"Si vous n'avez pas un accès direct au serveur, utilisez ce champ pour "
+"transférer votre icône de raccourci."
+msgid "@module (<span class=\"admin-missing\">missing</span>)"
+msgstr "@module (<span class=\"admin-missing\">manquant</span>)"
+msgid ""
+"The following modules will be completely uninstalled from your site, "
+"and <em>all data from these modules will be lost</em>!"
+msgstr ""
+"Les modules suivants vont être complètement désinstallés de votre "
+"site, et <em>toutes les données de ces modules seront perdues</em> !"
+msgid "Confirm uninstall"
+msgstr "Confirmer la désinstallation"
+msgid "Would you like to continue with uninstalling the above?"
+msgstr ""
+"Voulez-vous procéder à la désinstallation des éléments "
+"ci-dessus ?"
+msgid "No modules selected."
+msgstr "Aucun module sélectionné."
+msgid "The selected modules have been uninstalled."
+msgstr "Les modules sélectionnés ont été désinstallés."
+msgid "The path '@path' is either invalid or you do not have access to it."
+msgstr ""
+"Le chemin '@path' est invalide ou vous n'avez pas les droits pour y "
+"accéder."
+msgid "Default 403 (access denied) page"
+msgstr "Page 403 par défaut (accès refusé)"
+msgid "Default 404 (not found) page"
+msgstr "Page 404 par défaut (page non trouvée)"
+msgid "Caches cleared."
+msgstr "Les caches ont été vidés."
+msgid "Select an image processing toolkit"
+msgstr "Sélectionnez une boîte à outils de traitement d'image"
+msgid "Number of items in each feed"
+msgstr "Nombre d'éléments pour chaque flux"
+msgid "Default number of items to include in each feed."
+msgstr "Le nombre d'éléments par défaut à inclure dans chaque flux."
+msgid "Feed content"
+msgstr "Contenu du flux"
+msgid "Titles plus teaser"
+msgstr "Titres et accroches"
+msgid "Global setting for the default display of content items in each feed."
+msgstr ""
+"Paramètres globaux pour l'affichage, par défaut, du contenu de "
+"chaque flux."
+msgid "Cron ran successfully."
+msgstr "La tâche planifiée (cron) a réussi."
+msgid "Cron run failed."
+msgstr "La tâche planifiée (cron) a échoué."
+msgid "No modules are available to uninstall."
+msgstr "Aucun module ne peut être désinstallé."
+msgid ""
+"This theme requires PHP version @php_required and is incompatible with "
+"PHP version !php_version."
+msgstr ""
+"Ce thème requiert la version @php_required de PHP et est incompatible "
+"avec la version !php_version de PHP."
+msgid ""
+"This page shows you all available administration tasks for each "
+"module."
+msgstr ""
+"Cette page liste les tâches d'administration disponibles pour chaque "
+"module."
+msgid ""
+"These options control the default display settings for your entire "
+"site, across all themes. Unless they have been overridden by a "
+"specific theme, these settings will be used."
+msgstr ""
+"Ces options permettent de contrôler l'aspect général de votre site, "
+"quelque soit le thème. A moins que ces paramètres généraux soient "
+"modifiés par la configuration d'un thème spécifique, ce sont eux "
+"qui seront utilisés par défaut."
+msgid ""
+"The <em>Powered by Drupal</em> block is an optional link to the home "
+"page of the Drupal project. While there is absolutely no requirement "
+"that sites feature this link, it may be used to show support for "
+"Drupal."
+msgstr ""
+"Le bloc <em>Powered by Drupal</em> est un lien optionnel vers la page "
+"d'accueil du projet Drupal. Même s'il n'est absolument pas "
+"obligatoire d'afficher ce lien, cela reste un moyen de promouvoir "
+"Drupal."
+msgid "Powered by Drupal"
+msgstr "Propulsé par Drupal"
+msgid "Could not delete temporary file \"%path\" during garbage collection"
+msgstr ""
+"Impossible de supprimer le fichier temporaire \"%path\" pendant "
+"l'opération de nettoyage"
+msgid "Compact mode"
+msgstr "Mode compact"
+msgid "Tell Drupal where to store uploaded files and how they are accessed."
+msgstr ""
+"Indiquer à Drupal où stocker les fichiers transférés et la "
+"manière d'y accéder."
+msgid "Image toolkit"
+msgstr "Boîte à outils image"
+msgid ""
+"Choose which image toolkit to use if you have installed optional "
+"toolkits."
+msgstr ""
+"Choisir quelle boîte à outils image utiliser si vous avez installé "
+"des boîtes à outils optionnelles."
+msgid "RSS publishing"
+msgstr "Publication RSS"
+msgid "Date and time"
+msgstr "Date et heure"
+msgid ""
+"Get a status report about your site's operation and any detected "
+"problems."
+msgstr ""
+"Obtenir un rapport du fonctionnement de votre site et des problèmes "
+"détectés."
+msgid "-1 (Unlimited)"
+msgstr "-1 (infini)"
+msgid ""
+"Your PHP installation is too old. Drupal requires at least PHP "
+"%version."
+msgstr ""
+"Votre version de PHP est trop ancienne. Drupal nécessite au moins la "
+"version %version de PHP."
+msgid "PHP register globals"
+msgstr "PHP 'register globals'"
+msgid "Enabled ('@value')"
+msgstr "Activé ('@value')"
+msgid "PHP memory limit"
+msgstr "Plafond mémoire de PHP"
+msgid ""
+"Consider increasing your PHP memory limit to %memory_minimum_limit to "
+"help prevent errors in the installation process."
+msgstr ""
+"Envisagez d'augmenter le plafond mémoire de PHP à "
+"%memory_minimum_limit pour éviter les erreurs durant le processus "
+"d'installation."
+msgid ""
+"Consider increasing your PHP memory limit to %memory_minimum_limit to "
+"help prevent errors in the update process."
+msgstr ""
+"Envisagez d'augmenter le plafond mémoire de PHP à "
+"%memory_minimum_limit pour éviter les erreurs durant le processus "
+"d'installation."
+msgid ""
+"Depending on your configuration, Drupal can run with a %memory_limit "
+"PHP memory limit. However, a %memory_minimum_limit PHP memory limit or "
+"above is recommended, especially if your site uses additional custom "
+"or contributed modules."
+msgstr ""
+"En fonction de votre configuration, Drupal peut fonctionner avec un "
+"plafond mémoire de PHP de %memory_limit. Un plafond de "
+"%memory_minimum_limit ou supérieur est néanmoins recommandé, en "
+"particulier si votre site utiliser des modules additionnels."
+msgid ""
+"Increase the memory limit by editing the memory_limit parameter in the "
+"file %configuration-file and then restart your web server (or contact "
+"your system administrator or hosting provider for assistance)."
+msgstr ""
+"Augmentez le plafond mémoire de PHP en éditant le paramètre "
+"memory_limit dans le fichier de configuration %configuration-file et "
+"redémarrez votre serveur web (ou contactez votre administrateur "
+"système ou votre fournisseur d'hébergement pour cela)."
+msgid ""
+"Contact your system administrator or hosting provider for assistance "
+"with increasing your PHP memory limit."
+msgstr ""
+"Contactez votre administrateur système ou votre fournisseur "
+"d'hébergement pour augmenter le plafond mémoire de PHP."
+msgid "Not protected"
+msgstr "Non protégé."
+msgid ""
+"The file %file is not protected from modifications and poses a "
+"security risk. You must change the file's permissions to be "
+"non-writable."
+msgstr ""
+"Le fichier %file n'est pas protégé en écriture et cela pose un "
+"problème de sécurité. Vous devez changer les permissions du fichier "
+"pour qu'il ne soit pas accessible en écriture."
+msgid ""
+"For more information, see the online handbook entry for <a "
+"href=\"@cron-handbook\">configuring cron jobs</a>."
+msgstr ""
+"Pour plus d'informations reportez-vous à l'entrée sur <a "
+"href=\"@cron-handbook\">la configuration du Cron</a> du manuel en "
+"ligne."
+msgid "Cron has not run recently."
+msgstr "Cron n'a pas été lancé récemment."
+msgid "Cron maintenance tasks"
+msgstr "Tâches planifiées (cron) de maintenance"
+msgid "You can <a href=\"@cron\">run cron manually</a>."
+msgstr "Vous pouvez <a href=\"@cron\">lancer le cron manuellement</a>."
+msgid "The directory %directory is not writable."
+msgstr "Le répertoire %directory n'est pas accessible en écriture."
+msgid ""
+"You may need to set the correct directory at the <a "
+"href=\"@admin-file-system\">file system settings page</a> or change "
+"the current directory's permissions so that it is writable."
+msgstr ""
+"Il est possible que vous deviez définir un répertoire correct sur la "
+"<a href=\"@admin-file-system\">page des paramètres du système de "
+"fichiers</a> ou changer les permissions du répertoire actuel pour "
+"qu'il soit autorisé en écriture."
+msgid "Writable (<em>public</em> download method)"
+msgstr "Inscriptible (méthode de téléchargement <em>publique</em>)"
+msgid "Writable (<em>private</em> download method)"
+msgstr "Inscriptible (méthode de téléchargement <em>privée</em>)"
+msgid "Database updates"
+msgstr "Mises à jour de la base de données"
+msgid ""
+"Some modules have database schema updates to install. You should run "
+"the <a href=\"@update\">database update script</a> immediately."
+msgstr ""
+"Certains modules nécessitent des modifications du schéma de base de "
+"données. Vous devriez lancer <a href=\"@update\">le script de mise à "
+"jour de la base de données</a> immédiatement."
+msgid "Access to update.php"
+msgstr "Accéder à update.php"
+msgid "Reset to alphabetical"
+msgstr "Rétablir l'ordre alphabétique"
+msgid "Terms are displayed in ascending order by weight."
+msgstr "Les termes sont affichés par ordre croissant de poids."
+msgid "Weight value must be numeric."
+msgstr "Le poids doit être numérique."
+msgid ""
+"Are you sure you want to reset the vocabulary %title to alphabetical "
+"order?"
+msgstr ""
+"Êtes-vous sûr de vouloir rétablir l'ordre alphabétique du "
+"vocabulaire %title ?"
+msgid ""
+"Resetting a vocabulary will discard all custom ordering and sort items "
+"alphabetically."
+msgstr ""
+"La réinitialisation d'un vocabulaire annulera l'ordre personnalisé "
+"et organisera les éléments par ordre alphabétique."
+msgid "Reset vocabulary %name to alphabetical order."
+msgstr "Réinitialiser le vocabulaire '%name' par ordre alphabétique."
+msgid ""
+"Translations of a piece of content are managed with translation sets. "
+"Each translation set has one source post and any number of "
+"translations in any of the <a href=\"!languages\">enabled "
+"languages</a>. All translations are tracked to be up to date or "
+"outdated based on whether the source post was modified significantly."
+msgstr ""
+"Les traductions d'un contenu sont gérées par ensembles de "
+"traductions. Chaque ensemble de traductions possède une contribution "
+"source et autant de traductions que de <a href=\"!languages\">langues "
+"activées</a>. Toutes les traductions sont marquées comme à jour ou "
+"périmées en fonction de l'importance des modifications sur la "
+"contribution source."
+msgid "Translation settings"
+msgstr "Paramètres de traduction"
+msgid "Flag translations as outdated"
+msgstr "Périmer toutes les traductions"
+msgid ""
+"If you made a significant change, which means translations should be "
+"updated, you can flag all translations of this post as outdated. This "
+"will not change any other property of those posts, like whether they "
+"are published or not."
+msgstr ""
+"Si vous faites des changements significatifs, qui nécessiteront une "
+"mise à jour des traductions, vous pouvez indiquer que toutes les "
+"traductions liées à cette contribution sont périmées. Cela ne "
+"changera aucune des propriétés de ce contenu, notamment son état de "
+"publication."
+msgid "This translation needs to be updated"
+msgstr "Cette traduction doit être mise à jour"
+msgid ""
+"When this option is checked, this translation needs to be updated "
+"because the source post has changed. Uncheck when the translation is "
+"up to date again."
+msgstr ""
+"Lorsque cette option est cochée, la traduction doit être mise à "
+"jour car la source de la contribution a changé. Décocher quand la "
+"traduction est à nouveau à jour."
+msgid "Unknown release date"
+msgstr "Date de publication inconnue"
+msgid "Last checked: @time ago"
+msgstr "Dernière vérification : il y a @time"
+msgid "Last checked: never"
+msgstr "Dernière vérification : jamais"
+msgid "Includes: %includes"
+msgstr "Contient : %includes"
+msgid "Disabled modules"
+msgstr "Modules désactivés"
+msgid "Disabled themes"
+msgstr "Thèmes désactivés"
+msgid ""
+"Select how frequently you want to automatically check for new releases "
+"of your currently installed modules and themes."
+msgstr ""
+"Sélectionnez la fréquence de vérification des mises a jour des "
+"modules et thèmes actuellement installés sur votre site."
+msgid "E-mail notification threshold"
+msgstr "Seuil de notification de courriel"
+msgid ""
+"You can choose to send e-mail only if a security update is available, "
+"or to be notified about all newer versions. If there are updates "
+"available of Drupal core or any of your installed modules and themes, "
+"your site will always print a message on the <a "
+"href=\"@status_report\">status report</a> page, and will also display "
+"an error message on administration pages if there is a security "
+"update."
+msgstr ""
+"Vous pouvez choisir de n'envoyer un courriel que si une mise à jour "
+"de sécurité est disponible, ou pour être informé de toutes les "
+"nouvelles versions. Si des mises à jour sont disponibles pour le "
+"cœur de Drupal ou pour les modules et thèmes installés, votre site "
+"affichera toujours un message sur la page <a "
+"href=\"@status_report\">tableau de bord d'administration</a> ainsi "
+"qu'un message d'erreur sur les pages d'administration s'il s'agit "
+"d'une mise à jour de sécurité."
+msgid ""
+"Here you can find information about available updates for your "
+"installed modules and themes. Note that each module or theme is part "
+"of a \"project\", which may or may not have the same name, and might "
+"include multiple modules or themes within it."
+msgstr ""
+"Ici vous pourrez trouver de l'information à propos des mises à jour "
+"disponibles pour vos modules et thèmes installés. Veuillez noter que "
+"chaque module ou thème fait partie d'un \"projet\", lequel peut ou "
+"non avoir le même nom et peut inclure plusieurs modules ou thèmes."
+msgid "Module and theme update status"
+msgstr "Statut de mise à jour des modules et des thèmes"
+msgid ""
+"There are security updates available for one or more of your modules "
+"or themes. To ensure the security of your server, you should update "
+"immediately!"
+msgstr ""
+"Des mises à jour de sécurité sont disponibles pour un ou plusieurs "
+"de vos modules ou thèmes. Afin de garantir la sécurité de votre "
+"serveur, effectuez immédiatement la mise à jour !"
+msgid ""
+"There are updates available for one or more of your modules or themes. "
+"To ensure the proper functioning of your site, you should update as "
+"soon as possible."
+msgstr ""
+"Il y a des mises à jour disponibles pour un ou plusieurs de vos "
+"modules ou thèmes. Afin de garantir la sécurité de votre serveur, "
+"effectuez immédiatement la mise à jour !"
+msgid ""
+"Get a status report about available updates for your installed modules "
+"and themes."
+msgstr ""
+"Afficher l'état des mises à jour disponibles pour vos modules et "
+"thèmes."
+msgid "Notify user when account is activated."
+msgstr "Notifier l'utilisateur quand son compte est activé."
+msgid "Notify user when account is blocked."
+msgstr "Notifier l'utilisateur quand son compte est bloqué."
+msgid "E-mail new password"
+msgstr "Envoyer nouveau mot de passe par courriel"
+msgid "Further instructions have been sent to your e-mail address."
+msgstr ""
+"Des instructions détaillées ont été envoyées à votre adresse "
+"électronique."
+msgid "%name has been deleted."
+msgstr "%name a été supprimé."
+msgid "You must enter a username."
+msgstr "Vous devez saisir un nom d'utilisateur."
+msgid "The username cannot begin with a space."
+msgstr "Le nom d'utilisateur ne doit pas commencer par un espace."
+msgid "The username cannot end with a space."
+msgstr "Le nom d'utilisateur ne doit pas se terminer par un espace."
+msgid "The username cannot contain multiple spaces in a row."
+msgstr ""
+"Le nom d'utilisateur ne doit pas contenir plusieurs espaces à la "
+"suite."
+msgid "The username contains an illegal character."
+msgstr "Le nom d'utilisateur contient un caractère non valide."
+msgid "The username %name is too long: it must be %max characters or less."
+msgstr ""
+"Le nom d'utilisateur %name est trop long : sa longueur doit être "
+"inférieure à %max caractères."
+msgid "Who's online"
+msgstr "Utilisateurs en ligne"
+msgid "User list length"
+msgstr "Longueur de la liste des utilisateurs"
+msgid "Enter the password that accompanies your username."
+msgstr "Saisissez le mot de passe correspondant à votre nom d'utilisateur."
+msgid "Signature settings"
+msgstr "Paramètres de signature"
+msgid "Unblock the selected users"
+msgstr "Débloquer les utilisateurs sélectionnés."
+msgid "Block the selected users"
+msgstr "Bloquer les utilisateurs sélectionnés."
+msgid ""
+"This web page allows administrators to register new users. Users' "
+"e-mail addresses and usernames must be unique."
+msgstr ""
+"Cette page permet à l'administrateur d'inscrire manuellement des "
+"utilisateurs. Les noms d'utilisateurs et les adresses de courriels "
+"doivent être uniques."
+msgid ""
+"Enter a simple pattern (\"*\" may be used as a wildcard match) to "
+"search for a username or e-mail address. For example, one may search "
+"for \"br\" and Drupal might return \"brian\", \"brad\", and "
+"\"brenda@example.com\"."
+msgstr ""
+"Entrez une requête simple (\"*\" peut être utilisé comme joker) "
+"pour rechercher un nom d'utilisateur ou un courriel. Par exemple, on "
+"pourrait rechercher \"je\" et Drupal retournerait "
+"\"Jean\",\"Jean-François\" et \"jeanne@example.com\"."
+msgid "Deleted user: %name %email."
+msgstr "Utilisateur supprimé : %name %email."
+msgid "Determine access to features by selecting permissions for roles."
+msgstr ""
+"Déterminer les accès aux fonctionnalités en choisissant des droits "
+"pour les rôles."
+msgid "Edit role"
+msgstr "Modifier le rôle"
+msgid "The contact form has not been configured."
+msgstr "Le formulaire de contact n'a pas encore été configuré."
+msgid ""
+"The title is used as a tool tip when the user hovers the mouse over "
+"the image."
+msgstr ""
+"Le titre apparaît sous forme d'infobulle lorsque l'utilisateur "
+"survole l'image avec sa souris."
+msgid "Progress indicator"
+msgstr "Indicateur de progression"
+msgid "Bar with progress meter"
+msgstr "Barre avec mesure de progression"
+msgid "Throbber"
+msgstr "Throbber"
+msgid "Path settings"
+msgstr "Paramètres de chemin"
+msgid "The file upload failed. %upload"
+msgstr "Le transfert de fichier a échoué. %upload"
+msgid "URL to file"
+msgstr "Url du fichier"
+msgid ""
+"An unrecoverable error occurred. The uploaded file likely exceeded the "
+"maximum file size (@size) that this server supports."
+msgstr ""
+"Une erreur irrécupérable s'est produite. Le fichier transféré "
+"dépasse la taille de fichier maximum (@size) autorisée par le "
+"serveur."
+msgid "Starting upload..."
+msgstr "Début du transfert..."
+msgid "Uploading... (@current of @total)"
+msgstr "Transfert en cours... (@current sur @total)"
+msgid ""
+"Your server is not capable of displaying file upload progress. File "
+"upload progress requires PHP be run with mod_php and not as FastCGI."
+msgstr ""
+"Votre serveur est incapable d'afficher la progression de transfert de "
+"fichier. La progression de transfert de fichier requiert que PHP soit "
+"exécuté avec mod_php et non en tant que FastCGI."
+msgid "Upload progress"
+msgstr "Transfert en cours"
+msgid "Styles"
+msgstr "Styles"
+msgid "Item ID"
+msgstr "Identifiant d'élément"
+msgid "Page count"
+msgstr "Nombre de pages"
+msgid "The size of the file in bytes."
+msgstr "La taille du fichier en octets."
+msgid "Interface"
+msgstr "Interface"
+msgid "@size KB"
+msgstr "@size Ko"
+msgid "@size MB"
+msgstr "@size Mo"
+msgid "@size GB"
+msgstr "@size Go"
+msgid "@size TB"
+msgstr "@size To"
+msgid "@size PB"
+msgstr "@size Po"
+msgid "@size EB"
+msgstr "@size Eo"
+msgid "@size ZB"
+msgstr "@size Zo"
+msgid "@size YB"
+msgstr "@size Yo"
+msgid "All messages"
+msgstr "Tous les messages"
+msgid "Text format"
+msgstr "Format de texte"
+msgid "No new posts"
+msgstr "Aucun nouveau message"
+msgid "Sticky topic"
+msgstr "Sujet épinglé"
+msgid "Emergency"
+msgstr "Urgence"
+msgid "Sort descending"
+msgstr "Trier par ordre décroissant"
+msgid "Sort ascending"
+msgstr "Trier par ordre croissant"
+msgid "The name of the site."
+msgstr "Le nom du site."
+msgid "Administrative title"
+msgstr "Titre pour l'administration"
+msgid "Administrative description"
+msgstr "Description pour l'administration"
+msgid "Title override"
+msgstr "Supplantation du titre"
+msgid "Style settings"
+msgstr "Paramètres d'affichage"
+msgid "Remove row"
+msgstr "Enlever la ligne"
+msgid "Alert"
+msgstr "Alerte"
+msgid "Critical"
+msgstr "Critique"
+msgid "Format string"
+msgstr "Chaine de format"
+msgid "Removed date format %format."
+msgstr "Le format %format a été supprimé."
+msgid "Add format"
+msgstr "Ajouter un format"
+msgid "Allow users to add additional date formats."
+msgstr "Permet aux utilisateurs d'ajouter des formats de date additionnels."
+msgid "Delete date format"
+msgstr "Supprimer le format de date"
+msgid "Allow users to delete a configured date format."
+msgstr "Permet aux utilisateurs de supprimer un format de date."
+msgid "Configure date formats for each locale"
+msgstr "Configure les formats de date pour chaque paramètre régional"
+msgid "Content type name"
+msgstr "Nom du type de contenu"
+msgid "Taxonomy Term"
+msgstr "Terme de taxonomie"
+msgid "Slate"
+msgstr "Slate"
+msgid "@field_name (Locked)"
+msgstr "@field_name (Verrouillé)"
+msgid "- Select a field type -"
+msgstr "- Choisir un type de champ -"
+msgid "- Select a widget -"
+msgstr "- Sélectionnez un widget -"
+msgid "Type of data to store."
+msgstr "Type de données à stocker."
+msgid "Form element to edit the data."
+msgstr "Elément du formulaire pour l'édition des données."
+msgid "- Select an existing field -"
+msgstr "- Sélectionnez un champ existant -"
+msgid "Field to share"
+msgstr "Champ à partager"
+msgid "Add new field: you need to provide a label."
+msgstr "Ajouter un nouveau champ : vous devez fournir une étiquette."
+msgid "Add new field: you need to provide a field name."
+msgstr "Ajouter un nouveau champ : vous devez fournir un nom de champ."
+msgid "Add new field: you need to select a field type."
+msgstr "Ajouter un nouveau champ : vous devez sélectionner un type de champ."
+msgid "Add new field: you need to select a widget."
+msgstr "Ajouter un nouveau champ : vous devez sélectionner un widget."
+msgid "Add new field: invalid widget."
+msgstr "Ajouter un nouveau champ : widget non valide."
+msgid "@type: @field (@label)"
+msgstr "@type : @field (@label)"
+msgid "The field %field is locked and cannot be edited."
+msgstr "Le champ %field est verrouillé et ne peut pas être modifié."
+msgid "%name must be a number."
+msgstr "%name doit être un nombre."
+msgid "@label (!name)"
+msgstr "@label (!name)"
+msgid "<No value>"
+msgstr "-Aucune valeur-"
+msgid "(first item is 0)"
+msgstr "(le premier élement est 0)"
+msgid "(start from last values)"
+msgstr "(commencer par les dernières valeurs)"
+msgid "Regional settings"
+msgstr "Paramètres régionaux"
+msgid "update.php"
+msgstr "update.php"
+msgid "Number of pages"
+msgstr "Nombre de pages"
+msgid "Breadcrumbs"
+msgstr "Fils d'Ariane"
+msgid "The weight of this term in relation to other terms."
+msgstr "Poids de ce terme par rapport aux autres termes."
+msgid "Rotate"
+msgstr "Rotation"
+msgid "Page bottom"
+msgstr "Bas de page"
+msgid "Show links"
+msgstr "Afficher les liens"
+msgid "Library"
+msgstr "Bibliothèque"
+msgid "width @width"
+msgstr "largeur @width"
+msgid "height @height"
+msgstr "hauteur @height"
+msgid "upscaling allowed"
+msgstr "agrandissement autorisé"
+msgid "random between -@degrees&deg and @degrees&deg"
+msgstr "Génération aléatoire entre -@degrees&deg et @degrees&deg"
+msgid "@degrees&deg"
+msgstr "@degrees&deg"
+msgid "Limited"
+msgstr "Limité"
+msgid "Database is encoded in UTF-8"
+msgstr "La base de données est encodée en UTF-8"
+msgid ""
+"Drupal could not determine the encoding of the database was set to "
+"UTF-8"
+msgstr ""
+"Drupal n'a pas pu déterminer si l'encodage de la base de données a "
+"été défini en UTF-8"
+msgid "PostgreSQL has initialized itself."
+msgstr "PostgreSQL s'est initialisé."
+msgid "Structure"
+msgstr "Structure"
+msgid "Raw \"@raw\" found"
+msgstr "Le texte brut \"@raw\" a été trouvé"
+msgid "Raw \"@raw\" not found"
+msgstr "Le texte brut \"@raw\" n'a pas été trouvé"
+msgid "\"@text\" found"
+msgstr "\"@text\" trouvé"
+msgid "\"@text\" not found"
+msgstr "\"@text\" non trouvé"
+msgid "Pattern \"@pattern\" found"
+msgstr "Motif \"@pattern\" trouvé"
+msgid "Pattern \"@pattern\" not found"
+msgstr "Motif \"@pattern\" non trouvé"
+msgid "Checkbox field @id is checked."
+msgstr "La case à cocher @id est cochée."
+msgid "Checkbox field @id is not checked."
+msgstr "La case à cocher @id n'est pas cochée."
+msgid "Verbose message"
+msgstr "Message verbeux"
+msgid ""
+"Select the test(s) or test group(s) you would like to run, and click "
+"<em>Run tests</em>."
+msgstr ""
+"Sélectionner le(s) test(s) ou groupe(s) de tests que vous souhaitez "
+"exécuter, et cliquer sur <em>Lancer les tests</em>."
+msgid "All (@count)"
+msgstr "Tous (@count)"
+msgid "Pass (@count)"
+msgstr "Réussi (@count)"
+msgid "Fail (@count)"
+msgstr "Échoué (@count)"
+msgid "Return to list"
+msgstr "Retourner à la liste"
+msgid "Clear results after each complete test suite run"
+msgstr ""
+"Effacer les résultats après chaque lancement de série de tests "
+"complets"
+msgid "Provide verbose information when running tests"
+msgstr "Fournit des informations verbeuses lors de l'exécution des tests"
+msgid ""
+"The verbose data will be printed along with the standard assertions "
+"and is useful for debugging. The verbose data will be erased between "
+"each test suite run. The verbose data output is very detailed and "
+"should only be used when debugging."
+msgstr ""
+"Les données verbeuses seront affichées tout le long avec les "
+"affirmations courantes, ce qui est utile pour le débogage. Les "
+"données verbeuses seront effacées entre chaque exécution de série "
+"de test. La sortie de données verbeuses est très détaillé et ne "
+"doit être utilisé que lors du débogage."
+msgid ""
+"HTTP auth settings to be used by the SimpleTest browser during "
+"testing. Useful when the site requires basic HTTP authentication."
+msgstr ""
+"Paramètres auth HTTP à utiliser par le navigateur en SimpleTest "
+"pendant les tests. Utile lorsque le site nécessite une "
+"authentification HTTP de base."
+msgid "@pass, @fail, @exception, and @debug"
+msgstr "@pass, @fail, @exception et @debug"
+msgid "The test run did not successfully finish."
+msgstr "Le test ne s'est pas terminé avec succès."
+msgid ""
+"Clear results is disabled and the test results table will not be "
+"cleared."
+msgstr ""
+"Effacer les résultats est désactivé et le tableau de résultats des "
+"tests ne sera pas effacé."
+msgid "No leftover tables to remove."
+msgstr "Pas de tables restantes à retirer."
+msgid "1 debug message"
+msgid_plural "@count debug messages"
+msgstr[0] "@count message de débogage"
+msgstr[1] "@count messages de débogage"
+msgid "Removed 1 test result."
+msgid_plural "Removed @count test results."
+msgstr[0] "@count résultat de test supprimé."
+msgstr[1] "@count résultats de test supprimés."
+msgid "Removed 1 leftover table."
+msgid_plural "Removed @count leftover tables."
+msgstr[0] "1 table restante supprimée."
+msgstr[1] "@count tables restantes supprimées."
+msgid "Removed 1 temporary directory."
+msgid_plural "Removed @count temporary directories."
+msgstr[0] "@count répertoire temporaire supprimé."
+msgstr[1] "@count répertoires temporaires supprimés."
+msgid "Test result"
+msgstr "Résultat du test"
+msgid "View result of tests."
+msgstr "Voir le résultat des tests."
+msgid "hash"
+msgstr "Hachage"
+msgid "Comment permalink"
+msgstr "Permalien du commentaire"
+msgid "Search block"
+msgstr "Bloc de recherche"
+msgid "Edit style"
+msgstr "Modifier le style"
+msgid "All content"
+msgstr "Tout le contenu"
+msgid "Check for updates of disabled modules and themes"
+msgstr "Vérifier les mises à jour des modules et thèmes désactivés"
+msgid "Content statistics"
+msgstr "Statistiques de contenu"
+msgid "Translation files"
+msgstr "Fichiers de traduction"
+msgid "Fetcher"
+msgstr "Extracteur"
+msgid "This permission is inherited from the authenticated user role."
+msgstr "Ce droit est héritée du rôle de l'utilisateur authentifié."
+msgid ""
+"Target of the link, such as _blank, _parent or an iframe's name. This "
+"field is rarely used."
+msgstr ""
+"Cible du lien, comme \"_blank\", \"_parent\", ou un nom d'iframe. Ce "
+"champ est rarement utilisé."
+msgid "@argument title"
+msgstr "Titre de @argument"
+msgid "@argument input"
+msgstr "Saisie de @argument"
+msgid "Count the number 0 as empty"
+msgstr "Considérer le nombre 0 comme vide"
+msgid "Hide if empty"
+msgstr "Masquer si vide"
+msgid "Starting value"
+msgstr "Valeur de départ"
+msgid "Specify the number the counter should start at."
+msgstr "Spécifier le nombre à partir duquel le compteur doit commencer."
+msgid "Does not start with"
+msgstr "Ne commence pas par"
+msgid "not_begins"
+msgstr "not_begins"
+msgid "Does not end with"
+msgstr "Ne se termine pas par"
+msgid "not_ends"
+msgstr "not_ends"
+msgid "The view %name has been saved."
+msgstr "La vue %name a été enregistrée."
+msgid ""
+"This filter can cause items that have more than one of the selected "
+"options to appear as duplicate results. If this filter causes "
+"duplicate results to occur, this checkbox can reduce those duplicates; "
+"however, the more terms it has to search for, the less performant the "
+"query will be, so use this with caution. Shouldn't be set on "
+"single-value fields, as it may cause values to disappear from display, "
+"if used on an incompatible field."
+msgstr ""
+"Ce filtre peut faire apparaître des éléments comme des doublons "
+"s'ils ont plus d'une option sélectionnée. Si ce filtre engendre des "
+"doublons, cette case peut les réduire&nbsp;; cependant, plus il y "
+"aura de termes de recherche, moins la requête sera performante, donc "
+"utilisez ceci avec précaution. Cela ne devrait pas être actif sur "
+"des champs à valeur unique, car cela pourrait faire disparaître des "
+"valeurs de l'affichage si c'est utilisé sur un champ incompatible."
+msgid "Hostname of user that posted the comment."
+msgstr "Nom d'hôte (hostname) de l'utilisateur qui a posté le commentaire."
+msgid ""
+"Relate nodes to taxonomy terms, specifiying which vocabulary or "
+"vocabularies to use. This relationship will cause duplicated records "
+"if there are multiple terms."
+msgstr ""
+"Relie des nœuds à des termes de taxonomie, en spécifiant quel(s) "
+"vocabulaire(s) utiliser. Cette relation engendrera des doublons s'il y "
+"a plusieurs termes."
+msgid "The taxonomy term ID for the term."
+msgstr "L'identifiant du terme de taxonomie pour le terme."
+msgid "The taxonomy term name for the term."
+msgstr "Le nom du terme de taxonomie pour le terme."
+msgid "The name for the vocabulary the term belongs to."
+msgstr "Le nom pour le vocabulaire auquel appartient le terme."
+msgid ""
+"Choose which vocabularies you wish to relate. Remember that every term "
+"found will create a new record, so this relationship is best used on "
+"just one vocabulary that has only one term per node."
+msgstr ""
+"Choisissez quels vocabulaires vous voulez associer. Rappelez-vous que "
+"chaque terme trouvé créera une ligne de résultat, donc cette "
+"relation est plus utile sur un seul vocabulaire qui n'a qu'un seul "
+"terme par nœud."
+msgid "The name of the role."
+msgstr "Le nom du rôle."
+msgid "Hide empty fields"
+msgstr "Masquer les champs vides"
+msgid "Do not display fields, labels or markup for fields that are empty."
+msgstr "Ne pas afficher les champs, étiquettes ou balises des champs vides."
+msgid "Submitted by !username on !datetime"
+msgstr "Soumis par !username le !datetime"
+msgid "Administer forums"
+msgstr "Administrer les forums"
+msgid "This identifier is used by another handler."
+msgstr "Cet identifiant est utilisé par un autre handler."
+msgid "Length is shorter than"
+msgstr "La longueur est plus petite que"
+msgid "shorter than"
+msgstr "plus petit que"
+msgid "Length is longer than"
+msgstr "La longueur est plus grande que"
+msgid "longer than"
+msgstr "plus grand que"
+msgid "SQL Query"
+msgstr "Requête SQL"
+msgid "Query will be generated and run using the Drupal database API."
+msgstr ""
+"La requête sera générée et exécutée en utilisant l'API de base "
+"de données de Drupal."
+msgid "revision user"
+msgstr "utilisateur de la révision"
+msgid "Exposed form"
+msgstr "Formulaire exposé"
+msgid "Cancel account"
+msgstr "Annuler le compte"
+msgid "Secondary menu"
+msgstr "Menu secondaire"
+msgid "Maximum number of characters"
+msgstr "Nombre maximum de caractères"
+msgid "Administrator role"
+msgstr "Rôle administrateur"
+msgid ""
+"Display the standard add comment link used on regular nodes, which "
+"will only display if the viewing user has access to add a comment."
+msgstr ""
+"Afficher le lien standard d'ajout de commentaire sur les nœuds "
+"réguliers, qui ne sera affiché que si l'utilisateur visualisant la "
+"page a accès à l'ajout de commentaire."
+msgid "Inherit pager"
+msgstr "Hériter la pagination"
+msgid "Render pager"
+msgstr "Afficher la pagination"
+msgid "Render"
+msgstr "Rendu"
+msgid "No revision"
+msgstr "Aucune révision"
+msgid "@number comments per page"
+msgstr "@number commentaires par page"
+msgid "Requires a title"
+msgstr "Titre obligatoire"
+msgid "CKEditor"
+msgstr "CKEditor"
+msgid "Entities"
+msgstr "Entités"
+msgid "Private files"
+msgstr "Fichiers privés"
+msgid "Not restricted"
+msgstr "Non restreint"
+msgid "Toolbar buttons"
+msgstr "Boutons de la barre d'outils"
+msgid "The unique ID of the comment."
+msgstr "L'identifiant (ID) unique du commentaire."
+msgid "The IP address of the computer the comment was posted from."
+msgstr ""
+"L'adresse IP de l'ordinateur à partir duquel le commentaire a été "
+"posté."
+msgid "The name left by the comment author."
+msgstr "Le nom laissé par l'auteur du commentaire."
+msgid "The email address left by the comment author."
+msgstr "L'adresse de courriel laissée par l'auteur du commentaire."
+msgid "The home page URL left by the comment author."
+msgstr "L'URL de la page d'accueil Web laissé par l'auteur du commentaire."
+msgid "The formatted content of the comment itself."
+msgstr "Le contenu mis en forme du commentaire lui-même."
+msgid "The URL of the comment."
+msgstr "L'URL du commentaire."
+msgid "Edit URL"
+msgstr "Modifier URL"
+msgid "The URL of the comment's edit page."
+msgstr "L'URL de la page d'édition du commentaire."
+msgid "The date the comment was posted."
+msgstr "La date à laquelle le commentaire a été posté."
+msgid "The comment's parent, if comment threading is active."
+msgstr ""
+"Le parent du commentaire, si le fil de discussion des commentaire est "
+"actif."
+msgid "The node the comment was posted to."
+msgstr "Le nœud sur lequel le commentaire a été posté."
+msgid "The author of the comment, if they were logged in."
+msgstr "L'auteur du commentaire, s'il était connecté."
+msgid "The number of comments posted on a node."
+msgstr "Le nombre de commentaires postés sur un nœud."
+msgid "New comment count"
+msgstr "Comptage des nouveaux commentaires"
+msgid ""
+"The number of comments posted on a node since the reader last viewed "
+"it."
+msgstr ""
+"Le nombre de commentaires postés sur un nœud depuis la dernière "
+"consultation du lecteur."
+msgid "The unique ID of the node's latest revision."
+msgstr "L'identifiant (ID) unique de la dernière révision du nœud."
+msgid "Translation set ID"
+msgstr "Identifiant (ID) du jeu de traduction"
+msgid ""
+"The unique ID of the original-language version of this node, if one "
+"exists."
+msgstr ""
+"L'identifiant (ID) unique de la version de langue originale de ce "
+"nœud, si elle existe."
+msgid "The type of the node."
+msgstr "Le type du nœud."
+msgid "The human-readable name of the node type."
+msgstr "Le nom affiché du type de nœud."
+msgid "The URL of the node."
+msgstr "L'URL du nœud."
+msgid "The URL of the node's edit page."
+msgstr "L'URL de la page d'édition du nœud."
+msgid "Date changed"
+msgstr "Date de modification"
+msgid "The date the node was most recently updated."
+msgstr "La date à laquelle le nœud a été le plus récemment mis à jour."
+msgid "The author of the node."
+msgstr "L'auteur du nœud."
+msgid "The number of visitors who have read the node."
+msgstr "Le nombre de visiteurs qui ont lu le nœud."
+msgid "The number of visitors who have read the node today."
+msgstr "Le nombre de visiteurs qui ont lu le nœud aujourd'hui."
+msgid "Last view"
+msgstr "Dernière consultation"
+msgid "The date on which a visitor last read the node."
+msgstr "La date à laquelle un visiteur a lu le nœud en dernier."
+msgid "The slogan of the site."
+msgstr "Le slogan du site."
+msgid "The administrative email address for the site."
+msgstr "L'adresse de courriel administrative pour le site."
+msgid "The URL of the site's front page."
+msgstr "L'URL de la page d'accueil du site."
+msgid "Login page"
+msgstr "Page de connexion"
+msgid "The URL of the site's login page."
+msgstr "L'URL de la page de connexion du site."
+msgid "The unique ID of the uploaded file."
+msgstr "L'identifiant (ID) unique du fichier transféré."
+msgid "The name of the file on disk."
+msgstr "Le nom du fichier sur le disque."
+msgid "The web-accessible URL for the file."
+msgstr "L'URL du fichier accessible depuis le web"
+msgid "The date the file was most recently changed."
+msgstr "La date de modification du fichier la plus récente."
+msgid "The user who originally uploaded the file."
+msgstr "L'utilisateur qui a initialement transféré le fichier."
+msgid "The unique ID of the taxonomy term."
+msgstr "L'identifiant (ID) unique du terme de taxonomie."
+msgid "The name of the taxonomy term."
+msgstr "Le nom du terme de taxonomie."
+msgid "The optional description of the taxonomy term."
+msgstr "La description facultative du terme de taxonomie."
+msgid "The number of nodes tagged with the taxonomy term."
+msgstr "Le nombre de nœuds étiquetés avec le terme de taxonomie."
+msgid "The URL of the taxonomy term."
+msgstr "L'URL du terme taxonomie."
+msgid "The vocabulary the taxonomy term belongs to."
+msgstr "Le vocabulaire auquel appartient le terme de taxonomie."
+msgid "The parent term of the taxonomy term, if one exists."
+msgstr "Le terme parent du terme de taxonomie, s'il existe."
+msgid "The unique ID of the taxonomy vocabulary."
+msgstr "L'identifiant (ID) unique du vocabulaire de taxonomie."
+msgid "The name of the taxonomy vocabulary."
+msgstr "Le nom du vocabulaire de taxonomie."
+msgid "The optional description of the taxonomy vocabulary."
+msgstr "La description facultative du vocabulaire de taxonomie."
+msgid ""
+"The number of nodes tagged with terms belonging to the taxonomy "
+"vocabulary."
+msgstr ""
+"Le nombre de nœuds étiquettés avec les termes appartenant au "
+"vocabulaire de taxonomie."
+msgid "Term count"
+msgstr "Nombre de termes"
+msgid "The number of terms belonging to the taxonomy vocabulary."
+msgstr "Le nombre de termes appartenant au vocabulaire de taxonomie."
+msgid "The unique ID of the user account."
+msgstr "L'identifiant unique (ID) du compte d'utilisateur."
+msgid "The login name of the user account."
+msgstr "Le nom de login du compte de l'utilisateur."
+msgid "The email address of the user account."
+msgstr "L'adresse de courriel du compte utilisateur."
+msgid "The URL of the account profile page."
+msgstr "L'URL de la page du profil du compte."
+msgid "The date the user last logged in to the site."
+msgstr "La date de la dernière connexion de l'utilisateur sur le site."
+msgid "The date the user account was created."
+msgstr "La date de création du compte de l'utilisateur."
+msgid "Sender name"
+msgstr "Nom de l'expéditeur"
+msgid "Total rows"
+msgstr "Total de lignes"
+msgid "Main page content"
+msgstr "Contenu de la page principale"
+msgid ""
+"Whether comments are allowed on this node: 0 = no, 1 = closed (read "
+"only), 2 = open (read/write)."
+msgstr ""
+"Si les commentaires sont autorisés sur ce nœud : 0 = non, 1 = "
+"fermés (lecture seule), 2 = ouverts (lecture / écriture)."
+msgid "You are not allowed to access this page."
+msgstr "Vous n'êtes pas autorisé(e) à accéder à cette page."
+msgid "Authorize file system changes"
+msgstr "Autoriser des changements du système de fichier"
+msgid "It appears you have reached this page in error."
+msgstr "Il semblerait que vous soyez sur cette page par erreur."
+msgid "authorize.php"
+msgstr "authorize.php"
+msgid "Cron could not run because an invalid key was used."
+msgstr ""
+"La tâche planifiée (cron) ne s'est pas exécutée en raison de "
+"l'utilisation d'une clé invalide."
+msgid "Cron could not run because the site is in maintenance mode."
+msgstr ""
+"La tâche planifiée (cron) ne peut pas s'exécuter car le site est en "
+"mode maintenance."
+msgid "Default country"
+msgstr "Pays par défaut"
+msgid ""
+"In your %settings_file file you have configured @drupal to use a "
+"%driver server, however your PHP installation currently does not "
+"support this database type."
+msgstr ""
+"Vous avez configuré @drupal pour utiliser un serveur %driver dans "
+"votre fichier %settings_file, cependant votre installation php ne "
+"supporte pas ce type de base de données."
+msgid "Sorry, you must select a language to continue the installation."
+msgstr ""
+"Désolé, vous devez choisir une langue afin de poursuivre "
+"l’installation."
+msgid ""
+"We were unable to find any installation profiles. Installation "
+"profiles tell us what modules to enable and what schema to install in "
+"the database. A profile is necessary to continue with the installation "
+"process."
+msgstr ""
+"Il n'a pas été possible de trouver un profil d'installation. Les "
+"profils d'installation précisent quels modules activer et quels "
+"schéma installer dans la base de données. Un profil est nécessaire "
+"pour continuer le processus d'installation."
+msgid "Sorry, the profile you have chosen cannot be loaded."
+msgstr "Désolé, le profil que vous avez choisi ne peut pas être chargé."
+msgid ""
+"All necessary changes to %dir and %file have been made, so you should "
+"remove write permissions to them now in order to avoid security risks. "
+"If you are unsure how to do so, consult the <a "
+"href=\"@handbook_url\">online handbook</a>."
+msgstr ""
+"Tous les changements nécessaires à %dir et %file ont été "
+"effectués, vous devriez donc en retirer les permissions d'écriture "
+"afin d'éviter les risques de sécurité. Si vous n'êtes pas sûr de "
+"savoir comme faire, merci de consulter le <a "
+"href=\"@handbook_url\">manuel en ligne</a>."
+msgid "Congratulations, you installed @drupal!"
+msgstr "Félicitations, vous avez installé @drupal !"
+msgid ""
+"Review the messages above before visiting <a href=\"@url\">your new "
+"site</a>."
+msgstr ""
+"Merci de lire les messages suivants avant de visiter <a "
+"href=\"@url\">votre nouveau site</a>."
+msgid "<a href=\"@url\">Visit your new site</a>."
+msgstr "<a href=\"@url\">Visitez votre nouveau site</a>."
+msgid "Settings file"
+msgstr "Fichier de configuration"
+msgid "The settings file does not exist."
+msgstr "Le fichier de configuration n'existe pas."
+msgid ""
+"The @drupal installer requires that you create a settings file as part "
+"of the installation process. Copy the %default_file file to %file. "
+"More details about installing Drupal are available in <a "
+"href=\"@install_txt\">INSTALL.txt</a>."
+msgstr ""
+"Le processus d'installation de l'installeur <em>@drupal</em> requiert "
+"la création d'un fichier de configuration. <b>Copier</b> le fichier "
+"<em>%default_file</em> en <em>%file</em>. Des détails "
+"supplémentaires concernant l'installation sont disponibles dans <a "
+"href=\"@install_txt\">INSTALL.txt</a>."
+msgid "The %file file exists."
+msgstr "Le fichier %file existe."
+msgid "The settings file is not writable."
+msgstr "Le fichier de configuration n'est pas accessible en écriture."
+msgid ""
+"The @drupal installer requires write permissions to %file during the "
+"installation process. If you are unsure how to grant file permissions, "
+"consult the <a href=\"@handbook_url\">online handbook</a>."
+msgstr ""
+"Le programme d'installation de @drupal a besoin des permissions "
+"d'écriture sur %file pendant la procédure d'installation. Si vous ne "
+"savez pas comment donner la permission d'écriture, merci de consultez "
+"le <a href=\"@handbook_url\">manuel en ligne</a>."
+msgid ""
+"Automated e-mails, such as registration information, will be sent from "
+"this address. Use an address ending in your site's domain to help "
+"prevent these e-mails from being flagged as spam."
+msgstr ""
+"Les courriels automatiques, comme par exemple les informations "
+"d'inscription, seront envoyés depuis cette adresse. Utilisez une "
+"adresse se terminant par le domaine de votre site pour éviter que ces "
+"courriels ne soient signalés comme des pourriels (spam)."
+msgid "Site maintenance account"
+msgstr "Compte de maintenance du site"
+msgid "Select the default country for the site."
+msgstr "Choisissez un pays par défaut pour votre site."
+msgid "Receive e-mail notifications"
+msgstr "Recevoir les courriels de notification"
+msgid ""
+"The system will notify you when updates and important security "
+"releases are available for installed components. Anonymous information "
+"about your site is sent to <a href=\"@drupal\">Drupal.org</a>."
+msgstr ""
+"Le système vous préviendra lorsque de nouvelles versions et des "
+"mises à jour de sécurité importantes seront disponibles pour les "
+"composants installés. Des informations anonymes concernant votre site "
+"sont envoyées à <a href=\"@drupal\">Drupal.org</a>."
+msgid "No pending updates."
+msgstr "Pas de mise à jour en attente."
+msgid "1 pending update"
+msgid_plural "@count pending updates"
+msgstr[0] "@count mise à jour en attente"
+msgstr[1] "@count mises à jour en attente"
+msgid ""
+"An error occurred while handling the request: The server received "
+"invalid input."
+msgstr ""
+"Une erreur s'est produite durant la gestion de la requête&nbsp;: le "
+"serveur a reçu une entrée invalide."
+msgid "Invalid form POST data."
+msgstr "Données du formulaire POST invalides."
+msgid "Unable to continue, no available methods of file transfer"
+msgstr ""
+"Impossible de continuer, aucune méthode de transfert de fichier "
+"disponible"
+msgid ""
+"WARNING: You are not using an encrypted connection, so your password "
+"will be sent in plain text. <a href=\"@https-link\">Learn more</a>."
+msgstr ""
+"ATTENTION : vous n'utilisez pas de connexion cryptée, votre mot de "
+"passe sera donc envoyé en clair. <a href=\"@https-link\">En savoir "
+"plus</a>."
+msgid "To continue, provide your server connection details"
+msgstr "Pour continuer, remplir les informations de connexion au serveur"
+msgid "Connection method"
+msgstr "Méthode de connexion"
+msgid "Enter connection settings"
+msgstr "Saisir les paramètres de connexion"
+msgid "@backend connection settings"
+msgstr "paramètres de connexion @backend"
+msgid "Change connection type"
+msgstr "Changer le type de connexion"
+msgid "No active batch."
+msgstr "Aucun traitement par lot actif."
+msgid "Site under maintenance"
+msgstr "Site en maintenance"
+msgid "Archivers can only operate on local files: %file not supported"
+msgstr ""
+"L'archivage ne peut fonctionner que sur des fichiers locaux : %file "
+"non supporté"
+msgid ""
+"The file %source could not be uploaded because a file by that name "
+"already exists in the destination %directory."
+msgstr ""
+"Le fichier %source n'a pas pu être transféré car un fichier portant "
+"ce nom existe déjà dans la destination %directory."
+msgid ""
+"The file's name exceeds the 240 characters limit. Please rename the "
+"file and try again."
+msgstr ""
+"Le nom du fichier dépasse la limite de 240 caractères. Veuillez "
+"renommer le fichier et essayer à nouveau."
+msgid ""
+"%path is a directory and cannot be removed using "
+"file_unmanaged_delete()."
+msgstr ""
+"%path est un répertoire et ne peut pas être effacé en utilisant "
+"file_unmanaged_delete()."
+msgid "The file %path is not of a recognized type so it was not deleted."
+msgstr ""
+"Le fichier %path n'est pas d'un type reconnu, il n'a donc pas été "
+"effacé."
+msgid "The file permissions could not be set on %uri."
+msgstr "Les droits du fichier ne peuvent pas être appliqués sur %uri."
+msgid "Completed @current of @total."
+msgstr "@current sur @total terminés."
+msgid ""
+"Failed to run all tasks against the database server. The task %task "
+"wasn't found."
+msgstr ""
+"Echec lors du lancement des tâches vers le serveur de base de "
+"données. La tâche  %task n'a pas été trouvée."
+msgid "Failed to modify %settings. Verify the file permissions."
+msgstr ""
+"Impossible de modifier %settings. Veuillez vérifier les droits du "
+"fichier."
+msgid "Failed to open %settings. Verify the file permissions."
+msgstr ""
+"Echec lors de l'ouverture de %settings. Veuillez vérifier les "
+"permissions du fichier."
+msgid "Required modules"
+msgstr "Modules requis"
+msgid "Required modules not found."
+msgstr "Les modules requis sont introuvables."
+msgid "system"
+msgstr "système"
+msgid "%module module uninstalled."
+msgstr "Le module %module a été désinstallé."
+msgid "Saint Barthélemy"
+msgstr "Saint-Barthélemy"
+msgid "Saint Martin (French part)"
+msgstr "Saint-Martin (partie française)"
+msgid "No strings available."
+msgstr "Aucune chaîne disponible."
+msgid "JavaScript translation file %file.js was lost."
+msgstr "Le fichier de traduction Javascript %file.js a été perdu."
+msgid ""
+"Unable to send e-mail. Contact the site administrator if the problem "
+"persists."
+msgstr ""
+"Impossible d'envoyer le courriel. Contacter l'administrateur du site "
+"si le problème persiste."
+msgid "Class %class does not implement interface %interface"
+msgstr "La classe %class n'implémente pas l'interface %interface"
+msgid "(active tab)"
+msgstr "(onglet actif)"
+msgid "Operating in maintenance mode. <a href=\"@url\">Go online.</a>"
+msgstr ""
+"Site en cours de maintenance. <a href=\"@url\">Remettre le site en "
+"ligne.</a>"
+msgid "Operating in maintenance mode."
+msgstr "Fonctionne en mode maintenance."
+msgid "%module module enabled."
+msgstr "Module %module activé."
+msgid "%module module disabled."
+msgstr "Module %module désactivé."
+msgid "Status message"
+msgstr "Message d'état"
+msgid "Unable to determine the type of the source directory."
+msgstr "Impossible de déterminer le type du répertoire source."
+msgid "Cannot determine the type of project."
+msgstr "Impossible de déterminer le type du projet."
+msgid ""
+"Fatal error in update, cowardly refusing to wipe out the install "
+"directory."
+msgstr ""
+"Erreur fatale lors de la mise à jour, impossible de supprimer le "
+"répertoire d'installation."
+msgid "File Transfer failed, reason: !reason"
+msgstr "Le transfert du fichier a échoué, cause : !reason"
+msgid "Unable to create %directory due to the following: %reason"
+msgstr "Impossible de créer %directory pour cause de : %reason"
+msgid ""
+"Drupal could not be correctly setup with the existing database. Revise "
+"any errors."
+msgstr ""
+"Drupal n'est peut-être pas configuré correctement avec la base de "
+"données existante. Vérifier les erreurs."
+msgid "An AJAX HTTP error occurred."
+msgstr "Une erreur HTTP AJAX s'est produite."
+msgid "HTTP Result Code: !status"
+msgstr "Code de statut HTTP : !status"
+msgid "An AJAX HTTP request terminated abnormally."
+msgstr "Une requête HTTP AJAX s'est terminée anormalement."
+msgid "Debugging information follows."
+msgstr "Informations de débogage ci-dessous."
+msgid "Path: !uri"
+msgstr "Chemin : !uri"
+msgid "StatusText: !statusText"
+msgstr "StatusText: !statusText"
+msgid "ResponseText: !responseText"
+msgstr "ResponseText : !responseText"
+msgid "ReadyState: !readyState"
+msgstr "ReadyState : !readyState"
+msgid "No feeds available. <a href=\"@link\">Add feed</a>."
+msgstr "Aucun flux disponible. <a href=\"@link\">Ajouter un flux</a>."
+msgid "No categories available. <a href=\"@link\">Add category</a>."
+msgstr ""
+"Aucune catégorie disponible. <a href=\"@link\">Ajouter une "
+"catégorie</a>."
+msgid ""
+"The length of time between feed updates. Requires a correctly "
+"configured <a href=\"@cron\">cron maintenance task</a>."
+msgstr ""
+"L'intervalle de temps entre les mises à jour du flux. Requiert une <a "
+"href=\"@cron\">tâche planifiée (cron) de maintenance</a> "
+"correctement configurée."
+msgid "News items in block"
+msgstr "Actualités affichées dans le bloc"
+msgid ""
+"Drupal can make a block with the most recent news items of this feed. "
+"You can <a href=\"@block-admin\">configure blocks</a> to be displayed "
+"in the sidebar of your page. This setting lets you configure the "
+"number of news items to show in this feed's block. If you choose '0' "
+"this feed's block will be disabled."
+msgstr ""
+"Drupal peut créer un bloc avec les actualités les plus récentes de "
+"ce flux. Vous pouvez <a href=\"@block-admin\">configurer les blocs</a> "
+"pour les afficher dans une région de votre page. Ce paramètre permet "
+"de configurer le nombre d'actualités à afficher dans le bloc de ce "
+"flux. Si vous entrez '0', le bloc de ce flux sera désactivé."
+msgid "A feed named %feed already exists. Enter a unique title."
+msgstr "Un flux nommé %feed existe déjà. Choisissez un titre unique."
+msgid "A feed with this URL %url already exists. Enter a unique URL."
+msgstr ""
+"Il existe déjà un flux pour l'adresse %url. Saisissez une adresse "
+"URL unique."
+msgid "Upload an OPML file containing a list of feeds to be imported."
+msgstr "Transférer un fichier OPML contenant une liste de flux à importer."
+msgid "OPML Remote URL"
+msgstr "URL OPML distante"
+msgid ""
+"Enter the URL of an OPML file. This file will be downloaded and "
+"processed only once on submission of the form."
+msgstr ""
+"Saisir l'URL d'un fichier OPML. Ce fichier sera téléchargé et "
+"traité une fois le formulaire soumis."
+msgid ""
+"Drupal can make a block with the most recent news items of a feed. You "
+"can <a href=\"@block-admin\">configure blocks</a> to be displayed in "
+"the sidebar of your page. This setting lets you configure the number "
+"of news items to show in a feed's block. If you choose '0' these "
+"feeds' blocks will be disabled."
+msgstr ""
+"Drupal peut créer un bloc à partir des éléments les plus récents "
+"d'un flux. Vous pouvez <a href=\"@block-admin\">configurer les "
+"blocs</a> pour qu'ils s'affichent dans la barre latérale de votre "
+"page. Ce paramètre vous permet de configurer le nombre d'éléments "
+"disponibles dans un bloc. Si vous choisissez \"0\", le bloc sera "
+"désactivé."
+msgid "You must <em>either</em> upload a file or enter a URL."
+msgstr "Vous devez <em>au choix</em> transférer un fichier ou saisir une URL."
+msgid "No new feed has been added."
+msgstr "Aucun nouveau flux n'a été ajouté."
+msgid "The URL %url is invalid."
+msgstr "L'URL %url est invalide."
+msgid "A feed named %title already exists."
+msgstr "Il existe déjà un flux nommé %title."
+msgid "A feed with the URL %url already exists."
+msgstr "Il existe déjà un flux pour l'adresse %url."
+msgid ""
+"Fetchers download data from an external source. Choose a fetcher "
+"suitable for the external source you would like to download from."
+msgstr ""
+"Les extracteurs téléchargent des données depuis une source externe. "
+"Choisissez un chercheur adapté à la source externe à partir de "
+"laquelle vous souhaitez télécharger."
+msgid ""
+"Parsers transform downloaded data into standard structures. Choose a "
+"parser suitable for the type of feeds you would like to aggregate."
+msgstr ""
+"Les analyseurs syntaxiques (<em>parsers</em>) transforment les "
+"données téléchargées en structures standard. Choisissez un "
+"analyseur approprié au type de flux que vous souhaitez agréger."
+msgid ""
+"Processors act on parsed feed data, for example they store feed items. "
+"Choose the processors suitable for your task."
+msgstr ""
+"Les processeurs agissent sur le flux de données analysé, ils "
+"stockent par exemple les éléments de flux. Choisissez les "
+"processeurs adaptés à votre tâche."
+msgid "For most aggregation tasks, the default settings are fine."
+msgstr ""
+"Pour la plupart des tâches d'agrégation, les paramètres par défaut "
+"sont bons."
+msgid "A category named %category already exists. Enter a unique title."
+msgstr ""
+"Une catégorie intitulée %category existe déjà. Saisir un titre "
+"unique."
+msgid "Default fetcher"
+msgstr "Extracteur par défaut"
+msgid "Downloads data from a URL using Drupal's HTTP request handler."
+msgstr ""
+"Télécharge des données à partir d'une URL en utilisant le "
+"gestionnaire de requête HTTP de Drupal."
+msgid "Default parser"
+msgstr "Analyseur syntaxique (parser) par défaut"
+msgid "Default processor"
+msgstr "Processeur par défaut"
+msgid "Creates lightweight records from feed items."
+msgstr "Crée des enregistrements allégés, à partir des éléments de flux."
+msgid "Default processor settings"
+msgstr "Paramètres du processeur par défaut"
+msgid "Number of items shown in listing pages"
+msgstr "Nombre d'éléments figurant dans les pages de listes"
+msgid ""
+"Requires a correctly configured <a href=\"@cron\">cron maintenance "
+"task</a>."
+msgstr ""
+"Requiert une <a href=\"@cron\">tâche planifiée (cron) de "
+"maintenance</a> correctement configurée."
+msgid "Select categories using"
+msgstr "Sélectionner les catégories en utilisant"
+msgid ""
+"For a small number of categories, checkboxes are easier to use, while "
+"a multiple selector works well with large numbers of categories."
+msgstr ""
+"Pour un petit nombre de catégories, les cases à cocher sont plus "
+"faciles à utiliser, tandis qu'un sélecteur multiple fonctionne bien "
+"avec un grand nombre de catégories."
+msgid "Length of trimmed description"
+msgstr "Longueur de la description tronquée"
+msgid ""
+"The maximum number of characters used in the trimmed version of "
+"content."
+msgstr ""
+"Le nombre maximum de caractères utilisés dans la version tronquée "
+"du contenu."
+msgid ""
+"The Aggregator module is an on-site syndicator and news reader that "
+"gathers and displays fresh content from RSS-, RDF-, and Atom-based "
+"feeds made available across the web. Thousands of sites (particularly "
+"news sites and blogs) publish their latest headlines in feeds, using a "
+"number of standardized XML-based formats. For more information, see "
+"the online handbook entry for <a "
+"href=\"@aggregator-module\">Aggregator module</a>."
+msgstr ""
+"Le module Aggregator est un syndicateur en ligne et un lecteur "
+"d'actualités qui réunit et affiche des contenus récents à partir "
+"de flux basés sur RSS, RDF et Atom, rendus accessibles via le web. "
+"Des milliers de sites (en particulier les nouveaux sites et blogs) "
+"publient leurs derniers entêtes dans des flux, en utilisant certains "
+"formats standardisés basés sur XML. Pour plus d'informations, voir "
+"la section <a href=\"@aggregator-module\">module Aggregator</a> du "
+"manuel en ligne."
+msgid "Viewing feeds"
+msgstr "Visualiser les flux"
+msgid ""
+"Feeds contain published content, and may be grouped in categories, "
+"generally by topic. Users view feed content in the <a "
+"href=\"@aggregator\">main aggregator display</a>, or by <a "
+"href=\"@aggregator-sources\">their source</a> (usually via an RSS feed "
+"reader). The most recent content in a feed or category can be "
+"displayed as a block through the <a href=\"@admin-block\">Blocks "
+"administration page</a>."
+msgstr ""
+"Les flux contiennent des contenus publiés, et peuvent être groupés "
+"en catégories,  généralement par sujet. Les utilisateurs peuvent "
+"voir le contenu du flux sur <a href=\"@aggregator\">l'affichage de "
+"l'agrégateur principal</a>, ou à <a href=\"@aggregator-sources\">sa "
+"source</a> (en principe via un lecteur de flux RSS). Les contenus les "
+"plus récents dans un flux ou une catégorie peuvent être affichés "
+"dans un bloc via la <a href=\"@admin-block\">page d'administration des "
+"blocs</a>."
+msgid "Adding, editing, and deleting feeds"
+msgstr "Ajout, modification et suppression des flux"
+msgid ""
+"Administrators can add, edit, and delete feeds, and choose how often "
+"to check each feed for newly updated items on the <a "
+"href=\"@feededit\">Feed aggregator administration page</a>."
+msgstr ""
+"Les administrateurs peuvent ajouter, modifier ou supprimer des flux et "
+"choisir à quelle fréquence vérifier la présence d'éléments mis "
+"à jour sur la <a href=\"@feededit\">page d'administration de "
+"l'agrégateur de flux</a>."
+msgid "OPML integration"
+msgstr "Intégration OPML"
+msgid ""
+"A <a href=\"@aggregator-opml\">machine-readable OPML file</a> of all "
+"feeds is available. OPML is an XML-based file format used to share "
+"outline-structured information such as a list of RSS feeds. Feeds can "
+"also be <a href=\"@import-opml\">imported via an OPML file</a>."
+msgstr ""
+"Un <a href=\"@aggregator-opml\">fichier système OPML</a> pour tous "
+"les flux est  disponible. OPML est un fichier basé sur le format XML "
+"utilisé pour partager des informations structurées  telles qu'une "
+"liste de flux RSS. Les flux peuvent aussi être <a "
+"href=\"@import-opml\">importés via un fichier OPML</a>."
+msgid "Configuring cron"
+msgstr "Configuration de la tâche planifiée (cron)"
+msgid ""
+"A correctly configured <a href=\"@cron\">cron maintenance task</a> is "
+"required to update feeds automatically."
+msgstr ""
+"Une <a href=\"@cron\">tâche de maintenance cron</a> est requise pour "
+"mettre automatiquement à jour les flux."
+msgid ""
+"<acronym title=\"Outline Processor Markup Language\">OPML</acronym> is "
+"an XML format used to exchange multiple feeds between aggregators. A "
+"single OPML document may contain a collection of many feeds. Drupal "
+"can parse such a file and import all feeds at once, saving you the "
+"effort of adding them manually. You may either upload a local file "
+"from your computer or enter a URL where Drupal can download it."
+msgstr ""
+"<acronym title=\"Outline Processor Markup Language\">OPML</acronym> "
+"est un format XML utilisé pour échanger des flux multiples entre des "
+"agrégateurs. Un seul document OPML peut contenir une collection de "
+"plusieurs flux. Drupal peut analyser un tel fichier et importer tous "
+"les flux à la fois, vous évitant l'effort de les ajouter "
+"manuellement. Vous pouvez au choix transférer un fichier local à "
+"partir de votre ordinateur ou saisir une URL à partir de laquelle "
+"Drupal peut le télécharger."
+msgid "Administer news feeds"
+msgstr "Administrer les flux d'actualités"
+msgid "View news feeds"
+msgstr "Voir les flux d'actualités"
+msgid ""
+"Configure the behavior of the feed aggregator, including when to "
+"discard feed items and how to present feed items and categories."
+msgstr ""
+"Configurer le comportement de l'agrégateur de flux, y compris quand "
+"nettoyer les éléments de flux et comment présenter les éléments "
+"de flux et de catégories."
+msgid "All pages except those listed"
+msgstr "Toutes les pages sauf celles listées"
+msgid "Only the listed pages"
+msgstr "Seulement les pages listées"
+msgid "Pages on which this PHP code returns <code>TRUE</code> (experts only)"
+msgstr ""
+"Pages sur lesquelles ce code PHP renvoie <code>TRUE</code> "
+"(recommandés aux experts)"
+msgid "Pages or PHP code"
+msgstr "Pages ou code PHP"
+msgid ""
+"If the PHP option is chosen, enter PHP code between %php. Note that "
+"executing incorrect PHP code can break your Drupal site."
+msgstr ""
+"Si l'option PHP est choisie, saisissez le code PHP entre %php. "
+"Attention, si un code PHP incorrect est exécuté, cela peut faire "
+"tomber votre site Drupal."
+msgid "Positioning content"
+msgstr "Positionnement du contenu"
+msgid ""
+"When working with blocks, remember that all themes do <em>not</em> "
+"implement the same regions, or display regions in the same way. Blocks "
+"are positioned on a per-theme basis. Users with the <em>Administer "
+"blocks</em> permission can disable blocks. Disabled blocks are listed "
+"on the <a href=\"@blocks\">Blocks administration page</a>, but are not "
+"displayed in any region."
+msgstr ""
+"Lorsque vous travaillez avec des blocs, n'oubliez pas que tous les "
+"thèmes </em>ne contiennent pas</em> les mêmes régions et <em>ne les "
+"affichent pas</em>de la même façon. Les blocs sont positionnés "
+"selon la structure de chaque thème. Les utilisateurs ayant les droits "
+"<em>Administrer les blocs</em> peuvent désactiver les blocs. Les "
+"blocs désactivés sont listés sur la page <a "
+"href=\"@blocks\">Administrer les blocs</a>, mais ne sont affichés "
+"dans aucune région."
+msgid "Controlling visibility"
+msgstr "Contrôle de la visibilité"
+msgid "Creating custom blocks"
+msgstr "Création des blocs personnalisés"
+msgid ""
+"Users with the <em>Administer blocks</em> permission can <a "
+"href=\"@block-add\">add custom blocks</a>, which are then listed on "
+"the <a href=\"@blocks\">Blocks administration page</a>. Once created, "
+"custom blocks behave just like default and module-generated blocks."
+msgstr ""
+"Les utilisateurs avec les droits <em>Administrer les blocs</em> "
+"peuvent <a href=\"@block-add\">ajouter des blocs personnalisés</a> "
+"qui sont ensuite listés sur la <a href=\"@blocks\">page "
+"d'administration blocs</a>. Une fois créés, les blocs personnalisés "
+"se comportent comme les blocs par défaut et ceux générés via des "
+"modules tiers."
+msgid ""
+"This page provides a drag-and-drop interface for assigning a block to "
+"a region, and for controlling the order of blocks within regions. "
+"Since not all themes implement the same regions, or display regions in "
+"the same way, blocks are positioned on a per-theme basis. Remember "
+"that your changes will not be saved until you click the <em>Save "
+"blocks</em> button at the bottom of the page. Click the "
+"<em>configure</em> link next to each block to configure its specific "
+"title and visibility settings."
+msgstr ""
+"Cette page fournit une interface avec glisser-déposer pour "
+"l'affectation des blocs aux régions et le contrôle de l'ordre des "
+"blocs dans les régions. Les thèmes ne mettent pas tous en œuvre les "
+"mêmes régions ou ne les affichent pas de la même manière, les "
+"blocs sont donc positionnés par thème. Rappelez-vous que vos "
+"modifications ne seront pas enregistrées tant que vous n'aurez pas "
+"cliqué sur le bouton <em>Enregistrer les blocs</em> au bas de la "
+"page. Cliquez sur le lien <em>Configurer</em> à côté de chaque bloc "
+"pour configurer son titre et ses paramètres de visibilité "
+"spécifiques."
+msgid "Demonstrate block regions (@theme)"
+msgstr "Aperçu des régions des blocs (@theme)"
+msgid "Administer blocks"
+msgstr "Administrer les blocs"
+msgid ""
+"A brief description of your block. Used on the <a "
+"href=\"@overview\">Blocks administration page</a>."
+msgstr ""
+"Une courte description de votre bloc qui sera reprise sur la <a "
+"href=\"@overview\">page d'administration des Blocs</a>."
+msgid "Restricted to certain pages"
+msgstr "Réservé à certaines pages"
+msgid "The block cannot be placed in this region."
+msgstr "Le bloc ne peut pas être placé dans cette région."
+msgid "No books available."
+msgstr "Aucun livre disponible."
+msgid "Content types allowed in book outlines"
+msgstr "Les types de contenu autorisés dans les structures de livre"
+msgid "Users with the %outline-perm permission can add all content types."
+msgstr ""
+"Les utilisateurs avec les droits %outline-perm peuvent ajouter tous "
+"les types de contenu."
+msgid "Administer book outlines"
+msgstr "Administrer les structures de livre"
+msgid ""
+"The Book module is used for creating structured, multi-page content, "
+"such as site resource guides, manuals, and wikis. It allows you to "
+"create content that has chapters, sections, subsections, or any "
+"similarly-tiered structure. For more information, see the online "
+"handbook entry for <a href=\"@book\">Book module</a>."
+msgstr ""
+"Le module Book est utilisé pour créer du contenu structuré sur "
+"plusieurs pages, tels que les guides de ressource du site, les "
+"manuels, les wikis. Il permet aussi de créer du contenu qui contient "
+"des chapitres, sections, sous-sections ou une autre structure "
+"organisée de façon similaire sur plusieurs niveaux. Pour plus "
+"d'informations, voir la section du <a href=\"@book\">module Book</a> "
+"du manuel en ligne."
+msgid "Adding and managing book content"
+msgstr "Ajouter et gérer le contenu du livre"
+msgid ""
+"You can assign separate permissions for <em>creating</em>, "
+"<em>editing</em>, and <em>deleting</em> book content, as well as "
+"<em>adding content to books</em>, and <em>creating new books</em>. "
+"Users with the <em>Administer book outlines</em> permission can add "
+"<em>any</em> type of content to a book by selecting the appropriate "
+"book outline while editing the content. They can also view a list of "
+"all books, and edit and rearrange section titles on the <a "
+"href=\"@admin-book\">Book administration page</a>."
+msgstr ""
+"Vous pouvez assigner des droits séparés pour <em>créer</em>, "
+"<em>modifier</em> et <em>supprimer</em> des contenus de livre, ainsi "
+"que <em>ajouter des contenus aux livres</em> et <em>créer des "
+"nouveaux livres</em>. Les utilisateurs avec les droits <em>Administrer "
+"les structures de livre</em> peuvent ajouter <em>n'importe quel</em> "
+"type de contenu à un livre en sélectionnant la structure de livre "
+"appropriée pendant la modification du contenu. Ils peuvent aussi voir "
+"une liste de tous les livres, ainsi que modifier et réarranger les "
+"titres des sections sur la <a href=\"@admin-block\">page "
+"d'administration des blocs</a>."
+msgid ""
+"Book pages have a default book-specific navigation block. This "
+"navigation block contains links that lead to the previous and next "
+"pages in the book, and to the level above the current page in the "
+"book's structure. This block can be enabled on the <a "
+"href='@admin-block'>Blocks administration page</a>. For book pages to "
+"show up in the book navigation, they must be added to a book outline."
+msgstr ""
+"Les pages du module Book possèdent un bloc de navigation spécifique. "
+"Ce bloc contient des liens menant aux pages précédentes et suivantes "
+"dans le livre, ainsi qu'à la page du niveau supérieur. Les blocs "
+"sont activés sur la <a href='@admin-block'>page d'administration du "
+"module Block</a>. Pour que les blocs puissent apparaître, ils doivent "
+"être ajoutés à la structure d'un livre existant."
+msgid ""
+"Books can be created collaboratively, as they allow users with "
+"appropriate permissions to add pages into existing books, and add "
+"those pages to a custom table of contents menu."
+msgstr ""
+"Les livres peuvent être créés en collaboration en permettant aux "
+"utilisateurs disposant des droits appropriés d'ajouter des pages dans "
+"les livres existants et d'ajouter ces pages dans une table des "
+"matières personnalisée."
+msgid "Printing books"
+msgstr "Impression de livres"
+msgid ""
+"Users with the <em>View printer-friendly books</em> permission can "
+"select the <em>printer-friendly version</em> link visible at the "
+"bottom of a book page's content to generate a printer-friendly display "
+"of the page and all of its subsections."
+msgstr ""
+"Les utilisateurs avec le droit <em>Voir l'impression des livres</em> "
+"peut sélectionner le lien <em>version imprimable</em> visible au bas "
+"du contenu d'une page de livre afin de générer un affichage "
+"imprimable de la page et de toutes ses sous-sections."
+msgid ""
+"The book module offers a means to organize a collection of related "
+"content pages, collectively known as a book. When viewed, this content "
+"automatically displays links to adjacent book pages, providing a "
+"simple navigation system for creating and reviewing structured "
+"content."
+msgstr ""
+"Le module Book permet d'organiser un ensemble de pages de contenus "
+"associés, nommées collectivement \"livre\". Lorsqu'il est "
+"visualisé, ce contenu affiche automatiquement des liens vers les "
+"pages adjacentes du livre, fournissant un système de navigation "
+"simple pour créer et réviser les contenus structurés."
+msgid ""
+"The outline feature allows you to include pages in the <a "
+"href=\"@book\">Book hierarchy</a>, as well as move them within the "
+"hierarchy or to <a href=\"@book-admin\">reorder an entire book</a>."
+msgstr ""
+"L'option de structure vous permet d'inclure des contenus dans <a "
+"href=\"@book\">la hiérarchie du livre</a>, tout comme les déplacer "
+"dans la hiérarchie ou <a href=\"@book-admin\">réorganiser un livre "
+"entier</a>."
+msgid "Create new books"
+msgstr "Créer de nouveaux livres"
+msgid "Add content and child pages to books"
+msgstr "Ajouter du contenu et des pages enfants aux livres"
+msgid "View printer-friendly books"
+msgstr "Voir les livres en version imprimable"
+msgid ""
+"View a book page and all of its sub-pages as a single document for "
+"ease of printing. Can be performance heavy."
+msgstr ""
+"Voir une page de livre et toutes ses sous-pages en un seul document "
+"pour en faciliter l'impression. La performance peut s'en trouver "
+"diminuée."
+msgid ""
+"<em>Books</em> have a built-in hierarchical navigation. Use for "
+"handbooks or tutorials."
+msgstr ""
+"<em>Les livres</em> possèdent une navigation hiérarchique "
+"intégrée. Cela est utile pour des guides ou des tutoriels."
+msgid ""
+"The Color module allows users with the <em>Administer site "
+"configuration</em> permission to quickly and easily change the color "
+"scheme of themes that have been built to be compatible with it. For "
+"more information, see the online handbook entry for <a "
+"href=\"@color\">Color module</a>."
+msgstr ""
+"Le module <em>Color</em> permet aux usagers qui ont les droits "
+"<em>Administration de la configuration du site</em> de modifier "
+"rapidement et simplement le jeu de couleurs des thèmes compatibles "
+"avec ce module. Pour plus d'information, voir le <a "
+"href=\"@color\">guide en ligne du module Color</a>."
+msgid "Changing colors"
+msgstr "Modification des couleurs"
+msgid ""
+"Using the Color module allows you to easily change the color of links, "
+"backgrounds, text, and other theme elements. To change the color "
+"settings for a compatible theme, select the <em>Settings</em> link for "
+"your theme on the <a href='@configure'>Themes administration page</a>. "
+"If you don't see a color picker on that page, then your theme is not "
+"compatible with the color module. If you are sure that the theme does "
+"indeed support the color module, but the color picker does not appear, "
+"then <a href='@troubleshoot'>follow these troubleshooting "
+"procedures</a>."
+msgstr ""
+"Le module <em>Color</em> vous permet de changer facilement les "
+"couleurs des liens, des arrière-plans, des textes et d'autres "
+"éléments du thème. Pour changer les paramètres de couleur d'un "
+"thème compatible, sélectionnez le lien <em>Paramètres</em> de votre "
+"thème sur la <a href='@configure'>Page d'administration des "
+"thèmes</a>. Si vous ne voyez pas le sélecteur de couleur sur cette "
+"page, c'est que votre thème n'est pas compatible avec le module "
+"Color. Si vous êtes certain qu'un thème est compatible avec le "
+"module Color, mais que le sélecteur de couleur n'apparaît pas, <a "
+"href='@troubleshoot'>suivez ces procédures de dépannage</a>."
+msgid ""
+"The Color module saves a modified copy of the theme's specified "
+"stylesheets in the files directory. This means that if you make any "
+"manual changes to your theme's stylesheet, <em>you must save your "
+"color settings again, even if they haven't changed</em>. This step is "
+"required because the module stylesheets (in the files directory) need "
+"to be recreated to include your changes."
+msgstr ""
+"Le module <em>Color</em> enregistre une copie modifiée des feuilles "
+"de style spécifiées du thème dans le répertoire des fichiers. Cela "
+"signifie que si vous apportez des modifications manuelles aux feuilles "
+"de style de votre thème, <em>vous devez de nouveau enregistrer vos "
+"paramètres de couleur, même s'ils n'ont pas changé</em>. Cette "
+"étape est nécessaire car les feuilles de style du module (dans le "
+"répertoire files) doivent être recréées pour inclure vos "
+"changements."
+msgid ""
+"The GD library for PHP is enabled, but was compiled without PNG "
+"support. Check the <a href=\"@url\">PHP image documentation</a> for "
+"information on how to correct this."
+msgstr ""
+"La librairie GD pour PHP est activée, mais elle a été compilée "
+"sans le support du format PNG. Consultez la <a "
+"href=\"@url\">documentation PHP sur le traitement des images</a> pour "
+"corriger ce problème."
+msgid ""
+"The GD library for PHP is missing or outdated. Check the <a "
+"href=\"@url\">PHP image documentation</a> for information on how to "
+"correct this."
+msgstr ""
+"La librairie GD pour PHP est manquante ou obsolète. Consultez la <a "
+"href=\"@url\">documentation PHP concernant les images</a> pour savoir "
+"comment corriger cela."
+msgid "Select one or more comments to perform the update on."
+msgstr ""
+"Sélectionnez un ou plusieurs commentaires pour effectuer la mise à "
+"jour."
+msgid ""
+"There do not appear to be any comments to delete, or your selected "
+"comment was deleted by another administrator."
+msgstr ""
+"Il ne semble pas y avoir de commentaires à supprimer, ou le "
+"commentaire que vous avez sélectionné a été supprimé par un autre "
+"administrateur."
+msgid "Deleted @count comments."
+msgstr "@count commentaires supprimés"
+msgid "Deleted comment @cid and its replies."
+msgstr "Commentaire @cid supprimé ainsi que ses réponses."
+msgid "Comment approved."
+msgstr "Commentaire approuvé."
+msgid "Tokens for comments posted on the site."
+msgstr "Jetons (<em>tokens</em>) pour les commentaires postés sur le site."
+msgid ""
+"The Comment module allows users to comment on site content, set "
+"commenting defaults and permissions, and moderate comments. For more "
+"information, see the online handbook entry for <a "
+"href=\"@comment\">Comment module</a>."
+msgstr ""
+"Le module Comment permet aux utilisateurs de commenter le contenu du "
+"site, de définir les permissions et les actions par défaut et de "
+"modérer les commentaires. Pour plus d'informations, voir la section "
+"sur le<a href=\"@comment\"> module Comment</a> du manuel en ligne."
+msgid "Default and custom settings"
+msgstr "Paramètres par défaut et personnalisés"
+msgid ""
+"Each <a href='@content-type'>content type</a> can have its own default "
+"comment settings configured as: <em>Open</em> to allow new comments, "
+"<em>Hidden</em> to hide existing comments and prevent new comments, or "
+"<em>Closed</em> to view existing comments, but prevent new comments. "
+"These defaults will apply to all new content created (changes to the "
+"settings on existing content must be done manually). Other comment "
+"settings can also be customized per content type, and can be "
+"overridden for any given item of content. When a comment has no "
+"replies, it remains editable by its author, as long as the author has "
+"a user account and is logged in."
+msgstr ""
+"Pour chaque <a href='@content-type'>type de contenu</a> on peut "
+"définir les paramétrages applqués par défaut concernant les "
+"commentaires : <em>Ouvert</em> pour permettre les nouveaux "
+"commentaires, <em>Caché</em> pour cacher les commentaires existants "
+"et empêcher les nouveaux commentaires, ou <em>Fermé</em> pour voir "
+"les commentaires existants mais empêcher les nouveaux commentaires. "
+"Ce comportement sera appliqué à tout nouveau contenu créé (les "
+"modifications sur les paramètres des contenus déjà existants "
+"doivent être réalisés manuellement). Les autres paramétres "
+"concernant les commentaires peuvent être aussi personnalisés par "
+"type de contenu et peuvent être supplantés pour chaque contenu. "
+"Quand un commentaire n'a pas de réponse, il est modifiable par son "
+"auteur tant que l'auteur dispose de son compte utilisateur et qu'il "
+"est connecté."
+msgid "Unapproved comments (@count)"
+msgstr "Commentaires non validés (@count)"
+msgid "Administer comments and comment settings"
+msgstr "Administrer les commentaires et les paramètres de commentaire"
+msgid "Edit own comments"
+msgstr "Modifier ses propres commentaires"
+msgid "Number of recent comments"
+msgstr "Nombre de commentaires récents"
+msgid "Threading"
+msgstr "Indentation (de discussion)"
+msgid "Show comment replies in a threaded list."
+msgstr "Afficher les réponses aux commentaires dans une liste indentée."
+msgid "Default comment setting for new content"
+msgstr "Paramètre de commentaires par défaut pour les nouveaux contenus"
+msgid "Allow comment title"
+msgstr "Autoriser les titres de commentaire"
+msgid "Show reply form on the same page as comments"
+msgstr ""
+"Afficher le formulaire de réponse sur la même page que celle des "
+"commentaires"
+msgid "Users with the \"Post comments\" permission can post comments."
+msgstr ""
+"Les utilisateurs avec le droit \"Poster des commentaires\" peuvent "
+"poster des commentaires."
+msgid "Users cannot post comments, but existing comments will be displayed."
+msgstr ""
+"Les utilisateurs ne peuvent pas poster de commentaires, mais les "
+"commentaires existants seront affichés."
+msgid "Comments are hidden from view."
+msgstr "Les commentaires sont cachés de la vue."
+msgid "Users cannot post comments."
+msgstr "Les utilisateurs ne peuvent pas poster de commentaires."
+msgid ""
+"Your comment has been queued for review by site administrators and "
+"will be published after approval."
+msgstr ""
+"Votre commentaire a été mis en attente pour être modéré par les "
+"administrateurs du site et sera publié après approbation."
+msgid "Your comment has been posted."
+msgstr "Votre commentaire a été posté."
+msgid ""
+"<a href=\"@login\">Log in</a> or <a href=\"@register\">register</a> to "
+"post comments"
+msgstr ""
+"<a href=\"@login\">Connectez-vous</a> ou <a "
+"href=\"@register\">inscrivez-vous</a> pour publier un commentaire"
+msgid "<a href=\"@login\">Log in</a> to post comments"
+msgstr "<a href=\"@login\">Identifiez-vous</a> pour poster des commentaires"
+msgid "Flat list"
+msgstr "Liste à plat"
+msgid "Threaded list"
+msgstr "Liste hiérarchisée"
+msgid "Save comment"
+msgstr "Enregistrer le commentaire"
+msgid ""
+"The comment will be unpublished if it contains any of the phrases "
+"above. Use a case-sensitive, comma-separated list of phrases. Example: "
+"funny, bungee jumping, \"Company, Inc.\""
+msgstr ""
+"Le commentaire sera dépublié s'il contient n'importe laquelle des "
+"phrases ci-dessus. Utiliser une liste de phrases sensibles à la casse "
+"et séparées par des virgules. Exemple : marrant, saut à "
+"l'élastique, \"S.A. Société\""
+msgid "List and edit site comments and the comment approval queue."
+msgstr ""
+"Lister et modifier les commentaires du site et la file d'attente "
+"d'approbation des commentaires."
+msgid "Unapproved comments"
+msgstr "Commentaires non aprouvés"
+msgid ""
+"Example: 'webmaster@example.com' or "
+"'sales@example.com,support@example.com' . To specify multiple "
+"recipients, separate each e-mail address with a comma."
+msgstr ""
+"Exemple : 'webmaster@example.com' ou "
+"'ventes@example.com,support@example.com'. Pour définir plusieurs "
+"destinataires, séparez chaque adresse de courriel par une virgule."
+msgid ""
+"You cannot send more than %limit messages in @interval. Try again "
+"later."
+msgstr ""
+"Vous ne pouvez pas envoyer plus de %limit messages par période de "
+"@interval. Réessayez ultérieurement."
+msgid "Contact @username"
+msgstr "Contacter @username"
+msgid "%sender-name (@sender-from) sent an e-mail regarding %category."
+msgstr ""
+"%sender-name (@sender-from) a envoyé un courriel à propos de "
+"%category."
+msgid "%sender-name (@sender-from) sent %recipient-name an e-mail."
+msgstr "%sender-name (@sender-from) a envoyé un courriel à %recipient-name."
+msgid ""
+"The Contact module allows visitors to contact site administrators and "
+"other users. Users specify a subject, write their message, and can "
+"have a copy of their message sent to their own e-mail address. For "
+"more information, see the online handbook entry for <a "
+"href=\"@contact\">Contact module</a>."
+msgstr ""
+"Le module Contact permet aux visiteurs de contacter les "
+"administrateurs du site et les autres utilisateurs. Les visiteurs "
+"définissent un objet, écrivent leur message et peuvent recevoir sur "
+"leur adresse de courriel personnelle une copie de ce message. Pour "
+"plus d'informations, voir la section du <a href=\"@contact\">module "
+"Contact</a> du manuel en ligne."
+msgid "User contact forms"
+msgstr "Formulaires de contact utilisateur"
+msgid ""
+"Site users can be contacted with a user contact form that keeps their "
+"e-mail address private. Users may enable or disable their personal "
+"contact forms by editing their <em>My account</em> page. If enabled, a "
+"<em>Contact</em> tab leads to a personal contact form displayed on "
+"their user profile. Site administrators are still able to use the "
+"contact form, even if has been disabled. The <em>Contact</em> tab is "
+"not shown when you view your own profile."
+msgstr ""
+"Les utilisateurs du site peut être contactés directement par un "
+"formulaire de contact tout en conservant leur adresse de courriel "
+"privée. Les utilisateurs peuvent activer ou désactiver leur "
+"formulaire de contact personnel en éditant leur page <em>Mon "
+"compte</em>. S'il est activé, un onglet <em>Contact</em> dirige vers "
+"un formulaire de contact personnel affiché sur leur profil "
+"d'utilisateur. Les administrateurs du site sont toujours en mesure "
+"d'utiliser le formulaire de contact, même s'il a été désactivé. "
+"L'onglet <em>Contact</em> n'est pas affiché lorsque vous consultez "
+"votre propre profil."
+msgid "Site-wide contact forms"
+msgstr "Formulaires de contact généraux"
+msgid ""
+"The <a href=\"@contact\">Contact page</a> provides a simple form for "
+"users with the <em>Use the site-wide contact form</em> permission to "
+"send comments, feedback, or other requests. You can create categories "
+"for directing the contact form messages to a set of defined "
+"recipients. Common categories for a business site, for example, might "
+"include \"Website feedback\" (messages are forwarded to website "
+"administrators) and \"Product information\" (messages are forwarded to "
+"members of the sales department). E-mail addresses defined within a "
+"category are not displayed publicly."
+msgstr ""
+"La <a href=\"@contact\">page Contact</a> fournit un simple formulaire "
+"aux utilisateurs qui disposent des droits <em>Utiliser le formulaire "
+"de contact général</em> afin d'envoyer des commentaires, un avis ou "
+"d'autres demandes. Vous pouvez créer des catégories pour rediriger "
+"les messages du formulaire de contact vers un ensemble de "
+"destinataires prédéfinis. Par exemple, pour un site commercial, les "
+"catégories fréquentes peuvent inclure \"votre avis sur le site (dont "
+"les messages seront redirigés vers les administrateurs du site) et "
+"\"information sur les produits\" (dont les messages seront redirigés "
+"vers les membres du service des ventes). Les adresses de courriel "
+"prédéfinies pour chaque catégorie ne sont pas affichées "
+"publiquement."
+msgid "Customization"
+msgstr "Personnalisation"
+msgid ""
+"If you would like additional text to appear on the site-wide or "
+"personal contact page, use a block. You can create and edit blocks on "
+"the <a href=\"@blocks\">Blocks administration page</a>."
+msgstr ""
+"Si vous souhaitez voir apparaitre d'autre texte sur le formulaire de "
+"contact général du site ou sur le formulaire de contact personnel, "
+"utilisez un bloc. Vous pouvez créer et modifier des blocs sur la <a "
+"href=\"@blocks\">page de gestion des blocs</a>."
+msgid ""
+"Add one or more categories on this page to set up your site-wide <a "
+"href=\"@form\">contact form</a>."
+msgstr ""
+"Ajoutez au moins une catégorie dans cette page pour personnaliser le "
+"<a href=\"@form\">formulaire de contact général</a> du site."
+msgid ""
+"If you would like additional text to appear on the site-wide contact "
+"page, use a block. You can create and edit blocks on the <a "
+"href=\"@blocks\">Blocks administration page</a>."
+msgstr ""
+"Si vous souhaitez afficher du texte supplémentaire sur la page de "
+"contact générale du site, créez un bloc. Vous pouvez créer et "
+"modifier des blocs sur la <a href=\"@blocks\">page de gestion des "
+"blocs</a>."
+msgid "Administer contact forms and contact form settings"
+msgstr ""
+"Administrer les formulaires de contact et les paramètres des "
+"formulaires de contact."
+msgid "Use the site-wide contact form"
+msgstr "Utiliser le formulaire de contact général"
+msgid "Use users' personal contact forms"
+msgstr "Utiliser les formulaires de contact personnels des utilisateurs"
+msgid ""
+"!sender-name (!sender-url) sent a message using the contact form at "
+"!form-url."
+msgstr ""
+"!sender-name (!sender-url) a envoyé un message en utilisant le "
+"formulaire de contact suivant : !form-url."
+msgid "[!site-name] !subject"
+msgstr "[!site-name] !subject"
+msgid ""
+"If you don't want to receive such e-mails, you can change your "
+"settings at !recipient-edit-url."
+msgstr ""
+"Si vous ne souhaitez pas recevoir ces courriels, vous pouvez modifier "
+"vos paramètres ici : !recipient-edit-url."
+msgid "Enable the personal contact form by default for new users."
+msgstr ""
+"Activer le formulaire de contact personnel par défaut pour les "
+"nouveaux utilisateurs."
+msgid "Changing this setting will not affect existing users."
+msgstr "Modifier ce paramètre n'affectera pas les utilisateurs existants."
+msgid "Displaying contextual links"
+msgstr "Affichage des liens contextuels"
+msgid "Use contextual links"
+msgstr "Utiliser les liens contextuels"
+msgid "Use contextual links to perform actions related to elements on a page."
+msgstr ""
+"Utilisez les liens contextuels pour réaliser des tâches liées à "
+"des composants d'une page."
+msgid "Contextual links"
+msgstr "Liens contextuels"
+msgid "Clear log messages"
+msgstr "Effacer les messages du journal"
+msgid "This will permanently remove the log messages from the database."
+msgstr ""
+"Cela supprimera définitivement les messages du journal stockés dans "
+"la base de données."
+msgid "Database log cleared."
+msgstr "Les entrées du journal de la base de données ont été effacées."
+msgid "Monitoring your site"
+msgstr "Surveillance de votre site"
+msgid "Debugging site problems"
+msgstr "Débogage des problèmes de site"
+msgid "Field validation errors"
+msgstr "Erreurs de validation du champ"
+msgid "Enabling field types"
+msgstr "Activation des types de champ"
+msgid ""
+"The Field module provides the infrastructure for fields and field "
+"attachment; the field types and input widgets themselves are provided "
+"by additional modules. Some of the modules are required; the optional "
+"modules can be enabled from the <a href=\"@modules\">Modules "
+"administration page</a>. Drupal core includes the following field type "
+"modules: Number (required), Text (required), List (required), Taxonomy "
+"(optional), Image (optional), and File (optional); the required "
+"Options module provides input widgets for other field modules. "
+"Additional fields and widgets may be provided by contributed modules, "
+"which you can find in the <a href=\"@contrib\">contributed module "
+"section of Drupal.org</a>. Currently enabled field and input widget "
+"modules:"
+msgstr ""
+"Le module <em>Field</em> fournit l'infrastructure pour les champs et "
+"attachement de champ ; les types de champ et les widgets de saisie "
+"sont quant à eux fournis par des modules additionnels. Certains "
+"modules sont obligatoires ; les modules optionnels peuvent être "
+"activés depuis la <a href=\"@modules\">page de gestion des "
+"modules</a>. Drupal (<em>Core</em>) inclut les modules de type de "
+"champ suivants : <em>Number</em> (requis), <em>Text</em> (requis), "
+"<em>List</em> (requis), <em>Taxonomy</em> (optionnel), <em>Image</em> "
+"(optionnel) et <em>File</em> (optionnel) ; le module <em>Options</em> "
+"(requis) fournit des widgets de saisie pour d'autres modules de champ. "
+"Des champs et des widgets supplémentaires peuvent être fournis par "
+"des modules contribués que vous trouverez dans la <a "
+"href=\"@contrib\">rubrique des modules contribués de Drupal.org</a>. "
+"Les modules de champ et de widget actuellement activés sont :"
+msgid "Managing field data storage"
+msgstr "Gestion du stockage des données du champ"
+msgid "Default SQL storage"
+msgstr "Stockage SQL par défaut"
+msgid "Stores fields in the local SQL database, using per-field tables."
+msgstr ""
+"Stocke les fichiers dans la base de données SQL locale en utilisant "
+"une table par champ."
+msgid "This field stores simple on/off or yes/no options."
+msgstr "Ce champ stocke des options basiques telles que on/off ou oui/non."
+msgid "List (text)"
+msgstr "Liste (texte)"
+msgid ""
+"The 'checkboxes/radio buttons' widget will display checkboxes if the "
+"<em>Number of values</em> option is greater than 1 for this field, "
+"otherwise radios will be displayed."
+msgstr ""
+"Le widget 'cases à cocher/radio boutons' affichera des cases à "
+"cocher si l'option <em>Nombre de valeurs</em> est supérieur à 1 pour "
+"ce champ, sinon des radio boutons seront affichés."
+msgid "Allowed HTML tags in labels: @tags"
+msgstr "Balises HTML autorisées dans les étiquettes : @tags"
+msgid ""
+"The value of this field is being determined by the %function function "
+"and may not be changed."
+msgstr ""
+"La valeur de ce champ est déterminée par la fonction %function et ne "
+"doit pas être modifiée."
+msgid "Allowed values list: each key must be a valid integer or decimal."
+msgstr ""
+"Liste de valeurs autorisées : chaque clé doit être un entier ou un "
+"décimal valide."
+msgid ""
+"Allowed values list: each key must be a string at most 255 characters "
+"long."
+msgstr ""
+"Liste de valeurs autorisées : chaque clé doit être une chaîne de "
+"255 caractères maximum."
+msgid "Allowed values list: keys must be integers."
+msgstr "Liste de valeurs autorisées : les clés doivent êtres des entiers."
+msgid ""
+"The Number module defines various numeric field types for the Field "
+"module. Numbers can be in integer, decimal, or floating-point form, "
+"and they can be formatted when displayed. Number fields can be limited "
+"to a specific set of input values or to a range of values. See the <a "
+"href=\"@field-help\">Field module help page</a> for more information "
+"about fields."
+msgstr ""
+"Le module <em>Number</em> défini différents types de champs "
+"numériques pour le module <em>Field</em>. Les nombres peuvent être "
+"un entier, un décimal, une virgule flottante et peuvent être "
+"formaté à l'affichage. Les champs numériques peuvent être limités "
+"à un ensemble de valeurs d'entrée ou à une plage de valeurs "
+"d'entrée. Pour plus d'information à propos des champs, voir la "
+"section <a href=\"@field-help\">Field</a> du manuel en ligne."
+msgid "This field stores a number in the database as an integer."
+msgstr ""
+"Ce champ stocke un nombre dans la base de données (sous forme d'un "
+"entier)."
+msgid "This field stores a number in the database in a fixed decimal format."
+msgstr ""
+"Ce champ stocke un nombre dans la base de données (dans un format "
+"décimal fixe)."
+msgid "This field stores a number in the database in a floating point format."
+msgstr ""
+"Ce champ stocke un nombre dans la base de données (dans un format à "
+"virgule flottante)."
+msgid ""
+"The minimum value that should be allowed in this field. Leave blank "
+"for no minimum."
+msgstr ""
+"La valeur minimale qui doit être autorisée dans ce champ. Laisser "
+"vide pour ne pas imposer de minimum."
+msgid ""
+"The maximum value that should be allowed in this field. Leave blank "
+"for no maximum."
+msgstr ""
+"La valeur maximale qui doit être autorisée dans ce champ. Laisser "
+"vide pour ne pas imposer de maximum."
+msgid ""
+"Define a string that should be prefixed to the value, like '$ ' or "
+"'&euro; '. Leave blank for none. Separate singular and plural values "
+"with a pipe ('pound|pounds')."
+msgstr ""
+"Définir une chaîne préfixant la valeur comme par exemple '$ ' ou "
+"'&euro;'. Laisser vide pour ne rien ajouter. Laisser vide pour ne pas "
+"préfixer. Séparer les valeurs du singulier et du pluriel avec un "
+"pipe ('gramme|grammes')."
+msgid ""
+"The Text module defines various text field types for the Field module. "
+"A text field may contain plain text only, or optionally, may use "
+"Drupal's <a href='@filter-help'>text filters</a> to securely manage "
+"HTML output. Text input fields may be either a single line (text "
+"field), multiple lines (text area), or for greater input control, a "
+"select box, checkbox, or radio buttons. If desired, the field can be "
+"validated, so that it is limited to a set of allowed values. See the "
+"<a href='@field-help'>Field module help page</a> for more information "
+"about fields."
+msgstr ""
+"Le module <em>Text</em> défini différents type de champ texte pour "
+"le module <em>Field</em>. Un champ texte ne devrait contenir que du "
+"texte brut, ou, en option, du <a href='@filter-help'>texte filtré</a> "
+"par Drupal pour gérer le rendu HTML de manière sécurisée. Les "
+"champs de saisie texte peuvent être soit une seule ligne (champ "
+"texte) ou plusieurs lignes (zone de texte), ou pour un meilleur "
+"contrôle de la saisie, une liste déroulante, une case à cocher ou "
+"un radio bouton. Si vous le souhaitez, le champ peut être validé de "
+"sorte que seule une liste précise de valeurs est autorisée. Pour "
+"plus d'information sur les champs texte, voir la section <a "
+"href='@field-help'>Field</a> du manuel en ligne."
+msgid "This field stores varchar text in the database."
+msgstr "Ce champ stocke un varchar dans la base de données."
+msgid "Long text"
+msgstr "Texte long"
+msgid "This field stores long text in the database."
+msgstr "Ce champ stocke un texte long dans la base de données."
+msgid "Long text and summary"
+msgstr "Texte long et résumé"
+msgid ""
+"This field stores long text in the database along with optional "
+"summary text."
+msgstr ""
+"Ce champ stocke dans la base de données les textes longs et leur "
+"résumé optionnel."
+msgid "Filtered text (user selects text format)"
+msgstr "Texte filtré (l'utilisateur sélectionne le format de texte)"
+msgid "Summary input"
+msgstr "Champ de saisie du résumé"
+msgid ""
+"This allows authors to input an explicit summary, to be displayed "
+"instead of the automatically trimmed text when using the \"Summary or "
+"trimmed\" display type."
+msgstr ""
+"Cela autorise les auteurs à saisir un résumé explicite qui sera "
+"affiché à la place du texte coupé en utilisant le type d'affichage "
+"\"Résumé ou coupé\"."
+msgid "%name: the text may not be longer than %max characters."
+msgstr "%name : le texte ne devrait pas être plus long que %max caractères."
+msgid "%name: the summary may not be longer than %max characters."
+msgstr "%name : le résumé ne doit pas excéder %max caractères."
+msgid "Summary or trimmed"
+msgstr "Résumé ou coupé"
+msgid "Text area with a summary"
+msgstr "Zone de texte avec un résumé"
+msgid "Leave blank to use trimmed value of full text as the summary."
+msgstr ""
+"Laissez vide pour utiliser la valeur courte du texte intégral en tant "
+"que résumé."
+msgid "Hide summary"
+msgstr "Masquer le résumé"
+msgid "Edit summary"
+msgstr "Modifier le résumé"
+msgid "Edit field settings."
+msgstr "Modifier les paramètres du champ."
+msgid "Change widget type."
+msgstr "Modifier le type de widget."
+msgid "Edit instance settings."
+msgstr "Modifier les paramètres de l'instance."
+msgid "Delete instance."
+msgstr "Supprimer l'instance."
+msgid "The field %label cannot be added because it is locked."
+msgstr "Le champ %label ne peut pas être ajouté car il est verrouillé."
+msgid "There was a problem creating field instance %label: @message."
+msgstr ""
+"Il y a eu un problème lors de la création de l'instance du champ "
+"%label : @message."
+msgid ""
+"There are no fields yet added. You can add new fields on the <a "
+"href=\"@link\">Manage fields</a> page."
+msgstr ""
+"Aucun champ n'a encore été ajouté. Vous pouvez ajouter de nouveaux "
+"champs depuis la page <a href=\"@link\">Gérer les champs</a>."
+msgid ""
+"These settings apply to the %field field everywhere it is used. These "
+"settings impact the way that data is stored in the database and cannot "
+"be changed once data has been created."
+msgstr ""
+"Ces paramètres s'appliquent au champ %field partout où il est "
+"utilisé. Ces paramètres impactent la manière dont les données sont "
+"stockées dans la base et ne peuvent être changés après que la "
+"donnée a été créée."
+msgid "Updated field %label field settings."
+msgstr "Paramètres du champ %label mis à jour."
+msgid "Attempt to update field %label failed: %message."
+msgstr "La tentative de mise à jour du champ %label a échoué : %message."
+msgid ""
+"The type of form element you would like to present to the user when "
+"creating this field in the %type type."
+msgstr ""
+"Le type d'élément de formulaire que vous aimeriez présenter à "
+"l'utilisateur lors de la création de ce champ dans le type %type."
+msgid "Changed the widget for field %label."
+msgstr "Le widget du champ %label a été modifié."
+msgid "There was a problem changing the widget for field %label."
+msgstr "Il y a eu un problème pour modifier le widget du champ %label."
+msgid "The field %field has been deleted from the %type content type."
+msgstr "Le champ %field a été supprimé du type de contenu %type."
+msgid "There was a problem removing the %field from the %type content type."
+msgstr ""
+"Il y a eu un problème pour supprimer le champ %field du type de "
+"contenu %type."
+msgid "Required field"
+msgstr "Champ requis"
+msgid "The default value for this field, used when creating new content."
+msgstr ""
+"La valeur par défaut de ce champ, utilisée lors de la création de "
+"nouveau contenu."
+msgid "Saved %label configuration."
+msgstr "La configuration de %label a été enregistrée."
+msgid "This list shows all fields currently in use for easy reference."
+msgstr ""
+"Cette liste affiche tous les champs actuellement utilisés pour en "
+"faciliter la consultation."
+msgid "Field list"
+msgstr "Liste des champs"
+msgid "Manage display"
+msgstr "Gérer l'affichage"
+msgid "This field stores the ID of a file as an integer value."
+msgstr ""
+"Ce champ stocke l'identifiant (ID) d'un fichier sous la forme d'un "
+"entier."
+msgid "Enable <em>Display</em> field"
+msgstr "Activer le champ <em>Affichage</em>"
+msgid ""
+"The display option allows users to choose if a file should be shown "
+"when viewing the content."
+msgstr ""
+"L'option d'affichage permet aux utilisateurs de choisir si un fichier "
+"doit être affiché lors de la visualisation du contenu."
+msgid "Files displayed by default"
+msgstr "Fichiers affichés par défaut"
+msgid "This setting only has an effect if the display option is enabled."
+msgstr "Ce paramètre n'a d'effet que si l'option d'affichage est activée."
+msgid "Upload destination"
+msgstr "Destination pour le transfert"
+msgid ""
+"Select where the final files should be stored. Private file storage "
+"has significantly more overhead than public files, but allows "
+"restricted access to files within this field."
+msgstr ""
+"Sélectionnez où les fichiers finaux doivent être stockés. Le "
+"stockage privé de fichier pose beaucoup plus de contraintes que le "
+"stockage public, mais permet un accès restreint aux fichiers pour ce "
+"champ."
+msgid ""
+"Optional subdirectory within the upload destination where files will "
+"be stored. Do not include preceding or trailing slashes."
+msgstr ""
+"Sous-répertoire optionnel dans le répertoire de transfert où les "
+"fichiers seront stockés. Ne pas inclure de slash avant ou après."
+msgid ""
+"Enter a value like \"512\" (bytes), \"80 KB\" (kilobytes) or \"50 MB\" "
+"(megabytes) in order to restrict the allowed file size. If left empty "
+"the file sizes will be limited only by PHP's maximum post and file "
+"upload sizes (current limit <strong>%limit</strong>)."
+msgstr ""
+"Saisissez une valeur comme \"512\" (octets), \"80 KB\" (kilo octets) "
+"ou \"50 MB\" (méga octets) pour restreindre la taille de fichier "
+"autorisée. Si ce champ est laissé vide, la taille du fichier ne sera "
+"limitée que par la taille maximale de transfert de PHP (limite "
+"actuelle <strong>%limit</strong>)."
+msgid "Enable <em>Description</em> field"
+msgstr "Activer le champ <em>Description</em>"
+msgid ""
+"The description field allows users to enter a description about the "
+"uploaded file."
+msgstr ""
+"Le champ description permet aux utilisateurs d'ajouter une description "
+"du fichier transféré."
+msgid ""
+"The \"!name\" option must contain a valid value. You may either leave "
+"the text field empty or enter a string like \"512\" (bytes), \"80 KB\" "
+"(kilobytes) or \"50 MB\" (megabytes)."
+msgstr ""
+"L'option \"!name\" doit contenir une valeur valide. Vous pouvez soit "
+"laisser le champ vide, soit saisir une chaîne telle que \"512\" "
+"(octets), \"80 Ko\" (kilo octets) or \"50 Mo\" (Méga octets)."
+msgid ""
+"The list of allowed extensions is not valid, be sure to exclude "
+"leading dots and to separate extensions with a comma or space."
+msgstr ""
+"La liste des extensions autorisées n'est pas valide. Soyez certains "
+"d'exclure les points précédents l'extension et de séparer les "
+"extensions par un espace ou une virgule."
+msgid "Generic file"
+msgstr "Fichier générique"
+msgid "Table of files"
+msgstr "Tableau des fichiers"
+msgid "Add a new file"
+msgstr "Ajouter un nouveau fichier"
+msgid "Include file in display"
+msgstr "Inclure le fichier dans l'affichage"
+msgid "The description may be used as the label of the link to the file."
+msgstr ""
+"La description peut être utilisée en tant qu'étiquette du lien "
+"pointant vers le fichier."
+msgid "Files must be less than !size."
+msgstr "Les fichiers doivent peser moins de !size."
+msgid "Allowed file types: !extensions."
+msgstr "Extensions autorisées : !extensions."
+msgid "Images must be exactly !size pixels."
+msgstr "Les images doivent faire exactement !size pixels."
+msgid "Images must be between !min and !max pixels."
+msgstr "Les images doivent faire entre !min et !max pixels."
+msgid "Images must be larger than !min pixels."
+msgstr "Les images doivent avoir une définition supérieure à !min pixels."
+msgid "Images must be smaller than !max pixels."
+msgstr "Les images doivent être plus petites que !max pixels."
+msgid ""
+"The File module defines a <em>File</em> field type for the Field "
+"module, which lets you manage and validate uploaded files attached to "
+"content on your site (see the <a href=\"@field-help\">Field module "
+"help page</a> for more information about fields). For more "
+"information, see the online handbook entry for <a href=\"@file\">File "
+"module</a>."
+msgstr ""
+"Le module <em>File</em> défini un champ de type fichier pour le "
+"module <em>Field</em> ce qui vous permet de gérer et valider les "
+"fichiers transférés attachés aux contenus de votre site (voir la <a "
+"href=\"@field-help\">page d'aide du module <em>Field</em></a>). Pour "
+"plus d'information, voir la section <a "
+"href=\"@file\"><em>File</em></a> du manuel en ligne."
+msgid "Attaching files to content"
+msgstr "Attacher des fichiers au contenu"
+msgid ""
+"The File module allows users to attach files to content (e.g., PDF "
+"files, spreadsheets, etc.), when a <em>File</em> field is added to a "
+"given content type using the <a href=\"@fieldui-help\">Field UI "
+"module</a>. You can add validation options to your File field, such as "
+"specifying a maximum file size and allowed file extensions."
+msgstr ""
+"Le module <em>File</em> permet aux utilisateurs d'attacher des "
+"fichiers à un contenu (par exemple, PDF, XLS, etc.) quand un champ "
+"<em>File</em> est ajouté à un type de contenu donné via le module "
+"<a href=\"@fieldui-help\"><em>Field UI</em></a>."
+msgid "Managing attachment display"
+msgstr "Gérer l'affichage des fichiers attachés"
+msgid ""
+"When you attach a file to content, you can specify whether it is "
+"<em>listed</em> or not. Listed files are displayed automatically in a "
+"section at the bottom of your content; non-listed files are available "
+"for embedding in your content, but are not included in the list at the "
+"bottom."
+msgstr ""
+"Quand vous attachez un fichier à un contenu, vous pouvez spécifier "
+"s'il sera <em>listé</em> ou non. Les fichiers <em>listés</em> sont "
+"affichés automatiquement en bas de contenu. Les fichiers <em>non "
+"listés</em> sont disponibles pour être inclus dans le contenu mais "
+"ne sont pas affichés automatiquement en bas de contenu."
+msgid "Managing file locations"
+msgstr "Gérer l'emplacement des fichiers"
+msgid ""
+"When you create a File field, you can specify a directory where the "
+"files will be stored, which can be within either the <em>public</em> "
+"or <em>private</em> files directory. Files in the public directory can "
+"be accessed directly through the web server; when public files are "
+"listed, direct links to the files are used, and anyone who knows a "
+"file's URL can download the file. Files in the private directory are "
+"not accessible directly through the web server; when private files are "
+"listed, the links are Drupal path requests. This adds to server load "
+"and download time, since Drupal must start up and resolve the path for "
+"each file download request, but allows for access restrictions."
+msgstr ""
+"Quand vous créez un champ de type fichier, vous pouvez spécifier un "
+"répertoire dans lequel les fichiers seront stockés. Ce répertoire "
+"peut être situé soit dans le répertoire de fichiers "
+"<em>publique</em> soit dans le répertoire de fichiers "
+"<em>privé</em>. Les fichiers situés dans le répertoire public "
+"peuvent être accédés directement au travers du serveur web. Quand "
+"des fichiers publics sont listés, des liens directs sont utilisés et "
+"tous ceux qui connaissent l'URL d'un fichier peuvent le télécharger. "
+"Les fichiers situés dans le répertoire privé ne sont pas "
+"directement accessibles via le serveur web et les liens sont des "
+"requêtes Drupal. Cela pèse sur la charge serveur et le temps de "
+"téléchargement car Drupal doit démarrer et résoudre le chemin pour "
+"chaque requête de téléchargement. En revanche, cela permet de "
+"restreindre l'accès."
+msgid ""
+"An unrecoverable error occurred. Use of this form has expired. Try "
+"reloading the page and submitting again."
+msgstr ""
+"Une erreur irrécupérable s'est produite. L'utilisation de ce "
+"formulaire a expiré. Essayez de recharger la page et de la renvoyer."
+msgid "The file referenced by the !name field does not exist."
+msgstr "Le fichier référencé par le champ !name n'existe pas."
+msgid ""
+"The upload directory %directory for the file field !name could not be "
+"created or is not accessible. A newly uploaded file could not be saved "
+"in this directory as a consequence, and the upload was canceled."
+msgstr ""
+"Le répertoire de transfert %directory pour le champ de type fichier "
+"!name ne peut pas être créé ou n'est pas accessible. Un fichier "
+"nouvellement transféré ne peut donc pas être enregistré dans ce "
+"répertoire, le transfert a été annulé."
+msgid ""
+"Your server is not capable of displaying file upload progress. File "
+"upload progress requires an Apache server running PHP with mod_php."
+msgstr ""
+"Votre serveur n'est pas capable d'afficher la progression du transfert "
+"d'un fichier. L'affichage de la progression du transfert d'u fichier "
+"nécessite un serveur Apache exécutant PHP avec mod_php."
+msgid "All roles may use this format"
+msgstr "Tous les rôles devraient utiliser ce format"
+msgid "The text format ordering has been saved."
+msgstr "L'ordre des formats de texte a été enregistré."
+msgid "Add text format"
+msgstr "Ajouter un format de texte"
+msgid "All roles for this text format must be enabled and cannot be changed."
+msgstr ""
+"Tous les rôles pour ce format de texte doivent être activés et ne "
+"peuvent pas être changés."
+msgid "Filter processing order"
+msgstr "Ordre de traitement des filtres"
+msgid "Text format names must be unique. A format named %name already exists."
+msgstr ""
+"Les noms des formats texte doivent être uniques. Le nom de format "
+"%name existe déjà."
+msgid "Added text format %format."
+msgstr "Le format texte %format a été ajouté."
+msgid "The text format %format has been updated."
+msgstr "Le format de texte %format a été mis à jour."
+msgid "Text formats"
+msgstr "Formats de texte"
+msgid ""
+"The Filter module allows administrators to configure text formats. A "
+"text format defines the HTML tags, codes, and other input allowed in "
+"content and comments, and is a key feature in guarding against "
+"potentially damaging input from malicious users. For more information, "
+"see the online handbook entry for <a href=\"@filter\">Filter "
+"module</a>."
+msgstr ""
+"Le module <em>Filter</em> permet aux administrateurs de configurer les "
+"formats texte. Un format texte défini les balises HTML, le code et "
+"tout autre type d'entrée autorisés dans le contenu et les "
+"commentaires. C'est une fonctionnalité clé pour se prémunir "
+"d’entrées potentiellement dangereuses émanant d'utilisateurs "
+"malveillants. Pour plus d'information, voir la section <a "
+"href=\"@filter\"><em>Filter module</em></a> du manuel en ligne."
+msgid "Applying filters to text"
+msgstr "Application des filtres au texte"
+msgid ""
+"Each text format uses filters to manipulate text, and most formats "
+"apply several different filters to text in a specific order. Each "
+"filter is designed for a specific purpose, and generally either adds, "
+"removes, or transforms elements within user-entered text before it is "
+"displayed. A filter does not change the actual content, but instead, "
+"modifies it temporarily before it is displayed. One filter may remove "
+"unapproved HTML tags, while another automatically adds HTML to make "
+"URLs display as clickable links."
+msgstr ""
+"Chaque format de texte utilise des filtres pour manipuler le texte et "
+"la plupart des formats appliquent plusieurs filtres dans un ordre "
+"spécifique. Chaque filtre est conçu dans un but spécifique et en "
+"général, il ajoute, supprime ou transforme des éléments dans le "
+"texte saisi par l'utilisateur avant de l'afficher. Un filtre ne change "
+"pas le contenu mais le modifie temporairement avant qu'il ne soit "
+"affiché. Un filtre peut supprimer des balises HTML indésirables "
+"alors qu'un autre filtre ajoutera des balises HTML, par exemple pour "
+"rendre les liens cliquables."
+msgid "Defining text formats"
+msgstr "Définition des formats de texte"
+msgid ""
+"One format is included by default: <em>Plain text</em> (which removes "
+"all HTML tags). Additional formats may be created by your installation "
+"profile when you install Drupal, and more can be created by an "
+"administrator on the <a href=\"@text-formats\">Text formats page</a>."
+msgstr ""
+"Un format est inclus par défaut : <em>Texte brut</em> (supprime "
+"toutes les balises HTML). D'autres formats peuvent être créés par "
+"votre profil lors de l'installation de Drupal, d'autres encore peuvent "
+"être créés par un administrateur dans la <a "
+"href=\"@text-formats\">page de gestion des formats de texte</a>."
+msgid "Choosing a text format"
+msgstr "Choix d'un format de texte"
+msgid ""
+"A text format contains filters that change the user input, for example "
+"stripping out malicious HTML or making URLs clickable. Filters are "
+"executed from top to bottom and the order is important, since one "
+"filter may prevent another filter from doing its job. For example, "
+"when URLs are converted into links before disallowed HTML tags are "
+"removed, all links may be removed. When this happens, the order of "
+"filters may need to be re-arranged."
+msgstr ""
+"Un format texte contient des filtres qui peuvent modifier ce qui est "
+"saisi par l'utilisateur, par exemple en supprimant du HTML malicieux "
+"ou en rendant les URLs cliquables."
+msgid ""
+"Warning: This permission may have security implications depending on "
+"how the text format is configured."
+msgstr ""
+"Alerte : ce droit peut avoir un impact sur la sécurité en fonction "
+"de la manière dont le format de texte est configuré."
+msgid "Use the !text_format text format"
+msgstr "Utiliser le format de texte !text_format"
+msgid "More information about text formats"
+msgstr "Plus d'information sur les formats de texte"
+msgid "Limit allowed HTML tags"
+msgstr "Limiter aux balises HTML autorisées"
+msgid ""
+"Convert line breaks into HTML (i.e. <code>&lt;br&gt;</code> and "
+"<code>&lt;p&gt;</code>)"
+msgstr ""
+"Convertir les sauts de ligne en HTML (par exemple, "
+"<code>&lt;br&gt;</code> et <code>&lt;p&gt;</code>)"
+msgid "Convert URLs into links"
+msgstr "Convertir les URL en liens"
+msgid "Correct faulty and chopped off HTML"
+msgstr "Corriger le HTML défectueux ou coupé"
+msgid "Display any HTML as plain text"
+msgstr "Afficher tout code HTML au format texte"
+msgid ""
+"A list of HTML tags that can be used. JavaScript event attributes, "
+"JavaScript URLs, and CSS are always stripped."
+msgstr ""
+"Une liste de balises HTML pouvant être utilisées. Les attributs "
+"d'événement JavaScript, les URLs JavaScript et les CSS sont toujours "
+"supprimés."
+msgid "Display basic HTML help in long filter tips"
+msgstr "Afficher une aide HTML basique dans conseils étendus sur les filtres"
+msgid "Add rel=\"nofollow\" to all links"
+msgstr "Ajouter rel=\"nofollow\" à tous les liens"
+msgid ""
+"This site allows HTML content. While learning all of HTML may feel "
+"intimidating, learning how to use a very small number of the most "
+"basic HTML \"tags\" is very easy. This table provides examples for "
+"each tag that is enabled on this site."
+msgstr ""
+"Ce site autorise le contenu HTML. Si apprendre tout le HTML peut "
+"paraître intimidant, apprendre comment utiliser les \"balises\" HTML "
+"les plus simples est très facile. Ce tableau fournit des exemples "
+"pour chaque balise autorisée sur ce site."
+msgid ""
+"For more information see W3C's <a href=\"@html-specifications\">HTML "
+"Specifications</a> or use your favorite search engine to find other "
+"sites that explain HTML."
+msgstr ""
+"Pour plus d'information, consultez les <a "
+"href=\"@html-specifications\">spécifications HTML</a> du W3C ou "
+"utilisez votre moteur de recherche favori pour trouver d'autres sites "
+"explicatifs sur le HTML."
+msgid "Most unusual characters can be directly entered without any problems."
+msgstr ""
+"La plupart des caractères non usuels peuvent être saisis sans "
+"problème."
+msgid ""
+"If you do encounter problems, try using HTML character entities. A "
+"common example looks like &amp;amp; for an ampersand &amp; character. "
+"For a full list of entities see HTML's <a "
+"href=\"@html-entities\">entities</a> page. Some of the available "
+"characters include:"
+msgstr ""
+"En cas de problème, essayez d'utiliser des entités HTML. Un exemple "
+"courant est le rendu en &amp;amp; de l'esperluette &amp;. Pour une "
+"liste complète des entités, référez-vous à la page des <a "
+"href=\"@html-entities\">entités HTML</a>. Parmi les caractères "
+"disponibles, on trouve :"
+msgid "No HTML tags allowed."
+msgstr "Aucune balise HTML autorisée."
+msgid "The number of replies a topic must have to be considered \"hot\"."
+msgstr ""
+"Le nombre de réponses qu'un sujet doit avoir pour être considéré "
+"comme \"brûlant\"."
+msgid ""
+"No containers or forums available. <a href=\"@container\">Add "
+"container</a> or <a href=\"@forum\">Add forum</a>."
+msgstr ""
+"Aucun conteneur ou forum disponible. <a href=\"@container\">Ajouter un "
+"conteneur</a> ou <a href=\"@forum\">ajouter un forum</a>."
+msgid ""
+"The Forum module lets you create threaded discussion forums with "
+"functionality similar to other message board systems. Forums are "
+"useful because they allow community members to discuss topics with one "
+"another while ensuring those conversations are archived for later "
+"reference. In a forum, users post topics and threads in nested "
+"hierarchies, allowing discussions to be categorized and grouped. The "
+"forum hierarchy consists of:"
+msgstr ""
+"Le module <em>Forum</em> vous permet de créer un système de "
+"discussion par fil (<em>thread</em>) avec des fonctionnalités "
+"similaires aux autres outils de forum. Les forums sont utiles parce "
+"qu'ils permettent aux membres d'une communauté de discuter de sujets "
+"entre eux tout en garantissant un bon archivage des conversations "
+"permettant de les consulter plus tard. Dans un forum, les utilisateurs "
+"publient des billets dans une hiérarchie arborescente permettant de "
+"catégoriser et regrouper les discussions. Cette hiérarchie est "
+"composée de :"
+msgid "Optional containers (for example, <em>Support</em>), which can hold:"
+msgstr ""
+"Conteneurs optionnels (par exemple, <em>Support</em>), pouvant "
+"contenir :"
+msgid "Forums (for example, <em>Installing Drupal</em>), which can hold:"
+msgstr "Forums (par exemple, <em>Installer Drupal</em>), pouvant contenir :"
+msgid ""
+"Forum topics submitted by users (for example, <em>How to start a "
+"Drupal 6 Multisite</em>), which start discussions and are starting "
+"points for:"
+msgstr ""
+"Sujets de forum soumis par les utilisateurs (par exemple, <em>Comment "
+"créer un multisite avec Drupal 6</em>), déclenchant les discussions "
+"et points de départ pour :"
+msgid ""
+"Threaded comments submitted by users (for example, <em>You have these "
+"options...</em>)."
+msgstr ""
+"Commentaires soumis par les utilisateurs (par exemple, <em>Vous avez "
+"ces options ...</em>)."
+msgid "Setting up forum structure"
+msgstr "Mise en place de la structure du forum"
+msgid ""
+"Visit the <a href=\"@forums\">Forums page</a> to set up containers and "
+"forums to hold your discussion topics."
+msgstr ""
+"Pour mettre en place des conteneurs et des forums abritant vos sujets "
+"de discussion, rendez vous sur la <a href=\"@forums\">page des "
+"Forums</a>."
+msgid "Starting a discussion"
+msgstr "Commencer une discussion"
+msgid ""
+"The <a href=\"@create-topic\">Forum topic</a> link on the <a "
+"href=\"@content-add\">Add new content</a> page creates the first post "
+"of a new threaded discussion, or thread."
+msgstr ""
+"Le lien <a href=\"@create-topic\">Sujet de forum</a> dans la page <a "
+"href=\"@content-add\">Ajouter un nouveau contenu</a> constitue le "
+"premier billet d'une discussion ou d'un fil."
+msgid "Moving forum topics"
+msgstr "Déplacement des sujets du forum"
+msgid ""
+"A forum topic (and all of its comments) may be moved between forums by "
+"selecting a different forum while editing a forum topic. When moving a "
+"forum topic between forums, the <em>Leave shadow copy</em> option "
+"creates a link in the original forum pointing to the new location."
+msgstr ""
+"Un sujet de forum (et tous ses commentaires) peut être déplacé d'un "
+"forum à l'autre en sélectionnant un forum différent lors de la "
+"modification d'un sujet de forum. Lors du déplacement d'un sujet de "
+"forum d'un forum à l'autre, l'option <em>Laisser une copie "
+"cachée</em> crée un lien dans le forum originel pointant vers le "
+"nouvel emplacement."
+msgid "Locking and disabling comments"
+msgstr "Verrouillage et désactivation des commentaires"
+msgid ""
+"Selecting <em>Closed</em> under <em>Comment settings</em> while "
+"editing a forum topic will lock (prevent new comments on) the thread. "
+"Selecting <em>Hidden</em> under <em>Comment settings</em> while "
+"editing a forum topic will hide all existing comments on the thread, "
+"and prevent new ones."
+msgstr ""
+"Choisir <em>Fermé</em> dans <em>Paramètres des commentaires</em> au "
+"cours de la modification d'un sujet de forum bloquera tout nouveau "
+"commentaire sur le fil. Choisir <em>Caché</em> dans <em>Paramètres "
+"des commentaires</em> au cours de la modification d'un sujet de forum "
+"aura pour effet de cacher tous les commentaires existants et "
+"empêchera la saisie de nouveaux commentaires."
+msgid "Forums contain forum topics. Use containers to group related forums."
+msgstr ""
+"Les forums contiennent des sujets de discussion. Utilisez les "
+"conteneurs pour gouper les forums liés."
+msgid "Use containers to group related forums."
+msgstr "Utilisez des conteneurs pour grouper des forums liés."
+msgid "A forum holds related forum topics."
+msgstr "Un forum abrite les sujets de forum liés."
+msgid ""
+"Adjust the display of your forum topics. Organize the forums on the <a "
+"href=\"@forum-structure\">forum structure page</a>."
+msgstr ""
+"Ajuster l'affichage de vos sujets de forum. Organisez vos forums sur "
+"la <a href=\"@forum-structure\">page de structure des forums</a>."
+msgid "Add new @node_type"
+msgstr "Ajouter un nouveau @node_type"
+msgid "<a href=\"@login\">Log in</a> to post new content in the forum."
+msgstr ""
+"<a href=\"@login\">Connectez-vous</a> pour poster un nouveau message "
+"dans le forum."
+msgid ""
+"The item %forum is a forum container, not a forum. Select one of the "
+"forums below instead."
+msgstr ""
+"L'élément %forum est un conteneur de forum, pas un forum. "
+"Sélectionnez l'un des forums ci-dessous à la place."
+msgid "A <em>forum topic</em> starts a new discussion thread within a forum."
+msgstr "Un <em>Sujet</em> commence un nouveau fil de discussion dans un forum."
+msgid "Control forum hierarchy settings."
+msgstr "Contrôlez la hiérarchie de vos forums."
+msgid "Forum navigation vocabulary"
+msgstr "Vocabulaire pour la navigation dans un forum"
+msgid "Follow these steps to set up and start using your website:"
+msgstr ""
+"Suivez ces étapes pour paramétrer et commencer à utiliser votre "
+"site web:"
+msgid ""
+"<strong>Start posting content</strong> Finally, you can <a "
+"href=\"@content\">add new content</a> for your website."
+msgstr ""
+"<strong>Commencez à publier du contenu</strong> : vous pouvez enfin "
+"<a href=\"@content\">ajouter un nouveau contenu</a> à votre site."
+msgid ""
+"For more information, refer to the specific topics listed in the next "
+"section or to the <a href=\"@handbook\">online Drupal handbooks</a>. "
+"You may also post at the <a href=\"@forum\">Drupal forum</a> or view "
+"the wide range of <a href=\"@support\">other support options</a> "
+"available."
+msgstr ""
+"Pour plus d'informations, consultez les sujets traités dans le "
+"paragraphe suivant ou visitez le <a href=\"@handbook\">manuel Drupal "
+"en ligne</a>. Vous pouvez aussi laisser un billet dans le <a "
+"href=\"@forum\">forum Drupal</a> ou découvrir la <a "
+"href=\"@support\">large gamme d'options de support</a> disponible."
+msgid ""
+"The Help module provides <a href=\"@help-page\">Help reference "
+"pages</a> and context-sensitive advice to guide you through the use "
+"and configuration of modules. It is a starting point for the online <a "
+"href=\"@handbook\">Drupal handbooks</a>. The handbooks contain more "
+"extensive and up-to-date information, are annotated with "
+"user-contributed comments, and serve as the definitive reference point "
+"for all Drupal documentation. For more information, see the online "
+"handbook entry for the <a href=\"@help\">Help module</a>."
+msgstr ""
+"Le module <em>Help</em> fourni des <a href=\"@help-page\">pages "
+"d'aide</a> et des conseils contextuels pour vous guider dans la "
+"configuration puis l'utilisation des modules. C'est le point de "
+"départ du <a href=\"@handbook\">manuel en ligne de Drupal</a>. Le "
+"manuel en ligne contient plus d'informations, plus à jour et "
+"enrichies par les commentaires des utilisateurs. Le manuel en ligne "
+"est la référence définitive pour la documentation. Pour plus "
+"d'information, voir l'entrée du manuel en ligne pour le module <a "
+"href=\"@help\"><em>Help</em></a>."
+msgid "Providing a help reference"
+msgstr "Fournir une aide de référence"
+msgid ""
+"The Help module displays explanations for using each module listed on "
+"the main <a href=\"@help\">Help reference page</a>."
+msgstr ""
+"Le module <em>Help</em> affiche des explications pour l'utilisation de "
+"chaque module listé sur la <a href=\"@help\">page principale de "
+"l'aide</a>."
+msgid "Providing context-sensitive help"
+msgstr "Fournir une aide contextuelle"
+msgid ""
+"The Help module displays context-sensitive advice and explanations on "
+"various pages."
+msgstr ""
+"Le module <em>Help</em> affiche des conseils et des explications sur "
+"différentes pages en fonction du contexte."
+msgid "Select a new effect"
+msgstr "Sélectionner un nouvel effet"
+msgid "Update style"
+msgstr "Mettre à jour le style"
+msgid "Select an effect to add."
+msgstr "Choisir un effet à ajouter."
+msgid "The image effect was successfully applied."
+msgstr "L'effet d'image a été appliqué avec succès."
+msgid "Style name"
+msgstr "Nom du style"
+msgid "Create new style"
+msgstr "Créer un nouveau style"
+msgid "Style %name was created."
+msgstr "Le style %name a été créé."
+msgid "No replacement, just delete"
+msgstr "Pas de remplacement, juste une suppression"
+msgid "Replacement style"
+msgstr "Style de remplacement"
+msgid "Optionally select a style before deleting %style"
+msgstr "Optionnellement sélectionnez un style avant de supprimer %style"
+msgid ""
+"If this style is in use on the site, you may select another style to "
+"replace it. All images that have been generated for this style will be "
+"permanently deleted."
+msgstr ""
+"Si ce style est déjà en cours d'utilisation sur le site, vous devrez "
+"sélectionner un autre style pour le remplacer. Toutes les images "
+"générées pour ce style seront définitivement supprimées."
+msgid "Style %name was deleted."
+msgstr "Le style %name a été supprimé."
+msgid "Edit %label effect"
+msgstr "Modifier l'effet %label"
+msgid "Add %label effect"
+msgstr "Ajouter l'effet %label"
+msgid "Update effect"
+msgstr "Mettre à jour l'effet"
+msgid "Add effect"
+msgstr "Ajouter l'effet"
+msgid ""
+"Are you sure you want to delete the @effect effect from the %style "
+"style?"
+msgstr "Êtes-vous sûr de vouloir supprimer l'effet @effect du style %style ?"
+msgid "The image effect %name has been deleted."
+msgstr "L'effet d'image %name a été supprimé."
+msgid "!name must be a hexadecimal color value."
+msgstr "!name doit être une valeur de couleur en hexadécimal."
+msgid "Width and height can not both be blank."
+msgstr "La largeur et la hauteur ne peuvent pas être toutes les deux vides."
+msgid "The part of the image that will be retained during the crop."
+msgstr "La partie de l'image qui sera supprimée lors du recadrage."
+msgid ""
+"The background color to use for exposed areas of the image. Use "
+"web-style hex colors (#FFFFFF for white, #000000 for black). Leave "
+"blank for transparency on image types that support it."
+msgstr ""
+"Le fond de couleur à utiliser pour les zones de l'image qui seront "
+"vides. Utilisez des couleurs web hexadécimales (par exemple #FFFFFF "
+"pour le blanc ou #000000 pour le noir). Laisser vide pour utiliser la "
+"transparence de l'image pour les formats d'image le permettant."
+msgid "There are currently no styles. <a href=\"!url\">Add a new one</a>."
+msgstr ""
+"Il n'y a actuellement aucun style. <a href=\"!url\">En ajouter un "
+"nouveau</a>."
+msgid ""
+"There are currently no effects in this style. Add one by selecting an "
+"option below."
+msgstr ""
+"Il n'y a actuellement aucun effet pour ce style. Ajoutez-en un en "
+"choisissant une option ci-dessous."
+msgid "view actual size"
+msgstr "voir en taille réelle"
+msgid "Sample original image"
+msgstr "Exemple d'image originale"
+msgid "Sample modified image"
+msgstr "Exemple d'image modifiée"
+msgid ""
+"Resizing will make images an exact set of dimensions. This may cause "
+"images to be stretched or shrunk disproportionately."
+msgstr ""
+"Le redimensionnement ne respecte pas les proportions de l'image. Ce "
+"qui peut se traduire par des images étirées ou compressées."
+msgid ""
+"Scaling will maintain the aspect-ratio of the original image. If only "
+"a single dimension is specified, the other dimension will be "
+"calculated."
+msgstr ""
+"La mise à l'échelle maintiendra les proportions originales de "
+"l'image. Si une seule dimension est précisée, l'autre dimension sera "
+"calculée automatiquement."
+msgid "Scale and crop"
+msgstr "Mise à l’échelle et recadrage"
+msgid ""
+"Scale and crop will maintain the aspect-ratio of the original image, "
+"then crop the larger dimension. This is most useful for creating "
+"perfectly square thumbnails without stretching the image."
+msgstr ""
+"La mise à l'échelle et le recadrage maintiendront les proportions "
+"originales de l'image puis recadreront la dimension la plus large. "
+"C'est très utile pour créer des vignettes carrées sans étirer les "
+"images."
+msgid ""
+"Cropping will remove portions of an image to make it the specified "
+"dimensions."
+msgstr ""
+"Le recadrage supprimera des portions de l'image pour qu'elle rentre "
+"dans la taille spécifiée."
+msgid "Desaturate"
+msgstr "Désaturer"
+msgid "Desaturate converts an image to grayscale."
+msgstr "La désaturation converti l'image en niveaux de gris."
+msgid ""
+"Rotating an image may cause the dimensions of an image to increase to "
+"fit the diagonal."
+msgstr ""
+"Effectuer une rotation sur une image peut avoir pour effet d'augmenter "
+"la taille de l'image pour s'adapter à la diagonale."
+msgid ""
+"Image resize failed using the %toolkit toolkit on %path (%mimetype, "
+"%dimensions)"
+msgstr ""
+"Le redimensionnement de l'image a échoué en utilisant la boite à "
+"outils %toolkit sur le chemin %path (%mimetype, %dimensions)"
+msgid ""
+"Image scale failed using the %toolkit toolkit on %path (%mimetype, "
+"%dimensions)"
+msgstr ""
+"La mise à l'échelle de l'image a échoué en utilisant la boite à "
+"outils %toolkit sur le chemin %path (%mimetype, %dimensions)"
+msgid ""
+"Image crop failed using the %toolkit toolkit on %path (%mimetype, "
+"%dimensions)"
+msgstr ""
+"Le recadrage de l'image a échoué en utilisant la boite à outils "
+"%toolkit sur le chemin %path (%mimetype, %dimensions)"
+msgid ""
+"Image scale and crop failed using the %toolkit toolkit on %path "
+"(%mimetype, %dimensions)"
+msgstr ""
+"Le redimensionnement et le recadrage de l'image %path (%mimetype, "
+"%dimensions), utilisant la boite à outils %toolkit, ont échoué."
+msgid ""
+"Image desaturate failed using the %toolkit toolkit on %path "
+"(%mimetype, %dimensions)"
+msgstr ""
+"La désaturation de l'image %path  (%mimetype, %dimensions), "
+"effectuée avec la boite à outils %toolkit, a échoué."
+msgid ""
+"Image rotate failed using the %toolkit toolkit on %path (%mimetype, "
+"%dimensions)"
+msgstr ""
+"La rotation de l'image %path (%mimetype, %dimensions), effectuée avec "
+"la boite à outils %toolkit, a échoué."
+msgid "This field stores the ID of an image file as an integer value."
+msgstr ""
+"Ce champ stocke l'identifiant (ID) d'un fichier image sous la forme "
+"d'un nombre entier."
+msgid "If no image is uploaded, this image will be shown on display."
+msgstr ""
+"Si aucune image n'est transférée, c'est cette image qui sera "
+"utilisée pour l'affichage."
+msgid "Minimum image resolution"
+msgstr "Résolution minimum de l'image"
+msgid ""
+"The minimum allowed image size expressed as WIDTHxHEIGHT (e.g. "
+"640x480). Leave blank for no restriction. If a smaller image is "
+"uploaded, it will be rejected."
+msgstr ""
+"La taille minimum autorisée pour une image s'écrit LARGEURxHAUTEUR "
+"(par exemple : 640x480). Laisser le champ vide pour que la taille ne "
+"soit pas limitée. Si une image plus petite est transférée, elle "
+"sera refusée."
+msgid "Enable <em>Alt</em> field"
+msgstr "Activer le champ <em>Alt</em>"
+msgid ""
+"The alt attribute may be used by search engines, screen readers, and "
+"when the image cannot be loaded."
+msgstr ""
+"Le contenu de l'attribut Alt (texte alternatif) peut être utilisé "
+"par les moteurs de recherche, les lecteurs d'écran, et lorsque "
+"l'image ne peut pas être chargée."
+msgid "Enable <em>Title</em> field"
+msgstr "Activer le champ <em>Titre</em>"
+msgid ""
+"The title attribute is used as a tooltip when the mouse hovers over "
+"the image."
+msgstr ""
+"Le contenu de l'attribut <em>Title</em> (\"titre\", en français) "
+"apparait dans une infobulle lorsque le pointeur de la souris survole "
+"l'image."
+msgid "Both a height and width value must be specified in the !name field."
+msgstr ""
+"Les valeurs de hauteur et de largeur doivent toutes les deux être "
+"indiquées dans le champ !name."
+msgid "Preview image style"
+msgstr "Aperçu du style d'image"
+msgid "no preview"
+msgstr "pas d'aperçu"
+msgid "The preview image will be shown while editing the content."
+msgstr "L'aperçu de l'image sera affiché pendant la modification du contenu."
+msgid ""
+"The Image module allows you to manipulate images on your website. It "
+"exposes a setting for using the <em>Image toolkit</em>, allows you to "
+"configure <em>Image styles</em> that can be used for resizing or "
+"adjusting images on display, and provides an <em>Image</em> field for "
+"attaching images to content. For more information, see the online "
+"handbook entry for <a href=\"@image\">Image module</a>."
+msgstr ""
+"Le module Image vous permet de manipuler les images de votre site Web. "
+"Il donne accès aux paramètres de la <em>Boite à outils Image</em>, "
+"et vous permet de configurer des <em>Styles d'images</em> pouvant "
+"être utilisés pour redimensionner ou adapter les images à "
+"l'affichage. Il fournit un champ <em>Image</em> permettant d'attacher "
+"des images au contenu. Pour plus d'information, voir la section du <a "
+"href=\"@image\">module Image</a> dans le manuel en ligne."
+msgid "Manipulating images"
+msgstr "Manipulation des images"
+msgid ""
+"With the Image module you can scale, crop, resize, rotate and "
+"desaturate images without affecting the original image using <a "
+"href=\"@image\">image styles</a>. When you change an image style, the "
+"module automatically refreshes all created images. Every image style "
+"must have a name, which will be used in the URL of the generated "
+"images. There are two common approaches to naming image styles (which "
+"you use will depend on how the image style is being applied):"
+msgstr ""
+"Avec le module Image, vous pouvez mettre à l'échelle, recadrer, "
+"redimensionner, faire pivoter et désaturer les images sans altérer "
+"l'original en utilisant des <a href=\"@image\">Styles d'images</a>. "
+"Lorsque vous modifiez des styles d'images, le module rafraichit "
+"automatiquement toutes les images créées. Chaque style d'image doit "
+"avoir un nom pouvant être utilisé dans les URL des images "
+"générées. Il y a deux façons courantes de nommer les styles "
+"d'images (celle que vous utiliserez dépendra de la façon dont le "
+"style d'image sera appliqué)&nbsp;:"
+msgid "Based on where it will be used: eg. <em>profile-picture</em>"
+msgstr ""
+"Basé sur l'emplacement où il sera utilisé&nbsp;: par exemple, "
+"<em>image-de-profil</em>"
+msgid "Describing its appearance: eg. <em>square-85x85</em>"
+msgstr "Description de son apparence&nbsp;: <em>carre-85x85</em>"
+msgid "Attaching images to content as fields"
+msgstr "Attacher des images au contenu en tant que champs"
+msgid ""
+"Image module also allows you to attach images to content as fields. To "
+"add an image field to a <a href='@content-type'>content type</a>, go "
+"to the content type's <em>manage fields</em> page, and add a new field "
+"of type <em>Image</em>. Attaching images to content this way allows "
+"image styles to be applied and maintained, and also allows you more "
+"flexibility when theming."
+msgstr ""
+"Le module Image vous permet aussi d'attacher des images au contenu en "
+"tant que champ. Pour ajouter un champ d'image à un <a "
+"href='@content-type'>type de contenu</a>, allez à la page <em>Gérer "
+"les champs</em> des types de contenu et ajoutez un nouveau champ de "
+"type <em>Image</em>. Cette méthode d'attachement des images permet "
+"d'appliquer et de maintenir des styles d'images et aussi vous offre "
+"une plus grande souplesse pour la réalisation de thèmes."
+msgid ""
+"Image styles commonly provide thumbnail sizes by scaling and cropping "
+"images, but can also add various effects before an image is displayed. "
+"When an image is displayed with a style, a new file is created and the "
+"original image is left unchanged."
+msgstr ""
+"Les styles d'images fournissent habituellement différentes tailles de "
+"vignettes issues de la mise à l'échelle et du recadrage des images, "
+"mais ils peuvent aussi appliquer des effets variés avant qu'une image "
+"ne soit affichée. Lorsqu'une image est affichée avec un style, un "
+"nouveau fichier est créé tandis que l'image originale reste intacte."
+msgid "Administer image styles"
+msgstr "Administrer les styles d'images"
+msgid ""
+"Create and modify styles for generating image modifications such as "
+"thumbnails."
+msgstr ""
+"Création et édition des styles destinés à la génération d'images "
+"modifiées telles que les vignettes."
+msgid "No defined styles"
+msgstr "Aucun styles n'est défini"
+msgid "Image generation in progress. Try again shortly."
+msgstr ""
+"La génération d'image est en cours. Essayer à nouveau un peu plus "
+"tard."
+msgid "Error generating image."
+msgstr "Erreur de génération d'image."
+msgid "Unable to generate the derived image located at %path."
+msgstr ""
+"Impossible de générer l'image dérivée dont l'emplacement est "
+"%path."
+msgid "Failed to create style directory: %directory"
+msgstr "Échec de la création du dossiers des styles&nbsp;: %directory"
+msgid ""
+"Cached image file %destination already exists. There may be an issue "
+"with your rewrite configuration."
+msgstr ""
+"Le fichier d'image caché %destination existe déjà. Cela peut "
+"entrainer des problèmes avec votre configuration de réécriture."
+msgid "Generate image style"
+msgstr "Générer un style d'image"
+msgid "Image styles"
+msgstr "Styles d'images"
+msgid ""
+"Configure styles that can be used for resizing or adjusting images on "
+"display."
+msgstr ""
+"Configurer les styles qui peuvent être utilisés pour redimensionner "
+"ou ajuster les images à l'affichage."
+msgid "List the current image styles on the site."
+msgstr "Liste des styles d'images du site."
+msgid "Add style"
+msgstr "Ajouter un style"
+msgid "Add a new image style."
+msgstr "Ajouter un nouveau style d'image"
+msgid "Configure an image style."
+msgstr "Configurer un style d'image."
+msgid "Delete an image style."
+msgstr "Supprimer un style d'image."
+msgid "Edit image effect"
+msgstr "Modifier l'effet d'image"
+msgid "Delete image effect"
+msgstr "Supprimer un effet d'image"
+msgid "Add image effect"
+msgstr "Ajouter un effet d'image"
+msgid "Add a new effect to a style."
+msgstr "Ajouter un nouvel effet à un  style"
+msgid "Detection method"
+msgstr "Méthode de détection"
+msgid "Part of the URL that determines language"
+msgstr "Partie de l'URL qui détermine la langue"
+msgid "Request/session parameter"
+msgstr "Paramètre de requête/de session"
+msgid ""
+"Name of the request/session parameter used to determine the desired "
+"language."
+msgstr ""
+"Nom du paramètre de requête ou de session utiliser pour déterminer "
+"la langue souhaitée."
+msgid "Filter translatable strings"
+msgstr "Filtrer les chaînes traduisibles"
+msgid "Date type"
+msgstr "Type de date"
+msgid ""
+"Are you sure you want to reset the date formats for %language to the "
+"global defaults?"
+msgstr ""
+"Êtes-vous sûr(e) de vouloir réinitialiser les formats de dates en "
+"%language aux réglages par défaut ?"
+msgid ""
+"Resetting will remove all localized date formats for this language. "
+"This action cannot be undone."
+msgstr ""
+"La réinitialisation va supprimer tous les formats de dates localisés "
+"pour cette langue. Cette opération ne peut pas être annulée."
+msgid ""
+"The Locale module allows your Drupal site to be presented in languages "
+"other than the default English, and to be multilingual. The Locale "
+"module works by maintaining a database of translations, and examining "
+"text as it is about to be displayed. When a translation of the text is "
+"available in the language to be displayed, the translation is "
+"displayed rather than the original text. When a translation is "
+"unavailable, the original text is displayed, and then stored for "
+"review by a translator. For more information, see the online handbook "
+"entry for <a href=\"@locale\">Locale module</a>."
+msgstr ""
+"Le module Locale permet à votre site Drupal d'être affiché dans "
+"d'autres langues que la langue anglaise, utilisée par défaut, ainsi "
+"que d'être multilingue. Le module Locale travaille en maintenant une "
+"base de données des traductions, et en analysant le texte devant "
+"être affiché. Lorsqu'une traduction du texte est disponible dans la "
+"langue à afficher, la traduction est utilisée à la place du texte "
+"original. Lorsque la traduction n'est pas disponible, c'est le texte "
+"d'origine qui est affiché, et ensuite conservé pour être adapté "
+"par un traducteur. Pour plus d'information, voir la section <a "
+"href=\"@locale\">module Locale</a> du manuel en ligne."
+msgid "Translating interface text"
+msgstr "Traduction du texte de l'interface"
+msgid "Translations of text in the Drupal interface may be provided by:"
+msgstr ""
+"Les traductions du texte de l'interface de Drupal peuvent être "
+"fournies par&nbsp;:"
+msgid ""
+"Translating within your site, using the Locale module's integrated <a "
+"href='@translate'>translation interface</a>."
+msgstr ""
+"Traduire à partir de votre site en utilisant l'<a "
+"href='@translate'>interface de traduction</a> intégrée du module "
+"Locale."
+msgid "Configuring a multilingual site"
+msgstr "Configuration d'un site multilingue"
+msgid ""
+"Determine the language from a request/session parameter. Example: "
+"\"http://example.com?language=de\" sets language to German based on "
+"the use of \"de\" within the \"language\" parameter."
+msgstr ""
+"Détermine la langue à partir d'un paramètre de requête ou de "
+"session. Par exemple : \"http://example.com?language=de\" règle la "
+"langue sur l'allemand en utilisant le code \"de\" dans le paramètre "
+"\"language\"."
+msgid "Administer languages"
+msgstr "Administrer les langues"
+msgid "Translate interface texts"
+msgstr "Traduire les textes de l'interface"
+msgid ""
+"Order of language detection methods for content. If a version of "
+"content is available in the detected language, it will be displayed."
+msgstr ""
+"Ordre des méthodes de détection de la langue. Si une version du "
+"contenu est disponible dans la langue détectée, celle-ci sera "
+"affichée."
+msgid ""
+"Order of language detection methods for user interface text. If a "
+"translation of user interface text is available in the detected "
+"language, it will be displayed."
+msgstr ""
+"Ordre des méthodes de détection des langues pour le texte de "
+"l'interface utilisateur. Si une version du texte de l'interface "
+"utilisateur est disponible dans la langue détectée, elle sera "
+"affichée."
+msgid "Detection and selection"
+msgstr "Détection et sélection"
+msgid "URL language detection configuration"
+msgstr "Configuration de la détection de langue dans l'URL"
+msgid "Session language detection configuration"
+msgstr "Configuration de la détection de langue dans la session"
+msgid "Localize"
+msgstr "Localiser"
+msgid "Localize date formats"
+msgstr "Localisation des formats de dates"
+msgid "Reset date formats"
+msgstr "Réinitialiser les formats de dates"
+msgid "Reset localized date formats to global defaults"
+msgstr ""
+"Réinitialise les formats de dates vers les formats globaux par "
+"défaut."
+msgctxt "Long month name"
+msgid "January"
+msgstr "Janvier"
+msgctxt "Long month name"
+msgid "February"
+msgstr "Février"
+msgctxt "Long month name"
+msgid "March"
+msgstr "Mars"
+msgctxt "Long month name"
+msgid "April"
+msgstr "Avril"
+msgctxt "Long month name"
+msgid "May"
+msgstr "Mai"
+msgctxt "Long month name"
+msgid "June"
+msgstr "Juin"
+msgctxt "Long month name"
+msgid "July"
+msgstr "Juillet"
+msgctxt "Long month name"
+msgid "August"
+msgstr "Août"
+msgctxt "Long month name"
+msgid "September"
+msgstr "Septembre"
+msgctxt "Long month name"
+msgid "October"
+msgstr "Octobre"
+msgctxt "Long month name"
+msgid "November"
+msgstr "Novembre"
+msgctxt "Long month name"
+msgid "December"
+msgstr "Décembre"
+msgid "There are no menu links yet. <a href=\"@link\">Add link</a>."
+msgstr ""
+"Il n'y a pas encore de lien de menu. <a href=\"@link\"> Ajouter un "
+"lien</a>."
+msgid "The text to be used for this link in the menu."
+msgstr "Le texte à utiliser pour ce lien dans le menu."
+msgid ""
+"The path for this menu link. This can be an internal Drupal path such "
+"as %add-node or an external URL such as %drupal. Enter %front to link "
+"to the front page."
+msgstr ""
+"Le chemin pour ce lien de menu. Cela peut être un chemin interne de "
+"Drupal comme %add-node ou une URL externe comme %drupal. Utiliser "
+"%front pour faire un lien vers la page d'accueil."
+msgid "Menu links that are not enabled will not be listed in any menu."
+msgstr ""
+"Les liens de menu qui ne sont pas activés ne seront pas listés dans "
+"les menus."
+msgid "Show as expanded"
+msgstr "Afficher déplié"
+msgid ""
+"If selected and this menu link has children, the menu will always "
+"appear expanded."
+msgstr ""
+"S'il est sélectionné et qu'il a des enfants, ce menu apparaitra "
+"toujours déplié."
+msgid "Parent link"
+msgstr "Lien parent"
+msgid ""
+"The maximum depth for a link and all its children is fixed at "
+"!maxdepth. Some menu links may not be available as parents if "
+"selecting them would exceed this limit."
+msgstr ""
+"La profondeur maximum pour un lien et tout ses enfants est fixée à  "
+"!maxdepth. Certains liens de menu peuvent ne pas être utilisables "
+"comme parents si la limite est dépassée lorsqu'on les sélectionne."
+msgid ""
+"Optional. In the menu, the heavier links will sink and the lighter "
+"links will be positioned nearer the top."
+msgstr ""
+"Optionnel. Dans ce menu, les liens les plus lourds descendent et les "
+"plus légers montent vers le haut."
+msgid "Are you sure you want to delete the custom menu link %item?"
+msgstr ""
+"Êtes-vous sûr de vouloir supprimer le lien de menu personnalisé "
+"%item&nbsp;?"
+msgid "The menu link %title has been deleted."
+msgstr "Le lien de menu %title a été supprimé."
+msgid "Are you sure you want to reset the link %item to its default values?"
+msgstr ""
+"Êtes-vous sûr(e) de vouloir réinitialiser le lien %item à ses "
+"valeurs par défaut ?"
+msgid "The menu link was reset to its default settings."
+msgstr "Le lien de menu a été réinitialisé à ses valeurs par défaut."
+msgid "No Main links"
+msgstr "Aucun lien principal"
+msgid "Source for the Main links"
+msgstr "Source des Liens principaux"
+msgid ""
+"Select what should be displayed as the Main links (typically at the "
+"top of the page)."
+msgstr ""
+"Sélectionner ce qui doit être affiché comme Liens principaux "
+"(typiquement en haut de page)."
+msgid "No Secondary links"
+msgstr "Aucun lien secondaire"
+msgid "Source for the Secondary links"
+msgstr "Source des Liens secondaires"
+msgid ""
+"Select the source for the Secondary links. An advanced option allows "
+"you to use the same source for both Main links (currently %main) and "
+"Secondary links: if your source menu has two levels of hierarchy, the "
+"top level menu links will appear in the Main links, and the children "
+"of the active link will appear in the Secondary links."
+msgstr ""
+"Sélectionner la source des Liens secondaires. Une option avancée "
+"vous permet d'utiliser la même source pour les Liens principaux "
+"(actuellement %main) et les Liens secondaires. Si votre menu source "
+"contient une hiérarchie de liens à deux niveaux, les liens du "
+"premier niveau seront affichés dans les Liens principaux et les liens "
+"enfants du lien actif dans les Liens secondaires."
+msgid "Deleted custom menu %title and all its menu links."
+msgstr ""
+"Le menu personnalisé %title a été supprimé ainsi que tous ses "
+"liens."
+msgid "Deleted menu link %title."
+msgstr "Le lien de menu %title a été supprimé."
+msgid ""
+"<strong>Warning:</strong> There is currently 1 menu link in %title. It "
+"will be deleted (system-defined items will be reset)."
+msgid_plural ""
+"<strong>Warning:</strong> There are currently @count menu links in "
+"%title. They will be deleted (system-defined links will be reset)."
+msgstr[0] ""
+"<strong>Attention&nbsp;:</strong> Il y a actuellement 1 entrée de "
+"menu dans %title. Elle sera supprimée (les entrées définies par le "
+"système seront réinitialisées)."
+msgstr[1] ""
+"<strong>Attention&nbsp;:</strong> Il y a actuellement @count entrées "
+"de menu dans %title. Elles seront supprimées (les entrées définies "
+"par le système seront réinitialisées)."
+msgid "Managing menus"
+msgstr "Gestion des menus"
+msgid ""
+"Users with the <em>Administer menus and menu items</em> permission can "
+"add, edit and delete custom menus on the <a href=\"@menu\">Menus "
+"administration page</a>. Custom menus can be special site menus, menus "
+"of external links, or any combination of internal and external links. "
+"You may create an unlimited number of additional menus, each of which "
+"will automatically have an associated block. By selecting <em>list "
+"links</em>, you can add, edit, or delete links for a given menu. The "
+"links listing page provides a drag-and-drop interface for controlling "
+"the order of links, and creating a hierarchy within the menu."
+msgstr ""
+"Les utilisateurs disposant de la permission <em>Administrer les menus "
+"et les éléments de menus</em> peuvent ajouter, modifier et supprimer "
+"les menus personnalisés dans la page <a href=\"@menu\">Administration "
+"des menus</a>. Les menus personnalisés peuvent être des menus "
+"spécifiques au site, des menus de liens externes, ou n'importe quelle "
+"combinaison de liens internes ou externes. Vous pouvez créer un "
+"nombre illimité de menus, chacun d'eux disposera automatiquement d'un "
+"bloc associé. En sélectionnant <em>Liste de liens</em>, vous pouvez "
+"ajouter, modifier ou supprimer les liens d'un menu donné. La page "
+"listant les liens fournit une interface de glissé-déposé "
+"(<em>drag-and-drop</em>) permettant de contrôler l'ordre des liens et "
+"de les hiérarchiser au sein menu."
+msgid "Displaying menus"
+msgstr "Affichage des menus"
+msgid ""
+"After you have created a menu, you must enable and position the "
+"associated block on the <a href=\"@blocks\">Blocks administration "
+"page</a>."
+msgstr ""
+"Après avoir créé un menu, vous devez activer et positionner le bloc "
+"associé à partir de la page <a href=\"@blocks\">Administration des "
+"blocs</a>."
+msgid ""
+"You can enable the newly-created block for this menu on the <a "
+"href=\"@blocks\">Blocks administration page</a>."
+msgstr ""
+"Vous pouvez activer le bloc nouvellement créé pour ce menu dans la "
+"page <a href=\"@blocks\">Administration des blocs</a>."
+msgid ""
+"Each menu has a corresponding block that is managed on the <a "
+"href=\"@blocks\">Blocks administration page</a>."
+msgstr ""
+"Chaque menu a un bloc correspondant qui est géré sur la page <a "
+"href=\"@blocks\">d'administration des blocs</a>."
+msgid "Administer menus and menu items"
+msgstr "Administrer les menus et les éléments de menus."
+msgid "Provide a menu link"
+msgstr "Fournir un lien de menu"
+msgid ""
+"Menu links with smaller weights are displayed before links with larger "
+"weights."
+msgstr ""
+"Les liens de menus avec un poids léger seront affichés avant les "
+"liens dotés d'un poids plus lourd."
+msgid "Available menus"
+msgstr "Menus disponibles"
+msgid "The menus available to place links in for this content type."
+msgstr "Menus acceptant les liens de ce type de contenu."
+msgid "Default parent item"
+msgstr "Élément parent par défaut"
+msgid ""
+"Choose the menu item to be the default parent for a new link in the "
+"content authoring form."
+msgstr ""
+"Choisir l'élément de menu qui deviendra le parent par défaut pour "
+"les nouveaux liens dans le formulaire de création de contenu."
+msgid ""
+"Add new menus to your site, edit existing menus, and rename and "
+"reorganize menu links."
+msgstr ""
+"Ajouter de nouveaux menus à votre site, modifier les menus existants, "
+"renommer et réorganiser les liens qui s'y trouvent."
+msgid "Parent menu items"
+msgstr "Éléments du menu parent"
+msgid "Edit menu link"
+msgstr "Modifier le lien de menu"
+msgid "Reset menu link"
+msgstr "Réinitialiser le lien du menu"
+msgid "Delete menu link"
+msgstr "Suppirmer le lien de menu"
+msgid "No content types available. <a href=\"@link\">Add content type</a>."
+msgstr ""
+"Aucun type de contenu n'est disponible. <a href=\"@link\">Ajouter un "
+"type de contenu</a>."
+msgid ""
+"The human-readable name of this content type. This text will be "
+"displayed as part of the list on the <em>Add new content</em> page. It "
+"is recommended that this name begin with a capital letter and contain "
+"only letters, numbers, and spaces. This name must be unique."
+msgstr ""
+"Le nom \"lisible par les utilisateurs\" de ce type de contenu. Ce "
+"texte sera affiché comme élément de liste dans la page <em>Ajouter "
+"un nouveau contenu</em>. Il est d'usage que ce nom commence par une "
+"majuscule et ne contienne que des lettres, des nombres et des espaces. "
+"Ce nom doit être unique."
+msgid ""
+"Describe this content type. The text will be displayed on the <em>Add "
+"new content</em> page."
+msgstr ""
+"Décrire ce type de contenu. Le texte sera affiché dans la page "
+"<em>Ajouter un nouveau contenu</em>."
+msgid "Preview before submitting"
+msgstr "Aperçu avant soumission"
+msgid ""
+"This text will be displayed at the top of the page when creating or "
+"editing content of this type."
+msgstr ""
+"Ce texte sera affiché en haut de la page lors de la création ou de "
+"la modification de ce type de contenu."
+msgid ""
+"Users with the <em>Administer content</em> permission will be able to "
+"override these options."
+msgstr ""
+"Les utilisateurs ayant la permission <em>Administrer le contenu</em> "
+"pourront supplanter ces options"
+msgid "Display author and date information."
+msgstr "Afficher l'auteur et la date."
+msgid "Author username and publish date will be displayed."
+msgstr ""
+"Le nom d'utilisateur de l'auteur et la date de publication seront "
+"affichés"
+msgid "Invalid machine-readable name. Enter a name other than %invalid."
+msgstr "Nom interne incorrect. Entrer un nom différent de \"%invalid\"."
+msgid "Publish selected content"
+msgstr "Publier le contenu sélectionné"
+msgid "Unpublish selected content"
+msgstr "Dépublier le contenu sélectionné"
+msgid "Promote selected content to front page"
+msgstr "Promouvoir en page d'accueil le contenu sélectionné"
+msgid "Demote selected content from front page"
+msgstr "Retirer de la page d'accueil le contenu sélectionné"
+msgid "Make selected content sticky"
+msgstr "Épingler en haut des listes le contenu sélectionné"
+msgid "Make selected content not sticky"
+msgstr "Retirer du haut des listes le contenu sélectionné"
+msgid "Delete selected content"
+msgstr "Supprimer le contenu sélectionné"
+msgid "Deleted @count posts."
+msgstr "@count publications supprimées."
+msgid "Are you sure you want to delete this item?"
+msgid_plural "Are you sure you want to delete these items?"
+msgstr[0] "Êtes-vous sûr(e) de vouloir supprimer cet élément ?"
+msgstr[1] "Êtes-vous sûr(e) de vouloir supprimer ces éléments ?"
+msgid "<em>Edit @type</em> @title"
+msgstr "<em>Modifier @type</em> @title"
+msgid ""
+"You have not created any content types yet. Go to the <a "
+"href=\"@create-content\">content type creation page</a> to add a new "
+"content type."
+msgstr ""
+"Vous n'avez aucun type de contenu pour l'instant. Pour ajouter un "
+"nouveau type de contenu, allez à la page de <a "
+"href=\"@create-content\">création d'un type de contenu</a>."
+msgid "Revision log message"
+msgstr "Message du journal de révision"
+msgid "Tokens related to individual content items, or \"nodes\"."
+msgstr ""
+"Jetons (tokens) en rapport avec des éléments individuels, ou "
+"\"nœuds\" (nodes)."
+msgid "The unique ID of the content item, or \"node\"."
+msgstr ""
+"L'identifiant (ID) unique de l'élément de contenu, ou \"nœud\" "
+"(node)."
+msgid "The main body text of the node."
+msgstr "Le corps de texte principal du nœud."
+msgid "The summary of the node's main body text."
+msgstr "Le résumé du corps de texte principal du nœud."
+msgid ""
+"The content access permissions need to be rebuilt. <a "
+"href=\"@node_access_rebuild\">Rebuild permissions</a>."
+msgstr ""
+"Les permissions d'accès au contenu doivent être reconstruites. <a "
+"href=\"@node_access_rebuild\">Reconstruire les permissions</a>."
+msgid ""
+"The Node module manages the creation, editing, deletion, settings, and "
+"display of the main site content. Content items managed by the Node "
+"module are typically displayed as pages on your site, and include a "
+"title, some meta-data (author, creation time, content type, etc.), and "
+"optional fields containing text or other data (fields are managed by "
+"the <a href=\"@field\">Field module</a>). For more information, see "
+"the online handbook entry for <a href=\"@node\">Node module</a>."
+msgstr ""
+"Le module Node gère la création, la modification, la suppression, la "
+"configuration, et l'affichage du contenu principal du site. Les "
+"éléments de contenu (les <strong>nœuds</strong>) gérés par le "
+"module Node sont typiquement affichés en tant que pages de votre "
+"site&nbsp;; ils comprennent un titre, un certain nombre de "
+"métadonnées (auteur, date de création, type de contenu, etc.) et "
+"des champs optionnels pouvant contenir du texte ou d'autres types de "
+"données (les champs sont gérés par le <a href=\"@field\">module "
+"Field</a>). Pour plus d'information, voir la section <a "
+"href=\"@node\">Node</a> du manuel en ligne."
+msgid "Creating content"
+msgstr "Création de contenu"
+msgid ""
+"When new content is created, the Node module records basic information "
+"about the content, including the author, date of creation, and the <a "
+"href=\"@content-type\">Content type</a>. It also manages the "
+"<em>publishing options</em>, which define whether or not the content "
+"is published, promoted to the front page of the site, and/or sticky at "
+"the top of content lists. Default settings can be configured for each "
+"<a href=\"@content-type\">type of content</a> on your site."
+msgstr ""
+"Lorsqu'un nouveau contenu est créé, le module Node enregistre les "
+"informations de base liées à ce contenu&nbsp;; elles comprennent "
+"l'auteur, la date de création, et le <a href=\"@content-type\">type "
+"de contenu</a>. Les <em>options de publication</em> sont aussi "
+"gérées, elles permettent de définir si le contenu est publié ou "
+"non, promu ou pas en page d'acceuil, et/ou épinglé en haut des "
+"listes de contenu. Les paramètres par défaut peuvent être "
+"configurés pour chaque <a href=\"@content-type\">type de contenu</a> "
+"de votre site."
+msgid "Creating custom content types"
+msgstr "Création de types de contenu personnalisés"
+msgid ""
+"The Node module gives users with the <em>Administer content types</em> "
+"permission the ability to <a href=\"@content-new\">create new content "
+"types</a> in addition to the default ones already configured. Creating "
+"custom content types allows you the flexibility to add <a "
+"href=\"@field\">fields</a> and configure default settings that suit "
+"the differing needs of various site content."
+msgstr ""
+"Le module Node donne aux utilisateurs ayant la permission "
+"<em>Administrer les types de contenus</em> la faculté de <a "
+"href=\"@content-new\">créer de nouveaux types de contenus</a> en plus "
+"de ceux qui sont déjà définis par défaut. La création de types de "
+"contenus personnalisés vous permet d'ajouter des  <a "
+"href=\"@field\">champs</a> et de configurer les paramètres par "
+"défaut qui répondent aux besoins de contenus distincts de chaque "
+"site."
+msgid "Administering content"
+msgstr "Administration du contenu"
+msgid ""
+"The <a href=\"@content\">Content administration page</a> allows you to "
+"review and bulk manage your site content."
+msgstr ""
+"La page <a href=\"@content\">Administration du contenu</a> vous permet "
+"de suivre et de gérer globalement le contenu de votre site."
+msgid "Creating revisions"
+msgstr "Création de révisions"
+msgid ""
+"The Node module also enables you to create multiple versions of any "
+"content, and revert to older versions using the <em>Revision "
+"information</em> settings."
+msgstr ""
+"Le module Node permet aussi de créer de multiples versions de "
+"n'importe quel contenu, et de rétablir les versions antérieures en "
+"utilisant les paramètres <em>Informations de révision</em>."
+msgid "User permissions"
+msgstr "Droits de l'utilisateur"
+msgid ""
+"The Node module makes a number of permissions available for each "
+"content type, which can be set by role on the <a "
+"href=\"@permissions\">permissions page</a>."
+msgstr ""
+"Le module Node rend un certain nombre de permissions disponible pour "
+"chaque type de contenu, elles peuvent être paramétrées par rôle "
+"dans la page <a href=\"@permissions\">Permissions</a>."
+msgid ""
+"Individual content types can have different fields, behaviors, and "
+"permissions assigned to them."
+msgstr ""
+"Chaque type de contenu peut recevoir, individuellement, des champs, "
+"des comportements, et des permissions distincts."
+msgid ""
+"Content items can be displayed using different view modes: Teaser, "
+"Full content, Print, RSS, etc. <em>Teaser</em> is a short format that "
+"is typically used in lists of multiple content items. <em>Full "
+"content</em> is typically used when the content is displayed on its "
+"own page."
+msgstr ""
+"Les éléments de contenu peuvent être affichés en utilisant "
+"différents modes de présentation&nbsp;: accroche, contenu intégral, "
+"impression, RSS, etc. L'<em>accroche</em> (<em>teaser</em>) est un "
+"format court qui est typiquement utilisé dans les listes de multiples "
+"éléments de contenus. Le <em>contenu intégral</em> est typiquement "
+"utilisé lorsqu'un contenu est affiché au sein de sa propre page."
+msgid ""
+"Here, you can define which fields are shown and hidden when %type "
+"content is displayed in each view mode, and define how the fields are "
+"displayed in each view mode."
+msgstr ""
+"Ici, vous pouvez définir quels champs seront affichés ou masqués "
+"pour chaque mode de présentation du contenu %type, et définir "
+"comment les champs seront affichés dans chaque mode de présentation."
+msgid ""
+"Revisions allow you to track differences between multiple versions of "
+"your content, and revert back to older versions."
+msgstr ""
+"Les révisions vous permettent de faire le suivi des différences "
+"entre les différentes versions de votre contenu, et de rétablir les "
+"versions plus anciennes."
+msgid ""
+"The content on this page has either been modified by another user, or "
+"you have already submitted modifications using this form. As a result, "
+"your changes cannot be saved."
+msgstr ""
+"Le contenu de cette page a été modifié par un autre utilisateur, ou "
+"c'est vous qui avez déjà soumis des changements en utilisant ce "
+"formulaire. Par conséquent, vos modifications ne peuvent pas être "
+"enregistrées."
+msgid "Administer content types"
+msgstr "Administrer les types de contenus"
+msgid ""
+"Warning: Give to trusted roles only; this permission has security "
+"implications."
+msgstr ""
+"Attention : ne l'attribuer qu'à des rôles de confiance ; cette "
+"permission touche à la sécurité."
+msgid "View published content"
+msgstr "Voir le contenu publié"
+msgid "Bypass content access control"
+msgstr "Outrepasser le contrôle d'accès au contenu"
+msgid "View own unpublished content"
+msgstr "Voir le contenu non-publié dont on est l'auteur"
+msgid "Content is sticky at top of lists"
+msgstr "Le contenu est épinglé en haut des listes"
+msgid "Content is promoted to the front page"
+msgstr "Le contenu est promu en page d'accueil"
+msgid "Recent content"
+msgstr "Contenu récent"
+msgid "Number of recent content items to display"
+msgstr "Nombre d'éléments de contenu récent à afficher"
+msgid "Show block for specific content types"
+msgstr "Afficher le bloc pour des types de contenus spécifiques"
+msgid ""
+"Show this block only on pages that display content of the given "
+"type(s). If you select no types, there will be no type-specific "
+"limitation."
+msgstr ""
+"Afficher ce bloc seulement sur les pages qui affichent des contenus du "
+"ou des types indiqués. Si vous ne sélectionnez pas de type, il n'y "
+"aura aucune limitation spécifique aux types."
+msgid "Change the author of content"
+msgstr "Changer l'auteur d'un contenu"
+msgid "Save content"
+msgstr "Enregistrer un contenu"
+msgid "Unpublish content containing keyword(s)"
+msgstr "Dépublier un contenu contenant le(s) mot(s)-clé(s)"
+msgid ""
+"The content will be unpublished if it contains any of the phrases "
+"above. Use a case-sensitive, comma-separated list of phrases. Example: "
+"funny, bungee jumping, \"Company, Inc.\""
+msgstr ""
+"Le contenu sera dépublier s'il contient n'importe laquelle des "
+"phrases ci-dessus. Utiliser une liste de phrases séparées par des "
+"virgules, les phrases sont sensibles à la casse. Exemple&nbsp;: "
+"amusant, saut à l'élastique, \"Company, Inc.\""
+msgid ""
+"If the site is experiencing problems with permissions to content, you "
+"may have to rebuild the permissions cache. Rebuilding will remove all "
+"privileges to content and replace them with permissions based on the "
+"current modules and settings. Rebuilding may take some time if there "
+"is a lot of content or complex permission settings. After rebuilding "
+"has completed, content will automatically use the new permissions."
+msgstr ""
+"Si le site rencontre des problèmes avec les permissions d'accès au "
+"contenu, vous pouvez avoir à reconstruire le cache des permissions. "
+"La reconstruction va supprimer tous les privilèges d'accès et les "
+"remplacer par les permissions basées sur les paramètres et les "
+"modules courants. La reconstruction peut prendre un certain temps si "
+"le contenu est important et les paramètres de permissions complexes. "
+"Après la reconstruction, le contenu utilisera automatiquement les "
+"nouvelles permissions."
+msgid "Node Access Permissions"
+msgstr "Droits d'accès au nœud"
+msgid "One permission in use"
+msgid_plural "@count permissions in use"
+msgstr[0] "@count permission utilisée"
+msgstr[1] "@count permissions utilisées"
+msgid "Find and manage content."
+msgstr "Trouver et gérer un contenu."
+msgid ""
+"Manage content types, including default status, front page promotion, "
+"comment settings, etc."
+msgstr ""
+"Gérer les types de contenu, incluant les valeurs par défaut, la "
+"promotion en page d'accueil, les paramètres des commentaires, etc."
+msgid "Edit content type"
+msgstr "Modifier le type de contenu"
+msgid "Don't display post information"
+msgstr "Ne pas afficher les informations de la contribution"
+msgid ""
+"The Overlay module makes the administration pages on your site display "
+"in a JavaScript overlay of the page you were viewing when you clicked "
+"the administrative link, instead of replacing the page in your browser "
+"window. Use the close link on the overlay to return to the page you "
+"were viewing when you clicked the link. For more information, see the "
+"online handbook entry for <a href=\"@overlay\">Overlay module</a>."
+msgstr ""
+"Le module Overlay permet d'afficher les pages administratives de votre "
+"site au sein d'un premier plan (overlay) Javascript qui se superpose "
+"à votre page lorsque vous cliquez sur le lien administratif, au lieu "
+"de remplacer la page dans la fenêtre du navigateur. Utilisez le lien "
+"de fermeture de premier plan (overlay) pour retourner à la page que "
+"vous consultiez lorsque vous avez cliqué sur le lien. Pour plus "
+"d'information, voir le manuel en ligne à la section <a "
+"href=\"@overlay\">module Overlay</a>."
+msgid "Access the administrative overlay"
+msgstr "Accéder au premier plan (overlay)"
+msgid "View administrative pages in the overlay."
+msgstr "Voir les pages administratives dans le premier plan (overlay)."
+msgid "@title dialog"
+msgstr "dialogue de @title"
+msgid ""
+"Specify the existing path you wish to alias. For example: node/28, "
+"forum/1, taxonomy/term/1."
+msgstr ""
+"Spécifiez le chemin existant auquel vous voulez associer un alias. "
+"Par exemple&nbsp;: node/28, forum/1, taxonomy/term/1."
+msgid ""
+"The Path module allows you to specify an alias, or custom URL, for any "
+"existing internal system path. Aliases should not be confused with URL "
+"redirects, which allow you to forward a changed or inactive URL to a "
+"new URL. In addition to making URLs more readable, aliases also help "
+"search engines index content more effectively. Multiple aliases may be "
+"used for a single internal system path. To automate the aliasing of "
+"paths, you can install the contributed module <a "
+"href=\"@pathauto\">Pathauto</a>. For more information, see the online "
+"handbook entry for the <a href=\"@path\">Path module</a>."
+msgstr ""
+"Le module Path vous permet de spécifier un chemin (path), ou une URL "
+"personnalisée, pour n'importe quel chemin interne existant. Les alais "
+"ne doievnt pas être confondus avec les redirections d'URL, qui vous "
+"permettent de rediriger une URL modifiée ou devenue inactive vers une "
+"nouvelle URL. De façon complémentaire, en rendantt les URL plus "
+"lisibles, les alias aide aussi les moteurs de recherche à indexer le "
+"contenu plus efficacement. Plusieurs alias peuvent être utilisés "
+"pour un seul chemin interne. Pour automatiser la création d'alais de "
+"chemins, vous pouvez installer le module contribué <a "
+"href=\"@pathauto\">Pathauto</a>. Pour plus d'information, voir le "
+"manuel en ligne à la section <a href=\"@path\">module Path</a>."
+msgid "Creating aliases"
+msgstr "Création d'alias"
+msgid ""
+"Users with sufficient <a href=\"@permissions\">permissions</a> can "
+"create aliases under the <em>URL path settings</em> section when they "
+"create or edit content. Some examples of aliases are: "
+msgstr ""
+"Les utilisateurs ayant les <a href=\"@permissions\">permissions</a> "
+"convenables peuvent créer des alias dans la section <em>Paramètres "
+"de chemin d'URL</em> lorsqu'ils créent ou éditent un contenu. Voici "
+"quelques exemple d'alias&nbsp;: "
+msgid "<em>member/jane-smith</em> aliased to internal path <em>user/123</em>"
+msgstr ""
+"<em>membre/jeanne-lefevre</em> est l'alias du chemin interne "
+"<em>user/123</em>"
+msgid "<em>about-us/team</em> aliased to internal path <em>node/456</em>"
+msgstr ""
+"<em>a-propos-de-nous/equipe</em> est l'alias du chemin interne "
+"<em>node/456</em>"
+msgid "Managing aliases"
+msgstr "Gestion des alias"
+msgid ""
+"The Path module provides a way to search and view a <a "
+"href=\"@aliases\">list of all aliases</a> that are in use on your "
+"website. Aliases can be added, edited and deleted through this list."
+msgstr ""
+"Le module Path fournit un moyen pour rechercher et afficher une <a "
+"href=\"@aliases\">liste de tous les alias</a> en cours d'utilisation "
+"dans votre site. Les alias peuvent être ajoutés, modifiés et "
+"supprimés à partir de cette liste."
+msgid ""
+"An alias defines a different name for an existing URL path - for "
+"example, the alias 'about' for the URL path 'node/1'. A URL path can "
+"have multiple aliases."
+msgstr ""
+"Un alias définit un nom différent pour le chemin d'une URL existante "
+"- par exemple, l'alias \"a-propos\" pour le chemin de l'URL "
+"\"node/1\". Un même chemin d'URL peut avoir plusieurs alias."
+msgid "Administer URL aliases"
+msgstr "Administrer les alias d'URL"
+msgid "Create and edit URL aliases"
+msgstr "Créer et modifier des alias d'URL"
+msgid "The alias is already in use."
+msgstr "L'alias est déjà utilisé."
+msgid ""
+"Optionally specify an alternative URL by which this term can be "
+"accessed. Use a relative path and don't add a trailing slash or the "
+"URL alias won't work."
+msgstr ""
+"Permet de définir éventuellement une URL alternative pour accéder "
+"au terme du vocabulaire. Utilisez un chemin relatif et n'ajoutez pas "
+"la barre oblique de fin sinon l'alias d'URL ne fonctionnera pas."
+msgid "Enabling execution of PHP in text fields"
+msgstr "Activation de l'exécution du PHP dans les champs de texte."
+msgid "Use PHP for settings"
+msgstr "Utiliser PHP pour les paramètres"
+msgid ""
+"The PHP module has been disabled. Any existing content that was using "
+"the PHP filter will now be visible in plain text. This might pose a "
+"security risk by exposing sensitive information, if any, used in the "
+"PHP code."
+msgstr ""
+"Le module PHP a été désactivé. Tous les fragments de code PHP "
+"présents dans le contenu seront dorénavant visibles en tant que "
+"texte brut. Cela peut poser des problèmes de sécurité en dévoilant "
+"des informations sensibles, s'il y en a, présentes dans le code PHP."
+msgid "The active search modules have been changed."
+msgstr "Les modules de recherche actifs ont été modifiés"
+msgid ""
+"You must include at least one positive keyword with 1 character or "
+"more."
+msgid_plural ""
+"You must include at least one positive keyword with @count characters "
+"or more."
+msgstr[0] ""
+"Vous devez inclure au moins un mot-clé positif de @count caractère "
+"ou plus."
+msgstr[1] ""
+"Vous devez inclure au moins un mot-clé positif de @count caractères "
+"ou plus."
+msgid "Searched %type for %keys."
+msgstr "Recherché %type pour %keys."
+msgid ""
+"The Search module provides the ability to index and search for content "
+"by exact keywords, and for users by username or e-mail. For more "
+"information, see the online handbook entry for <a "
+"href=\"@search-module\">Search module</a>."
+msgstr ""
+"Le module Recherche offre la possibilité d'indexer et de rechercher "
+"des contenus par mots-clés précis, et des utilisateurs par nom "
+"d'utilisateur ou courriel. Pour plus d'informations, consultez l'aide "
+"en ligne pour le <a href=\"@search-module\">module Recherche</a>."
+msgid "Searching content and users"
+msgstr "Recherche de contenu et d'utilisateurs"
+msgid ""
+"Users with <em>Use search</em> permission can use the search block and "
+"<a href=\"@search\">Search page</a>. Users with the <em>View published "
+"content</em> permission can search for content containing exact "
+"keywords. Users with the <em>View user profiles</em> permission can "
+"search for users containing the keyword anywhere in the user name, and "
+"users with the <em>Administer users</em> permission can search for "
+"users by email address. Additionally, users with <em>Use advanced "
+"search</em> permission can find content using more complex search "
+"methods and filtering by choosing the <em>Advanced search</em> option "
+"on the <a href=\"@search\">Search page</a>."
+msgstr ""
+"Les utilisateurs avec la permission <em>Utiliser la recherche</em> "
+"peuvent le bloc de recherche et <a href=\"@search\">la page de "
+"recherche</a>. Les utilisateurs avec la permission <em>Voir le contenu "
+"publié</em> peuvent rechercher du contenu contenant exactement leurs "
+"mots-clé. Les utilisateurs avec la permission <em>Voir les profils "
+"utilisateur</em> peuvent rechercher des utilisateurs dont le nom "
+"contient le mot-clé, enfin ceux avec la permission <em>Administrer "
+"les utilisateurs</em> peuvent rechercher des utilisateurs par leur "
+"courriel. En outre, les utilisateurs avec la permission <em>Utiliser "
+"la recherche avancée</em> peuvent trouver du contenu en utilisant des "
+"méthodes de recherche et des filtres plus complexe en choisissant "
+"l'option <em>Recherche avancée</em> sur la <a href=\"@search\">page "
+"de recherche</a>."
+msgid "Indexing content with cron"
+msgstr "Indexer le contenu avec la tâche plannifiée"
+msgid "Configuring search settings"
+msgstr "Configuration des paramètres de recherche"
+msgid ""
+"Indexing behavior can be adjusted using the <a "
+"href=\"@searchsettings\">Search settings page</a>. Users with "
+"<em>Administer search</em> permission can control settings such as the "
+"<em>Number of items to index per cron run</em>, <em>Indexing "
+"settings</em> (word length), <em>Active search modules</em>, and "
+"<em>Content ranking</em>, which lets you adjust the priority in which "
+"indexed content is returned in results."
+msgstr ""
+"Le comportement d'indexation peut être modifié en utilisant la <a "
+"href=\"@searchsettings\">page de configuration de la recherche</a>. Un "
+"utilisateur avec la permission </em>Administrer la recherche</em> peut "
+"contrôler les paramètres tel que le <em>Nombre d'éléments à "
+"indexer à chaque excecution de la tâche plannifiée</em>, <em>la "
+"configuration d'indexation</em> (longueur des mots), <em>les modules "
+"de recherche actifs</em>, et <em>le classement du contenu</em>, qui "
+"vous permet d'ajuster la priorité avec laquelle un conteu indexé est "
+"renvoyé dans les résultats."
+msgid ""
+"The Search module includes a default <em>Search form</em> block, which "
+"can be enabled and configured on the <a href=\"@blocks\">Blocks "
+"administration page</a>. The block is available to users with the "
+"<em>Search content</em> permission."
+msgstr ""
+"Le module de recherche inclut un <em>un formulaire de recherche</em> "
+"dans un bloc, qui peuvent être activé et configuré sur la <a "
+"href=\"@blocks\">page d'administration des blocs</a>. Le bloc est "
+"disponible pour les utilisateurs ayant la permission <em>Rechercher "
+"dans le contenu</em>."
+msgid "Extending Search module"
+msgstr "Module de recherche étendue"
+msgid ""
+"<ul>\n"
+"<li>Check if your spelling is correct.</li>\n"
+"<li>Remove quotes around phrases to search for each word individually. "
+"<em>bike shed</em> will often show more results than <em>&quot;bike "
+"shed&quot;</em>.</li>\n"
+"<li>Consider loosening your query with <em>OR</em>. <em>bike OR "
+"shed</em> will often show more results than <em>bike shed</em>.</li>\n"
+"</ul>"
+msgstr ""
+"<ul>\r\n"
+"<li>Vérifiez que l'orthographe est correcte.</li>\r\n"
+"<li>Supprimez les guillemets autour des expressions pour rechercher "
+"chaque mot séparément. <em>garage à vélo</em> retournera souvent "
+"plus de résultat que <em>&quot;garage à vélo&quot;</em>.</li>\r\n"
+"<li>Envisagez d'élargir votre recherche avec <em>OR</em>. <em>garage "
+"OR vélo</em> retournera souvent plus de résultat que <em>garage à "
+"vélo</em>.</li>\r\n"
+"</ul>"
+msgid "Administer search"
+msgstr "Administrer la recherche"
+msgid "Use search"
+msgstr "Utiliser la recherche"
+msgid "Use advanced search"
+msgstr "Utiliser la recherche avancée"
+msgid "Configure relevance settings for search and other indexing options."
+msgstr ""
+"Configurer les paramètres de pertinence pour la recherche et d'autres "
+"options d'indexation."
+msgid "Choose a set of shortcuts to use"
+msgstr "Choisissez un ensemble de raccourcis à utiliser"
+msgid "Choose a set of shortcuts for this user"
+msgstr "Choisissez un ensemble de raccourcis pour cet utilisateur"
+msgid ""
+"You are now using the new %set_name shortcut set. You can edit it from "
+"this page or <a href=\"@switch-url\">switch back to a different "
+"one.</a>"
+msgstr ""
+"Vous utilisez maintenant le nouvel ensemble de raccourcis %set_name. "
+"Vous pouvez le modifier depuis cette page ou <a "
+"href=\"@switch-url\">changer pour un ensemble différent</a>."
+msgid ""
+"%user is now using a new shortcut set called %set_name. You can edit "
+"it from this page."
+msgstr ""
+"%user utilise maintenant le nouvel ensemble de raccourci %set_name. "
+"Vous pouvez le modifier depuis cette page."
+msgid "You are now using the %set_name shortcut set."
+msgstr "Vous utilisez désormais l'ensemble de raccourcis %set_name."
+msgid "%user is now using the %set_name shortcut set."
+msgstr "%user utilise désormais l'ensemble de raccourcis %set_name."
+msgid "Change set"
+msgstr "Changer d'ensemble"
+msgid "The shortcut set has been updated."
+msgstr "L'ensemble de raccourcis a été mis à jour."
+msgid "Add new shortcut"
+msgstr "Ajouter un nouveau raccourci"
+msgid "Editing @shortcut"
+msgstr "Modification de @shortcut"
+msgid "The link must correspond to a valid path on the site."
+msgstr "Le lien doit correspondre à un chemin valide du site."
+msgid "The shortcut %link has been updated."
+msgstr "Le raccourci %link a été mis à jour."
+msgid "Added a shortcut for %title."
+msgstr "Rajout d'un raccourci pour %title."
+msgid "Are you sure you want to delete the shortcut %title?"
+msgstr "Êtes-vous sûr de vouloir supprimer le raccourci %title ?"
+msgid "The shortcut %title has been deleted."
+msgstr "Le raccourci %title a été supprimé."
+msgid "Unable to add a shortcut for %title."
+msgstr "Impossible d'ajouter un raccourci pour %title."
+msgid "Adding and removing shortcuts"
+msgstr "Ajout et suppression de raccourcis"
+msgid "Displaying shortcuts"
+msgstr "Affichage des raccourcis"
+msgid ""
+"You can display your shortcuts by enabling the Shortcuts block on the "
+"<a href=\"@blocks\">Blocks administration page</a>. Certain "
+"administrative modules also display your shortcuts; for example, the "
+"core <a href=\"@toolbar-help\">Toolbar module</a> displays them near "
+"the top of the page, along with an <em>Edit shortcuts</em> link."
+msgstr ""
+"Vous pouvez afficher vos raccourcis en activant le bloc Raccourcis sur "
+"la <a href=\"@blocks\">page d'administration des blocs</a>. Certains "
+"modules d'administration affichent également vos raccourcis; par "
+"exemple, le <a href=\"@toolbar-help\">module <em>Toolbar</em></a> les "
+"affiche vers le haut de la page, à côté d'un lien <em>Modifier les "
+"raccourcis</em>"
+msgid "Administer shortcuts"
+msgstr "Administrer les raccourcis"
+msgid "Add to %shortcut_set shortcuts"
+msgstr "Ajouter aux raccourcis %shortcut_set"
+msgid "Add to shortcuts"
+msgstr "Ajouter aux raccourcis"
+msgid "Remove from %shortcut_set shortcuts"
+msgstr "Supprimer des raccourcis %shortcut_set"
+msgid "Remove from shortcuts"
+msgstr "Supprimer des raccourcis"
+msgid "Edit shortcuts"
+msgstr "Modifier les raccourcis"
+msgid "Add shortcut"
+msgstr "Ajouter un raccourci"
+msgid "Edit shortcut"
+msgstr "Modifier un raccourci"
+msgid "Delete shortcut"
+msgstr "Supprimer un raccourci"
+msgid "Value @value is TRUE."
+msgstr "La valeur @value est TRUE."
+msgid "Value @value is FALSE."
+msgstr "La valeur @value est FALSE."
+msgid "Value @value is NULL."
+msgstr "La valeur @value est NULL."
+msgid "Value @value is not NULL."
+msgstr "La valeur @value n'est pas NULL."
+msgid "Value @first is equal to value @second."
+msgstr "La valeur @first est égale à la valeur @second."
+msgid "Value @first is not equal to value @second."
+msgstr "La valeur @first n'est pas égale à la valeur @second."
+msgid "Value @first is identical to value @second."
+msgstr "La valeur @first est identique à la valeur @second."
+msgid "Value @first is not identical to value @second."
+msgstr "La valeur @first n'est pas identique à la valeur @second."
+msgid "The test did not complete due to a fatal error."
+msgstr "Le test ne s'est pas terminé en raison d'une erreur fatale."
+msgid "Link with label %label found."
+msgstr "Un lien avec le label %label a été trouvé."
+msgid "Link with label %label not found."
+msgstr "Aucun lien avec le label %label n'a été trouvé."
+msgid "Link containing href %href found."
+msgstr "Un lien contenant href %href a été trouvé."
+msgid "No link containing href %href found."
+msgstr "aucun lien contenant href %href n'a été trouvé."
+msgid "Clicked link %label (@url_target) from @url_before"
+msgstr "Lien %label (@url_target) cliqué depuis @url_before"
+msgid "Option @option for field @id is selected."
+msgstr "L'option @option du champs @id est sélectionnée."
+msgid "Option @option for field @id is not selected."
+msgstr "L'option @option du champs @id n'est pas sélectionnée."
+msgid "GSS negotiate"
+msgstr "negociation GSS"
+msgid "NTLM"
+msgstr "NTLM"
+msgid "Any safe"
+msgstr "En toute sécurité"
+msgid ""
+"The Testing module provides a framework for running automated unit "
+"tests. It can be used to verify a working state of Drupal before and "
+"after any code changes, or as a means for developers to write and "
+"execute tests for their modules. For more information, see the online "
+"handbook entry for <a href=\"@simpletest\">Testing module</a>."
+msgstr ""
+"Le module Testing fournit un framework pour exécuter des tests "
+"unitaires automatisés. Il peut être utilisé pour vérifier un état "
+"de fonctionnement de Drupal avant et après les modifications du code "
+"ou bien comme un moyen pour les développeurs d'écrire et d'exécuter "
+"des tests pour leurs modules. Pour plus d'informations, voir la "
+"section du <a href=\"@simpletest\">module Testing</a> du manuel en "
+"ligne."
+msgid "Running tests"
+msgstr "Lancement des tests"
+msgid ""
+"Visit the <a href=\"@admin-simpletest\">Testing page</a> to display a "
+"list of available tests. For comprehensive testing, select "
+"<em>all</em> tests, or individually select tests for more targeted "
+"testing. Note that it might take several minutes for all tests to "
+"complete. For more information on creating and modifying your own "
+"tests, see the <a href=\"@simpletest-api\">Testing API "
+"Documentation</a> in the Drupal handbook."
+msgstr ""
+"Visitez la <a href=\"@admin-simpletest\">pages Tests</a> pour afficher "
+"une liste de tests disponibles. Pour exécuter l'ensemble des tests, "
+"sélectionnez <em>tous</em> les tests ou bien sélectionnez des tests "
+"individuellement pour faire des tests plus ciblés. Attention, cela "
+"peut prendre plusieurs minutes avant que tous les tests ne soient "
+"terminés, voir la section <a href=\"@simpletest-api\">Documentation "
+"de l'API des tests</a> du manuel en ligne."
+msgid ""
+"After the tests run, a message will be displayed next to each test "
+"group indicating whether tests within it passed, failed, or had "
+"exceptions. A pass means that the test returned the expected results, "
+"while fail means that it did not. An exception normally indicates an "
+"error outside of the test, such as a PHP warning or notice. If there "
+"were failures or exceptions, the results will be expanded to show "
+"details, and the tests that had failures or exceptions will be "
+"indicated in red or pink rows. You can then use these results to "
+"refine your code and tests, until all tests pass."
+msgstr ""
+"Après l'exécution des tests, un message sera affiché à côté de "
+"chaque groupe de test indiquant si ces tests ont réussi, ont échoué "
+"ou ont généré des exceptions. Une réussite signifie que le test a "
+"renvoyé les résultats attendus, tandis qu'un échec signifie le "
+"contraire. Une exception indique normalement une erreur en dehors du "
+"test, tel qu'un warning ou notice PHP. S'il y a eu des échecs ou des "
+"exceptions, les résultats seront développés pour montrer les "
+"détails et les tests qui ont obtenu des échecs ou des exceptions "
+"seront indiqués dans des lignes rouge ou rose. Vous pouvez utilisez "
+"ces résultats pour revoir votre code et tests jusqu'à ce qu'ils "
+"réussissent."
+msgid "Administer tests"
+msgstr "Administrer les tests"
+msgid "The test run finished in @elapsed."
+msgstr "L'exécution du test s'est terminée en @elapsed"
+msgid ""
+"Use the <em>Clean environment</em> button to clean-up temporary files "
+"and tables."
+msgstr ""
+"Utiliser le bouton <em>Nettoyer l'environnement</em> pour supprimer "
+"les fichiers et tables temporaires ."
+msgid ""
+"The testing framework requires the PHP <a "
+"href=\"@open_basedir-url\">open_basedir</a> restriction to be "
+"disabled. Check your webserver configuration or contact your web host."
+msgstr ""
+"Le framework Testing nécessite que la restriction <a "
+"href=\"@open_basedir-url\">open_basedir</a> de PHP soit désactivée. "
+"Vérifiez la configuration de votre serveur web ou contactez votre "
+"hébergeur."
+msgid ""
+"The testing framework could not be installed because the PHP <a "
+"href=\"@curl_url\">cURL</a> library is not available."
+msgstr ""
+"Le framework de test ne peut pas être installé car la bibliothèque "
+"PHP <a href=\"@curl_url\">cURL</a> n'est pas disponible."
+msgid ""
+"The testing framework could not be installed because the PHP <a "
+"href=\"@hash_url\">hash</a> extension is disabled."
+msgstr ""
+"Le framework de test ne peut pas installé car l'extension PHP <a "
+"href=\"@hash_url\">hash</a> est désactivée."
+msgid "PHP open_basedir restriction"
+msgstr "Restriction open_basedir de PHP"
+msgid "Displaying popular content"
+msgstr "Afficher le contenu populaire"
+msgid ""
+"The module includes a <em>Popular content</em> block that displays the "
+"most viewed pages today and for all time, and the last content viewed. "
+"To use the block, enable <em>Count content views</em> on the <a "
+"href=\"@statistics-settings\">statistics settings page</a>, and then "
+"you can enable and configure the block on the <a "
+"href=\"@blocks\">blocks administration page</a>."
+msgstr ""
+"Le module inclut un bloc <em>Contenu populaire</em> qui affiche les "
+"pages les plus vues et ceux vus en dernier. Pour utiliser ce bloc, "
+"activer <em>Compter le nombre d'affichage des contenus</em> sur la <a "
+"href=\"@statistics-settings\">page des paramètres statistiques</a> et "
+"ensuite vous pouvez activer et configurer le bloc à partir de la <a "
+"href=\"@blocks\">page d'administration des blocs</a>."
+msgid "Page view counter"
+msgstr "Compteur de pages vues"
+msgid ""
+"The Statistics module includes a counter for each page that increases "
+"whenever the page is viewed. To use the counter, enable <em>Count "
+"content views</em> on the <a href=\"@statistics-settings\">statistics "
+"settings page</a>, and set the necessary <a "
+"href=\"@permissions\">permissions</a> (<em>View content hits</em>) so "
+"that the counter is visible to the users."
+msgstr ""
+"Le module Statistics inclut un compteur pour chaque page qui "
+"s'incrémente à chaque fois que la page est vue. Pour utiliser le "
+"compteur, activer <em>Compter le nombre d'affichage des contenus</em> "
+"sur la <a href=\"@statistics-settings\">page des paramètres "
+"statistiques</a> et définissez les <a "
+"href=\"@permissions\">droits</a> (<em>Voir les accès au contenu</em>) "
+"afin que les utilisateurs puissent voir le compteur."
+msgid "Administer statistics"
+msgstr "Administrer les statistiques"
+msgid "View content hits"
+msgstr "Voir les accès au contenu"
+msgid ""
+"The Syslog module logs events by sending messages to the logging "
+"facility of your web server's operating system. Syslog is an operating "
+"system administrative logging tool that provides valuable information "
+"for use in system management and security auditing. Most suited to "
+"medium and large sites, Syslog provides filtering tools that allow "
+"messages to be routed by type and severity. For more information, see "
+"the online handbook entry for <a href='@syslog'>Syslog module</a> and "
+"PHP's <a href='@php_openlog'>openlog</a> and <a "
+"href='@php_syslog'>syslog</a> functions."
+msgstr ""
+"Le module Syslog journalise les évènements en envoyant des messages "
+"à la fonction de journalisation du système d'exploitation de votre "
+"serveur Web. Syslog est un outil d'administration de la journalisation "
+"du système d'exploitation qui fourni des informations intéressante "
+"à utiliser dans le cadre de la gestion système ou des audits de "
+"sécurité. Très utilisé dans les sites de moyenne et grande taille, "
+"Syslog fourni des outils de filtrage qui permettent aux messages "
+"d'être routés par type et par gravité. Pour plus d'information, "
+"voir les sections <a href='@syslog'>module Syslog</a> du manuel en "
+"ligne et les sections <a href='@php_openlog'>openlog</a> et <a "
+"href='@php_syslog'>syslog</a> de PHP."
+msgid "Logging for UNIX, Linux, and Mac OS X"
+msgstr "Jounalisation pour UNIX, Linux et Mac OS X"
+msgid "Logging for Microsoft Windows"
+msgstr "Journalisation pour Microsoft Windows"
+msgid ""
+"On Microsoft Windows, messages are always sent to the Event Log using "
+"the code <code>LOG_USER</code>."
+msgstr ""
+"Sous Microsoft Windows, les messages sont toujours envoyés au journal "
+"d'évènements en utilisant le code <code>LOG_USER</code>."
+msgid "Syslog facility"
+msgstr "Fonction Syslog (journal système)"
+msgid ""
+"Depending on the system configuration, Syslog and other logging tools "
+"use this code to identify or filter messages from within the entire "
+"system log."
+msgstr ""
+"En fonction de la configuration du système, Syslog et les outils de "
+"journalisation utilisent ce code pour identifier ou filtrer les "
+"messages du journal du système entier."
+msgid ""
+"The image %file could not be rotated because the imagerotate() "
+"function is not available in this PHP installation."
+msgstr ""
+"L'image %file n'a pas pu être tournée car la fonction imagerorate() "
+"n'est pas disponible danc cette installation de PHP."
+msgid ""
+"The image %file could not be desaturated because the imagefilter() "
+"function is not available in this PHP installation."
+msgstr ""
+"L'image %file n'a pas pu être désaturée car la fonction "
+"imagefilter() n'est pas disponible dans cette installation de php."
+msgid "Screenshot for !theme theme"
+msgstr "Capture d'écran du thème !theme"
+msgid "Settings for !theme theme"
+msgstr "Paramètres du thème !theme"
+msgid "Disable !theme theme"
+msgstr "Désactiver le thème !theme"
+msgid "Set !theme as default theme"
+msgstr "Choisir !theme comme thème par défaut"
+msgid "Enable !theme theme"
+msgstr "Activer le thème !theme"
+msgid "Enable and set default"
+msgstr "Activer et choisir par défaut"
+msgid "Enable !theme as default theme"
+msgstr "Activer !theme comme thème par défaut"
+msgid "default theme"
+msgstr "thème par défaut"
+msgid ""
+"Choose \"Default theme\" to always use the same theme as the rest of "
+"the site."
+msgstr ""
+"Choisissez \"Thème par défaut\" pour toujours utiliser le même "
+"thème sur l'ensemble du site."
+msgid "Use the administration theme when editing or creating content"
+msgstr ""
+"Utiliser le thème d'administration lors de la création ou de la "
+"modification de contenu"
+msgid "The %theme theme has been enabled."
+msgstr "Le thème %theme a été activé."
+msgid "The %theme theme was not found."
+msgstr "Le thème %theme n'a pas été trouvé."
+msgid "%theme is the default theme and cannot be disabled."
+msgstr "%theme est le thème par défaut et il ne peut pas être désactivé."
+msgid "The %theme theme has been disabled."
+msgstr "Le thème %theme a été désactivé."
+msgid ""
+"Please note that the administration theme is still set to the "
+"%admin_theme theme; consequently, the theme on this page remains "
+"unchanged. All non-administrative sections of the site, however, will "
+"show the selected %selected_theme theme by default."
+msgstr ""
+"Merci de prendre en compte que le thème d'administration est toujours "
+"le thème %admin_theme ; en conséquence, le thème de cette page "
+"reste inchangé. Toutefois, toutes les sections de ce site non "
+"relatives à l'administration utilisent le thème par défaut "
+"%selected_theme"
+msgid "%theme is now the default theme."
+msgstr "%theme est désormais le thème par défaut."
+msgid "User verification status in comments"
+msgstr "Vérification du statut de l'utilisateur dans les commentaires"
+msgid ""
+"These settings only exist for the themes based on the %engine theme "
+"engine."
+msgstr ""
+"Ces paramètres existent seulement pour les thèmes basés sur le "
+"moteur de thème %engine."
+msgid "The logo could not be uploaded."
+msgstr "Le logo n'a pas pu être téléchargé sur le serveur."
+msgid "The favicon could not be uploaded."
+msgstr "L'icône de favori n'a pas pu être téléchargé sur le serveur."
+msgid "The custom logo path is invalid."
+msgstr "Le chemin du logo personnalisé n'est pas valide."
+msgid "The custom favicon path is invalid."
+msgstr "Le chemin de l'icône de favori est invalide."
+msgid ""
+"@module (<span class=\"admin-missing\">incompatible with</span> "
+"version @version)"
+msgstr ""
+"@module (<span class=\"admin-missing\">est incompatible avec</span> la "
+"version @version)"
+msgid ""
+"This version is not compatible with Drupal !core_version and should be "
+"replaced."
+msgstr ""
+"Cette version n'est pas compatible avec Drupal !core_version et "
+"devrait être remplacée."
+msgid "Would you like to continue with the above?"
+msgstr "Souhaitez-vous continuer avec ce qui précède ?"
+msgid "Enter a valid IP address."
+msgstr "Entrer une adresse IP valide."
+msgid "The IP address %ip was deleted."
+msgstr "L'adresse IP %ip a été supprimée."
+msgid "How this is used depends on your site's theme."
+msgstr "La façon dont cela sera utilisé dépend du thème de votre site."
+msgid "Number of posts on front page"
+msgstr "Nombre de contributions sur la page d'accueil"
+msgid ""
+"The maximum number of posts displayed on overview pages such as the "
+"front page."
+msgstr ""
+"Le nombre maximal de contributions affichées sur les pages de vue "
+"d'ensemble comme la page d'accueil."
+msgid ""
+"This page is displayed when the requested document is denied to the "
+"current user. Leave blank to display a generic \"access denied\" page."
+msgstr ""
+"Cette page est affichée lorsque l'affichage du document demandé est "
+"refusé à l'utilisateur actuel. Laisser vide pour afficher une page "
+"\"Accès refusé\" générique."
+msgid ""
+"This page is displayed when no other content matches the requested "
+"document. Leave blank to display a generic \"page not found\" page."
+msgstr ""
+"Cette page est affichée lorsque aucun contenu ne correspond au "
+"document demandé. Laisser vide pour afficher une page \"Page non "
+"trouvée\" générique."
+msgid "Errors and warnings"
+msgstr "Erreurs et avertissements"
+msgid "Clear all caches"
+msgstr "Effacer tous les caches"
+msgid ""
+"<strong class=\"error\">Set up the <a href=\"!file-system\">public "
+"files directory</a> to make these optimizations available.</strong>"
+msgstr ""
+"<strong class=\"error\">Configurer le<a "
+"href=\"!file-system\">répertoire de fichiers publics</a> pour rendre "
+"cette optimisation disponible.</strong>"
+msgid "Bandwidth optimization"
+msgstr "Optimisation de la bande passante"
+msgid "Compress cached pages."
+msgstr "Compression des pages cachées."
+msgid "Public file system path"
+msgstr "Chemin du système public de fichier"
+msgid ""
+"A local file system path where public files will be stored. This "
+"directory must exist and be writable by Drupal. This directory must be "
+"relative to the Drupal installation directory and be accessible over "
+"the web."
+msgstr ""
+"Un chemin sur le système de fichier local où seront stockés les "
+"fichiers publics. Ce répertoire doit exister et être accessible en "
+"écriture par Drupal. Ce répertoire doit être situé dans le "
+"répertoire d'installation de Drupal et doit être accessible à "
+"partir d'internet."
+msgid "Private file system path"
+msgstr "Chemin du système privé de fichier"
+msgid ""
+"A local file system path where temporary files will be stored. This "
+"directory should not be accessible over the web."
+msgstr ""
+"Un chemin sur le système de fichier local où seront stockés les "
+"fichiers temporaires. Ce répertoire ne devrait pas être accessible "
+"à partir d'internet."
+msgid "Default download method"
+msgstr "Méthode de téléchargement par défaut"
+msgid ""
+"This setting is used as the preferred download method. The use of "
+"public files is more efficient, but does not provide any access "
+"control."
+msgstr ""
+"Ce paramètre définit la méthode de téléchargement préférée. "
+"L'utilisation de fichiers publics est plus efficace mais ne fournit "
+"aucun contrôle d'accès."
+msgid "Description of your site, included in each feed."
+msgstr "Description de votre site, sera incluse dans chaque flux."
+msgid "Time zones"
+msgstr "Fuseaux horaires"
+msgid "Users may set their own time zone."
+msgstr "Les utilisateurs peuvent définir leur propre fuseau horaire."
+msgid "Remind users at login if their time zone is not set."
+msgstr ""
+"Rappeler les utilisateurs lors de la connexion si leur fuseau horaire "
+"n'est pas fixé."
+msgid "Only applied if users may set their own time zone."
+msgstr ""
+"Ne s'applique que si les utilisateurs peuvent fixer leur fuseau "
+"horaire."
+msgid "Time zone for new users"
+msgstr "Fuseau horaire pour les nouveaux utilisateurs"
+msgid "Default time zone."
+msgstr "Fuseau horaire par défaut."
+msgid "Empty time zone."
+msgstr "Fuseau horaire vide."
+msgid "Users may set their own time zone at registration."
+msgstr "Les utilisateurs peuvent choisir leur fuseau horaire à l'inscription."
+msgid "Put site into maintenance mode"
+msgstr "Mettre le site en mode maintenance"
+msgid "Requires: !module-list"
+msgstr "Requiert : !module-list"
+msgid "Required by: !module-list"
+msgstr "Requis par : !module-list"
+msgid ""
+"No custom date formats available. <a href=\"@link\">Add date "
+"format</a>."
+msgstr ""
+"Aucun format de date personnalisé disponible. <a "
+"href=\"@link\">Ajouter un format de date</a>."
+msgid "Displayed as %date"
+msgstr "Affiché comme %date"
+msgid ""
+"A user-defined date format. See the <a href=\"@url\">PHP manual</a> "
+"for available options."
+msgstr ""
+"Un format de date défini par l'utilisateur. Voir le <a "
+"href=\"@url\">manuel PHP</a> pour les options disponibles."
+msgid "Save format"
+msgstr "Enregistrer le format"
+msgid "This format already exists. Enter a unique format string."
+msgstr "Ce format existe déjà. Saisir un une chaine de format unique."
+msgid "Custom date format updated."
+msgstr "Le format de date personnalisé a été mis à jour."
+msgid "Custom date format added."
+msgstr "Le format de date personnalisé a été ajouté."
+msgid "Available actions:"
+msgstr "Actions disponibles :"
+msgid "Create an advanced action"
+msgstr "Créer une action avancée"
+msgid "Deleted %ip"
+msgstr "Supprimer %ip"
+msgid "Enabled theme"
+msgid_plural "Enabled themes"
+msgstr[0] "Thème actif"
+msgstr[1] "Thèmes actifs"
+msgid "Disabled theme"
+msgid_plural "Disabled themes"
+msgstr[0] "Thème inactif"
+msgstr[1] "Thèmes inactifs"
+msgid "You must enable the @required module to install @module."
+msgid_plural "You must enable the @required modules to install @module."
+msgstr[0] "Vous devez activer le module @required pour installer @module."
+msgstr[1] "Vous devez activer les modules @required pour installer @module."
+msgid "Tokens for site-wide settings and other global information."
+msgstr ""
+"Jetons pour la configuration générale du site et pour d'autres "
+"informations globales."
+msgid "Tokens related to times and dates."
+msgstr "Jetons (<em>tokens</em>) liés au temps et aux dates."
+msgid "Tokens related to uploaded files."
+msgstr "Jetons (<em>tokens</em>) liés aux fichiers transférés."
+msgid "URL (brief)"
+msgstr "URL (courte)"
+msgid "The URL of the site's front page without the protocol."
+msgstr "L'URL de la page d'accueil du site sans le protocole."
+msgid "Short format"
+msgstr "Format court"
+msgid "A date in 'short' format. (%date)"
+msgstr "Une date au format 'court'. (%date)"
+msgid "Medium format"
+msgstr "Format moyen"
+msgid "A date in 'medium' format. (%date)"
+msgstr "Une date au format 'moyen'. (%date)"
+msgid "Long format"
+msgstr "Format long"
+msgid "A date in 'long' format. (%date)"
+msgstr "Une date au format 'long'. (%date)"
+msgid "A date in a custom format. See !php-date for details."
+msgstr ""
+"Une date dans un format personnalisé. Voir !php-date pour plus de "
+"détails."
+msgid "the PHP documentation"
+msgstr "la documentation PHP"
+msgid "Time-since"
+msgstr "Temps écoulé depuis"
+msgid "Raw timestamp"
+msgstr "Horodatage brut"
+msgid "A date in UNIX timestamp format (%date)"
+msgstr "Une date au format timestamp UNIX (%date)"
+msgid ""
+"The System module is integral to the site, and provides basic but "
+"extensible functionality for use by other modules and themes. Some "
+"integral elements of Drupal are contained in and managed by the System "
+"module, including caching, enabling and disabling modules and themes, "
+"preparing and displaying the administrative page, and configuring "
+"fundamental site settings. A number of key system maintenance "
+"operations are also part of the System module. For more information, "
+"see the online handbook entry for <a href=\"@system\">System "
+"module</a>."
+msgstr ""
+"Le module System est constitutif du site, il fournit les "
+"fonctionnalités de base (mais extensibles) qui seront utilisées par "
+"les autres modules et par les thèmes. Certains des modules "
+"constitutifs de Drupal font partie du module System ou sont gérés "
+"par lui, cela comprend le système de cache, l'activation et la "
+"désactivation des modules et des thèmes, la préparation et "
+"l'affichage des pages d'administration, ainsi que la configuration des "
+"paramètres fondamentaux du site. Un certain nombre d'opérations "
+"clés du système de maintenance font aussi partie du module System. "
+"Pour plus d'information, voir la section <a href=\"@system\">module "
+"System</a> du manuel en ligne."
+msgid "Managing modules"
+msgstr "Gestion des modules"
+msgid ""
+"The System module allows users with the appropriate permissions to "
+"enable and disable modules on the <a href=\"@modules\">Modules "
+"administration page</a>. Drupal comes with a number of core modules, "
+"and each module provides a discrete set of features and may be enabled "
+"or disabled depending on the needs of the site. Many additional "
+"modules contributed by members of the Drupal community are available "
+"for download at the <a href=\"@drupal-modules\">Drupal.org module "
+"page</a>."
+msgstr ""
+"Le module System permet aux utilisateurs disposant des droits "
+"appropriés d'activer ou de désactiver des modules dans la <a "
+"href=\"@modules\">page d'administration Modules</a>. Drupal est fourni "
+"avec un certain nombre de modules composant le coeur (<em>core</em>) "
+"et chaque module fournit un ensemble distinct de fonctionnalités qui "
+"peut être activé ou désactivé suivant les besoins du site. "
+"Beaucoup de modules provenant de la contribution des membres de la "
+"communauté Drupal sont téléchargeables sur la <a "
+"href=\"@drupal-modules\">page module de Drupal.org</a>."
+msgid "Managing themes"
+msgstr "Gestion des thèmes"
+msgid ""
+"The System module allows users with the appropriate permissions to "
+"enable and disable themes on the <a href=\"@themes\">Appearance "
+"administration page</a>. Themes determine the design and presentation "
+"of your site. Drupal comes packaged with several core themes, and "
+"additional contributed themes are available at the <a "
+"href=\"@drupal-themes\">Drupal.org theme page</a>."
+msgstr ""
+"Le module System permet aux utilisateurs disposant des droits "
+"appropriés d'activer ou de désactiver les thèmes sur <a "
+"href=\"@themes\">la page d'administration Apparence</a>. Les thèmes "
+"déterminent l'apparence et la présentation de votre site. De "
+"nombreux thèmes sont fournis avec Drupal et des thèmes "
+"supplémentaires provenant de la communauté sont disponibles sur la "
+"<a href=\"@drupal-themes\">page theme de Drupal.org</a>."
+msgid "Managing caching"
+msgstr "Gérer la mise en cache"
+msgid ""
+"The System module allows users with the appropriate permissions to "
+"manage caching on the <a href='@cache-settings'>Performance settings "
+"page</a>. Drupal has a robust caching system that allows the efficient "
+"re-use of previously-constructed web pages and web page components. "
+"Pages requested by anonymous users are stored in a compressed format; "
+"depending on your site configuration and the amount of your web "
+"traffic tied to anonymous visitors, the caching system may "
+"significantly increase the speed of your site."
+msgstr ""
+"Le module System permet aux utilisateurs ayant les droits appropriés "
+"de gérer la mise en cache depuis la <a href='@cache-settings'>page "
+"des paramètres de Performance</a>. Drupal dispose d'un robuste "
+"système de cache qui permet la réutilisation efficace des pages ou "
+"des éléments de page précédemment construits. Les pages appelées "
+"par les utilisateurs anonymes sont stockées dans un format "
+"compressé&nbsp;; en fonction de la configuration de votre site et du "
+"volume du trafic réalisé par les utilisateurs anonymes, le système "
+"de cache peut améliorer de façon significative la rapidité de votre "
+"site."
+msgid "Performing system maintenance"
+msgstr "Procédure de maintenance du système"
+msgid "Configuring basic site settings"
+msgstr "Configuration des paramètres de base du site"
+msgid ""
+"Set and configure the default theme for your website.  Alternative <a "
+"href=\"@themes\">themes</a> are available."
+msgstr ""
+"Choisir et configurer le thème par défaut de votre site. D'autres <a "
+"href=\"@themes\">thèmes</a> sont disponibles."
+msgid ""
+"Download additional <a href=\"@modules\">contributed modules</a> to "
+"extend Drupal's functionality."
+msgstr ""
+"Téléchargez des <a href=\"@modules\">modules contribués</a> "
+"additionnels pour étendre les fonctionnalités de Drupal."
+msgid ""
+"Regularly review and install <a href=\"@updates\">available "
+"updates</a> to maintain a secure and current site. Always run the <a "
+"href=\"@update-php\">update script</a> each time a module is updated."
+msgstr ""
+"Surveillez régulièrement et installez <a href=\"@updates\">les mises "
+"à jour disponibles</a> pour garder un site sécurisé et à jour. "
+"Exécutez toujours le <a href=\"@update-php\">script de mise à "
+"jour</a> à chaque fois qu'un module est mis à jour."
+msgid ""
+"Regularly review <a href=\"@updates\">available updates</a> to "
+"maintain a secure and current site. Always run the <a "
+"href=\"@update-php\">update script</a> each time a module is updated."
+msgstr ""
+"Surveillez régulièrement et installez <a href=\"@updates\">les mises "
+"à jour disponibles</a> pour garder un site sécurisé et à jour. "
+"Exécutez toujours le <a href=\"@update-php\">script de mise à "
+"jour</a> à chaque fois qu'un module est mis à jour."
+msgid "Administer modules"
+msgstr "Administrer les modules"
+msgid "Administer site configuration"
+msgstr "Administrer la configuration du site"
+msgid "Administer themes"
+msgstr "Administrer les thèmes"
+msgid "Administer actions"
+msgstr "Administrer les actions"
+msgid "Use the administration pages and help"
+msgstr "Utiliser les pages d'administration et l'aide"
+msgid "Use the site in maintenance mode"
+msgstr "Utiliser le site en mode maintenance"
+msgid "View site reports"
+msgstr "Voir les rapports du site"
+msgid "Public files"
+msgstr "Fichiers publics"
+msgid "Public local files served by the webserver."
+msgstr "Les fichiers publics locaux sont servis par le serveur web."
+msgid "Private local files served by Drupal."
+msgstr "Les fichiers privés locaux sont servis par Drupal."
+msgid "Temporary files"
+msgstr "Fichiers temporaires"
+msgid "Temporary local files for upload and previews."
+msgstr "Fichiers locaux temporaires pour chargement et prévisualisation."
+msgid "Update modules"
+msgstr "Mettre à jour les modules"
+msgid "Update themes"
+msgstr "Mettre à jour les thèmes"
+msgid "SSH"
+msgstr "SSH"
+msgid ""
+"Your password is not saved in the database and is only used to "
+"establish a connection."
+msgstr ""
+"Votre mot de passe n'est pas sauvé dans la base de donnée et est "
+"seulement utilisé pour établir une connexion."
+msgid ""
+"The connection will be created between your web server and the machine "
+"hosting the web server files. In the vast majority of cases, this will "
+"be the same machine, and \"localhost\" is correct."
+msgstr ""
+"La connexion sera créée entre votre serveur web et la machine "
+"hébergeant les fichiers du serveur web. Dans la grande majorité des "
+"cas, ce sera la même machine, et \"localhost\" est correct."
+msgid "Configure your <a href=\"@user-edit\">account time zone setting</a>."
+msgstr ""
+"Configurez votre <a href=\"@user-edit\">paramètre de fuseau "
+"horaire</a>."
+msgid ""
+"Select the desired local time and time zone. Dates and times "
+"throughout this site will be displayed using this time zone."
+msgstr ""
+"Sélectionnez l'heure locale et le fuseau horaire souhaité. Les dates "
+"et heures seront affichées selon ce fuseau horaire sur l'ensemble du "
+"site."
+msgid ""
+"Your time zone setting will be automatically detected if possible. "
+"Confirm the selection and click save."
+msgstr ""
+"Votre fuseau horaire sera détecté automatiquement, si possible. "
+"Confirmez la sélection et cliquez sur Créer un nouveau compte."
+msgid "The directory %directory does not exist and could not be created."
+msgstr "Le répertoire %directory n'existe pas et n'a pas pu être créé."
+msgid ""
+"The directory %directory exists but is not writable and could not be "
+"made writable."
+msgstr ""
+"Le répertoire %directory existe mais n'est pas accessible en "
+"écriture et il n'a pas été possible de le rendre inscriptible."
+msgid ""
+"The message that should be sent. You may include placeholders like "
+"[node:title], [user:name], and [comment:body] to represent data that "
+"will be different each time message is sent. Not all placeholders will "
+"be available in all contexts."
+msgstr ""
+"Le message qui sera envoyé. Vous pouvez utiliser des chaînes de "
+"remplacement comme [node:title], [user:name], and [comment:body] pour "
+"représenter des données qui seront différentes à chaque message "
+"envoyé. Toutes les chaînes de remplacement ne seront pas disponibles "
+"dans tous les contextes."
+msgid ""
+"The message to be displayed to the current user. You may include "
+"placeholders like [node:title], [user:name], and [comment:body] to "
+"represent data that will be different each time message is sent. Not "
+"all placeholders will be available in all contexts."
+msgstr ""
+"Le message à afficher à l'utilisateur courant. Vous pouvez utiliser "
+"des chaînes de remplacement comme [node:title], [user:name], and "
+"[comment:body] pour représenter des données qui seront différentes "
+"à chaque message envoyé. Toutes les chaînes de remplacement ne "
+"seront pas disponibles dans tous les contextes."
+msgid "Powered by <a href=\"@poweredby\">Drupal</a>"
+msgstr "Propulsé par <a href=\"@poweredby\">Drupal</a>"
+msgid "AHAH callback"
+msgstr "AHAH callback"
+msgid "Administer blocks, content types, menus, etc."
+msgstr "Administrer les blocs, les types de contenu, les menus, etc."
+msgid "Select and configure your theme"
+msgstr "Choisir et configurer votre thème"
+msgid "Set default theme"
+msgstr "Choisir comme thème par défaut"
+msgid "Configure default and theme specific settings."
+msgstr "Configurer les paramètres par défaut et spécifique du thème."
+msgid "Delete IP address"
+msgstr "Suppression d'une adresse IP"
+msgid "Media tools."
+msgstr "Outils multimédia."
+msgid "Tools related to web services."
+msgstr "Outils liés aux services web."
+msgid ""
+"Configure the site description, the number of items per feed and "
+"whether feeds should be titles/teasers/full-text."
+msgstr ""
+"Configurer la description du site, le nombre d'élément par flux et "
+"si les flux doivent contenir les titres, les accroches ou le texte "
+"complet."
+msgid "Development tools."
+msgstr "Outils de développement."
+msgid "Maintenance mode"
+msgstr "Mode maintenance"
+msgid "Take the site offline for maintenance or bring it back online."
+msgstr ""
+"Mettre le site hors ligne pour une maintenance ou le remettre en "
+"ligne."
+msgid "Logging and errors"
+msgstr "Journalisation et erreurs"
+msgid ""
+"Settings for logging and alerts modules. Various modules can route "
+"Drupal's system events to different destinations, such as syslog, "
+"database, email, etc."
+msgstr ""
+"Paramètre pour la journalisation et les alertes des modules. "
+"Plusieurs modules peuvent rediriger les événements système de "
+"Drupal vers différentes destinations tel que le fichier syslog, la "
+"base de données, une adresse électroniques, etc."
+msgid "Regional and language"
+msgstr "Régionalisation et langue"
+msgid "Regional settings, localization and translation."
+msgstr "Paramètres régionaux, localisation et traduction."
+msgid "Settings for the site's default time zone and country."
+msgstr "Paramètres pour le fuseau horaire et le pays par défaut du site."
+msgid "Configure display format strings for date and time."
+msgstr "Configurer les chaînes de format d'affichage pour la date et l'heure."
+msgid "Edit date format"
+msgstr "Modifier le format de date"
+msgid "Allow users to edit a configured date format."
+msgstr "Permettre aux utilisateurs de modifier un format de date configuré."
+msgid "Search and metadata"
+msgstr "Recherche et metadonnées"
+msgid "Local site search, metadata and SEO."
+msgstr "Recherche sur le site, metadonnée et SEO."
+msgid "General system related configuration."
+msgstr "Configuration générale du système."
+msgid "Tools that enhance the user interface."
+msgstr "Outils d'amélioration de l'interface utilisateur."
+msgid "Content workflow, editorial workflow tools."
+msgstr "Flux de travail du contenu, outils de flux de travail éditorial."
+msgid "Content authoring"
+msgstr "Rédaction de contenu"
+msgid "Settings related to formatting and authoring content."
+msgstr "Paramètres liés à la mise en forme et à la rédaction de contenu."
+msgid "%profile_name (%profile-%version)"
+msgstr "%profile_name (%profile-%version)"
+msgid "more information"
+msgstr "plus d'informations"
+msgid ""
+"The phpinfo() function has been disabled for security reasons. To see "
+"your server's phpinfo() information, change your PHP settings or "
+"contact your server administrator. For more information, <a "
+"href=\"@phpinfo\">Enabling and disabling phpinfo()</a> handbook page."
+msgstr ""
+"La fonction phpinfo() a été désactivée pour des raisons de "
+"sécurité. Pour consulter les informations phpinfo() de votre "
+"serveur, modifiez vos paramètres PHP ou contactez l'administrateur de "
+"votre serveur. Pour plus d'informations, consultez la page <a "
+"href=\"@phpinfo\">Activer et désactiver phpinfo()</a> du manuel."
+msgid "To run cron from outside the site, go to <a href=\"!cron\">!cron</a>"
+msgstr ""
+"Pour exécuter le cron depuis l'extérieur de votre site, allez sur <a "
+"href=\"!cron\">!cron</a>"
+msgid ""
+"An automated attempt to create this directory failed, possibly due to "
+"a permissions problem. To proceed with the installation, either create "
+"the directory and modify its permissions manually or ensure that the "
+"installer has the permissions to create it automatically. For more "
+"information, see INSTALL.txt or the <a href=\"@handbook_url\">online "
+"handbook</a>."
+msgstr ""
+"Un essai automatisé de création de ce répertoire a échoué, "
+"probablement en raison d'un problème de permissions. Afin de "
+"poursuivre l'installation, veuillez soit créer le répertoire et "
+"modifier manuellement ses permissions, soit vous assurer que le "
+"programme d'installation possède les permissions pour le créer "
+"automatiquement. Pour plus d'informations, consultez INSTALL.txt ou le "
+"<a href=\"@handbook_url\">manuel en ligne</a>."
+msgid "Your configuration has been saved."
+msgstr "Votre configuration a été enregistrée."
+msgid "No vocabularies available. <a href=\"@link\">Add vocabulary</a>."
+msgstr ""
+"Aucun vocabulaire disponible. <a href=\"@link\">Ajouter un "
+"vocabulaire</a>."
+msgid "No terms available. <a href=\"@link\">Add term</a>."
+msgstr "Aucun terme disponible. <a href=\"@link\">Ajouter un terme</a>."
+msgid "There is currently no content classified with this term."
+msgstr "Il n'y a actuellement aucun contenu classé avec ce terme."
+msgid "Tokens related to taxonomy terms."
+msgstr "Jetons liés aux termes de taxonomie."
+msgid "Tokens related to taxonomy vocabularies."
+msgstr "Jetons liés aux vocabulaires de taxonomie."
+msgid ""
+"The Taxonomy module allows you to classify the content of your "
+"website. To classify content, you define <em>vocabularies</em> that "
+"contain related <em>terms</em>, and then assign the vocabularies to "
+"content types. For more information, see the online handbook entry for "
+"the <a href=\"@taxonomy\">Taxonomy module</a>."
+msgstr ""
+"Le module Taxonomy vous permet de classer le contenu de votre site "
+"web. Pour classer le contenu, vous définissez des "
+"<em>vocabulaires</em>, qui contiennent des <em>termes</em> associés, "
+"puis assignez les vocabulaires aux types de contenu. pour plus "
+"d'informations, consultez la section du manuel en ligne relative au <a "
+"href=\"@taxonomy\">module Taxonomy</a>."
+msgid "Creating vocabularies"
+msgstr "Création des vocabulaires"
+msgid ""
+"Users with sufficient <a href=\"@perm\">permissions</a> can create "
+"<em>vocabularies</em> and <em>terms</em> through the <a "
+"href=\"@taxo\">Taxonomy page</a>. The page listing the terms provides "
+"a drag-and-drop interface for controlling the order of the terms and "
+"sub-terms within a vocabulary, in a hierarchical fashion. A "
+"<em>controlled vocabulary</em> classifying music by genre with terms "
+"and sub-terms could look as follows:"
+msgstr ""
+"Les utilisateurs possédant des <a href=\"@perm\">permissions</a> "
+"suffisantes peuvent créer des <em>vocabulaires</em> et "
+"<em>termes</em> depuis la <a href=\"@taxo\">Page des Taxonomies</a>. "
+"Celle-ci liste les termes et fournit une interface en glisser-déposer "
+"permettant de contrôler l'ordre des termes et sous-termes au sein "
+"d'un vocabulaire, de manière hiérarchique. Un <em>vocabulaire "
+"contrôlé</em> qui classerait la musique par genre, avec des termes "
+"et sous-termes pourrait ressembler à la structure ci-dessous :"
+msgid "<em>vocabulary</em>: Music"
+msgstr "<em>vocabulaire</em> : Musique"
+msgid "<em>term</em>: Jazz"
+msgstr "<em>terme</em> : Jazz"
+msgid "<em>sub-term</em>: Swing"
+msgstr "<em>sous-terme</em> : Swing"
+msgid "<em>sub-term</em>: Fusion"
+msgstr "<em>sous-terme</em> : Fusion"
+msgid "<em>term</em>: Rock"
+msgstr "<em>terme</em> : Rock"
+msgid "<em>sub-term</em>: Country rock"
+msgstr "<em>sous-terme</em> : Rock Country"
+msgid "<em>sub-term</em>: Hard rock"
+msgstr "<em>sous-terme</em> : Hard rock"
+msgid ""
+"You can assign a sub-term to multiple parent terms. For example, "
+"<em>fusion</em> can be assigned to both <em>rock</em> and "
+"<em>jazz</em>."
+msgstr ""
+"Vous pouvez assigner un sous-terme à plusieurs termes parents. Par "
+"exemple, <em>fusion</em> peut être assigné à la fois à "
+"<em>rock</em> et <em>jazz</em>."
+msgid ""
+"Terms in a <em>free-tagging vocabulary</em> can be built gradually as "
+"you create or edit content. This is often done used for blogs or photo "
+"management applications."
+msgstr ""
+"Les termes d'un <em>vocabulaire à étiquetage libre</em> peuvent "
+"être construits progressivement, au fur et mesure que vous créez ou "
+"modifiez du contenu. C'est souvent le cas pour des applications de "
+"type blog ou gestion de photos."
+msgid "Assigning vocabularies to content types"
+msgstr "Assignation des vocabulaires aux types de contenu"
+msgid "Classifying content"
+msgstr "Classement des contenus"
+msgid ""
+"After the vocabulary is assigned to the content type, you can start "
+"classifying content. The field with terms will appear on the content "
+"editing screen when you edit or <a href=\"@addnode\">add new "
+"content</a>."
+msgstr ""
+"Après avoir assigné le vocabulaire au type de contenu, vous pourrez "
+"commencer à classer votre contenu. Le champ apparaîtra avec les "
+"termes sur la page de modification de contenu, lors de la modification "
+"ou de l'<a href=\"@addnode\">ajout d'un nouveau contenu</a>."
+msgid "Viewing listings and RSS feeds by term"
+msgstr "Vue des listes et des flux RSS par terme"
+msgid ""
+"Each taxonomy term automatically provides a page listing content that "
+"has its classification, and a corresponding RSS feed. For example, if "
+"the taxonomy term <em>country rock</em> has the ID 123 (you can see "
+"this by looking at the URL when hovering on the linked term, which you "
+"can click to navigate to the listing page), then you will find this "
+"list at the path <em>taxonomy/term/123</em>. The RSS feed will use the "
+"path <em>taxonomy/term/123/feed</em> (the RSS icon for this term's "
+"listing will automatically display in your browser's address bar when "
+"viewing the listing page)."
+msgstr ""
+"Chaque terme de taxonomie fournit automatiquement une page listant le "
+"contenu qui possède ce classement, et un flux RSS correspondant. Par "
+"exemple, si un terme de taxonomie <em>rock country</em> possède l'ID "
+"123 (vous pouvez le voir regardant l'URL lors du survol d'un terme "
+"possédant un lien, sur lequel vous pouvez cliquer pour naviguer vers "
+"la page de liste), alors vous pourrez trouver cette liste à l'adresse "
+"<em>taxonomy/term/123</em>. Le flux RSS utilisera l'adresse "
+"<em>taxonomy/term/123/feed</em> (l'icône RSS s'affichera "
+"automatiquement dans la barre d'adresse de votre navigateur à "
+"l'affichage de cette page)."
+msgid "Extending Taxonomy module"
+msgstr "Extension du module Taxonomy"
+msgid ""
+"There are <a href=\"@taxcontrib\">many contributed modules</a> that "
+"extend the behavior of the Taxonomy module for both display and "
+"organization of terms."
+msgstr ""
+"Il existe de <a href=\"@taxcontrib\">nombreux modules contribués</a> "
+"qui étende le comportement du module Taxonomy, à la fois pour "
+"l'affichage et l'organisation des termes."
+msgid ""
+"Taxonomy is for categorizing content. Terms are grouped into "
+"vocabularies. For example, a vocabulary called \"Fruit\" would contain "
+"the terms \"Apple\" and \"Banana\"."
+msgstr ""
+"La Taxonomie sert à catégoriser le contenu. Les termes sont "
+"regroupés dans des vocabulaires. Par exemple, un vocabulaire appelé "
+"\"Fruit\" contiendra les termes \"Pomme\" et \"Banane\"."
+msgid ""
+"You can reorganize the terms in %capital_name using their "
+"drag-and-drop handles, and group terms under a parent term by sliding "
+"them under and to the right of the parent."
+msgstr ""
+"Vous pouvez réorganiser les termes de %capital_name en utilisant les "
+"croix de glisser-déposer ; vous pouvez grouper des termes sous un "
+"terme parent en les glissant en-dessous et à droite du parent."
+msgid ""
+"%capital_name contains terms grouped under parent terms. You can "
+"reorganize the terms in %capital_name using their drag-and-drop "
+"handles."
+msgstr ""
+"%capital_name contient des termes groupés sous des termes parents. "
+"Vous pouvez ré-organiser les termes dans %capital_name en utilisant "
+"les croix de glisser-déposer."
+msgid ""
+"%capital_name contains terms with multiple parents. Drag and drop of "
+"terms with multiple parents is not supported, but you can re-enable "
+"drag-and-drop support by editing each term to include only a single "
+"parent."
+msgstr ""
+"%capital_name contient des termes avec des parents multiples. Le "
+"glisser-déposer de termes avec des parents multiples n'est pas "
+"supporté, mais vous pouvez ré-activer le support du glisser-déposer "
+"en modifiant chaque terme pour qu'il n'inclue qu'un seul parent."
+msgid "Administer vocabularies and terms"
+msgstr "Administrer les vocabulaires et termes"
+msgid "Edit terms in %vocabulary"
+msgstr "Modifier les termes dans %vocabulary"
+msgid "Delete terms from %vocabulary"
+msgstr "Supprimer les termes de %vocabulary"
+msgid "Term reference"
+msgstr "Référence à un terme"
+msgid "This field stores a reference to a taxonomy term."
+msgstr "Ce champ stocke une référence à un terme de taxonomy."
+msgid "Autocomplete term widget (tagging)"
+msgstr "Widget d'auto-complétion de terme (étiquetage)"
+msgid "The vocabulary which supplies the options for this field."
+msgstr "Le vocabulaire fournissant les options de ce champ."
+msgid ""
+"The Toolbar module displays links to top-level administration menu "
+"items and links from other modules at the top of the screen. For more "
+"information, see the online handbook entry for <a "
+"href=\"@toolbar\">Toolbar module</a>."
+msgstr ""
+"Le module Toolbar affiche des liens vers les éléments du plus haut "
+"niveau du menu d'administration, ainsi que des liens d'autres modules "
+"en haut de l'écran. Pour plus d'informations, consultez le manuel en "
+"ligne à propos du <a href=\"@toolbar\">module Toolbar</a>."
+msgid "Displaying administrative links"
+msgstr "Affichage des liens d'administration"
+msgid "Use the administration toolbar"
+msgstr "Utiliser la barre d'outils d'administration"
+msgid ""
+"The Tracker module displays the most recently added and updated "
+"content on your site, and allows you to follow new content created by "
+"each user. This module has no configuration options. For more "
+"information, see the online handbook entry for <a "
+"href=\"@tracker\">Tracker module</a>."
+msgstr ""
+"Le module Tracker affiche les contenus les plus récemment ajoutés et "
+"mis à jour sur votre site, et vous permet de suivre le nouveau "
+"contenu créé par chaque utilisateur. Ce module ne possède pas "
+"d'options de configuration. Pour plus d'informations, consultez la "
+"section du manuel en ligne concernant le <a href=\"@tracker\">module "
+"Tracker</a>."
+msgid "Tracking new and updated site content"
+msgstr "Suivi du contenu du site nouveau et mis à jour"
+msgid ""
+"The <a href='@recent'>Recent content</a> page shows new and updated "
+"content in reverse chronological order, listing the content type, "
+"title, author's name, number of comments, and time of last update. "
+"Content is considered updated when changes occur in the text, or when "
+"new comments are added. The <em>My recent content</em> tab limits the "
+"list to the currently logged-in user."
+msgstr ""
+"La page <a href='@recent'>Contenu Récent</a> affiche le contenu "
+"nouveau et mis à jour dans l'ordre anté-chronologique, en listant le "
+"type de contenu, le titre, le nom de l'auteur, le nombre de "
+"commentaires et l'heure de la dernière mise à jour. Le contenu est "
+"considéré comme modifié lorsque des changements ont lieu dans le "
+"texte, ou lorsque des nouveaux commentaires sont ajoutés. L'onglet "
+"<em>Mon contenu récent</em> limite l'affichage de cette liste à "
+"l'utilisateur actuellement connecté."
+msgid "Tracking user-specific content"
+msgstr "Suivi du contenu propre à un utilisateur"
+msgid ""
+"To follow a specific user's new and updated content, select the "
+"<em>Track</em> tab from the user's profile page."
+msgstr ""
+"Afin de suivre le contenu nouvellement créé ou mis à jour par un "
+"utilisateur donné, sélectionnez l'onglet <em>Suivi</em> depuis la "
+"page de profil de l'utilisateur."
+msgid "All recent content"
+msgstr "Tout le contenu récent"
+msgid "My recent content"
+msgstr "Mon contenu récent"
+msgid "Track content"
+msgstr "Suivre le contenu"
+msgid "Configuring content types for translation"
+msgstr "Configuration des types de contenu pour la traduction"
+msgid ""
+"To configure a particular content type for translation, visit the <a "
+"href=\"@content-types\">Content types</a> page, and click the "
+"<em>edit</em> link for the content type. In the <em>Publishing "
+"options</em> section, select <em>Enabled, with translation</em> under "
+"<em>Multilingual support</em>."
+msgstr ""
+"Afin de configurer un type de contenu donné pour la traduction, "
+"visitez la page <a href=\"@content-types\">Types de contenu</a>, et "
+"cliquez sur le lien <em>modifier</em> du type de contenu. Dans la "
+"section <em>Options de publication</em>, sélectionnez la valeur "
+"<em>Activé, avec traduction</em> sous <em>Support Multilingue</em>."
+msgid "Assigning a language to content"
+msgstr "Assignation d'une langue au contenu"
+msgid ""
+"Use the <em>Language</em> drop down to select the appropriate language "
+"when creating or editing content."
+msgstr ""
+"Utilisez la liste déroulante <em>Langue</em> afin de sélectionner la "
+"langue appropriée lors de la création ou de la modification du "
+"contenu."
+msgid "Translating content"
+msgstr "Traduction du contenu"
+msgid "Maintaining translations"
+msgstr "Maintenance des traductions"
+msgid ""
+"If editing content in one language requires that translated versions "
+"also be updated to reflect the change, use the <em>Flag translations "
+"as outdated</em> check box to mark the translations as outdated and in "
+"need of revision. Individual translations may also be marked for "
+"revision by selecting the <em>This translation needs to be "
+"updated</em> check box on the translation editing form."
+msgstr ""
+"Si la modification d'un contenu dans une langue exige que les versions "
+"traduites soient aussi mises à jour pour refléter les changements, "
+"utilisez la case à cocher <em>Marquer les traductions comme non à "
+"jour</em>, pour marquer les traductions comme non à jour, et ayant "
+"besoin d'une révision. Chaque traduction peut être marquée "
+"individuellement pour révision en sélectionnant la case à cocher "
+"<em>Cette traduction doit être mise à jour</em> sur le formulaire de "
+"modification de la traduction."
+msgid "There is already a translation in this language."
+msgstr "Une traduction existe déjà pour cette langue."
+msgid "Installing updates"
+msgstr "Installation des mises à jour"
+msgid "Preparing to update your site"
+msgstr "Préparation de la mise à jour de votre site"
+msgid "Installing %project"
+msgstr "Installation de %project"
+msgid "Preparing to install"
+msgstr "Préparation de l'installation"
+msgid "Error installing / updating"
+msgstr "Erreur d'installation / de mise à jour"
+msgid "Installed %project_name successfully"
+msgstr "%project_name a été installé avec succès"
+msgid ""
+"Update was completed successfully. Your site has been taken out of "
+"maintenance mode."
+msgstr ""
+"La mise à jour a été terminée avec succès. Votre site a été "
+"retiré du mode maintenance."
+msgid "Update was completed successfully."
+msgstr "La mise à jour a été achevée avec succès."
+msgid "Update failed! See the log below for more information."
+msgstr ""
+"La mise à jour a échoué ! Consultez le journal ci-dessous pour plus "
+"d'informations."
+msgid ""
+"Update failed! See the log below for more information. Your site is "
+"still in maintenance mode."
+msgstr ""
+"La mise à jour a échoué ! Consultez le journal ci-dessous pour plus "
+"d'information. Votre site est toujours en mode maintenance."
+msgid ""
+"Installation was completed successfully. Your site has been taken out "
+"of maintenance mode."
+msgstr ""
+"L'installation a été réalisée avec succès. Votre site n'est plus "
+"en mode maintenance."
+msgid "Installation was completed successfully."
+msgstr "L'installation a été réalisée avec succès."
+msgid "Installation failed! See the log below for more information."
+msgstr ""
+"L'installation a échoué&nbsp;! Consultez le journal ci-dessous pour "
+"plus d'informations."
+msgid ""
+"Installation failed! See the log below for more information. Your site "
+"is still in maintenance mode."
+msgstr ""
+"L'installation a échoué&nbsp;! Consultez le journal ci-dessous pour "
+"plus d'informations. Votre site est toujours en mode maintenance."
+msgid "Failed to get available update data."
+msgstr "La récupération des données de mise à jour disponibles a échoué."
+msgid "No available update data"
+msgstr "Aucune donnée de mise à jour disponible"
+msgid "Checking available update data"
+msgstr "Vérification des données de mise à jour disponibles"
+msgid "Trying to check available update data ..."
+msgstr ""
+"Tentative de vérification des données de mises à jour "
+"disponibles..."
+msgid "Error checking available update data."
+msgstr "Erreur à la vérification des données de mises à jour disponibles."
+msgid "Checking available update data ..."
+msgstr "Vérification des données de mises à jour disponibles ..."
+msgid "Checked available update data for %title."
+msgstr ""
+"Les données de mises à jour disponibles pour %title ont été "
+"vérifiées."
+msgid "Failed to check available update data for %title."
+msgstr ""
+"Échec lors de la vérification des données de mises à jour "
+"disponibles pour %title."
+msgid "An error occurred trying to get available update data."
+msgstr ""
+"Une erreur s'est produite en essayant de récupérer les données de "
+"mises à jour disponibles."
+msgid "Checked available update data for one project."
+msgid_plural "Checked available update data for @count projects."
+msgstr[0] "Données de mises à jour disponibles vérifiées pour @count projet."
+msgstr[1] "Données de mises à jour disponibles vérifiées pour @count projets."
+msgid "Failed to get available update data for one project."
+msgid_plural "Failed to get available update data for @count projects."
+msgstr[0] ""
+"La récupération des informations de mise à jour a échoué pour "
+"@count projet."
+msgstr[1] ""
+"La récupération des informations de mise à jour a échoué pour "
+"@count projets."
+msgid "There was a problem getting update information. Try again later."
+msgstr ""
+"Il y a eu un problème à la récupération des informations de mise "
+"à jour. Veuillez ré-essayer plus tard."
+msgid "(Theme)"
+msgstr "(Thème)"
+msgid "(Release notes)"
+msgstr "(Notes de version)"
+msgid ""
+"This update is a major version update which means that it may not be "
+"backwards compatible with your currently running version.  It is "
+"recommended that you read the release notes and proceed at your own "
+"risk."
+msgstr ""
+"Cette mise à jour est une mise à jour de version majeure, ce qui "
+"signifie qu'elle n'est peut-être pas rétrocompatible avec votre "
+"version actuellement en fonction. Il est recommandé que vous lisiez "
+"les notes de version et, le cas échéant, continuiez à vos risques "
+"et périls."
+msgid "(Security update)"
+msgstr "(Mise à jour de sécurité)"
+msgid "(Unsupported)"
+msgstr "(Non supportée)"
+msgid "All of your projects are up to date."
+msgstr "Tous vos projets sont à jour."
+msgid "Download these updates"
+msgstr "Télécharger ces mises à jour"
+msgid "Manual updates required"
+msgstr "Des mises à jour manuelles sont requises"
+msgid "Updates of Drupal core are not supported at this time."
+msgstr ""
+"Les mises à jour du cœur de Drupal ne sont pas prises en charge pour "
+"le moment."
+msgid "You must select at least one project to update."
+msgstr "Vous devez sélectionner au moins un projet à mettre à jour."
+msgid "Downloading updates"
+msgstr "Téléchargement des mises à jour"
+msgid "Preparing to download selected updates"
+msgstr "Préparation au téléchargement des mises à jour sélectionnées"
+msgid "Downloading updates failed:"
+msgstr "Le téléchargement des mises à jour a échoué :"
+msgid "Updates downloaded successfully."
+msgstr "Les mises à jour ont été téléchargées avec succès."
+msgid "Fatal error trying to download."
+msgstr "Erreur fatale en essayant de télécharger."
+msgid ""
+"Back up your database and site before you continue. <a "
+"href=\"@backup_url\">Learn how</a>."
+msgstr ""
+"Sauvegardez votre base de données et votre site avant de continuer. "
+"<a href=\"@backup_url\">Apprenez comment le faire</a>."
+msgid "Perform updates with site in maintenance mode (strongly recommended)"
+msgstr ""
+"Effectuer les mises à jour avec le site en mode maintenance "
+"(fortement recommandé)"
+msgid "Install from a URL"
+msgstr "Installer depuis une URL"
+msgid "For example: %url"
+msgstr "Par exemple : %url"
+msgid "Upload a module or theme archive to install"
+msgstr "Transférer une archive de module ou de thème à installer"
+msgid "For example: %filename from your local computer"
+msgstr "Par exemple : %filename depuis votre ordinateur local"
+msgid "You must either provide a URL or upload an archive file to install."
+msgstr ""
+"Vous devez soit fournir une URL, soit transférer une archive à "
+"installer."
+msgid "Unable to retrieve Drupal project from %url."
+msgstr "Impossible de récupérer le projet Drupal depuis %url."
+msgid "Provided archive contains no files."
+msgstr "L'archive spécifiée ne contient aucun fichier."
+msgid "Unable to determine %project name."
+msgstr "Impossible de déterminer le nom de %project."
+msgid "%project is already installed."
+msgstr "%project est déjà installé."
+msgid "Cannot extract %file, not a valid archive."
+msgstr "Impossible d'extraire %file, ce n'est pas une archive valide."
+msgid "Downloading %project"
+msgstr "Téléchargement de %project"
+msgid "Failed to download %project from %url"
+msgstr "Echec du téléchargement de %project depuis %url"
+msgid "Includes:"
+msgstr "Contient :"
+msgid "Enabled: %includes"
+msgstr "Activé : %includes"
+msgid "Disabled: %disabled"
+msgstr "Désactivé : %disabled"
+msgid "%base_theme (!base_label)"
+msgstr "%base_theme (!base_label)"
+msgid "Depends on: !basethemes"
+msgstr "Dépend de : !basethemes"
+msgid "Required by: %subthemes"
+msgstr "Requis par : %subthemes"
+msgid ""
+"The Update manager also allows administrators to update and install "
+"modules and themes through the administration interface."
+msgstr ""
+"Le Gestionnaire de mises à jour permet aussi aux administrateurs de "
+"mettre à jour et d'installer des modules et des thèmes au travers de "
+"l'interface d'administration."
+msgid "Checking for available updates"
+msgstr "Vérification des mises à jour disponibles"
+msgid "Performing updates through the user interface"
+msgstr "Exécution des mises à jour au travers de l'interface utilisateur"
+msgid "Installing new modules and themes through the user interface"
+msgstr ""
+"Installation de nouveaux modules et de nouveaux thèmes à partir de "
+"l'interface utilisateur"
+msgid ""
+"You can also install new modules and themes in the same fashion, "
+"through the <a href=\"@install\">install page</a>, or by clicking the "
+"<em>Install new module/theme</em> link at the top of the <a "
+"href=\"@modules_page\">modules</a> and <a "
+"href=\"@themes_page\">themes</a> pages. In this case, you are prompted "
+"to provide either the URL to the download, or to upload a packaged "
+"release file from your local computer."
+msgstr ""
+"Vous pouvez aussi installer de nouveaux modules et thèmes par la "
+"même méthode, par la <a href=\"@install\">page d'installation</a>, "
+"ou en cliquant sur le lien <em>Installer un nouveau module/thème</em> "
+"en haut des pages de <a href=\"@modules_page\">modules</a> et <a "
+"href=\"@themes_page\">thèmes</a>. Le cas échéant, l'on vous "
+"demandera de fournir soit une URL du téléchargement, soit de "
+"transférer un fichier packagé de la version depuis votre ordinateur "
+"local."
+msgid ""
+"No update information available. <a href=\"@run_cron\">Run cron</a> or "
+"<a href=\"@check_manually\">check manually</a>."
+msgstr ""
+"Aucune information de mise à jour disponible. <a "
+"href=\"@run_cron\">Lancer la tâche planifiée (cron)</a> ou <a "
+"href=\"@check_manually\">vérifier manuellement</a>."
+msgid ""
+"You can automatically install your missing updates using the Update "
+"manager:"
+msgstr ""
+"Vous pouvez installer automatiquement vos mises à jour manquantes en "
+"utilisant le Gestionnaire de mise à jour :"
+msgid ""
+"Your site is currently configured to send these emails when any "
+"updates are available. To get notified only for security updates, "
+"!url."
+msgstr ""
+"Votre site est actuellement configuré pour envoyer ces courriels "
+"lorsqu'une mise à jour est disponible. Pour n'être prévenu que pour "
+"les mises à jour de sécurité, !url."
+msgid ""
+"Your site is currently configured to send these emails only when "
+"security updates are available. To get notified for any available "
+"updates, !url."
+msgstr ""
+"Votre site est actuellement configuré pour envoyer ces courriels "
+"seulement lorsque des mises à jour de sécurité sont disponilbles. "
+"Pour être prévenu de toute mise à jour disponible, !url."
+msgid ""
+"The installed version of at least one of your modules or themes is no "
+"longer supported. Upgrading or disabling is strongly recommended. See "
+"the project homepage for more details."
+msgstr ""
+"La version installée comporte au moins un module ou un thème qui "
+"n'est plus supporté à ce jour. Le mettre à jour ou le désactiver "
+"est fortement recommandé. Veuillez consulter la page d'accueil du "
+"projet en question pour plus de détails."
+msgid ""
+"There was a problem checking <a href=\"@update-report\">available "
+"updates</a> for Drupal."
+msgstr ""
+"Il y a eu un problème à la vérification des <a "
+"href=\"@update-report\">mises à jour disponibles</a> pour Drupal."
+msgid ""
+"There was a problem checking <a href=\"@update-report\">available "
+"updates</a> for your modules or themes."
+msgstr ""
+"Il y a eu un problème à la vérification des <a "
+"href=\"@update-report\">mises à jour disponibles</a> pour vos modules "
+"ou thèmes."
+msgid ""
+"See the <a href=\"@available_updates\">available updates</a> page for "
+"more information and to install your missing updates."
+msgstr ""
+"Consultez la page des <a href=\"@available_updates\">mises à jour "
+"disponibles</a> pour plus d'informations et pour installer les mises "
+"à jour manquantes."
+msgid "Ready to update"
+msgstr "Prêt pour la mise à jour"
+msgid "Update manager"
+msgstr "Gestionnaire de mises à jour"
+msgid "No people available."
+msgstr "Personne n'est disponible."
+msgid ""
+"This role will be automatically assigned new permissions whenever a "
+"module is enabled. Changing this setting will not affect existing "
+"permissions."
+msgstr ""
+"Les nouvelles permissions de tout nouveau module activé seront "
+"automatiquement attribuées à ce rôle. Changer ce paramètre "
+"n'affectera pas les permissions existantes."
+msgid "Registration and cancellation"
+msgstr "Inscription et annulation"
+msgid "Who can register accounts?"
+msgstr "Qui peut enregistrer des comptes ?"
+msgid "Administrators only"
+msgstr "Administrateurs seulement"
+msgid "Visitors, but administrator approval is required"
+msgstr "Les visiteurs, mais l'approbation d'un administrateur est requise"
+msgid "Require e-mail verification when a visitor creates an account."
+msgstr ""
+"Exiger la vérification de l'adresse de courriel lorsqu'un visiteur "
+"crée un compte."
+msgid ""
+"New users will be required to validate their e-mail address prior to "
+"logging into the site, and will be assigned a system-generated "
+"password. With this setting disabled, users will be logged in "
+"immediately upon registering, and may select their own passwords "
+"during registration."
+msgstr ""
+"Les nouveaux utilisateurs seront obligés de valider leur adresse de "
+"courriel avant de se connecter au site et un mot de passe généré "
+"par le système leur sera assigné. Si ce paramètre est désactivé, "
+"les utilisateurs seront connectés immédiatement après leur "
+"inscription, et pourront définir leur propre mot de passe lors de "
+"l'inscription."
+msgid "When cancelling a user account"
+msgstr "Lors de l'annulation d'un compte utilisateur"
+msgid ""
+"Users with the %select-cancel-method or %administer-users <a "
+"href=\"@permissions-url\">permissions</a> can override this default "
+"method."
+msgstr ""
+"Les utilisateurs avec les <a href=\"@permissions-url\">droits</a> "
+"%select-cancel-method ou %administer-users peuvent supplanter cette "
+"méthode par défaut."
+msgid "Select method for cancelling account"
+msgstr "Choisissez une méthode pour annuler un compte"
+msgid "Administer users"
+msgstr "Administrer les utilisateurs"
+msgid "Personalization"
+msgstr "Personnalisation"
+msgid "Enable signatures."
+msgstr "Activer les signatures."
+msgid "E-mails"
+msgstr "Courriels"
+msgid "Welcome (new user created by administrator)"
+msgstr "Bienvenue (nouvel utilisateur créé par un administrateur)"
+msgid ""
+"Edit the welcome e-mail messages sent to new member accounts created "
+"by an administrator."
+msgstr ""
+"Modifier les courriels de bienvenue envoyés aux nouveaux comptes "
+"utilisateur créés par un administrateur."
+msgid "Welcome (awaiting approval)"
+msgstr "Bienvenue (en attente d'approbation)"
+msgid ""
+"Edit the welcome e-mail messages sent to new members upon registering, "
+"when administrative approval is required."
+msgstr ""
+"Modifier les courriels de bienvenue envoyés aux nouveaux membres lors "
+"de leur inscription, lorsqu'une approbation administrative est "
+"requise."
+msgid "Welcome (no approval required)"
+msgstr "Bienvenue (aucune approbation requise)"
+msgid ""
+"Edit the welcome e-mail messages sent to new members upon registering, "
+"when no administrator approval is required."
+msgstr ""
+"Modifier les courriels de bienvenue envoyés aux nouveaux membres lors "
+"de leur inscription, lorsqu'aucune approbation administrative n'est "
+"requise."
+msgid "Password recovery"
+msgstr "Récupération de mot de passe"
+msgid "Edit the e-mail messages sent to users who request a new password."
+msgstr ""
+"Modifier les courriels envoyés aux utilisateurs demandant un nouveau "
+"mot de passe."
+msgid "Account activation"
+msgstr "Activation du compte"
+msgid ""
+"Enable and edit e-mail messages sent to users upon account activation "
+"(when an administrator activates an account of a user who has already "
+"registered, on a site where administrative approval is required)."
+msgstr ""
+"Activer et modifier les courriels envoyés aux utilisateurs à "
+"l'activation de leur compte (lorsqu'un administrateur active le compte "
+"d'un utilisateur qui s'est inscrit sur un site où l'approbation "
+"administrative est requise)."
+msgid ""
+"Enable and edit e-mail messages sent to users when their accounts are "
+"blocked."
+msgstr ""
+"Activer et modifier les courriels envoyés aux utilisateurs lorsque "
+"leur compte est bloqué."
+msgid "Account cancellation confirmation"
+msgstr "Confirmation de l'annulation du compte"
+msgid ""
+"Edit the e-mail messages sent to users when they attempt to cancel "
+"their accounts."
+msgstr ""
+"Modifier les courriels envoyés aux utilisateurs lorsqu'ils demandent "
+"l'annulation de leur compte."
+msgid "Account canceled"
+msgstr "Compte annulé"
+msgid ""
+"Enable and edit e-mail messages sent to users when their accounts are "
+"canceled."
+msgstr ""
+"Activer et modifier les courriels envoyés aux utilisateurs lorsque "
+"leur compte est annulé."
+msgid "Notify user when account is canceled."
+msgstr "Notifier l'utilisateur lorsque son compte est annulé."
+msgid ""
+"You are logged in as %user. <a href=\"!user_edit\">Change your "
+"password.</a>"
+msgstr ""
+"Vous êtes connecté en tant que %user. <a "
+"href=\"!user_edit\">Modifiez votre mot de passe.</a>"
+msgid ""
+"Another user (%other_user) is already logged into the site on this "
+"computer, but you tried to use a one-time link for user "
+"%resetting_user. Please <a href=\"!logout\">logout</a> and try using "
+"the link again."
+msgstr ""
+"Un autre utilisateur (%other_user) est déjà connecté à ce site "
+"depuis cet ordinateur, mais vous avez essayé d'utiliser un lien "
+"unique pour l'utilisateur %resetting_user. Veuillez vous <a "
+"href=\"!logout\">déconnecter</a> et essayer d'utiliser à nouveau ce "
+"lien."
+msgid "The one-time login link you clicked is invalid."
+msgstr ""
+"Le lien de connexion unique sur lequel vous avez cliqué n'est pas "
+"valide."
+msgid ""
+"You have just used your one-time login link. It is no longer necessary "
+"to use this link to log in. Please change your password."
+msgstr ""
+"Vous venez d'utiliser votre lien de connexion unique. Il n'est "
+"désormais plus nécessaire d'utiliser ce lien pour vous connecter. "
+"Veuillez modifier votre mot de passe."
+msgid ""
+"<p>This is a one-time login for %user_name and will expire on "
+"%expiration_date.</p><p>Click on this button to log in to the site and "
+"change your password.</p>"
+msgstr ""
+"<p>Ceci est une connexion unique pour %user_name qui expirera le "
+"%expiration_date.</p><p>Cliquez sur ce bouton pour vous connecter au "
+"site et modifier votre mot de passe.</p>"
+msgid ""
+"You have tried to use a one-time login link that has either been used "
+"or is no longer valid. Please request a new one using the form below."
+msgstr ""
+"Vous avez tenté d'utiliser un lien de connexion unique qui a déjà "
+"été utilisé ou n'est plus valide. Veuillez en demander un nouvau en "
+"utilisant le formulaire ci-dessous."
+msgid "When cancelling your account"
+msgstr "Lors de l'annulation de votre compte"
+msgid "When cancelling the account"
+msgstr "A l'annulation du compte"
+msgid "Require e-mail confirmation to cancel account."
+msgstr "Demander un e-mail de confirmation pour annuler le compte."
+msgid ""
+"When enabled, the user must confirm the account cancellation via "
+"e-mail."
+msgstr ""
+"Si activé, l'utilisateur doit confirmer l'annulation du compte par "
+"courriel."
+msgid ""
+"When enabled, the user will receive an e-mail notification after the "
+"account has been cancelled."
+msgstr ""
+"Si activé, l'utilisateur recevra une notification par courriel après "
+"l'annulation du compte."
+msgid "Are you sure you want to cancel your account?"
+msgstr "Etes-vous sûr(e) de vouloir annuler votre compte ?"
+msgid "Are you sure you want to cancel the account %name?"
+msgstr "Êtes-vous sûr(e) de vouloir annuler le compte %name ?"
+msgid "Select the method to cancel the account above."
+msgstr "Choisir la méthode pour annuler le compte ci-dessus."
+msgid ""
+"A confirmation request to cancel your account has been sent to your "
+"e-mail address."
+msgstr ""
+"Une demande de confirmation d'annulation de votre compte a été "
+"envoyée à votre adresse de courriel."
+msgid ""
+"Your account will be blocked and you will no longer be able to log in. "
+"All of your content will remain attributed to your user name."
+msgstr ""
+"Votre compte sera bloqué et vous ne serez plus autorisé à vous "
+"connecter. Tout vos contenus resteront attribués à votre nom "
+"d'utilisateur."
+msgid ""
+"Your account will be blocked and you will no longer be able to log in. "
+"All of your content will be hidden from everyone but administrators."
+msgstr ""
+"Votre compte sera bloqué et vous ne serez plus autorisé à vous "
+"connecter. Tout vos contenus seront cachés de tous les utilisateurs, "
+"sauf des administrateurs."
+msgid ""
+"Your account will be removed and all account information deleted. All "
+"of your content will be assigned to the %anonymous-name user."
+msgstr ""
+"Votre compte sera supprimé et toutes les informations du compte "
+"supprimées. Tous vos contenus seront assignés à l'utilisateur "
+"%anonymous-name."
+msgid ""
+"Your account will be removed and all account information deleted. All "
+"of your content will also be deleted."
+msgstr ""
+"Votre compte sera supprimé et toutes les informations du compte "
+"supprimées. Tous vos contenus seront aussi supprimés."
+msgid ""
+"You have tried to use an account cancellation link that has expired. "
+"Please request a new one using the form below."
+msgstr ""
+"Vous avez essayé d'utiliser un lien d'annulation de compte ayant "
+"expiré. Veuillez en demander un nouvau en utilisant le formulaire "
+"ci-dessous."
+msgid "Sent account cancellation request to %name %email."
+msgstr "Une demande d'annulation de compte a été envoyée à %name %email."
+msgid "Tokens related to individual user accounts."
+msgstr "Jetons relatifs aux comptes individuels d'utilisateur"
+msgid "Tokens related to the currently logged in user."
+msgstr "Jetons associés à l'utilisateur actuellement connecté"
+msgid ""
+"The User module allows users to register, log in, and log out. It also "
+"allows users with proper permissions to manage user roles (used to "
+"classify users) and permissions associated with those roles. For more "
+"information, see the online handbook entry for <a href=\"@user\">User "
+"module</a>."
+msgstr ""
+"Le module User permet aux utilisateurs de s'inscrire, se connecter, et "
+"se déconnecter. Il permet aussi aux utilisateurs possédant les "
+"droits appropriés d'administrer les rôles utilisateur (utilisés "
+"pour classer les utilisateurs), et les droits associés à ces rôles. "
+"Pour plus d'information, consultez la section sur le <a "
+"href=\"@user\">module User</a> dans le manuel en ligne ."
+msgid "Creating and managing users"
+msgstr "Création et administration des utilisateurs"
+msgid ""
+"The User module allows users with the appropriate <a "
+"href=\"@permissions\">permissions</a> to create user accounts through "
+"the <a href=\"@people\">People administration page</a>, where they can "
+"also assign users to one or more roles, and block or delete user "
+"accounts. If allowed, users without accounts (anonymous users) can "
+"create their own accounts on the <a href=\"@register\">Create new "
+"account</a> page."
+msgstr ""
+"Le module utilisateur permet aux utilisateurs possédant les <a "
+"href=\"@permissions\">permissions</a> appropriées de créer des "
+"comptes utilisateur à travers la <a href=\"@people\">page "
+"administration des utilisateurs</a>, où ils peuvent également "
+"affecter les utilisateurs à un ou plusieurs rôles, et bloquer ou "
+"supprimer des comptes utilisateurs.  Si c'est autorisé, les "
+"utilisateurs sans compte (utilisateurs anonymes) peuvent créer leurs "
+"propres comptes sur la page <a href=\"@register\"> Créer un nouveau "
+"compte</a>."
+msgid "User roles and permissions"
+msgstr "Rôles et droits des utilisateurs"
+msgid ""
+"<em>Roles</em> are used to group and classify users; each user can be "
+"assigned one or more roles. By default there are two roles: "
+"<em>anonymous user</em> (users that are not logged in) and "
+"<em>authenticated user</em> (users that are registered and logged in). "
+"Depending on choices you made when you installed Drupal, the "
+"installation process may have defined more roles, and you can create "
+"additional custom roles on the <a href=\"@roles\">Roles page</a>. "
+"After creating roles, you can set permissions for each role on the <a "
+"href=\"@permissions_user\">Permissions page</a>. Granting a permission "
+"allows users who have been assigned a particular role to perform an "
+"action on the site, such as viewing a particular type of content, "
+"editing or creating content, administering settings for a particular "
+"module, or using a particular function of the site (such as search)."
+msgstr ""
+"Les <em>rôles</em> sont utilisés pour grouper et classer les "
+"utilisateurs ; chaque utilisateur peut être assigné à un ou "
+"plusieurs rôles. Par défaut, il y a deux rôles: l'<em>utilisateur "
+"anonyme</em> (les utilisateurs qui ne sont pas enregistrés) et "
+"l'<em>utilisateur authentifié</em> (les utilisateurs qui sont "
+"enregistrés et connectés). En fonction des choix que vous avez fait "
+"lors de l'installation de Drupal, le processus d'installation a "
+"peut-être défini d'autres rôles, and vous pouvez définir d'autres "
+"rôles personnalisés sur la <a href=\"@roles\">page des rôles</a>. "
+"Après avoir créer les rôles, vous pouvez leur assigner des droits "
+"sur <a href=\"@permissions_user\">la page des droits</a>. Accorder un "
+"droit permet aux utilisateurs d'un rôle particulier d'accomplir des "
+"actions sur le site, comme voir certains types de contenu, modifier ou "
+"créer du contenu, administrer les paramètres de certains modules, ou "
+"encore utiliser une fonctionnalité particulière sur le site (comme "
+"la recherche)."
+msgid ""
+"Anonymous user: this role is used for users that don't have a user "
+"account or that are not authenticated."
+msgstr ""
+"Utilisateur anonyme : ce rôle est utilisé pour les utilisateurs qui "
+"ne possèdent pas de compte utilisateur, ou qui ne sont pas "
+"authentifiés."
+msgid ""
+"Authenticated user: this role is automatically granted to all logged "
+"in users."
+msgstr ""
+"Utilisateur authentifié : ce rôle est automatiquement attribué à "
+"tous les utilisateurs connectés."
+msgid ""
+"This form lets administrators add, edit, and arrange fields for "
+"storing user data."
+msgstr ""
+"Ce formulaire permet aux administrateurs d'ajouter, modifier et "
+"d'organiser les champs qui permettent de stocker les données "
+"utilisateur."
+msgid ""
+"This form lets administrators configure how fields should be displayed "
+"when rendering a user profile page."
+msgstr ""
+"Ce formulaire permet aux administrators de configurer la manière sont "
+"les champs doivent être affichés au rendu d'une page de profil "
+"utilisateur."
+msgid "Administer permissions"
+msgstr "Administrer les droits"
+msgid "View user profiles"
+msgstr "Voir les profils utilisateur"
+msgid "Change own username"
+msgstr "Modifier son propre nom d'utilisateur"
+msgid "Cancel own user account"
+msgstr "Annuler son propre compte utilisateur"
+msgid ""
+"Note: content may be kept, unpublished, deleted or transferred to the "
+"%anonymous-name user depending on the configured <a "
+"href=\"@user-settings-url\">user settings</a>."
+msgstr ""
+"Note : le contenu peut être conservé, dépublié, supprimé ou "
+"transféré à l'utilisateur %anonymous-name, en fonction des <a "
+"href=\"@user-settings-url\">paramètres utilisateur</a> configurés."
+msgid "Select method for cancelling own account"
+msgstr "Choisir la méthode de suppression de votre compte"
+msgid ""
+"Spaces are allowed; punctuation is not allowed except for periods, "
+"hyphens, apostrophes, and underscores."
+msgstr ""
+"Les espaces sont autorisés ; la ponctuation n'est pas autorisée à "
+"l'exception des points, traits d'union, apostrophes et tirets bas."
+msgid "The signature is too long: it must be %max characters or less."
+msgstr ""
+"La signature est trop longue : elle doit contenir %max caractères ou "
+"moins."
+msgid ""
+"Sorry, too many failed login attempts from your IP address. This IP "
+"address is temporarily blocked. Try again later or <a "
+"href=\"@url\">request a new password</a>."
+msgstr ""
+"Désolé, trop de tentatives de connexion échouées depuis votre "
+"adresse IP. Cette adresse IP est temporairement bloquée. Veuillez "
+"ré-essayer plus tard ou <a href=\"@url\">demander un nouveau mot  de "
+"passe</a>."
+msgid "Cancelling account"
+msgstr "Annulation du compte"
+msgid "Cancelling user account"
+msgstr "Annulation du compte de l'utilisateur"
+msgid "%name has been disabled."
+msgstr "%name a été désactivé."
+msgid "Cancel the selected user accounts"
+msgstr "Annuler les comptes utilisateur sélectionnés"
+msgid "The user account %name cannot be cancelled."
+msgstr "Le compte de l'utilisateur %name ne peut pas être annulé."
+msgid "When cancelling these accounts"
+msgstr "Lors de l'annulation de ces comptes"
+msgid "Are you sure you want to cancel these user accounts?"
+msgstr "Etes vous sûr(e) de vouloir annuler ces comptes utilisateur ?"
+msgid "Cancel accounts"
+msgstr "Supprimer des comptes"
+msgid "To make your password stronger:"
+msgstr "Pour renforcer la sécurité de votre mot de passe :"
+msgid "Make it at least 6 characters"
+msgstr "Saisissez au moins 6 caractères"
+msgid "Add lowercase letters"
+msgstr "Ajoutez des lettres minuscules"
+msgid "Add uppercase letters"
+msgstr "Ajoutez des lettres majuscules"
+msgid "Add numbers"
+msgstr "Ajoutez des chiffres"
+msgid "Add punctuation"
+msgstr "Ajoutez des caractères de ponctuation"
+msgid "Make it different from your username"
+msgstr "Le mot de passe doit être différent du nom d'utilisateur"
+msgid "Weak"
+msgstr "Faible"
+msgid "Fair"
+msgstr "Correct"
+msgid "Blocked user: %name %email."
+msgstr "Utilisateur bloqué : %name %email."
+msgid "There is currently 1 user online."
+msgid_plural "There are currently @count users online."
+msgstr[0] "Il y a actuellement @count utilisateur connecté."
+msgstr[1] "Il y a actuellement @count utilisateurs connectés."
+msgid ""
+"Sorry, there has been more than one failed login attempt for this "
+"account. It is temporarily blocked. Try again later or <a "
+"href=\"@url\">request a new password</a>."
+msgid_plural ""
+"Sorry, there have been more than @count failed login attempts for this "
+"account. It is temporarily blocked. Try again later or <a "
+"href=\"@url\">request a new password</a>."
+msgstr[0] ""
+"Désolé, il y a eu plus d'un essai de connexion raté pour ce compte. "
+"Il a été temporairement bloqué. Recommencer plus tard ou <a "
+"href=\"@url\">faites une demande de nouveau mot de passe</a>."
+msgstr[1] ""
+"Désolé, il y a eu plus de @count essais de connexion ratés pour ce "
+"compte. Il a été temporairement bloqué. Recommencer plus tard ou <a "
+"href=\"@url\">faites une demande de nouveau mot de passe</a>."
+msgid "Confirm account cancellation"
+msgstr "Confirmer l’annulation du compte"
+msgid "Basic page"
+msgstr "Page de base"
+msgid ""
+"Use <em>basic pages</em> for your static content, such as an 'About "
+"us' page."
+msgstr ""
+"Utilisez les <em>pages de base</em> pour votre contenu statique, tel "
+"que la page 'Qui sommes-nous'."
+msgid "Entity ID"
+msgstr "Identifiant (ID) de l'entité"
+msgid "Image style"
+msgstr "Style d'image"
+msgid "Exposed"
+msgstr "Exposé"
+msgid "Remove this display"
+msgstr "Retirer cet affichage"
+msgid "Operator to use on all groups"
+msgstr "Opérateur à utiliser sur tous les groupes"
+msgid ""
+"Either \"group 0 AND group 1 AND group 2\" or \"group 0 OR group 1 OR "
+"group 2\", etc"
+msgstr ""
+"Soit \"groupe 0 AND groupe 1 AND groupe 2\" soit \"groupe 0 OR groupe "
+"1 OR groupe 2\", etc."
+msgid "Remove group @group"
+msgstr "Retirer le groupe @group"
+msgid "Default group"
+msgstr "Groupe par défaut"
+msgid "Group @group"
+msgstr "Groupe @group"
+msgid "Ungroupable filters"
+msgstr "Filtres non-groupables"
+msgid "Basic exposed form"
+msgstr "Formulaire exposé basique"
+msgid "Input required"
+msgstr "Valeur requise"
+msgid ""
+"An exposed form that only renders a view if the form contains user "
+"input."
+msgstr ""
+"Un formulaire exposé qui affiche une vue seulement si le formulaire "
+"contient une saisie utilisateur."
+msgid "Display all items"
+msgstr "Afficher tous les éléments"
+msgid "Display a specified number of items"
+msgstr "Afficher un nombre défini d'éléments"
+msgid "Display a limited number items that this view might find."
+msgstr ""
+"Afficher un nombre limité d'éléments que cette vue pourrait "
+"trouver."
+msgid "Paged output, full pager"
+msgstr "Rendu paginé, pagination complète"
+msgid "Paged output, full Drupal style"
+msgstr "Rendu paginé, complet du style Drupal"
+msgid "Paged output, mini pager"
+msgstr "Rendu paginé, mini-pagination"
+msgid "Name (raw)"
+msgstr "Nom (brut)"
+msgid ""
+"The user or author name. This filter does not check if the user exists "
+"and allows partial matching. Does not utilize autocomplete."
+msgstr ""
+"Le nom de l'utilisateur ou de l'auteur. Ce filtre ne vérifie pas si "
+"l'utilisateur existe et permet une recherche partielle. N'utilise pas "
+"l'auto-complétion."
+msgid "Provide markup text for the area."
+msgstr "Fournir un texte balisé pour la zone."
+msgid "Machine Name"
+msgstr "Nom système"
+msgid "Change the machine name of this display."
+msgstr "Changer le nom système de cet affichage."
+msgid "Change settings for this pager type."
+msgstr "Modifier les paramètres pour ce type de pagination."
+msgid "Allow grouping and aggregation (calculation) of fields."
+msgstr "Autoriser le regroupement et l'aggrégation (calcul) des champs."
+msgid "Exposed form style"
+msgstr "Style du formulaire exposé"
+msgid "Select the kind of exposed filter to use."
+msgstr "Choisir le type de filtre exposé à utiliser."
+msgid "Exposed form settings for this exposed form style."
+msgstr "Paramètres du formulaire exposé pour ce style de formulaire exposé."
+msgid "The machine name of this display"
+msgstr "Le nom système de cet affichage"
+msgid ""
+"If enabled, some fields may become unavailable. All fields that are "
+"selected for grouping will be collapsed to one record per distinct "
+"value. Other fields which are selected for aggregation will have the "
+"function run on them. For example, you can group nodes on title and "
+"count the number of nids in order to get a list of duplicate titles."
+msgstr ""
+"Si coché, certains champs pourraient devenir indisponibles. Tous les "
+"champs qui sont sélectionnés pour le regroupement seront réduits à "
+"un seul enregistrement par valeur distincte. Les autres champs qui "
+"sont sélectionnés pour agrégation verront la fonction exécutée "
+"sur ceux-ci. Par exemple, vous pouvez grouper des nœuds par leur "
+"titre et compter le nombre de nids pour obtenir une liste des "
+"doublons."
+msgid ""
+"<strong>Important!</strong> You have changed the display's machine "
+"name. Anything that attached to this display specifically, such as "
+"theming, may stop working until it is updated. To see theme "
+"suggestions for it, you need to save the view."
+msgstr ""
+"<strong>Important !</strong> Vous avez modifié le nom machine de "
+"l'affichage. Tout ce qui est spécifiquement rattaché à cet "
+"affichage, tel que l'habillage (theming), pourrait cesser de "
+"fonctionner jusqu'à ce qu'il soit mis à jour. Pour voir les "
+"suggestions de thème le concernant, vous devez enregistrer la vue."
+msgid "Exposed Form"
+msgstr "Formulaire exposé"
+msgid "Exposed form options"
+msgstr "Options du formulaire exposé"
+msgid "Select which pager, if any, to use for this view"
+msgstr "Sélectionner, s'il y a lieu, la pagination à utiliser pour cette vue"
+msgid "Pager options"
+msgstr "Options de pagination"
+msgid "Display id should be unique."
+msgstr "L'identifiant (ID) de l'affichage doit être unique."
+msgid "Reset button label"
+msgstr "Texte du bouton de réinitialisation"
+msgid "Text to display in the reset button of the exposed form."
+msgstr ""
+"Texte à afficher dans le bouton de réinitialisation du formulaire "
+"exposé."
+msgid "Exposed sorts label"
+msgstr "Etiquette des tris exposés"
+msgid "Text on demand"
+msgstr "Texte à la demande"
+msgid "The total number of pages. Leave empty to show all pages."
+msgstr "Le nombre total de pages. Laisser vide pour montrer toutes les pages."
+msgid "Exposed options"
+msgstr "Options exposées"
+msgid ""
+"Exposing this options allows users to define their values in a exposed "
+"form when view is displayed"
+msgstr ""
+"Exposer ces options permet aux utilisateurs de définir leurs valeurs "
+"dans un formulaire exposé quand la vue est affichée"
+msgid "Expose items per page"
+msgstr "Exposer les éléments par page"
+msgid ""
+"When checked, users can determine how many items per page show in a "
+"view"
+msgstr ""
+"Si coché, les utilisateurs pourront spécifier combien d'éléments "
+"afficher par page dans une vue"
+msgid "Items per page label"
+msgstr "Etiquette des éléments par page"
+msgid "Label to use in the exposed items per page form element."
+msgstr ""
+"Etiquette à utiliser pour le champ de nombre d'éléments par page "
+"exposé."
+msgid "Exposed items per page options"
+msgstr "Options du nombre d'éléments par page"
+msgid "Expose Offset"
+msgstr "Exposer le décalage"
+msgid "Offset label"
+msgstr "Étiquette du décalage"
+msgid "Label to use in the exposed offset form element."
+msgstr ""
+"Etiquette à utiliser dans l'élément \"décalage\" du formulaire "
+"exposé."
+msgid "Offset must be an number greather or equal than 0."
+msgstr "Le décalage doit être un nombre supérieur ou égal à 0."
+msgid "Mini pager, @count item, skip @skip"
+msgid_plural "Mini pager, @count items, skip @skip"
+msgstr[0] "Mini pagination, @count élément, en passer @skip"
+msgstr[1] "Mini pagination, @count éléments, en passer @skip"
+msgid "Mini pager, @count item"
+msgid_plural "Mini pager, @count items"
+msgstr[0] "Mini pagination, @count élement"
+msgstr[1] "Mini pagination, @count éléments"
+msgid "All items, skip @skip"
+msgstr "Tous les éléments, en passer @skip"
+msgid "All items"
+msgstr "Tous les éléments"
+msgid "@count item, skip @skip"
+msgid_plural "@count items, skip @skip"
+msgstr[0] "@count élément, en passer @skip"
+msgstr[1] "@count éléments, en passer @skip"
+msgid "@count item"
+msgid_plural "@count items"
+msgstr[0] "@count élément"
+msgstr[1] "@count éléments"
+msgid "Group results together"
+msgstr "Grouper les résultats ensemble"
+msgid "Add custom block"
+msgstr "Ajouter un bloc personalisé"
+msgid "Internet"
+msgstr "Internet"
+msgid "Alt"
+msgstr "Alt"
+msgid "Hidden field"
+msgstr "Champ masqué"
+msgid ""
+"1 pending update (@number_applied to be applied, @number_incompatible "
+"skipped)"
+msgid_plural ""
+"@count pending updates (@number_applied to be applied, "
+"@number_incompatible skipped)"
+msgstr[0] ""
+"1 mise à jour en attente (@number_applied à appliquer, "
+"@number_incompatible ignorée)"
+msgstr[1] ""
+"@count mises à jour en attente (@number_applied à appliquer, "
+"@number_incompatible ignorées)"
+msgid "Author textfield"
+msgstr "Champ texte Auteur"
+msgid "Subject textfield"
+msgstr "Champ texte Sujet"
+msgid "Hello !recipient-name,"
+msgstr "Bonjour !recipient-name,"
+msgid "Overview of fields on all entity types."
+msgstr "Aperçu des champs de tout type d'entités."
+msgid "Configuring text formats"
+msgstr "Configuration des formats de texte"
+msgid ""
+"Configure text formats on the <a href=\"@formats\">Text formats "
+"page</a>. <strong>Improper text format configuration is a security "
+"risk</strong>. To ensure security, untrusted users should only have "
+"access to text formats that restrict them to either plain text or a "
+"safe set of HTML tags, since certain HTML tags can allow embedding "
+"malicious links or scripts in text. More trusted registered users may "
+"be granted permission to use less restrictive text formats in order to "
+"create rich content."
+msgstr ""
+"Configurez les formats de texte dans la page <a "
+"href=\"@formats\"><em>Formats de texte</em></a>.<strong>Une mauvaise "
+"configuration des formats de texte constitue un risque de "
+"sécurité.</strong>Pour garantir la sécurité de votre site, les "
+"utilisateurs non vérifiés ne devraient avoir accès qu'aux formats "
+"qui les limitent à du texte brut ou à un ensemble de balises HTML "
+"sûres (certaines balises HTML permettent d'inclure des liens ou des "
+"scripts malicieux). Les utilisateurs de confiance devraient disposer "
+"de formats de textes plus permissifs leur permettant de créer des "
+"contenus plus riches."
+msgid ""
+"Text formats define the HTML tags, code, and other formatting that can "
+"be used when entering text. <strong>Improper text format configuration "
+"is a security risk</strong>. Learn more on the <a "
+"href=\"@filterhelp\">Filter module help page</a>."
+msgstr ""
+"Les formats texte définissent les balises HTML, code et autre "
+"formatage qui peuvent être utilisés lors de la saisie d'un texte. "
+"<strong>Une configuration erronée des formats texte est une menace "
+"pour la sécurité</strong>. Pour plus d'informations, référez-vous "
+"à la <a href=\"@filterhelp\">page d'aide du module Filter</a>."
+msgid "Show more content"
+msgstr "Voir plus de contenu"
+msgid "Collapse"
+msgstr "Replier"
+msgid ""
+"The testing framework requires the DOMDocument class to be available. "
+"Check the configure command at the <a href=\"@link-phpinfo\">PHP info "
+"page</a>."
+msgstr ""
+"Le framework Testing nécessite que la classe DOMDocument soit "
+"disponible. Vérifiez la commande <em>configure</em> sur la <a "
+"href=\"@link-phpinfo\">page d'information PHP</a>."
+msgid "Error messages to display"
+msgstr "Messages d'erreur à afficher"
+msgid ""
+"It is recommended that sites running on production environments do not "
+"display any errors."
+msgstr ""
+"Il est recommandé aux sites fonctionnant dans un environnement de "
+"production de ne pas afficher les erreurs."
+msgid "Cannot open %file_path"
+msgstr "Impossible d'ouvrir %file_path"
+msgid "Term name textfield"
+msgstr "Champ texte nom du terme"
+msgid "Term description textarea"
+msgstr "Zone de texte de description du terme"
+msgid ""
+"Password reset instructions will be mailed to %email. You must log out "
+"to use the password reset link in the e-mail."
+msgstr ""
+"Instructions de réinitialisation de mot de passe envoyées à %email. "
+"Vous devez vous déconnecter pour utiliser le lien de "
+"réinitialisation de mot de passe situé dans le courriel."
+msgid "Current password"
+msgstr "Mot de passe actuel"
+msgid ""
+"Your current password is missing or incorrect; it's required to change "
+"the %name."
+msgstr ""
+"Votre mot de passe actuel est manquant ou incorrect; il est requis "
+"pour changer : %name"
+msgid ""
+"A welcome message with further instructions has been e-mailed to the "
+"new user <a href=\"@url\">%name</a>."
+msgstr ""
+"Un message de bienvenue avec des instructions supplémentaires a été "
+"envoyé à l'adresse de courriel du nouvel utilisateur <a "
+"href=\"@url\">%name</a>."
+msgid ""
+"A welcome message with further instructions has been sent to your "
+"e-mail address."
+msgstr ""
+"Un message de bienvenue avec des instructions supplémentaires a été "
+"envoyé à votre adresse de courriel."
+msgid "Configure user accounts."
+msgstr "Configurer les comptes utilisateurs."
+msgid "Syrian Arab Republic"
+msgstr "Syrie"
+msgid "Maximize"
+msgstr "Agrandir"
+msgid "Update preview"
+msgstr "Actualiser l'aperçu"
+msgid "all languages"
+msgstr "toutes les langues"
+msgid "%module module installed."
+msgstr "Module %module installé."
+msgid "@node_type comment"
+msgstr "Commentaire sur @node_type"
+msgid ""
+"The Field UI module provides an administrative user interface (UI) for "
+"attaching and managing fields. Fields can be defined at the "
+"content-type level for content items and comments, at the vocabulary "
+"level for taxonomy terms, and at the site level for user accounts. "
+"Other modules may also enable fields to be defined for their data. "
+"Field types (text, image, number, etc.) are defined by modules, and "
+"collected and managed by the <a href=\"@field\">Field module</a>. For "
+"more information, see the online handbook entry for <a "
+"href=\"@field_ui\" target=\"_blank\">Field UI module</a>."
+msgstr ""
+"Le module Field UI fournit une interface utilisateur d'administration "
+"pour attacher et gérer les champs. Les champs peuvent être définis "
+"au niveau des types de contenus pour les contenus et les commentaires, "
+"au niveau des termes de taxonomies ainsi qu'au niveau du site pour les "
+"comptes utilisateurs. D'autres modules peuvent aussi activer des "
+"champs qui sont utilisés pour leurs données. Les types de champs "
+"(texte, image, nombre, etc.) sont définis par des modules, et "
+"collectés et gérés par le <a href=\"@field\">module Field</a>. Pour "
+"plus d'informations, voir la section<a href=\"@field_ui\" "
+"target=\"_blank\">module Field UI</a> du manuel en ligne."
+msgid "Planning fields"
+msgstr "Organiser des champs"
+msgid "What the field will be called"
+msgstr "Le nom du champ"
+msgid ""
+"A field has a <em>label</em> (the name displayed in the user "
+"interface) and a <em>machine name</em> (the name used internally). The "
+"label can be changed after you create the field, if needed, but the "
+"machine name cannot be changed after you have created the field."
+msgstr ""
+"Un champ a un <em>libellé</em> (le nom affiché dans l'interface "
+"utilisateur) et un <em>nom machine</em> (le nom utilisé en interne). "
+"Le libellé peut être changé une fois que vous avez créé le champ "
+"si nécessaire mais pas le nom machine."
+msgid "What type of data the field will store"
+msgstr "Le type de données que le champ stockera"
+msgid ""
+"Each field can store one type of data (text, number, file, etc.). When "
+"you define a field, you choose a particular <em>field type</em>, which "
+"corresponds to the type of data you want to store. The field type "
+"cannot be changed after you have created the field."
+msgstr ""
+"Chaque champ stocke un type de données (texte, nombre, fichier, "
+"etc.). Lorsque vous définissez un champ, vous devez choisir un "
+"<em>type de champ</em> particulier qui correspond au type de données "
+"que vous voulez stocker. Le type de champ ne peut pas être modifié "
+"après que le champ est créé."
+msgid "How the data will be input and displayed"
+msgstr "La façon dont les données seront saisies et affichées"
+msgid "How many values the field will store"
+msgstr "Combien de valeurs le champ stockera"
+msgid ""
+"You can store one value, a specific maximum number of values, or an "
+"unlimited number of values in each field. For example, an employee "
+"identification number field might store a single number, whereas a "
+"phone number field might store multiple phone numbers. This setting "
+"can be changed after you have created the field, but if you reduce the "
+"maximum number of values, you may lose information."
+msgstr ""
+"Vous pouvez stocker une valeur, un nombre spécifique de valeurs ou un "
+"nombre illimité de valeurs pour chaque champ. Par exemple, le champ "
+"du numéro d'identification d'un employé peut stocker un seul nombre "
+"alors que un champ de numéro de téléphone peut stocker plusieurs "
+"numéros. Ce paramètre peut être modifié après que le champ a "
+"été créé mais si vous diminuez le nombre maximum de valeurs, vous "
+"perdrez des informations."
+msgid "Reusing fields"
+msgstr "Champs réutilisables"
+msgid ""
+"Some settings of a reused field are unique to each use of the field; "
+"others are shared across all places you use the field. For example, "
+"the label of a text field is unique to each use, while the setting for "
+"the number of values is shared."
+msgstr ""
+"Certains paramètres d'un champ qui est réutilisé sont spécifiques "
+"à chaque utilisation de ce champ ; d'autres sont partagés entre les "
+"occurrences qui utilisent ce champ. Par exemple, le libellé du champ "
+"texte est spécifique à chaque utilisation alors que le paramètre du "
+"nombre de valeurs est partagé."
+msgid ""
+"There are two main reasons for reusing fields. First, reusing fields "
+"can save you time over defining new fields. Second, reusing fields "
+"also allows you to display, filter, group, and sort content together "
+"by field across content types. For example, the contributed Views "
+"module allows you to create lists and tables of content. So if you use "
+"the same field on multiple content types, you can create a View "
+"containing all of those content types together displaying that field, "
+"sorted by that field, and/or filtered by that field."
+msgstr ""
+"Il y a deux raisons principales pour lesquelles les champs sont "
+"réutilisés. D'abord, la réutilisation permet de gagner du temps par "
+"rapport à la définition de nouveaux champs. Ensuite, la "
+"réutilisation permet aussi d'afficher, filtrer, grouper et trier des "
+"contenus ensemble sur ce champ quelque soit leur type de contenu. Par "
+"exemple, le module contribué Views permet de créer des listes et des "
+"tables de contenus. Ainsi, si vous utilisez le même champ sur "
+"plusieurs type de contenu, vous pouvez créer une View contenant "
+"ensemble tout les types de contenu affichant ce champ triés et/ou "
+"filtrés selon ce champ."
+msgid "Fields on content items"
+msgstr "Champs sur des contenus"
+msgid ""
+"Fields on content items are defined at the content-type level, on the "
+"<em>Manage fields</em> tab of the content type edit page (which you "
+"can reach from the <a href=\"@types\">Content types page</a>). When "
+"you define a field for a content type, each content item of that type "
+"will have that field added to it. Some fields, such as the Title and "
+"Body, are provided for you when you create a content type, or are "
+"provided on content types created by your installation profile."
+msgstr ""
+"Les champs sur les éléments de contenus sont définis au niveau du "
+"type de contenu, à l'onglet <em>Gérer les champs</em> sur la <a "
+"href=\"@types\">Page d'édition des types de contenu</a>. Lorsque vous "
+"définissez un champ pour un type de contenu, chaque élément de "
+"contenu de ce type ajoutera ce champ. Certains champs tels que 'Titre' "
+"et 'Corps', sont fournis pour vous quand vous créez un type de "
+"contenu, ou sur les types de contenus créés par votre profil "
+"d'installation."
+msgid "Fields on taxonomy terms"
+msgstr "Champs sur des termes de taxonomie"
+msgid ""
+"Fields on taxonomy terms are defined at the taxonomy vocabulary level, "
+"on the <em>Manage fields</em> tab of the vocabulary edit page (which "
+"you can reach from the <a href=\"@taxonomy\">Taxonomy page</a>). When "
+"you define a field for a vocabulary, each term in that vocabulary will "
+"have that field added to it. For example, you could define an image "
+"field for a vocabulary to store an icon with each term."
+msgstr ""
+"Les champs des termes de taxonomie sont définis au niveau du "
+"vocabulaire, dans l'onglet <em>Gérer les champs</em> de la page de "
+"modification du vocabulaire (à laquelle vous pouvez accéder depuis "
+"la page <a href=\"@taxonomy\"><em>Taxonomie</em></a>). Lorsque vous "
+"définissez un champ pour un vocabulaire, chaque terme du vocabulaire "
+"disposera de ce champ. Vous pouvez par exemple définir un champ image "
+"pour un vocabulaire de manière à stocker une icone pour chaque "
+"terme."
+msgid "Fields on user accounts"
+msgstr "Champs sur des comptes utilisateurs"
+msgid ""
+"Fields on user accounts are defined on a site-wide basis on the <a "
+"href=\"@fields\">Manage fields tab</a> of the <a "
+"href=\"@accounts\">Account settings</a> page. When you define a field "
+"for user accounts, each user account will have that field added to it. "
+"For example, you could add a long text field to allow users to include "
+"a biography."
+msgstr ""
+"Les champs des comptes utilisateurs sont définis pour tous le site "
+"dans l'onglet <a href=\"@fields\"><em>Gérer les champs</em></a> de la "
+"page <a href=\"@accounts\"><em>Paramètres de compte</em></a>. Lorsque "
+"vous définissez un champ pour le compte utilisateur, chaque compte "
+"utilisateur disposera de ce champ. Vous pouvez par exemple ajouter un "
+"champ de texte long pour que les utilisateurs puissent inclure leur "
+"biographie."
+msgid "Fields on comments"
+msgstr "Champs sur des commentaires"
+msgid ""
+"Fields on comments are defined at the content-type level, on the "
+"<em>Comment fields</em> tab of the content type edit page (which you "
+"can reach from the <a href=\"@types\">Content types page</a>). When "
+"you add a field for comments, each comment on a content item of that "
+"type will have that field added to it. For example, you could add a "
+"website field to the comments on forum posts, to allow forum "
+"commenters to add a link to their website."
+msgstr ""
+"Les champs des commentaires sont définis au niveau du type de "
+"contenu, dans l'onglet <em>Champs de commentaire</em> de la page de "
+"modification du type de contenu (à laquelle vous pouvez accéder "
+"depuis la page <a href=\"@types\"><em>Types de contenus</em></a>). "
+"Lorsque vous ajoutez un champ aux commentaires, chaque commentaire de "
+"ce type de contenu disposera du champ. Vous pouvez par exemple ajouter "
+"un champ lien aux commentaires du type de contenu \"Forum\" pour que "
+"les utilisateurs puissent indiquer leur site web."
+msgid "Administer text formats and filters"
+msgstr "Administrer les formats de texte et les filtres"
+msgid "@type language detection"
+msgstr "Détection de la langue @type"
+msgid "User interface text"
+msgstr "Texte de l'interface utilisateur"
+msgid "Use the detected interface language."
+msgstr "Utiliser la langue de l'interface détectée"
+msgid ""
+"The new set is created by copying items from your default shortcut "
+"set."
+msgstr ""
+"Le nouvel ensemble est créé en copiant les éléments de votre "
+"ensemble de raccourcis par défaut."
+msgid "The new set is created by copying items from the %default set."
+msgstr ""
+"Le nouvel ensemble est créé en copiant les éléments depuis "
+"l'ensemble %default."
+msgid "You are currently using the %set-name shortcut set."
+msgstr "Vous utilisez actuellement l'ensemble de raccourcis %set-name."
+msgid "Create new set"
+msgstr "Créer un nouvel ensemble"
+msgid ""
+"The %set_name shortcut set has been created. You can edit it from this "
+"page."
+msgstr ""
+"L'ensemble de raccourcis %set_name a été créé. Vous pouvez le "
+"modifier depuis de cette page."
+msgid "Updated set name to %set-name."
+msgstr "Nom de l'ensemble mis à jour à %set-name."
+msgid ""
+"If you have chosen this shortcut set as the default for some or all "
+"users, they may also be affected by deleting it."
+msgstr ""
+"Si vous avez choisi cet ensemble de raccourcis par défaut pour "
+"certains (voire pour tous) les utilisateurs, ils pourront être "
+"affectés par sa suppression."
+msgid "Are you sure you want to delete the shortcut set %title?"
+msgstr "Êtes-vous sûr de vouloir supprimer l'ensemble de raccourcis %title?"
+msgid "The shortcut set %title has been deleted."
+msgstr "L'ensemble de raccourcis %title a été supprimé."
+msgid "1 user has chosen or been assigned to this shortcut set."
+msgid_plural "@count users have chosen or been assigned to this shortcut set."
+msgstr[0] "@count utilisateur utilise cet ensemble de raccourcis."
+msgstr[1] "@count utilisateurs utilisent cet ensemble de raccourcis."
+msgid ""
+"The Shortcut module allows users to create sets of <em>shortcut</em> "
+"links to commonly-visited pages of the site. Shortcuts are contained "
+"within <em>sets</em>. Each user with <em>Select any shortcut set</em> "
+"permission can select a shortcut set created by anyone at the site. "
+"For more information, see the online handbook entry for <a "
+"href=\"@shortcut\">Shortcut module</a>."
+msgstr ""
+"Le module Shortcut permet aux utilisateurs de créer des ensembles de "
+"<em>raccourcis</em> vers les pages régulièrement visitées du site. "
+"Les raccourcis sont groupés dans des <em>ensembles</em>. Chacun des "
+"utilisateurs avec les droits <em>Choisir un ensemble de "
+"raccourcis</em> peut sélectionner un ensemble de raccourcis du site, "
+"quel qu'en soit le créateur. Pour plus d'information, voir la section "
+"du <a href=\"@shortcut\">module Shortcut</a> du manuel en ligne."
+msgid "Administering shortcuts"
+msgstr "Administration des raccourcis"
+msgid ""
+"Users with the <em>Administer shortcuts</em> permission can manage "
+"shortcut sets and edit the shortcuts within sets from the <a "
+"href=\"@shortcuts\">Shortcuts administration page</a>."
+msgstr ""
+"Les utilisateurs avec les droits <em>Administrer les raccourcis<em> "
+"peuvent gérer les ensembles de raccourcis et modifier les raccourcis "
+"au sein de ces ensembles depuis la <a href=\"@shortcuts\">Page "
+"d'administration des raccourcis</a>."
+msgid "Choosing shortcut sets"
+msgstr "Choix des ensembles de raccourcis"
+msgid ""
+"Users with permission to switch shortcut sets can choose a shortcut "
+"set to use from the Shortcuts tab of their user account page."
+msgstr ""
+"Les utilisateurs ayant le droit de changer d'ensemble de raccourcis "
+"peuvent choisir l'ensemble de raccourcis qu'ils souhaitent utiliser "
+"dans l'onglet Raccourcis de leur page de compte utilisateur."
+msgid ""
+"The Shortcut module creates an add/remove link for each page on your "
+"site; the link lets you add or remove the current page from the "
+"currently-enabled set of shortcuts (if your theme displays it and you "
+"have permission to edit your shortcut set). The core Seven "
+"administration theme displays this link next to the page title, as a "
+"small + or - sign. If you click on the + sign, you will add that page "
+"to your preferred set of shortcuts. If the page is already part of "
+"your shortcut set, the link will be a - sign, and will allow you to "
+"remove the current page from your shortcut set."
+msgstr ""
+"Le module Shortcut fournit un lien ajouter/supprimer sur chaque page "
+"de votre site&nbsp;; ce lien vous permet d'ajouter ou supprimer la "
+"page courante au groupe de raccourcis actuellement activé (si votre "
+"thème l'affiche et si vous vous disposez du droit d'éditer votre "
+"propre groupe de raccourcis). Le thème d'administration Seven, fourni "
+"avec le coeur de Drupal, affiche ce lien à côté du titre de la "
+"page, sous la forme d'un petit signe + ou d'un petit signe -. Si vous "
+"cliquez sur le signe +, vous ajouterez la page à votre groupe de "
+"raccourcis préféré. Si la page fait déjà partie de votre groupe "
+"de raccourcis, ce lien prendra la forme d'un signe -, et vous "
+"permettra alors de supprimer la page courante de votre groupe de "
+"raccourcis."
+msgid ""
+"Define which shortcut set you are using on the <a "
+"href=\"@shortcut-link\">Shortcuts tab</a> of your account page."
+msgstr ""
+"Définir quel ensemble de raccourcis vous utilisez dans l'<a "
+"href=\"@shortcut-link\">onglet Raccourcis</a> de votre page de compte "
+"utilisateur."
+msgid "Edit current shortcut set"
+msgstr "Modifier l'ensemble de raccourcis actif"
+msgid ""
+"Editing the current shortcut set will affect other users if that set "
+"has been assigned to or selected by other users. Granting \"Select any "
+"shortcut set\" permission along with this permission will grant "
+"permission to edit any shortcut set."
+msgstr ""
+"La modification de l'ensemble de raccourcis actif affectera les autres "
+"utilisateurs qui l'utilisent. L'octroi des droits \"Choisir un "
+"ensemble de raccourcis\" en plus de ces droits-ci permettra de "
+"modifier n'importe quel ensemble de raccourcis."
+msgid "Select any shortcut set"
+msgstr "Choisir un ensemble de raccourcis"
+msgid ""
+"From all shortcut sets, select one to be own active set. Without this "
+"permission, an administrator selects shortcut sets for users."
+msgstr ""
+"Parmi tous les ensembles de raccourcis, choisissez en un pour qu'il "
+"devienne votre choix par défaut. Sans ces droits, un administrateur "
+"sélectionne les ensembles de raccourcis des utilisateurs."
+msgid "Add and modify shortcut sets."
+msgstr "Ajouter et modifier des raccourcis."
+msgid "Add shortcut set"
+msgstr "Ajouter un ensemble de raccourcis"
+msgid "Edit set name"
+msgstr "Editer le nom de l'ensemble"
+msgid "Delete shortcut set"
+msgstr "Supprimer un ensemble de raccourcis"
+msgid "@remote could not be saved to @path."
+msgstr "@remote n'a pas pu être sauvegardé vers @path."
+msgid ""
+"Drupal requires you to enable the PHP extensions in the following list "
+"(see the <a href=\"@system_requirements\">system requirements page</a> "
+"for more information):"
+msgstr ""
+"Drupal requiert l'activation des extensions PHP figurant dans la liste "
+"suivante (consulter la <a href=\"@system_requirements\">page de "
+"configuration système requise</a> pour plus de détails):"
+msgid "Database support"
+msgstr "Support de base de données"
+msgid ""
+"Your web server does not appear to support any common PDO database "
+"extensions. Check with your hosting provider to see if they support "
+"PDO (PHP Data Objects) and offer any databases that <a "
+"href=\"@drupal-databases\">Drupal supports</a>."
+msgstr ""
+"Votre serveur Web ne semble pas pouvoir supporter les extensions PDO "
+"pour les bases de données. Vérifiez auprès de votre hébergeur pour "
+"voir s'il supporte PDO (<em>PHP Data Objects</em>) et s'il dispose "
+"d'une des bases de données que <a href=\"@drupal-databases\">Drupal "
+"accepte</a>."
+msgid "@entity:@bundle"
+msgstr "@entity:@bundle"
+msgid "Is not empty (NOT NULL)"
+msgstr "N'est pas vide (NOT NULL)"
+msgid "Broken/missing handler: @table > @field"
+msgstr "Handler brisé/manquant : @table > @field"
+msgid ""
+"Display %display has set node/% as path. This will not produce what "
+"you want. If you want to have multiple versions of the node view, use "
+"panels."
+msgstr ""
+"L'affichage %display a son chemin parametré sur node/%. Ceci ne "
+"produira pas l'effet désiré. Si vous voulez avoir plusieurs versions "
+"de l'affichage d'un nœud, utilisez Panels."
+msgid "Use absolute link (begins with \"http://\")"
+msgstr "Utiliser un lien absolu (commençant par \"http://\")"
+msgid "Output machine name"
+msgstr "Afficher le nom système"
+msgid "Use Drupal's taxonomy term path to create breadcrumb links"
+msgstr ""
+"Utiliser le chemin du terme de taxonomie de Drupal pour créer les "
+"liens du fil d'ariane"
+msgid ""
+"If selected, the links in the breadcrumb trail will be created using "
+"the standard drupal method instead of the custom views method. This is "
+"useful if you are using modules like taxonomy redirect to modify your "
+"taxonomy term links."
+msgstr ""
+"Si sélectionné, les liens du fil d'Ariane seront créés avec la "
+"méthode standard de drupal au lieu de la méthode de Views. Ceci est "
+"utile lorsque vous utilisez des modules comme Taxonomy Redirect pour "
+"modifier vos liens de termes de taxonomie."
+msgid "Change the CSS class name(s) that will be added to this display."
+msgstr ""
+"Modifier la(les) classe(s) CSS qui sera(seront) ajoutée(s) à cet "
+"affichage."
+msgid "CSS classes must be alphanumeric or dashes only."
+msgstr ""
+"Les classes CSS doivent être constituées de caractères "
+"alphanumériques ou des tirets seulement."
+msgid "Term edit link"
+msgstr "Lien de modification du terme"
+msgid "Provide a simple link to edit the term."
+msgstr "Fournir un lien pour modifier le terme."
+msgid ""
+"Set between which values the user can choose when determining the "
+"items per page. Separated by comma."
+msgstr ""
+"Spécifiez entre quelle valeurs l'utilisateur peut choisir lors de la "
+"spécification du nombre d'éléments par page. Séparées par des "
+"virgules."
+msgid ""
+"When checked, users can determine how many items should be skipped at "
+"the beginning."
+msgstr ""
+"Si coché, les utilisateurs peuvent déterminer combien d'éléments "
+"doivent être passés au début."
+msgid "Link field"
+msgstr "Champ lien"
+msgid "Attachment before"
+msgstr "Pièce jointe avant"
+msgid "Attachment after"
+msgstr "Pièce jointe après"
+msgid "Kyrgyz"
+msgstr "Kirghiz"
+msgid "theme() may not be called until all modules are loaded."
+msgstr ""
+"La fonction theme() n'est pas appelée tant que tous les modules ne "
+"sont pas chargés."
+msgid "GD library PNG support"
+msgstr "Prise en charge du format PNG par la bibliothèque GD"
+msgid "The date the comment was most recently updated."
+msgstr ""
+"La date à laquelle le commentaire a été le plus récemment mis à "
+"jour."
+msgid "Comment posted: %subject."
+msgstr "Commentaire posté : %subject."
+msgid "On value"
+msgstr "Valeur si coché"
+msgid "If left empty, \"1\" will be used."
+msgstr "Si laissé vide, \"1\" sera utilisé."
+msgid "Off value"
+msgstr "En dehors de la valeur"
+msgid "If left empty, \"0\" will be used."
+msgstr "Si laissé vide, \"0\" sera utilisé."
+msgid ""
+"This field has been disabled because you do not have sufficient "
+"permissions to edit it."
+msgstr ""
+"Ce champ a été desactivé car vous n'avez pas les droits suffisants "
+"pour le modifier."
+msgid "Select a forum."
+msgstr "Sélectionner un forum."
+msgid "GD library rotate and desaturate effects"
+msgstr "Effets de rotation et de désaturation de la bibliothèque GD"
+msgid ""
+"View, edit and delete all content regardless of permission "
+"restrictions."
+msgstr ""
+"Voir, modifier et supprimer tous les contenus sans tenir compte des "
+"restrictions de droits."
+msgid "The HTML ID %id is unique."
+msgstr "L'identifiant (ID) HTML %id est unique."
+msgid "Syslog format"
+msgstr "Format de Syslog"
+msgid ""
+"Specify the format of the syslog entry. Available variables are: "
+"<dl><dt><code>!base_url</code></dt><dd>Base URL of the "
+"site.</dd><dt><code>!timestamp</code></dt><dd>Unix timestamp of the "
+"log entry.</dd><dt><code>!type</code></dt><dd>The category to which "
+"this message belongs.</dd><dt><code>!ip</code></dt><dd>IP address of "
+"the user triggering the "
+"message.</dd><dt><code>!request_uri</code></dt><dd>The requested "
+"URI.</dd><dt><code>!referer</code></dt><dd>HTTP Referer if "
+"available.</dd><dt><code>!uid</code></dt><dd>User "
+"ID.</dd><dt><code>!link</code></dt><dd>A link to associate with the "
+"message.</dd><dt><code>!message</code></dt><dd>The message to store in "
+"the log.</dd></dl>"
+msgstr ""
+"Spécifier le format des entrées du journal système. Les variables "
+"disponibles sont: <dl><dt><code>!base_url</code></dt><dd>URL de base "
+"du site.</dd><dt><code>!timestamp</code></dt><dd>Horodatage UNIX de "
+"l'entrée du journal.</dd><dt><code>!type</code></dt><dd>La catégorie "
+"à laquelle ce message "
+"appartient.</dd><dt><code>!ip</code></dt><dd>L'adresse IP de "
+"l'utilisateur déclenchant le "
+"message.</dd><dt><code>!request_uri</code></dt><dd>L'URI "
+"demandé..</dd><dt><code>!referer</code></dt><dd>Le HTTP Referer, si "
+"disponible.</dd><dt><code>!uid</code></dt><dd>L'ID "
+"utilisateur.</dd><dt><code>!link</code></dt><dd>Un lien à associer "
+"avec le message.</dd><dt><code>!message</code></dt><dd>Le message à "
+"stocker dans le journal.</dd></dl>"
+msgid ""
+"External resources can be optimized automatically, which can reduce "
+"both the size and number of requests made to your website."
+msgstr ""
+"Les ressources externes peuvent être optimisées automatiquement, ce "
+"qui peut réduire à la fois la taille et le nombre de requêtes "
+"adressées à votre site web."
+msgid "A date in 'time-since' format. (%date)"
+msgstr "Une date dans le format \"temps depuis\". (%date)"
+msgid "The location of the file relative to Drupal root."
+msgstr "L'emplacement du fichier par rapport à la racine de Drupal."
+msgid ""
+"A translation of %title in %language already exists, a new %type will "
+"be created instead of a translation."
+msgstr ""
+"Une traduction de %title en %language existe déjà. Un(e) "
+"nouveau(elle) %type sera créé(e) — et non une nouvelle traduction."
+msgid "Your modules have been downloaded and updated."
+msgstr "Vos modules ont été téléchargés et mis à jour."
+msgid "<a href=\"@update\">Run database updates</a>"
+msgstr ""
+"<a href=\"@update\">Lancer les mises à jour de la base de "
+"données</a>"
+msgid ""
+"Permissions let you control what users can do and see on your site. "
+"You can define a specific set of permissions for each role. (See the "
+"<a href=\"@role\">Roles</a> page to create a role). Two important "
+"roles to consider are Authenticated Users and Administrators. Any "
+"permissions granted to the Authenticated Users role will be given to "
+"any user who can log into your site. You can make any role the "
+"Administrator role for the site, meaning this will be granted all new "
+"permissions automatically. You can do this on the <a "
+"href=\"@settings\">User Settings</a> page. You should be careful to "
+"ensure that only trusted users are given this access and level of "
+"control of your site."
+msgstr ""
+"Les permissions vous permettent de contrôler ce que les utilisateurs "
+"peuvent voir et faire sur votre site. Vous pouvez définir un ensemble "
+"spécifique de permissions pour chaque rôle. (Voir la page <a "
+"href=\"@role\">Rôles</a> pour créer un rôle. Deux rôles importants "
+"sont à considérer : les utilisateurs authentifiés et les "
+"administrateurs. Toutes les permissions accordées au rôle des "
+"utilisateurs authentifiés seront accordées à tous les utilisateurs "
+"qui se connecteront sur votre site. Tous les rôles peuvent avoir un "
+"rôle d'administrateur pour le site, cela signifie que toutes les "
+"nouvelles permissions lui seront accordées automatiquement. Vous "
+"pouvez le faire sur la page <a href=\"@settings\">de configuration des "
+"utilisateurs</a>. Vous devriez être prudent et vous assurer que seuls "
+"les utilisateurs en qui vous avez confiance obtiennent ce type "
+"d'accès et de contrôle de votre site."
+msgid ""
+"Roles allow you to fine tune the security and administration of "
+"Drupal. A role defines a group of users that have certain privileges "
+"as defined on the <a href=\"@permissions\">permissions page</a>. "
+"Examples of roles include: anonymous user, authenticated user, "
+"moderator, administrator and so on. In this area you will define the "
+"names and order of the roles on your site. It is recommended to order "
+"your roles from least permissive (anonymous user) to most permissive "
+"(administrator). To delete a role choose \"edit role\"."
+msgstr ""
+"Les rôles permettent de définir précisément la sécurité et "
+"l'administration de Drupal. Un rôle définit un groupe d'utilisateurs "
+"qui ont certains privilèges tels que définis dans la <a "
+"href=\"@permissions\">page des droits</a>. Par exemple&nbsp;: "
+"utilisateur anonyme, utilisateur authentifié, modérateur, "
+"administrateur, etc. Dans cette partie, vous pouvez définir les noms "
+"et l'ordre des rôles de votre site. Il est recommandé d'ordonner vos "
+"rôles du moins permissif (utilisateur anonyme) au plus permissif "
+"(administrateur). Pour supprimer un rôle, choisir \"éditer rôle\"."
+msgid ""
+"Use <em>articles</em> for time-sensitive content like news, press "
+"releases or blog posts."
+msgstr ""
+"Utilisez les <em>articles</em> pour des contenus possédant une "
+"temporalité tels que des actualités, des communiqués de presse ou "
+"des billets de blog."
+msgid "Translation update status"
+msgstr "Statut de mise à jour des traductions"
+msgid "Filipino"
+msgstr "Philippin"
+msgid "Swiss German"
+msgstr "Suisse allemand"
+msgid "Scots"
+msgstr "Écossais"
+msgid ""
+"The selected file %filename cannot be uploaded. Only files with the "
+"following extensions are allowed: %extensions."
+msgstr ""
+"Le fichier sélectionné %filename ne peut pas être transféré. "
+"Seulement les fichiers avec les extensions suivantes sont permis : "
+"%extensions."
+msgid "Current page"
+msgstr "Page actuelle"
+msgid "Highlighted"
+msgstr "Mis en évidence"
+msgid "Main background"
+msgstr "Arrière-plan principal"
+msgid "Sidebar background"
+msgstr "Arrière-plan de la barre latérale"
+msgid "Sidebar borders"
+msgstr "Bordures de la barre latérale"
+msgid "Footer background"
+msgstr "Arrière-plan du pied de page"
+msgid "Plum"
+msgstr "Prune"
+msgid "@module"
+msgstr "@module"
+msgid "!local-task-title!active"
+msgstr "!local-task-title!active"
+msgid ""
+"A space-separated list of HTML tags allowed in the content of feed "
+"items. Disallowed tags are stripped from the content."
+msgstr ""
+"Une liste -séparée par des espaces- de balises HTML autorisées dans "
+"le contenu des éléments de flux. Les balises non autorisées sont "
+"automatiquement supprimées du contenu."
+msgid "%field may only contain characters a-z, underscores, or hyphens."
+msgstr ""
+"%field ne peut contenir que les caractères de a-z, soulignement (_), "
+"ou des tirets (-)."
+msgid "%field cannot contain any markup."
+msgstr "%field ne peut pas contenir de balise."
+msgid "No URL aliases available. <a href=\"@link\">Add URL alias</a>."
+msgstr ""
+"Aucun alias d'URL disponible. <a href=\"@link\">Ajouter un alias "
+"d'URL</a>."
+msgid ""
+"To provide keyword searching, the search engine maintains an index of "
+"words found in the content and its fields, along with text added to "
+"your content by other modules (such as comments from the core Comment "
+"module, and taxonomy terms from the core Taxonomy module). To build "
+"and maintain this index, a correctly configured <a href=\"@cron\">cron "
+"maintenance task</a> is required. Users with <em>Administer "
+"search</em> permission can further configure the cron settings on the "
+"<a href=\"@searchsettings\">Search settings page</a>."
+msgstr ""
+"Pour permettre la recherche de mots, le moteur de recherche maintient "
+"un index des mots trouvés dans le contenu et ses champs, ainsi que "
+"ceux ajoutés au contenu par d'autres modules (comme les commentaires "
+"qui proviennent du module Comment inclut au core et les termes de "
+"taxonomie qui proviennent du module Taxonomy inclut au core). Pour "
+"construire ou mettre à jour cet index, une <a href=\"@cron\">tâche "
+"de maintenance Cron</a> correctement configurée est nécessaire. Les "
+"utilisateurs ayant la permission d'<em>Administration des "
+"recherche</em> pourront configurer les paramètres du cron sur la <a "
+"href=\"@searchsettings\">page de configuration du module Search</a>."
+msgid "Content reindexing"
+msgstr "Réindexation du contenu"
+msgid ""
+"Content-related actions on your site (creating, editing, or deleting "
+"content and comments) automatically cause affected content items to be "
+"marked for indexing or reindexing at the next cron run. When content "
+"is marked for reindexing, the previous content remains in the index "
+"until cron runs, at which time it is replaced by the new content. "
+"Unlike content-related actions, actions related to the structure of "
+"your site do not cause affected content to be marked for reindexing. "
+"Examples of structure-related actions that affect content include "
+"deleting or editing taxonomy terms, enabling or disabling modules that "
+"add text to content (such as Taxonomy, Comment, and field-providing "
+"modules), and modifying the fields or display parameters of your "
+"content types. If you take one of these actions and you want to ensure "
+"that the search index is updated to reflect your changed site "
+"structure, you can mark all content for reindexing by clicking the "
+"\"Re-index site\" button on the <a href=\"@searchsettings\">Search "
+"settings page</a>. If you have a lot of content on your site, it may "
+"take several cron runs for the content to be reindexed."
+msgstr ""
+"Les modifications sur le contenu de votre site (créer, éditer ou "
+"supprimer du contenu et des commentaires) ajoute automatiquement ces "
+"éléments comme étant à indexer ou à réindexer lors de la "
+"prochaine exécution du cron. Lorsqu'un contenu est marqué pour la "
+"réindexation, le contenu précédent reste dans l'index jusqu'à ce "
+"que cron s'exécute, après quoi il est remplacé par le nouveau "
+"contenu. Contrairement aux actions liées au contenu, les actions "
+"liées à la structure de votre site ne provoquent pas de "
+"réindexation du contenu concerné. Des actions liées à la structure "
+"qui influent sur le contenu sont par exemple supprimer ou éditer les "
+"termes de taxonomie, activer ou désactiver des modules qui ajoutent "
+"du texte au contenu (Taxonomy, Comment, et des modules fournissant des "
+"champs) et de modifier les champs ou les paramètres d'affichage de "
+"vos types de contenu. Si vous effectuez l'une de ces actions et que "
+"vous voulez faire en sorte que l'index de recherche soit mis à jour "
+"afin de refléter les changements, vous pouvez marquer tout le contenu "
+"pour réindexation en cliquant sur le bouton \"Réindexer le site\" "
+"sur la <a href=\"@searchsettings\">page des paramètres de "
+"recherche</a>. Si vous avez beaucoup de contenu sur votre site, cela "
+"peut prendre plusieurs exécutions du cron pour une réindexation "
+"complète."
+msgid ""
+"These options control the display settings for the %name theme. When "
+"your site is displayed using this theme, these settings will be used."
+msgstr ""
+"Ces options contrôlent les paramètres d'affichage du thème %name. "
+"Lorsque votre site utilisera ce thème, ces paramètres seront "
+"appliqués."
+msgid "Administer software updates"
+msgstr "Gérer la mise à jour logicielle"
+msgid ""
+"Enter a valid email address or use a token e-mail address such as "
+"%author."
+msgstr ""
+"Veuillez saisir une adresse de courriel valide ou utiliser un jeton "
+"d'adresse de courriel tel que %author."
+msgid "@required_name (Missing)"
+msgstr "@required_name (Manquant)"
+msgid "@required_name (Version @compatibility required)"
+msgstr "@required_name (Version @compatibility requise)"
+msgid "@name requires at least PHP @version."
+msgstr "@name requiert au minimum PHP @version."
+msgid "Unresolved dependency"
+msgstr "Dépendance non résolue"
+msgid "@name requires this module."
+msgstr "@name à besoin de ce module."
+msgid ""
+"@name requires this module and version. Currently using @required_name "
+"version @version"
+msgstr ""
+"@name requiert ce module et cette version. Vous utilisez actuellement "
+"@required_name version @version"
+msgid "Test message"
+msgstr "Message de test"
+msgid "Site details"
+msgstr "Détails du site"
+msgid ""
+"Handler @handler tried to add additional_field @identifier but @table "
+"could not be added!"
+msgstr ""
+"Le gestionnaire @handler a tenté d'ajouter le champ supplémentaire "
+"@identifier mais la table @table n'a pas pu être ajoutée !"
+msgid "Fill up single line"
+msgstr "Remplir une ligne"
+msgid "Title and slogan"
+msgstr "Titre et slogan"
+msgid "Firehouse"
+msgstr "Firehouse"
+msgid "Ice"
+msgstr "Glace"
+msgid ""
+"The database table prefix you have entered, %prefix, is invalid. The "
+"table prefix can only contain alphanumeric characters, periods, or "
+"underscores."
+msgstr ""
+"Le préfixe %prefix, saisi pour les tables de la base de données est "
+"incorrect. Le préfixe ne peut contenir que des caractères "
+"alphanumériques, des points, ou des tirets bas (_)."
+msgid "Default settings file"
+msgstr "Fichier de configuration par défaut"
+msgid "The default settings file does not exist."
+msgstr "Le fichier de configuration par défaut n'existe pas."
+msgid ""
+"The @drupal installer requires that the %default-file file not be "
+"modified in any way from the original download."
+msgstr ""
+"L'installeur @drupal exige que le fichier %default-file ne soit pas "
+"modifié par rapport à l'original téléchargé."
+msgid "Re-order rows by numerical weight instead of dragging."
+msgstr ""
+"Ré-ordonner les lignes avec des poids numériques plutôt qu'en les "
+"déplaçant."
+msgid "Show row weights"
+msgstr "Afficher le poids des lignes"
+msgid "Hide row weights"
+msgstr "Cacher le poids des lignes"
+msgid "Attempt to purge a field @field_name that still has instances."
+msgstr ""
+"Tentative de purger un champ @field_name qui possède encore des "
+"instances."
+msgid "%name: the value may be no less than %min."
+msgstr "%name: la valeur ne peut pas être inférieure à %min."
+msgid "%name: the value may be no greater than %max."
+msgstr "%name: la valeur ne peut pas être supérieure à %max."
+msgid "No fields have been defined yet."
+msgstr "Aucun champ n'a encore été défini."
+msgid "Weight for new field"
+msgstr "Poids du nouveau champ"
+msgid "Weight for added field"
+msgstr "Poids du champ ajouté"
+msgid "Custom display settings"
+msgstr "Paramètres d'affichage personnalisés"
+msgid "Use custom display settings for the following view modes"
+msgstr ""
+"Utiliser les paramètres d'affichage personnalisés pour les modes "
+"d'affichage suivants"
+msgid ""
+"The %view_mode mode now uses custom display settings. You might want "
+"to <a href=\"@url\">configure them</a>."
+msgstr ""
+"Le mode %view_mode utilise maintenant une configuration d'affichage "
+"personnalisée. Vous pouvez en <a href=\"@url\">modifier les "
+"paramètres ici</a>."
+msgid ""
+"Separate extensions with a space or comma and do not include the "
+"leading dot."
+msgstr ""
+"Séparer les extensions avec un espace ou une virgule sans inclure le "
+"point."
+msgid "Edit an existing effect within a style."
+msgstr "Modifier un effet existant sur un sytle."
+msgid "Delete an existing effect from a style."
+msgstr "Supprimer un effet existant sur un style."
+msgid "Node module element"
+msgstr "Élément du module Node"
+msgid "The shortcut set %name already exists. Choose another name."
+msgstr "L'ensemble de raccourcis %name existe déjà. Choisissez un autre nom."
+msgid "1 e-mail was sent during this test."
+msgid_plural "@count e-mails were sent during this test."
+msgstr[0] "@count courriel a été envoyé pendant ce test."
+msgstr[1] "@count courriels ont été envoyés pendant ce test."
+msgid ""
+"Available variables are: [site:name], [site:url], [user:name], "
+"[user:mail], [site:login-url], [site:url-brief], [user:edit-url], "
+"[user:one-time-login-url], [user:cancel-url]."
+msgstr ""
+"Les variables disponibles sont : [site:name], [site:url], [user:name], "
+"[user:mail], [site:login-url], [site:url-brief], [user:edit-url], "
+"[user:one-time-login-url], [user:cancel-url]."
+msgid "not yet assigned"
+msgstr "Pas encore assigné"
+msgid "not yet created"
+msgstr "Pas encore créé"
+msgid "Delete feed"
+msgstr "Supprimer le flux"
+msgid "None (original image)"
+msgstr "Aucun (image d'origine)"
+msgid "Configuration files"
+msgstr "Fichiers de configuration"
+msgid "%title has been updated."
+msgstr "%title a été mis à jour."
+msgid "Row class"
+msgstr "Classe de ligne"
+msgid "The URL of the account edit page."
+msgstr "L'URL de la page de modification du compte."
+msgid "Bulk update"
+msgstr "Mise à jour massive"
+msgid "Edit translations"
+msgstr "Modifier les traductions"
+msgid "UUID"
+msgstr "Identifiant universel unique (UUID)"
+msgid "Comment display"
+msgstr "Affichage des commentaires"
+msgid "Unknown content type"
+msgstr "Type de contenu inconnu"
+msgid "New field name"
+msgstr "Nom du nouveau champ"
+msgid "Never (manually)"
+msgstr "Jamais (manuellement)"
+msgid ""
+"The file %file could not be copied because a file by that name already "
+"exists in the destination directory."
+msgstr ""
+"Le fichier %file n'a pu être copié parce qu'un fichier avec ce nom "
+"existe déjà dans le répertoire de destination"
+msgid "File %file (%realpath) could not be copied because it does not exist."
+msgstr ""
+"Le fichier %file (%realpath) n'a pas pu être copié car il n'existe "
+"pas."
+msgid "File %file could not be copied because it would overwrite itself."
+msgstr ""
+"Le fichier %file n'a pas pu être copié car il s'écraserait "
+"lui-même."
+msgid "The specified file %file could not be copied to %destination."
+msgstr "Le fichier %file spécifié n'a pas pu être copié vers %destination."
+msgid ""
+"The data could not be saved because the destination %destination is "
+"invalid. This may be caused by improper use of file_save_data() or a "
+"missing stream wrapper."
+msgstr ""
+"Les données n'ont pas pu être sauvées car la destination "
+"%destination est invalide.. Ceci peut etre causé par une mauvaise "
+"utilisation de file_save_data() ou le manque d'un conteneur de stream."
+msgid ""
+"Your PHP configuration only supports a single database type, so it has "
+"been automatically selected."
+msgstr ""
+"Votre configuration PHP ne supporte qu'un type de base de données qui "
+"a donc automatiquement été sélectionné."
+msgid ""
+"Failed to connect to your database server. The server reports the "
+"following message: %error.<ul><li>Is the database server "
+"running?</li><li>Does the database exist, and have you entered the "
+"correct database name?</li><li>Have you entered the correct username "
+"and password?</li><li>Have you entered the correct database "
+"hostname?</li></ul>"
+msgstr ""
+"Échec de connexion au serveur de base de données. Le serveur a "
+"renvoyé le message suivant : %error.<ul><li>Est-ce que le serveur de "
+"base de données fonctionne ?</li><li>Est-ce que la base de données "
+"existe et avez-vous saisi le bon nom de base ?</li><li>Avez vous saisi "
+"les bons nom d'utilisateur et mot de passe ?</li><li>Avez vous saisi "
+"le bon nom d'hôte de la base de données ?</li></ul>"
+msgid "Exit block region demonstration"
+msgstr "Quitter la présentation des régions de blocs"
+msgid ""
+"In case of errors or problems with the site, the <a "
+"href=\"@dblog\">Recent log messages</a> page can be useful for "
+"debugging, since it shows the sequence of events. The log messages "
+"include usage information, warnings, and errors."
+msgstr ""
+"En cas d'erreurs ou problemes avec le site, les <a "
+"href=\"@dblog\">messages récents du journal</a> peuvent être utiles "
+"pour débugguer, depuis qu'il montre la séquence des évènements. "
+"Les messages du journal incluent des informations sur l'utilisation, "
+"des avertissements et des erreurs."
+msgid "Database log messages to keep"
+msgstr "Messages de journalisation de la base  à garder."
+msgid ""
+"The maximum number of messages to keep in the database log. Requires a "
+"<a href=\"@cron\">cron maintenance task</a>."
+msgstr ""
+"Nombre maximum de messages à conserver dans le journal. Nécessite "
+"l'<a href=\"@cron\">activation du planificateur de tâche (Cron)</a>."
+msgid "Recent log messages"
+msgstr "Entrées récentes du journal"
+msgid ""
+"Define a string that should be suffixed to the value, like ' m', ' "
+"kb/s'. Leave blank for none. Separate singular and plural values with "
+"a pipe ('pound|pounds')."
+msgstr ""
+"Défini une chaîne qui doit être suffixée par une valeur telle que "
+"'m ' ou 'kb/s'. Laisser vide pour ne rien ajouter. Séparer les "
+"valeurs singulier et pluriel avec un pipe, par exemple : "
+"('mètre|mètres')."
+msgid "Thousand marker"
+msgstr "Marqueur des milliers"
+msgid "Display prefix and suffix."
+msgstr "Afficher le préfixe et le suffixe."
+msgid "Display with prefix and suffix."
+msgstr "Afficher avec le préfixe et le suffixe"
+msgid "- Select a value -"
+msgstr "- Choisir une valeur -"
+msgid "Trim length"
+msgstr "Longueur de coupe"
+msgid "No field is displayed."
+msgstr "Aucun champ n'est affiché."
+msgid "No field is hidden."
+msgstr "Aucun champ n'est caché."
+msgid "Format settings:"
+msgstr "Paramètres de format:"
+msgid "The file used in the !name field may not be referenced."
+msgstr ""
+"Le fichier utilisé dans le champ !name ne peut pas être "
+"référencé."
+msgid ""
+"Text formats are presented on content editing pages in the order "
+"defined on this page. The first format available to a user will be "
+"selected by default."
+msgstr ""
+"Les formats de texte sont présentés sur les pages d'édition de "
+"contenu dans l'ordre défini sur cette page. Le premier format "
+"disponible pour l'utilisateur sera sélectionné par défaut."
+msgid "Missing text format: %format."
+msgstr "Format de texte manquant : %format."
+msgid "Link image to"
+msgstr "Lier l'image à"
+msgid "Image style: @style"
+msgstr "Style d'image : @style"
+msgid "Linked to content"
+msgstr "Lié au contenu"
+msgid "Linked to file"
+msgstr "Lié au fichier"
+msgid "Shown when hovering over the menu link."
+msgstr "S'affiche au survol du lien du menu."
+msgid ""
+"The menu module allows on-the-fly creation of menu links in the "
+"content authoring forms. To configure these settings for a particular "
+"content type, visit the <a href=\"@content-types\">Content types</a> "
+"page, click the <em>edit</em> link for the content type, and go to the "
+"<em>Menu settings</em> section."
+msgstr ""
+"Le module menu permet la création à la volée de liens dans le menu "
+"à partir des formulaires de création de contenu. Pour configurer ces "
+"paramètres pour un type de contenu particulier, visiter la page <a "
+"href=\"@content-types\">Types de contenu</a>, cliquer sur le lien "
+"<em>editer</em> du type de contenu et aller dans la section "
+"<em>Paramètres du menu</em>."
+msgid ""
+"Format: %time. The date format is YYYY-MM-DD and %timezone is the time "
+"zone offset from UTC. Leave blank to use the time of form submission."
+msgstr ""
+"Format&nbsp;: %time. Le format de date est AAAA-MM-JJ et %timezone est "
+"le fuseau horaire à partir de l'UTC. Laisser vide pour utiliser la "
+"date de soumission du formulaire."
+msgid "Administrative overlay"
+msgstr "Premier plan (overlay) administratif"
+msgid "Use the overlay for administrative pages."
+msgstr "Utiliser le premier plan (overlay) pour les pages d'administration."
+msgid "Show administrative pages on top of the page you started from."
+msgstr "Afficher les écrans d'administration dans la page en cours (overlay)."
+msgid "Choose which search modules are active from the available modules."
+msgstr ""
+"Choisir quels modules de recherche sont actifs parmi les modules "
+"disponibles"
+msgid "Default search module"
+msgstr "Module de recherche par défaut"
+msgid "Choose which search module is the default."
+msgstr "Choisir le module de recherche par défaut."
+msgid "Your default search module is not selected as an active module."
+msgstr ""
+"Votre module de recherche par défaut n'est pas défini comme module "
+"activé."
+msgid "Search is currently disabled."
+msgstr "La recherche est actuellement désactivée."
+msgid "... !excerpt ... !excerpt ..."
+msgstr "... !excerpt ... !excerpt ..."
+msgid "Syslog identity"
+msgstr "Identité Syslog"
+msgid ""
+"A string that will be prepended to every message logged to Syslog. If "
+"you have multiple sites logging to the same Syslog log file, a unique "
+"identity per site makes it easy to tell the log entries apart."
+msgstr ""
+"Une chaîne qui sera ajoutée devant chaque message enregistré sur "
+"Syslog. Si vous avez plusieurs sites écrivant dans le même fichier "
+"Syslog, un identifiant unique par site facilite la lecture des logs."
+msgid "Error pages"
+msgstr "Pages d'erreur"
+msgid "The path '%path' is either invalid or you do not have access to it."
+msgstr ""
+"Le chemin '%path' est invalide ou vous n'avez pas le droit d'y "
+"accéder."
+msgid "Last run: %cron-last ago."
+msgstr "Dernière exécution&nbsp;: il y a %cron-last"
+msgid "Run cron every"
+msgstr "Lancer les tâches planifiées (cron) toutes les"
+msgid ""
+"In order for the site and its modules to continue to operate well, a "
+"set of routine administrative operations must run on a regular basis. "
+"The System module manages this task by making use of a system cron "
+"job. You can verify the status of cron tasks by visiting the <a "
+"href=\"@status\">Status report page</a>. For more information, see the "
+"online handbook entry for <a href=\"@handbook\">configuring cron "
+"jobs</a>. You can set up cron job by visiting <a href=\"@cron\">Cron "
+"configuration</a> page"
+msgstr ""
+"Afin que le site et ses modules continuent de fonctionner "
+"correctement, un ensemble d'opérations administratives récurrentes "
+"doivent être exécutées de façon régulière. Le module System "
+"gère cette tâche en utilisant le planificateur de tâches (cron). "
+"Vous pouvez vérifier le statut des tâches planifiées (cron) en "
+"visitant la <a href=\"@status\">page Tableau de bord "
+"d'administration</a>. Pour plus d'informations, voir la page <a "
+"href=\"@handbook\">configuration du planificateur de tâches "
+"(cron)</a>."
+msgid ""
+"Change site name, e-mail address, slogan, default front page, and "
+"number of posts per page, error pages."
+msgstr ""
+"Changer le nom du site, l'adresse de courriel, le slogan, la page "
+"d'accueil par défaut, le nombre de contributions par page et les "
+"pages d'erreur."
+msgid "Manage automatic site maintenance tasks."
+msgstr "Gérer les tâches de maintenance automatique du site."
+msgid "Weight for added term"
+msgstr "Poids du terme ajouté"
+msgid "View mode"
+msgstr "Mode d'affichage"
+msgid "Save and publish"
+msgstr "Enregistrer et publier"
+msgid "Holy See (Vatican City State)"
+msgstr "Vatican"
+msgid "Iran, Islamic Republic of"
+msgstr "Iran (Rép. Islamique d')"
+msgid "The settings file is writable."
+msgstr "Le fichier de configuration est accessible en écriture."
+msgid "The settings file is owned by the web server."
+msgstr "Le fichier de configuration appartient au serveur web."
+msgid ""
+"The @drupal installer failed to create a settings file with proper "
+"file ownership. Log on to your web server, remove the existing %file "
+"file, and create a new one by copying the %default_file file to %file. "
+"More details about installing Drupal are available in <a "
+"href=\"@install_txt\">INSTALL.txt</a>. If you have problems with the "
+"file permissions on your server, consult the <a "
+"href=\"@handbook_url\">online handbook</a>."
+msgstr ""
+"L'installateur @drupal a échoué lors de la création d'un fichier de "
+"paramétrage avec les permissions d'accès adéquates. Connectez-vous "
+"à votre serveur web, supprimez le fichier %file existant, et créez "
+"un nouveau fichier en copiant le fichier %default_file vers %file. "
+"Plus de détails sur l'installation de Drupal sont disponibles dans le "
+"fichier <a href=\"@install_txt\">INSTALL.txt</a>. Si vous avez des "
+"problèmes avec les permissions des fichiers sur votre serveur, "
+"consulter le <a href=\"@handbook_url\">manuel en ligne</a>."
+msgid "Invalid merge query: no conditions"
+msgstr "Requête de fusion invalide : aucune condition"
+msgid "Weight for @block block"
+msgstr "Poids du bloc @block"
+msgid "Region for @block block"
+msgstr "Région du bloc @block"
+msgid "Comment approval"
+msgstr "Approbation de commentaire"
+msgid ""
+"Comments from users who have the <em>Skip comment approval</em> "
+"permission are published immediately. All other comments are placed in "
+"the <a href='@comment-approval'>Unapproved comments</a> queue, until a "
+"user who has permission to <em>Administer comments</em> publishes or "
+"deletes them. Published comments can be bulk managed on the <a "
+"href='@admin-comment'>Published comments</a> administration page."
+msgstr ""
+"Les commentaires des utilisateurs qui ont le droit <em>sauter "
+"l'approbation des commentaires</em> sont publiés immédiatement. Tous "
+"les autres commentaires sont placés dans la file d'attente des <a "
+"href='@comment-approval'>Commentaires non approuvés</a> jusqu'à ce "
+"qu'un utilisateur qui dispose du droit <em>Administrer les "
+"commentaires</em> les publie ou les supprime. Les commentaires "
+"publiés peuvent être gérés en masse à partir de la page "
+"d'administration des <a href='@admin-comment'>Commentaires "
+"publiés</a>."
+msgid "Post comments"
+msgstr "Poster des commentaires"
+msgid "Skip comment approval"
+msgstr "Sauter l'approbation des commentaires"
+msgid "Are you sure you want to disable the text format %format?"
+msgstr "Êtes-vous sûr de vouloir désactiver le format de texte %format?"
+msgid ""
+"Disabled text formats are completely removed from the administrative "
+"interface, and any content stored with that format will not be "
+"displayed. This action cannot be undone."
+msgstr ""
+"Les formats de texte désactivés sont complètement retirés de "
+"l'interface d'administration et tout contenu enregistré avec ce "
+"format ne sera pas affiché. Cette action ne pourra pas être "
+"annulée."
+msgid "Disabled text format %format."
+msgstr "Format de texte %format désactivé."
+msgid "Text Formats"
+msgstr "Formats de texte"
+msgid "Disable text format"
+msgstr "Désactiver le format de texte"
+msgid "Hot topic, new comments"
+msgstr "Sujet actif, nouveaux commentaires"
+msgid "Hot topic"
+msgstr "Sujet actif"
+msgid "Normal topic"
+msgstr "Sujet normal"
+msgid "Closed topic"
+msgstr "Sujet fermé"
+msgid "Reference for usage, configuration, and modules."
+msgstr "Référence pour l'utilisation, la configuration et les modules."
+msgid ""
+"The RDF module enriches your content with metadata to let other "
+"applications (e.g., search engines, aggregators, and so on) better "
+"understand its relationships and attributes. This semantically "
+"enriched, machine-readable output for Drupal sites uses the <a "
+"href=\"@rdfa\">RDFa specification</a> which allows RDF data to be "
+"embedded in HTML markup. Other modules can define mappings of their "
+"data to RDF terms, and the RDF module makes this RDF data available to "
+"the theme. The core Drupal modules define RDF mappings for their data "
+"model, and the core Drupal themes output this RDF metadata information "
+"along with the human-readable visual information. For more "
+"information, see the online handbook entry for <a href=\"@rdf\">RDF "
+"module</a>."
+msgstr ""
+"Le module RDF enrichit votre contenu avec des métadonnées permettant "
+"à d'autres applications (par ex. : moteurs de recherche, "
+"agrégateurs, etc.) de mieux comprendre ses relations et attributs. "
+"Enrichie sémantiquement et lisible par des systèmes, cette "
+"information produite par les sites Drupal utilise la <a "
+"href=\"@rdfa\">spécification RDFa</a> qui permet aux données RDF "
+"d'être incluses dans le balisage HTML. D'autres modules peuvent "
+"définir des correspondances entre leurs données et des termes RDF, "
+"le module RDF rend alors ces données RDF disponibles pour le thème. "
+"Les modules du cœur de Drupal définissent des correspondances RDF "
+"pour leurs modèles de données, les thèmes du cœur de Drupal "
+"génèrent ces métadonnées RDF ainsi que les informations lisibles "
+"par l'utilisateur. Pour plus d'informations, consulter la section du "
+"manuel en ligne sur le <a href=\"@rdf\">module RDF</a>."
+msgid "Current URL is @url."
+msgstr "L'URL actuelle est @url."
+msgid "Page title @actual is equal to @expected."
+msgstr "Le titre de la page @actual est égal à @expected."
+msgid "Page title @actual is not equal to @unexpected."
+msgstr "Le titre de la page @actual n'est pas égual à @unexpected"
+msgid "HTTP response not expected !code, actual !curl_code"
+msgstr "Réponse HTTP non attendue !code, actuel : !curl_code"
+msgid "Configure @module permissions"
+msgstr "Configurer les droits pour @module"
+msgid "Select and configure your themes."
+msgstr "Choisir et configurer vos thèmes."
+msgid "Administer settings."
+msgstr "Administrer les paramètres."
+msgid "View reports, updates, and errors."
+msgstr "Voir les rapports, les mises à jour et les erreurs."
+msgid "Install new module or theme"
+msgstr "Installer un nouveau module ou thème"
+msgid "Install new module"
+msgstr "Installer un nouveau module"
+msgid "Install new theme"
+msgstr "Installer un nouveau thème"
+msgid "Manage user accounts, roles, and permissions."
+msgstr "Gérer les comptes utilisateurs, les rôles et les droits."
+msgid "Nothing"
+msgstr "Rien"
+msgid "Lolspeak"
+msgstr "Lolspeak"
+msgid "%type: !message in %function (line %line of %file)."
+msgstr "%type : !message dans %function (ligne %line dans %file)."
+msgid "Update @title"
+msgstr "Mettre à jour @title"
+msgid ""
+"A unique machine-readable name. Can only contain lowercase letters, "
+"numbers, and underscores."
+msgstr ""
+"Un nom unique compréhensible par une machine. Peut seulement contenir "
+"des lettres minuscules, chiffres, et tirets-bas (_)."
+msgid "The machine-readable name must contain unique characters."
+msgstr "Le nom système doit être unique."
+msgid ""
+"The machine-readable name must contain only lowercase letters, "
+"numbers, and hyphens."
+msgstr ""
+"Le nom compréhensible par une machine ne doit contenir que des "
+"lettres minuscules, chiffres, et traits d'union."
+msgid "The machine-readable name is already in use. It must be unique."
+msgstr "Le nom système est déjà utilisé. Il doit être unique."
+msgid "Asturian"
+msgstr "Asturien"
+msgid "Haitian Creole"
+msgstr "Créole haïtien"
+msgid "Weight for @title"
+msgstr "Poids pour @title"
+msgid "Weight for row @number"
+msgstr "Poids pour la ligne @number"
+msgid "Parent for @title"
+msgstr "Parent de @title"
+msgid "New field label"
+msgstr "Étiquette du nouveau champ"
+msgid "Parent for new field"
+msgstr "Parent du nouveau champ"
+msgid "Type of new field"
+msgstr "Type du nouveau champ"
+msgid "Widget for new field"
+msgstr "Widget du nouveau champ"
+msgid "Existing field label"
+msgstr "Étiquette du champ existant"
+msgid "Parent for existing field"
+msgstr "Parent du champ existant"
+msgid "Existing field to share"
+msgstr "Champ existant à partager"
+msgid "Widget for existing field"
+msgstr "Widget pour le champ existant"
+msgid "Label display for @title"
+msgstr "Étiquette affichée pour @title"
+msgid "Formatter for @title"
+msgstr "Mise en forme pour @title"
+msgid "Parents for @title"
+msgstr "Parents pour @title"
+msgid "Visibility for @title"
+msgstr "Visibilité de @title"
+msgid ""
+"There is data for this field in the database. The field settings can "
+"no longer be changed."
+msgstr ""
+"Il y a des données pour ce champ en base de données. Les paramètres "
+"de ce champ ne peuvent plus être modifiés."
+msgid "Weight for new file"
+msgstr "Poids du nouveau fichier"
+msgid "Choose a file"
+msgstr "Choisir un fichier"
+msgid "Weight for new effect"
+msgstr "Poids du nouvel effet"
+msgid "Enable @title menu link"
+msgstr "Activer le lien de menu @title"
+msgid ""
+"A unique name to construct the URL for the menu. It must only contain "
+"lowercase letters, numbers and hyphens."
+msgstr ""
+"Un nom unique pour construire l'URL du menu. Il ne doit contenir que "
+"des lettres minuscules, des nombres et des tirets."
+msgid ""
+"A unique machine-readable name for this content type. It must only "
+"contain lowercase letters, numbers, and underscores. This name will be "
+"used for constructing the URL of the %node-add page, in which "
+"underscores will be converted into hyphens."
+msgstr ""
+"Un nom unique compréhensible par une machine pour ce type de contenu. "
+"Peut seulement contenir des lettres minuscules, chiffres, et "
+"tirets-bas (_). Ce nom sera utilisé pour construire l'URL de la page "
+"%node_add, dans laquelle tirets-bas (_) sera converti en tiret (-)."
+msgid "Active modules"
+msgstr "Modules actifs"
+msgid "@original_title (@parent_title)"
+msgstr "@original_title (@parent_title)"
+msgid ""
+"Your web server does not appear to support PDO (PHP Data Objects). Ask "
+"your hosting provider if they support the native PDO extension. See "
+"the <a href=\"@link\">system requirements</a> page for more "
+"information."
+msgstr ""
+"Votre serveur web ne semble pas supporter PDO (PHP Data Objects). "
+"Demander à votre hébergeur s'il supporte l'extension native PDO. "
+"Voir la <a href=\"@link\">page des pré-requis système</a> pour plus "
+"d'informations."
+msgid "View: !view"
+msgstr "Vue : !view"
+msgid ""
+"The database version %version is less than the minimum required "
+"version %minimum_version."
+msgstr ""
+"La version de la base de données %version est antérieure à la "
+"version minimale requise %minimum_version."
+msgid "!theme (default theme)"
+msgstr "!theme (thème par défaut)"
+msgid "!theme (administration theme)"
+msgstr "!theme (thème pour l'administration)"
+msgid "URL fallback"
+msgstr "URL de remplacement"
+msgid "Use an already detected language for URLs if none is found."
+msgstr ""
+"Utiliser une langue déjà détecté des URLs si aucune langue n'est "
+"trouvé."
+msgid "%type_name: Create new content"
+msgstr "%type_name&nbsp;: Créer un nouveau contenu"
+msgid "%type_name: Edit own content"
+msgstr "%type_name&nbsp;: Modifier son propre contenu"
+msgid "%type_name: Edit any content"
+msgstr "%type_name&nbsp;: Modifier n'importe quel contenu"
+msgid "%type_name: Delete own content"
+msgstr "%type_name&nbsp;: Supprimer son propre contenu"
+msgid "%type_name: Delete any content"
+msgstr "%type_name&nbsp;: Supprimer n'importe quel contenu"
+msgid ""
+"The message has been dismissed. You can change your overlay settings "
+"at any time by visiting your profile page."
+msgstr ""
+"Le message a été retiré. Vous pouvez changer votre configuration du "
+"premier plan (overlay) à n'importe quel moment en visitant votre page "
+"de profil."
+msgid ""
+"If you have problems accessing administrative pages on this site, "
+"disable the overlay on your profile page."
+msgstr ""
+"Si vous avez des problèmes pour accéder aux pages d'administration "
+"du site, désactiver le premier plan (overlay) dans votre profil."
+msgid "Dismiss this message."
+msgstr "Ignorer ce message."
+msgid "Human-readable name"
+msgstr "Nom affiché"
+msgid "Next steps"
+msgstr "Étapes suivantes"
+msgid "@driver_name settings"
+msgstr "Paramètres de @driver_name"
+msgid "MySQL, MariaDB, or equivalent"
+msgstr "MySQL, MariaDB ou équivalent"
+msgid "SQLite"
+msgstr "SQLite"
+msgid "Database file"
+msgstr "Fichier de base de données"
+msgid ""
+"The absolute path to the file where @drupal data will be stored. This "
+"must be writable by the web server and should exist outside of the web "
+"root."
+msgstr ""
+"Le chemin absolu des fichiers où les données @drupal seront "
+"enregistrées. Ce répertoire doit être accessible en écriture par "
+"le serveur web et devrait se trouver en dehors du répertoire racine "
+"du serveur web."
+msgid "Autocomplete popup"
+msgstr "Popup d'auto-complétion"
+msgid "Searching for matches..."
+msgstr "Recherche de correspondances..."
+msgid ""
+"The Field module allows custom data fields to be defined for "
+"<em>entity</em> types (entities include content items, comments, user "
+"accounts, and taxonomy terms). The Field module takes care of storing, "
+"loading, editing, and rendering field data. Most users will not "
+"interact with the Field module directly, but will instead use the <a "
+"href=\"@field-ui-help\">Field UI module</a> user interface. Module "
+"developers can use the Field API to make new entity types "
+"\"fieldable\" and thus allow fields to be attached to them. For more "
+"information, see the online handbook entry for <a "
+"href=\"@field\">Field module</a>."
+msgstr ""
+"Le module Field permet de personnaliser des champs de données devant "
+"être définis pour les types d'<em>entités</em> (les entités "
+"incluent les éléments de contenu, les commentaires, les comptes "
+"utilisateur et les termes de taxonomie.). Le module Field s'occupe de "
+"l'enregistrement, le chargement, l'édition et le rendu des données "
+"des champs. La plupart des utilisateurs n'agiront pas directement sur "
+"le module Field mais utiliseront plutôt l'interface utilisateur du <a "
+"href=\"@field-ui-help\">module Field UI</a>. Les dévelopeurs de "
+"modules peuvent utiliser la Field API pour créer de nouveaux types "
+"d'entités \"fieldables\" ce qui permet de leur attacher des champs. "
+"Pour plus d'information, voir <a href=\"@field\">Field module</a> dans "
+"la documentation en ligne."
+msgid "No fields are present yet."
+msgstr "Aucun champ n'est encore présent."
+msgctxt "Font weight"
+msgid "Strong"
+msgstr "Gras"
+msgid ""
+"After you create an image style, you can add effects: crop, scale, "
+"resize, rotate, and desaturate (other contributed modules provide "
+"additional effects). For example, by combining effects as crop, scale, "
+"and desaturate, you can create square, grayscale thumbnails."
+msgstr ""
+"Après avoir créé un style d'image, vous pouvez ajouter des effets : "
+"recadrer, agrandir, redimensionner, désaturer, faire pivoter "
+"(d'autres modules peuvent rajouter des effets supplémentaires). Par "
+"exemple, en combinant les effets comme recadrer, agrandir et "
+"désaturer vous pouvez créer des miniatures carrés en niveau de "
+"gris."
+msgid "Uninstall @module module"
+msgstr "Désinstaller le module @module"
+msgid "Aggregate JavaScript files."
+msgstr "Agréger les fichiers JavaScript."
+msgid ""
+"To uninstall @module, the following module must be uninstalled first: "
+"@required_modules"
+msgid_plural ""
+"To uninstall @module, the following modules must be uninstalled first: "
+"@required_modules"
+msgstr[0] ""
+"Pour désinstaller @module, le module suivant doit être désinstallé "
+"au préalable : @required_modules"
+msgstr[1] ""
+"Pour désinstaller @module, les modules suivants doivent être "
+"désinstallés au préalable : @required_modules"
+msgid "Enable newly added modules"
+msgstr "Activer les modules récemment ajoutés"
+msgid "Enable newly added themes"
+msgstr "Activer les thèmes récemment ajoutés"
+msgid ""
+"The uninstall process removes all data related to a module. To "
+"uninstall a module, you must first disable it on the main <a "
+"href=\"@modules\">Modules page</a>."
+msgstr ""
+"Le processus de désinstallation retire toutes les données relatives "
+"au module. Pour désinstaller un module, vous devez d'abord le "
+"désactiver dans la page <a href=\"@modules\">Modules</a>."
+msgid "View the administration theme"
+msgstr "Voir le thème d'administration"
+msgid ""
+"This is only used when the site is configured to use a separate "
+"administration theme on the <a href=\"@appearance-url\">Appearance</a> "
+"page."
+msgstr ""
+"Seulement utilisé quand le site est configuré pour utiliser un "
+"thème d'administration dédié sur la <a "
+"href=\"@appearance-url\">page de configuration de l'apparence</a>."
+msgid "Database system"
+msgstr "Système de base de données"
+msgid "Database system version"
+msgstr "Version du système de base de données"
+msgid "Indexed %count content items for tracking."
+msgstr "%count contenus indexés pour le suivi."
+msgid "Release notes for @project_title"
+msgstr "Notes de version pour @project_title"
+msgid "The role settings have been updated."
+msgstr "Les paramètres des rôles ont été mis à jour."
+msgid "Disable the account and keep its content."
+msgstr "Désactiver le compte et garder son contenu."
+msgid "Disable the account and unpublish its content."
+msgstr "Désactiver le compte et dépublier son contenu"
+msgid ""
+"Delete the account and make its content belong to the %anonymous-name "
+"user."
+msgstr ""
+"Supprimer le compte et attribuer son contenu à l'utilisateur "
+"%anonymous-name."
+msgid "Delete the account and its content."
+msgstr "Supprimer le compte et son contenu"
+msgid "Display on user registration form."
+msgstr "Afficher sur le formulaire d'enregistrement d'un utilisateur."
+msgid "This is compulsory for 'required' fields."
+msgstr "C'est obligatoire pour les champs 'requis'."
+msgid "Hash"
+msgstr "Hachage"
+msgid "Fixed value"
+msgstr "Valeur fixe"
+msgid "Old"
+msgstr "Ancien"
+msgid "Deleted 1 comment."
+msgid_plural "Deleted @count comments."
+msgstr[0] "1 commentaire supprimé."
+msgstr[1] "@count commentaires supprimés."
+msgid "Use field label instead of the \"On value\" as label"
+msgstr "Utiliser l'étiquette du champ au lieu de l'étiquette \"Par valeur\""
+msgid "Deleted 1 post."
+msgid_plural "Deleted @count posts."
+msgstr[0] "1 contribution effacée."
+msgstr[1] "@count contributions effacées"
+msgid "tracker"
+msgstr "suivi"
+msgid ""
+"Automatic updating of Drupal core is not supported. See the <a "
+"href=\"@upgrade-guide\">upgrade guide</a> for information on how to "
+"update Drupal core manually."
+msgstr ""
+"La mise à jour automatique du cœur de Drupal n'est pas supportée. "
+"Référez-vous au <a href=\"@upgrade-guide\">guide de mise à jour</a> "
+"pour obtenir des informations sur la façon de mettre à jour le cœur "
+"de Drupal manuellement."
+msgid ""
+"%archive_file contains a version of %names that is not compatible with "
+"Drupal !version."
+msgid_plural ""
+"%archive_file contains versions of modules or themes that are not "
+"compatible with Drupal !version: %names"
+msgstr[0] ""
+"%archive_file contient une version de %names qui est incompatible avec "
+"Drupal !version."
+msgstr[1] ""
+"%archive_file contient des versions de modules ou thèmes qui sont "
+"incompatible avec Drupal !version : %names"
+msgid ""
+"The %setting setting is currently set to '%current_value', but needs "
+"to be '%needed_value'. Change this by running the following query: "
+"!query"
+msgstr ""
+"Le réglage %setting est actuellement défini sur '%current_value', "
+"mais a besoin d'être '%needed_value'. Changez cela en exécutant la "
+"requête suivante : !query"
+msgid "List (integer)"
+msgstr "Liste (entier)"
+msgid ""
+"This field stores integer values from a list of allowed 'value => "
+"label' pairs, i.e. 'Lifetime in days': 1 => 1 day, 7 => 1 week, 31 => "
+"1 month."
+msgstr ""
+"Ce champ enregistre des entiers depuis une liste de valeurs pairées "
+"autorisées. Exemple : 'Lifetime in days': 1 => 1 day, 7 => 1 week, 31 "
+"=> 1 month."
+msgid "List (float)"
+msgstr "Liste (réel à virgule flottante)"
+msgid ""
+"This field stores float values from a list of allowed 'value => label' "
+"pairs, i.e. 'Fraction': 0 => 0, .25 => 1/4, .75 => 3/4, 1 => 1."
+msgstr ""
+"Ce champ enregistre des valeurs décimales depuis une liste de valeurs "
+"pairées autorisées. Exemple : 'Fraction': 0 => 0, .25 => 1/4, .75 => "
+"3/4, 1 => 1."
+msgid ""
+"This field stores text values from a list of allowed 'value => label' "
+"pairs, i.e. 'US States': IL => Illinois, IA => Iowa, IN => Indiana."
+msgstr ""
+"Ce champ enregistre les valeurs de texte depuis une liste de valeurs "
+"pairées autorisées 'valeur => étiquette'. Exemple : 'US States': IL "
+"=> Illinois, IA => Iowa, IN => Indiana."
+msgid ""
+"The possible values this field can contain. Enter one value per line, "
+"in the format key|label."
+msgstr ""
+"Valeurs possibles que ce champ peut contenir. Entrez une valeur par "
+"ligne, dans le format clef|étiquette."
+msgid ""
+"The key is the stored value, and must be numeric. The label will be "
+"used in displayed values and edit forms."
+msgstr ""
+"La clef est une valeur enregistrée, et doit être numérique. "
+"L'étiquette sera utilisée dans les valeurs affichées et les "
+"formulaires d'édition."
+msgid ""
+"The label is optional: if a line contains a single number, it will be "
+"used as key and label."
+msgstr ""
+"L'étiquette est optionnelle : si une ligne contient un nombre seul, "
+"il sera utilisé comme clef et étiquette."
+msgid ""
+"Lists of labels are also accepted (one label per line), only if the "
+"field does not hold any values yet. Numeric keys will be automatically "
+"generated from the positions in the list."
+msgstr ""
+"Les liste d'étiquettes sont aussi acceptées (une étiquette par "
+"ligne), seulement si les champs ne contiennent pas de valeur "
+"actuellement. Les clefs numériques seront automatiquement générées "
+"depuis la position dans la liste."
+msgid ""
+"The key is the stored value. The label will be used in displayed "
+"values and edit forms."
+msgstr ""
+"La clef est la valeur enregistrée. L'étiquette sera utilisée dans "
+"les valeurs affichées et les formulaires d'édition."
+msgid ""
+"The label is optional: if a line contains a single string, it will be "
+"used as key and label."
+msgstr ""
+"L'étiquette est optionnelle : si une ligne contient une phrase "
+"simple, elle sera utilisée comme clef et étiquette."
+msgid "Allowed values list: invalid input."
+msgstr "Liste des valeurs autorisées : entrée invalide."
+msgid ""
+"Allowed values list: some values are being removed while currently in "
+"use."
+msgstr ""
+"Liste des valeurs autorisées : certaines valeurs sont sur le point "
+"d'être retirées alors qu'elles sont actuellement utilisées."
+msgid "Cannot update a list field to not include keys with existing data."
+msgstr ""
+"Ne peut pas mettre à jour un champ liste qui ne contient pas de clefs "
+"avec des données existantes."
+msgid "Administer templates"
+msgstr "Administrer les gabarits"
+msgid ""
+"Failed to connect to the server. The server reports the following "
+"message: !message For more help installing or updating code on your "
+"server, see the <a href=\"@handbook_url\">handbook</a>."
+msgstr ""
+"Échec de la connexion au serveur. Le serveur a renvoyé le message "
+"suivant : !message Pour une aide supplémentaire sur l'installation ou "
+"la mise à jour du code sur votre serveur, consultez le <a "
+"href=\"@handbook_url\">manuel</a>."
+msgid "Unable to parse info file: %info_file."
+msgstr "Impossible d'analyser (parser) le fichier info : %info_file"
+msgid "The info file (%info_file) does not define a 'name' attribute."
+msgstr "Le fichier info (%info_file) ne définit pas d'attribut 'name'."
+msgid ""
+"The testing framework requires the PHP memory limit to be at least "
+"%memory_minimum_limit. The current value is %memory_limit. <a "
+"href=\"@url\">Follow these steps to continue</a>."
+msgstr ""
+"Le framework de test nécessite que la limite mémoire de PHP soit au "
+"moins de %memory_minimum_limit. La valeur actuelle est de  "
+"%memory_limit. <a href=\"@url\">Suivez ces étapes pour continuer</a>."
+msgid ""
+"You can find <a href=\"@module_url\">modules</a> and <a "
+"href=\"@theme_url\">themes</a> on <a "
+"href=\"@drupal_org_url\">drupal.org</a>. The following file extensions "
+"are supported: %extensions."
+msgstr ""
+"Vous pouvez trouver des <a href=\"@module_url\">modules</a> et des <a "
+"href=\"@theme_url\">thèmes</a> sur <a "
+"href=\"@drupal_org_url\">drupal.org</a>. Les extensions suivantes sont "
+"supportées : %extensions."
+msgid ""
+"Your server does not support updating modules and themes from this "
+"interface. Instead, update modules and themes by uploading the new "
+"versions directly to the server, as described in the <a "
+"href=\"@handbook_url\">handbook</a>."
+msgstr ""
+"Votre serveur ne supporte pas la mise à jour des modules et thèmes "
+"depuis cette interface. À la place, mettez à jour les modules et "
+"thèmes en transférant les nouvelles versions directement sur le "
+"serveur comme décrit dans le <a href=\"@handbook_url\">manuel</a>."
+msgid ""
+"Your server does not support installing modules and themes from this "
+"interface. Instead, install modules and themes by uploading them "
+"directly to the server, as described in the <a "
+"href=\"@handbook_url\">handbook</a>."
+msgstr ""
+"Votre serveur ne supporte pas la l'installation des modules et thèmes "
+"depuis cette interface. À la place, installer les modules et thèmes "
+"en les transférant directement sur le serveur comme décrit dans le "
+"<a href=\"@handbook_url\">manuel</a>."
+msgid ""
+"Updating modules and themes requires <strong>@backends access</strong> "
+"to your server. See the <a href=\"@handbook_url\">handbook</a> for "
+"other update methods."
+msgid_plural ""
+"Updating modules and themes requires access to your server via one of "
+"the following methods: <strong>@backends</strong>. See the <a "
+"href=\"@handbook_url\">handbook</a> for other update methods."
+msgstr[0] ""
+"La mise à jour des modules et thèmes requiert un <strong>accès "
+"@backends</strong> à votre serveur. Voir le <a "
+"href=\"@handbook_url\">manuel</a> pour les autres méthodes de mises "
+"à jour."
+msgstr[1] ""
+"La mise à jour des modules et thèmes requiert l'accès à votre "
+"serveur par l'une des méthodes suivantes : "
+"<strong>@backends</strong>. Voir le <a "
+"href=\"@handbook_url\">manuel</a> pour les autres méthodes de mises "
+"à jour."
+msgid ""
+"Installing modules and themes requires <strong>@backends "
+"access</strong> to your server. See the <a "
+"href=\"@handbook_url\">handbook</a> for other installation methods."
+msgid_plural ""
+"Installing modules and themes requires access to your server via one "
+"of the following methods: <strong>@backends</strong>. See the <a "
+"href=\"@handbook_url\">handbook</a> for other installation methods."
+msgstr[0] ""
+"L'installation de modules et de thèmes requiert un <strong>accès "
+"@backends</strong> à votre serveur. Consultez la <a "
+"href=\"@handbook_url\">documentation</a> pour d'autres méthodes "
+"d'installation."
+msgstr[1] ""
+"L'installation de modules et de thèmes requiert un accès à votre "
+"serveur par l'une des méthodes suivantes : "
+"<strong>@backends</strong>. Consultez la <a "
+"href=\"@handbook_url\">documentation</a> pour d'autres méthodes "
+"d'installation."
+msgid "Access the views administration pages."
+msgstr "Accéder aux pages d'administration des vues."
+msgid "Bypass access control when accessing views."
+msgstr "Outrepasser le contrôle d'accès lors de l'accès aux vues."
+msgid "Add new view"
+msgstr "Ajouter une nouvelle vue"
+msgid "HTML element"
+msgstr "Élément HTML"
+msgid "Label HTML element"
+msgstr "Élément HTML de l'étiquette"
+msgid "Place a colon after the label"
+msgstr "Placer un signe deux points après l'étiquette"
+msgid "Wrapper HTML element"
+msgstr "Élément HTML de l'enveloppe (wrapper)"
+msgid "Wrapper class"
+msgstr "Classe de l'enveloppe (wrapper)"
+msgid "Add default classes"
+msgstr "Ajouter les classes CSS par défaut"
+msgid ""
+"Use default Views classes to identify the field, field label and field "
+"content."
+msgstr ""
+"Utilisez les classes par défaut de Views pour identifier le champ, "
+"l'étiquette et le contenu du champ."
+msgid "Use absolute path"
+msgstr "Utiliser un chemin absolu"
+msgid "Rel Text"
+msgstr "Texte Rel"
+msgid ""
+"Include Rel attribute for use in lightbox2 or other javascript "
+"utility."
+msgstr ""
+"Inclure l'attribut Rel pour Lightbox 2 ou tout autre utilitaire "
+"JavaScript."
+msgid "Preserve certain tags"
+msgstr "Préserver certaines balises"
+msgid ""
+"List the tags that need to be preserved during the stripping process. "
+"example &quot;&lt;p&gt; &lt;br&gt;&quot; which will preserve all p and "
+"br elements"
+msgstr ""
+"Lister les balises qui doivent être conservées durant le processus "
+"de nettoyage. Exemple, &quot;&lt;p&gt; &lt;br&gt;&quot; préservera "
+"tous les éléments p et br."
+msgid "Format plural"
+msgstr "Former le pluriel"
+msgid "If checked, special handling will be used for plurality."
+msgstr "Si coché, le pluriel sera pris en charge de façon spécifique."
+msgid "Singular form"
+msgstr "Formation du singulier"
+msgid "Text to use for the singular form."
+msgstr "Texte à utiliser au singulier."
+msgid "Plural form"
+msgstr "Formation du pluriel"
+msgid ""
+"Text to use for the plural form, @count will be replaced with the "
+"value."
+msgstr ""
+"Texte à utiliser pour la formation du pluriel, @count sera remplacé "
+"par la valeur."
+msgid "An offset from the current time such as \"!example1\" or \"!example2\""
+msgstr ""
+"Un décalage à partir de la date actuelle tel que \"!example1\" ou "
+"\"!example2\""
+msgid ""
+"A unique machine-readable name for this View. It must only contain "
+"lowercase letters, numbers, and underscores."
+msgstr ""
+"Un nom système unique pour cette vue. Il ne doit contenir que des "
+"lettres en minuscules, des chiffres ou des tirets bas."
+msgid "Weight for @display"
+msgstr "Poids de @display"
+msgid ""
+"This title will be displayed on the views edit page instead of the "
+"default one. This might be useful if you have the same item twice."
+msgstr ""
+"Ce titre sera affiché dans la page d'édition de la vue au lieu de "
+"celui par défaut. Ceci peut-être pratique si vous avez le même "
+"élément plusieurs fois."
+msgid "The unique ID of the aggregator item."
+msgstr "L'identifiant unique de l'élément d'agrégateur."
+msgid "The guid of the original imported item."
+msgstr "Le GUID de l'élément d'origine importé."
+msgid "Date and time of when the comment was created."
+msgstr "Date et heure de création du commentaire."
+msgid "Date and time of when the comment was last updated."
+msgstr "Date et heure de mise à jour du dernier commentaire"
+msgid "Whether the comment is approved (or still in the moderation queue)."
+msgstr ""
+"Si le commentaire est approuvé (ou se trouve encore dans la file "
+"d'attente de modération)."
+msgid "Last comment CID"
+msgstr "Identifiant CID du dernier commentaire"
+msgid "Display the last comment of a node"
+msgstr "Afficher le dernier commentaire d'un nœud"
+msgid "Last Comment"
+msgstr "Dernier commentaire"
+msgid "The last comment of a node."
+msgstr "Le dernier commentaire d'un nœud."
+msgid ""
+"Some roles lack permission to access content, but display %display has "
+"no access control."
+msgstr ""
+"Quelques rôles n'ont pas la permission d'accéder au contenu, mais "
+"l'affichage %display n'a pas de contrôle d'accès."
+msgid "The extension of the file."
+msgstr "L'extension de ce fichier."
+msgid "File Usage"
+msgstr "Utilisation du fichier"
+msgid ""
+"A file that is associated with this node, usually because it is in a "
+"field on the node."
+msgstr ""
+"Un fichier qui est associé à ce nœud, généralement parce qu'il se "
+"trouve dans un champ du nœud."
+msgid ""
+"A user that is associated with this file, usually because this file is "
+"in a field on the user."
+msgstr ""
+"Un utilisateur qui est associé à ce fichier, généralement parce "
+"que ce fichier se trouve dans un champ de l'utilisateur."
+msgid ""
+"A file that is associated with this user, usually because it is in a "
+"field on the user."
+msgstr ""
+"Un fichier qui est associé à cet utilisateur, généralement parce "
+"qu'il se trouve dans un champ de l'utilisateur."
+msgid ""
+"A comment that is associated with this file, usually because this file "
+"is in a field on the comment."
+msgstr ""
+"Un commentaire qui est associé à ce fichier, généralement parce "
+"que ce fichier se trouve dans un champ du commentaire."
+msgid ""
+"A file that is associated with this comment, usually because it is in "
+"a field on the comment."
+msgstr ""
+"Un fichier qui est associé à ce commentaire, généralement parce "
+"qu'il se trouve dans un champ du commentaire."
+msgid ""
+"A taxonomy term that is associated with this file, usually because "
+"this file is in a field on the taxonomy term."
+msgstr ""
+"Un terme de taxonomie qui est associé à ce fichier, généralement "
+"parce que ce fichier se trouve dans un champ du terme de taxonomie."
+msgid ""
+"A file that is associated with this taxonomy term, usually because it "
+"is in a field on the taxonomy term."
+msgstr ""
+"Un fichier qui est associé à ce terme de taxonomie, généralement "
+"parce qu'il se trouve dans un champ du terme de taxonomie."
+msgid "Taxonomy Vocabulary"
+msgstr "Vocabulaire de taxonomie"
+msgid ""
+"A taxonomy vocabulary that is associated with this file, usually "
+"because this file is in a field on the taxonomy vocabulary."
+msgstr ""
+"Un vocabulaire de taxonomie qui est associé à ce fichier, "
+"généralement parce que ce fichier se trouve dans un champ du "
+"vocabulaire de taxonomie."
+msgid ""
+"A file that is associated with this taxonomy vocabulary, usually "
+"because it is in a field on the taxonomy vocabulary."
+msgstr ""
+"Un fichier qui est associé avec ce vocabulaire de taxonomie, "
+"généralement parce qu'il se trouve dans un champ du vocabulaire de "
+"taxonomie."
+msgid "The module managing this file relationship."
+msgstr "Le module gérant la relation à ce fichier."
+msgid "The type of entity that is related to the file."
+msgstr "Le type de l'entité qui est relatif au fichier."
+msgid "The number of times the file is used by this entity."
+msgstr "Le nombre de fois que ce fichier est utilisé par cette entité."
+msgid "term from !field_name"
+msgstr "terme à partir de !field_name"
+msgid "Use destination"
+msgstr "Utiliser la destination"
+msgid "Add destination to the link"
+msgstr "Ajouter une destination au lien"
+msgid ""
+"Show the comment link in the form used on standard node teasers, "
+"rather than the full node form."
+msgstr ""
+"Afficher le lien de commentaire dans la forme utilisée sur les "
+"résumés de nœuds standards, au lieu de celle des nœuds complets."
+msgid ""
+"Used by Style: Table to determine the actual column to click sort the "
+"field on. The default is usually fine."
+msgstr ""
+"Utilisé par Style : Tableau pour déterminer la colonne réelle à "
+"trier par clic. La valeur est généralement suffisante."
+msgid "Group column"
+msgstr "Grouper une colonne"
+msgid ""
+"Select the column of this field to apply the grouping function "
+"selected above."
+msgstr ""
+"Sélectionnez la colonne de ce champ pour appliquer la fonction de "
+"regroupement ci-dessus."
+msgid "Group columns (additional)"
+msgstr "Grouper des colonnes (complément)"
+msgid ""
+"Select any additional columns of this field to include in the query "
+"and to group on."
+msgstr ""
+"Sélectionnez n'importe quelle colonne additionnelle de ce champ à "
+"inclure dans la requête pour le regroupement."
+msgid "Display download path instead of file storage URI"
+msgstr ""
+"Afficher le chemin de téléchargement au lieu de l'URI du système de "
+"fichier"
+msgid ""
+"This will provide the full download URL rather than the internal "
+"filestream address."
+msgstr ""
+"Ceci fournira l'URL complète de téléchargement à la place de "
+"l'adresse interne du fichier."
+msgid "The machine name for the vocabulary the term belongs to."
+msgstr "Le nom système du vocabulaire auquel le terme appartient."
+msgid "Display error message"
+msgstr "Afficher un message d'erreur"
+msgid "Term name converted to Term ID"
+msgstr "Nom du terme converti en identifiant (ID) de terme"
+msgid "Comment or document this display."
+msgstr "Commenter ou documenter cet affichage."
+msgid "Query settings"
+msgstr "Paramètres de la requête"
+msgid "Allow to set some advanced settings for the query plugin"
+msgstr ""
+"Permettre le réglage de paramètres avancés pour le plugin de "
+"requête"
+msgid "The name and the description of this display"
+msgstr "Le nom et la description de cet affichage"
+msgid "Query options"
+msgstr "Options de la requête"
+msgid "Display name must be letters, numbers, or underscores only."
+msgstr ""
+"Le nom de l'affichage ne doit contenir que des lettres, chiffres ou "
+"tirets bas."
+msgid ""
+"Should this display inherit its paging values from the parent display "
+"to which it is attached?"
+msgstr ""
+"Cet affichage doit-il hériter des valeurs de pagination de "
+"l'affichage parent auquel il est joint ?"
+msgid ""
+"Should this display render the pager values? This is only meaningful "
+"if inheriting a pager."
+msgstr ""
+"Cet affichage doit-il afficher les valeurs de pagination ? Cela n'a de "
+"sens que s'il hérite d'une pagination."
+msgid ""
+"This will appear as the name of this block in administer >> structure "
+">> blocks."
+msgstr ""
+"Ceci apparaîtra comme nom de ce bloc dans administrer >> structure >> "
+"blocs."
+msgid ""
+"Text to display instead of results until the user selects and applies "
+"an exposed filter."
+msgstr ""
+"Texte à afficher à la place des résultats jusqu'à ce que "
+"l'utilisateur sélectionne et applique un filtre exposé."
+msgid "Include all items option"
+msgstr "Inclure une option \"tous les éléments\"."
+msgid ""
+"If checked, an extra item will be included to items per page to "
+"display all items"
+msgstr ""
+"Si coché, un élément supplémentaire sera inclus aux éléments par "
+"page pour afficher tous les éléments."
+msgid "All items label"
+msgstr "Étiquette de \"tous les éléments\""
+msgid "Which label will be used to display all items"
+msgstr "L'étiquette qui sera utilisée pour afficher tous les éléments"
+msgid "Disable SQL rewriting"
+msgstr "Désactiver la réécriture SQL"
+msgid "Use Slave Server"
+msgstr "Utiliser un serveur esclave"
+msgid ""
+"This will make the query attempt to connect to a slave server if "
+"available.  If no slave server is defined or available, it will fall "
+"back to the default server."
+msgstr ""
+"Ceci lancera la requête pour tenter une connexion à un serveur "
+"esclave, s'il est disponible. Si aucun serveur esclave n'est défini "
+"ou n'est disponible, le serveur par défaut sera utilisé."
+msgid "Field Language"
+msgstr "Langue du champ"
+msgid ""
+"All fields which support translations will be displayed in the "
+"selected language."
+msgstr ""
+"Tous les champs qui prennent en charge les traductions seront "
+"affichés dans la langue sélectionnée."
+msgid "The class to provide on each row."
+msgstr "La classe à utiliser pour chaque ligne."
+msgid ""
+"You may use field tokens from as per the \"Replacement patterns\" used "
+"in \"Rewrite the output of this field\" for all fields."
+msgstr ""
+"Vous pouvez utiliser les jetons de champs conformément aux \"Modèles "
+"de remplacement\" utilisés dans \"Réécrire la sortie de ce champ\" "
+"pour tous les champs."
+msgid "Table summary"
+msgstr "Résumé du tableau"
+msgid ""
+"This value will be displayed as table-summary attribute in the html. "
+"Set this for better accessiblity of your site."
+msgstr ""
+"Cette valeur sera affichée comme attribut de tableau récapitulatif "
+"(table-summary) dans le HTML. À paramétrer pour une meilleure "
+"accessibilité de votre site."
+msgid "The class to provide on the wrapper, outside the list."
+msgstr "La classe à appliquer à l'enveloppe (wrapper) de la liste."
+msgid "List class"
+msgstr "Classe de la liste"
+msgid "The class to provide on the list element itself."
+msgstr "La classe à appliquer à l'élément liste lui-même."
+msgid ""
+"Define the base path for links in this summary\n"
+"        view, i.e. "
+"http://example.com/<strong>your_view_path/archive</strong>.\n"
+"        Do not include beginning and ending forward slash. If this "
+"value\n"
+"        is empty, views will use the first path found as the base "
+"path,\n"
+"        in page displays, or / if no path could be found."
+msgstr ""
+"Définir le chemin de base pour les liens dans cette vue "
+"récapitulative, i.e. "
+"http://example.com/<strong>le_chemin_de_votre_vue/archive</strong>. Ne "
+"pas mettre de slash (/) avant et après. Si cette valeur est vide, "
+"Views utilisera le premier chemin trouvé comme \r\n"
+"chemin de base dans les affichages de page, ou / si aucun chemin n'est "
+"trouvé."
+msgid "Not specified"
+msgstr "Non spécifié"
+msgid "Field translation"
+msgstr "Traduction de champs"
+msgid "Content access"
+msgstr "Accès au contenu"
+msgctxt "ampm"
+msgid "am"
+msgstr "am"
+msgctxt "ampm"
+msgid "pm"
+msgstr "pm"
+msgid "Administer content and comments."
+msgstr "Administrer le contenu et les commentaires."
+msgid "Comment fields"
+msgstr "Champs de commentaires"
+msgid "RSS category"
+msgstr "Catégorie RSS"
+msgid "Import configuration"
+msgstr "Importer la configuration"
+msgid "5 minute"
+msgstr "5 minutes"
+msgid "15 minute"
+msgstr "15 minutes"
+msgid "Content revisions"
+msgstr "Révisions de contenu"
+msgid "%time hence"
+msgstr "Dans %time"
+msgid "Machine name: "
+msgstr "Nom système : "
+msgid "Language selection"
+msgstr "Sélection de la langue"
+msgid "Bypass views access control"
+msgstr "Outrepasser le contrôle d'accès aux vues"
+msgid "No results behavior"
+msgstr "Comportement en l'absence de résultats"
+msgid "Edit @section"
+msgstr "Modifier @section"
+msgid "Edit this view to add a display."
+msgstr "Modifier cette vue pour ajouter un affichage."
+msgid "View to insert"
+msgstr "Vue à insérer"
+msgid "The view to insert into this area."
+msgstr "La vue à insérer dans cette zone."
+msgid "Inherit contextual filters"
+msgstr "Hériter des filtres contextuels"
+msgid ""
+"If checked, this view will receive the same contextual filters as its "
+"parent."
+msgstr ""
+"Si coché, cette vue utilisera les mêmes filtres contextuels que son "
+"parent."
+msgid "Recursion detected in view @view display @display."
+msgstr "Récursion détectée dans la vue @view, affichage @display."
+msgid "When the filter value is <em>NOT</em> in the URL"
+msgstr "Quand la valeur du filtre n'est <em>PAS</em> dans l'URL"
+msgid "Exception value"
+msgstr "Valeur à exclure"
+msgid ""
+"If this value is received, the filter will be ignored; i.e, \"all "
+"values\""
+msgstr ""
+"Si cette valeur est reçue, le filtre sera ignoré : ex. \"toutes les "
+"valeurs\""
+msgid ""
+"Override the view and other argument titles. Use \"%1\" for the first "
+"argument, \"%2\" for the second, etc."
+msgstr ""
+"Supplanter les titres de la vue et des autres arguments. Utiliser "
+"\"%1\" pour le premier argument, \"%2\" pour le deuxième, etc."
+msgid "When the filter value <em>IS</em> in the URL or a default is provided"
+msgstr ""
+"Quand la valeur du filtre <em>EST</em> dans l'URL ou lorsqu'une valeur "
+"par défaut est fournie"
+msgid "Provide title"
+msgstr "Fournir un titre"
+msgid "Override breadcrumb"
+msgstr "Supplanter le fil d'Ariane"
+msgid "Provide breadcrumb"
+msgstr "Fournir un fil d'Ariane"
+msgid ""
+"Enter a breadcrumb name you would like to use. See \"Title\" for "
+"percent substitutions."
+msgstr ""
+"Saisissez un nom de fil d'Ariane que vous voulez utiliser. Voir "
+"\"Titre\" pour les substitutions de pourcentage."
+msgid "Specify validation criteria"
+msgstr "Spécifier le critère de validation"
+msgid "Action to take if filter value does not validate"
+msgstr "Action à mener si la valeur du filtre ne passe pas la validation"
+msgid "Display all results for the specified field"
+msgstr "Afficher tous les résultats pour le champ spécifié"
+msgid "Provide default value"
+msgstr "Fournir une valeur par défaut"
+msgid "Show \"Page not found\""
+msgstr "Afficher \"Page non trouvée\""
+msgid "Display a summary"
+msgstr "Afficher un résumé"
+msgid "Display contents of \"No results found\""
+msgstr "Afficher le contenu de \"Aucun résultat trouvé\""
+msgid "Skip default argument for view URL"
+msgstr "Ignorer l'argument par défaut pour l'URL de la vue"
+msgid ""
+"Select whether to include this default argument when constructing the "
+"URL for this view. Skipping default arguments is useful e.g. in the "
+"case of feeds."
+msgstr ""
+"Déterminer l'inclusion ou non de cet argument par défaut lors de la "
+"construction de l'URL pour cette vue. Ignorer les arguments par "
+"défaut se révèle utile par exemple pour les flux."
+msgid "Number of records"
+msgstr "Nombre d'enregistrements"
+msgctxt "Sort order"
+msgid "Default sort"
+msgstr "Tri par défaut"
+msgctxt "Sort order"
+msgid "Date"
+msgstr "Date"
+msgctxt "Sort order"
+msgid "Numerical"
+msgstr "Numérique"
+msgid ""
+"If selected, users can enter multiple values in the form of 1+2+3 (for "
+"OR) or 1,2,3 (for AND)."
+msgstr ""
+"Si sélectionné, les utilisateurs peuvent saisir plusieurs valeurs "
+"sous la forme 1+2+3 (pour OR) ou 1,2,3 (pour AND)."
+msgid ""
+"If selected, multiple instances of this filter can work together, as "
+"though multiple values were supplied to the same filter. This setting "
+"is not compatible with the \"Reduce duplicates\" setting."
+msgstr ""
+"Si sélectionné, plusieurs instances de ce filtre peuvent collaborer, "
+"comme si plusieurs valeurs étaient fournies au même filtre. Ce "
+"paramètre n'est pas compatible avec le paramètre \"Réduire les "
+"doublons\"."
+msgid ""
+"If selected, the numbers entered for the filter will be excluded "
+"rather than limiting the view."
+msgstr ""
+"Si sélectionné, les nombres saisis pour le filtre seront exclus au "
+"lieu de limiter la vue."
+msgid ""
+"Glossary mode applies a limit to the number of characters used in the "
+"filter value, which allows the summary view to act as a glossary."
+msgstr ""
+"Le mode glossaire applique une limite au nombre de caractères "
+"utilisés dans la valeur du filtre, ce qui permet à la vue résumée "
+"de se comporter comme un glossaire."
+msgid ""
+"How many characters of the filter value to filter against. If set to "
+"1, all fields starting with the first letter in the filter value would "
+"be matched."
+msgstr ""
+"Sur combien de caractères de la valeur du filtre appliquer le filtre. "
+"Si défini à 1, tous les champs commençant par la première lettre "
+"de la valeur du filtre correspondront."
+msgid ""
+"When printing the title and summary, how to transform the case of the "
+"filter value."
+msgstr ""
+"Lors de l'affichage du titre et du résumé, comment transformer la "
+"casse de la valeur du filtre."
+msgid ""
+"When printing url paths, how to transform the case of the filter "
+"value. Do not use this unless with Postgres as it uses case sensitive "
+"comparisons."
+msgstr ""
+"Lors de l'affichage des chemins URL, comment transformer la casse de "
+"la valeur du filtre. À n'utiliser qu'avec Postgres, qui utilise des "
+"comparaisons sensibles à la casse."
+msgctxt "Sort order"
+msgid "Alphabetical"
+msgstr "Alphabétique"
+msgid "Create a label"
+msgstr "Créer une étiquette"
+msgid ""
+"Enable to load this field as hidden. Often used to group fields, or to "
+"use as token in another field."
+msgstr ""
+"Activer pour charger ce champ comme caché. Souvent utilisé pour "
+"grouper des champs, ou utilisé comme jeton dans un autre champ."
+msgid "Choose the HTML element to wrap around this field, e.g. H1, H2, etc."
+msgstr "Choisir l'élément HTML enveloppant ce champ, par ex. h1, h2, etc."
+msgid "Create a CSS class"
+msgstr "Créer une classe CSS"
+msgid "Choose the HTML element to wrap around this label, e.g. H1, H2, etc."
+msgstr ""
+"Choisir l'élément HTML enveloppant cette étiquette, par ex. h1, h2, "
+"etc."
+msgid "Rewrite results"
+msgstr "Réécrire les résultats"
+msgid "Replace spaces with dashes"
+msgstr "Remplacer les espaces par des tirets"
+msgid "External server URL"
+msgstr "URL du serveur externe"
+msgid ""
+"Links to an external server using a full URL: e.g. "
+"'http://www.example.com' or 'www.example.com'."
+msgstr ""
+"Pointe vers un serveur externe avec une URL complète : ex. "
+"'http://www.example.com' ou 'www.example.com'."
+msgid "Convert newlines to HTML &lt;br&gt; tags"
+msgstr "Convertir les sauts de ligne en balises HTML &lt;br&gt;"
+msgid "No results text"
+msgstr "Texte en l'absence de résultats"
+msgid ""
+"Enable to display the \"no results text\" if the field contains the "
+"number 0."
+msgstr ""
+"Permet d'afficher le \"texte en l'absence de résultats\" si le champ "
+"contient le nombre 0."
+msgid "Time hence"
+msgstr "Temps relatif"
+msgid "Time hence (with \"hence\" appended)"
+msgstr "Temps relatif (avec \"d'ici/dans\" ajouté)"
+msgid "Time span (future dates have \"-\" prepended)"
+msgstr "Durée (les dates futures ont un \"-\" en préfixe)"
+msgid "Time span (past dates have \"-\" prepended)"
+msgstr "Durée (les dates passées ont un \"-\" en préfixe)"
+msgid ""
+"How should the serialized data be displayed. You can choose a custom "
+"array/object key or a print_r on the full output."
+msgstr ""
+"Comment devrait être affichées les données sérialisées. Vous "
+"pouvez choisir une clé de tableau/objet personnalisée ou un print_r "
+"sur la totalité des données."
+msgid "Full data (unserialized)"
+msgstr "Données complètes (non sérialisées)"
+msgid "Full data (serialized)"
+msgstr "Données complètes (sérialisées)"
+msgid "A certain key"
+msgstr "Une certaine clé"
+msgid "Which key should be displayed"
+msgstr "Quelle clé doit être affichée"
+msgid "You have to enter a key if you want to display a key of the data."
+msgstr ""
+"Vous devez saisir une clé si vous souhaitez afficher une clé pour la "
+"donnée."
+msgid "How many different units to display in the string."
+msgstr "Combien d'unités différentes doivent s'afficher dans la chaîne."
+msgid "This filter is not exposed. Expose it to allow the users to change it."
+msgstr ""
+"Le filtre n'est pas exposé. Exposez-le pour permettre aux "
+"utilisateurs de le modifier."
+msgid "Expose filter"
+msgstr "Exposer le filtre"
+msgid ""
+"This filter is exposed. If you hide it, users will not be able to "
+"change it."
+msgstr ""
+"Le filtre est exposé. Si vous le masquez, les utilisateurs ne "
+"pourront pas le modifier."
+msgid "Hide filter"
+msgstr "Masquer le filtre"
+msgid "Expose operator"
+msgstr "Exposer l'opérateur"
+msgid "Allow the user to choose the operator."
+msgstr "Permettre à l'utilisateur de choisir l'opérateur."
+msgid "Allow multiple selections"
+msgstr "Permettre plusieurs sélections"
+msgid "Enable to allow users to select multiple items."
+msgstr "Permettre à l'utilisateur de sélectionner plusieurs éléments."
+msgid "Remember the last selection"
+msgstr "Se rappeler de la dernière sélection"
+msgid "Enable to remember the last selection made by the user."
+msgstr ""
+"Activer pour mémoriser la dernière sélection effectuée par "
+"l'utilisateur."
+msgid "You must select a value unless this is an non-required exposed filter."
+msgstr ""
+"Vous devez sélectionner une valeur, à moins que ceci ne soit un "
+"filtre exposé non requis."
+msgid "Enable to hide items that do not contain this relationship"
+msgstr "Permet de masquer les éléments qui ne comportent pas cette relation"
+msgid "This sort is not exposed. Expose it to allow the users to change it."
+msgstr ""
+"Ce tri n'est pas exposé. Exposez-le pour permettre aux utilisateurs "
+"de le modifier."
+msgid "Expose sort"
+msgstr "Exposer le tri"
+msgid ""
+"This sort is exposed. If you hide it, users will not be able to change "
+"it."
+msgstr ""
+"Ce tri est exposé. Si vous le masquez, les utilisateurs ne pourront "
+"pas le modifier."
+msgid "Hide sort"
+msgstr "Masquer le tri"
+msgid "Provide description"
+msgstr "Fournir une description"
+msgid "Update \"@title\" choice"
+msgstr "Mettre à jour le choix \"@title\""
+msgid "Update \"@title\" choice (@number)"
+msgstr "Mettre à jour le choix \"@title\" (@number)"
+msgid "Add !display"
+msgstr "Ajouter !display"
+msgid "Auto preview"
+msgstr "Aperçu automatique"
+msgid "Preview with contextual filters:"
+msgstr "Aperçu avec filtres contextuels :"
+msgid "Separate contextual filter values with a \"/\". For example, %example."
+msgstr ""
+"Séparer les filtres contextuels avec des \"/\". Par exemple, "
+"%example."
+msgid ":"
+msgstr ":"
+msgid "Apply and continue"
+msgstr "Appliquer et continuer"
+msgid "@current of @total"
+msgstr "@current sur @total"
+msgid "All displays (except overridden)"
+msgstr "Tous les affichages (sauf ceux supplantés)"
+msgid "All displays"
+msgstr "Tous les affichages"
+msgid "This @display_type (override)"
+msgstr "Ce(tte) @display_type (supplanter)"
+msgid "View name and description"
+msgstr "Nom et description de la vue"
+msgid "A descriptive human-readable name for this view. Spaces are allowed"
+msgstr "Un nom affiché décrivant cette vue. Les espaces sont autorisés."
+msgid "Create new filter group"
+msgstr "Créer un nouveau groupe de filtres"
+msgid "No filters have been added."
+msgstr "Aucun filtre n'a été ajouté."
+msgid "Drag to add filters."
+msgstr "Faire glisser pour ajouter des filtres."
+msgid "Add and configure @types"
+msgstr "Ajouter et configurer @types"
+msgid "Configure @type: @item"
+msgstr "Configurer @type : @item"
+msgid "Always show the master display"
+msgstr "Toujours montrer l'affichage maître"
+msgid ""
+"Advanced users of views may choose to see the master (i.e. default) "
+"display."
+msgstr ""
+"Les utilisateurs avancés des vues peuvent choisir de voir l'affichage "
+"maître (i.e. par défaut)."
+msgid "Always show advanced display settings"
+msgstr "Toujours montrer les paramètres avancés d'affichage"
+msgid ""
+"Default to showing advanced display settings, such as relationships "
+"and contextual filters."
+msgstr ""
+"Par défaut, montre les paramètres avancés d'affichage tels que les "
+"relations et les filtres contextuels."
+msgid "Label for \"Any\" value on non-required single-select exposed filters"
+msgstr ""
+"Étiquette pour la valeur \"Tout\" sur les listes déroulantes simples "
+"non-requises dans les filtres exposés"
+msgid "Live preview settings"
+msgstr "Paramètres de l'aperçu en temps réel"
+msgid "Automatically update preview on changes"
+msgstr ""
+"Automatiquement mettre à jour la prévisualisation lors de "
+"changements"
+msgid "Show information and statistics about the view during live preview"
+msgstr ""
+"Montrer les informations et statistiques de la vue pendant la "
+"prévisualisation en direct"
+msgid "Above the preview"
+msgstr "Au-dessus de la prévisualisation"
+msgid "Below the preview"
+msgstr "Sous la prévisualisation"
+msgid "Show the SQL query"
+msgstr "Montrer la requête SQL"
+msgid "Show performance statistics"
+msgstr "Montrer les statistiques de performance"
+msgid "Disable JavaScript with Views"
+msgstr "Désactiver le JavaScript de Views"
+msgid ""
+"If you are having problems with the JavaScript, you can disable it "
+"here. The Views UI should degrade and still be usable without "
+"javascript; it's just not as good."
+msgstr ""
+"Si vous avez des problèmes avec JavaScript, vous pouvez le "
+"désactiver ici. L'interface utilisateur de Views devrait se dégrader "
+"et rester utilisable sans javascript ; ce n'est juste pas aussi bon."
+msgid "Master"
+msgstr "Maître"
+msgid "Display"
+msgid_plural "Displays"
+msgstr[0] "Affichage"
+msgstr[1] "Affichages"
+msgid "Unformatted list"
+msgstr "Liste non mise en forme"
+msgid "Contextual filters"
+msgstr "Filtres contextuels"
+msgid "contextual filters"
+msgstr "filtres contextuels"
+msgid "Contextual filter"
+msgstr "Filtre contextuel"
+msgid "contextual filter"
+msgstr "filtre contextuel"
+msgid "filter criteria"
+msgstr "critères de filtre"
+msgid "Filter criterion"
+msgstr "Critère de filtrage"
+msgid "filter criterion"
+msgstr "critère de filtre"
+msgid "no results behavior"
+msgstr "comportement en l'absence de résultat"
+msgid "The content to which the comment is a reply to."
+msgstr "Le contenu auquel le commentaire fait référence."
+msgid "The node ID."
+msgstr "L'identifiant (ID) du nœud."
+msgid "The content title."
+msgstr "Le titre du contenu."
+msgid "The date the content was posted."
+msgstr "La date à laquelle le contenu a été publié."
+msgid "The date the content was last updated."
+msgstr "La date à laquelle le contenu a été mis à jour la dernière fois."
+msgid ""
+"The content type (for example, \"blog entry\", \"forum post\", "
+"\"story\", etc)."
+msgstr ""
+"Le type de contenu (par exemple, \"entrée de blog\", \"publication de "
+"forum\", \"histoire\", etc)."
+msgid "Whether or not the content is published."
+msgstr "Si le contenu doit être publié ou non."
+msgid "Filters out unpublished content if the current user cannot view it."
+msgstr ""
+"Élimine le contenu non-publié si l'utilisateur courant ne peut pas "
+"le voir."
+msgid "Whether or not the content is promoted to the front page."
+msgstr "Si le contenu doit être promu en page d'accueil ou non."
+msgid "Whether or not the content is sticky."
+msgstr "Si le contenu doit être épinglé en haut des listes ou non."
+msgid ""
+"Whether or not the content is sticky. To list sticky content first, "
+"set this to descending."
+msgstr ""
+"Si le contenu doit être épinglé en haut des listes ou non. Pour "
+"lister les contenu épinglés en premier, définissez ceci à "
+"décroissant."
+msgid "Provide a simple link to the content."
+msgstr "Fournir un lien vers le contenu."
+msgid "Provide a simple link to edit the content."
+msgstr "Fournir un lien pour modifier le contenu."
+msgid "Provide a simple link to delete the content."
+msgstr "Fournir un lien pour supprimer le contenu."
+msgid "The aliased path to this content."
+msgstr "L'alias de chemin de ce contenu."
+msgid "Relate content to the user who created it."
+msgstr "Relie le contenu à l'utilisateur qui l'a créé."
+msgid "User has a revision"
+msgstr "L'utilisateur a une révision"
+msgid "All nodes where a certain user has a revision"
+msgstr "Tous les nœuds où un certain utilisateur a une révision"
+msgid "Content revision"
+msgstr "Révision de contenu"
+msgid "Content revision is a history of changes to content."
+msgstr ""
+"La révision de contenu est un historique des modifications du "
+"contenu."
+msgid "Relate a content revision to the user who created the revision."
+msgstr "Lie une révision de contenu avec l'utilisateur qui l'a créée."
+msgid "The revision ID of the content revision."
+msgstr "L'identifiant (ID) de la révision du contenu."
+msgid "Get the actual content from a content revision."
+msgstr "Récupérer le contenu actuel depuis une révision de contenu."
+msgid "Provide a simple link to delete the content revision."
+msgstr "Fournir un lien pour supprimer la révision de contenu."
+msgid ""
+"Filter for content by view access. <strong>Not necessary if you are "
+"using node as your base table.</strong>"
+msgstr ""
+"Filtre le contenu si son accès est autorisé. <strong>Non nécessaire "
+"si vous utilisez \"node\" comme table de base.</strong>"
+msgid "Show a marker if the content is new or updated."
+msgstr "Afficher un marqueur si le contenu est nouveau ou mis à jour."
+msgid "Show only content that is new or updated."
+msgstr "Afficher uniquement les contenus nouveaux ou mis à jour."
+msgid "Display the content with standard node view."
+msgstr "Afficher le contenu avec une vue standard de nœud."
+msgid "Content ID from URL"
+msgstr "Identifiant (ID) du contenu à partir de l'URL"
+msgid ""
+"Content that is associated with this file, usually because this file "
+"is in a field on the content."
+msgstr ""
+"Un contenu qui est associé à ce fichier, généralement parce que ce "
+"fichier se trouve dans un champ du contenu."
+msgid ""
+"Allows the \"depth\" for Taxonomy: Term ID (with depth) to be modified "
+"via an additional contextual filter value."
+msgstr ""
+"Permet à la \"profondeur\" de Taxonomie : Identifiant de terme (avec "
+"profondeur) d'être modifiée par une valeur de filtre contextuel "
+"supplémentaire."
+msgid "Content authored"
+msgstr "Contenu rédigé"
+msgid ""
+"Relate content to the user who created it. This relationship will "
+"create one record for each content item created by the user."
+msgstr ""
+"Lie le contenu à l'utilisateur qui l'a créé. Cette relation créera "
+"un résultat pour chaque élément de contenu créé par "
+"l'utilisateur."
+msgid "Provide a simple link to cancel the user."
+msgstr "Ajouter un lien pour bloquer l'utilisateur."
+msgid ""
+"Allow a contextual filter value to be ignored. The query will not be "
+"altered by this contextual filter value. Can be used when contextual "
+"filter values come from the URL, and a part of the URL needs to be "
+"ignored."
+msgstr ""
+"Permet à un filtre contextuel d'être ignoré. La requête ne sera "
+"pas modifiée par la valeur de ce filtre contextuel. Peut-être "
+"utilisé quand les valeurs de filtres contextuels proviennent d'une "
+"URL, et qu'une partie de cette URL doit être ignorée."
+msgid "View area"
+msgstr "Zone de vue"
+msgid "Insert a view inside an area."
+msgstr "Insérer une vue dans une zone."
+msgid "Enable to override this field's links."
+msgstr "Activer pour supplanter les liens du champ."
+msgid "Use field template"
+msgstr "Utiliser un gabarit de champ"
+msgid ""
+"Checking this option will cause the group Display Type and Separator "
+"values to be ignored."
+msgstr ""
+"Si cette option est choisie, le groupe Type d'affichage et le "
+"Séparateur seront ignorés."
+msgid "Multiple field settings"
+msgstr "Paramètres de champ multiple"
+msgid "Display all values in the same row"
+msgstr "Afficher toutes les valeurs dans la même ligne"
+msgid "Display @count value(s)"
+msgstr "Afficher @count valeur(s)"
+msgid "Raw @column"
+msgstr "@column brut(e)"
+msgid "Native language"
+msgstr "Langue native"
+msgid "If enabled, the native name of the language will be displayed"
+msgstr "Si activé, le nom natif de la langue sera affiché."
+msgid "Link this field to the original piece of content"
+msgstr "Lier ce champ à l'élément de contenu originel"
+msgid ""
+"Enable this option to output an absolute link. Required if you want to "
+"use the path as a link destination (as in \"output this field as a "
+"link\" above)."
+msgstr ""
+"Activer cette option pour afficher un lien absolu. Requis si vous "
+"voulez utiliser le chemin comme une destination de lien (comme dans "
+"\"afficher ce champ en tant que lien\" ci-dessus)."
+msgid "Link this field to its content revision"
+msgstr "Lie ce champ à sa révision de contenu"
+msgid "Display field as the content type machine name."
+msgstr "Afficher le champ comme nom machine du type de contenu."
+msgid "Choose one or more content types to validate with."
+msgstr "Choisir un ou plusieurs types de contenu à valider."
+msgid "Validate user has access to the content"
+msgstr "Valider que l'utilisateur a accès au contenu"
+msgid "Access operation to check"
+msgstr "Fonction d'accès à vérifier"
+msgid "Filter value format"
+msgstr "Filtrer le format de valeur"
+msgid "Display comments"
+msgstr "Afficher les commentaires"
+msgid ""
+"Pick an alternative default table sort field to use when the search "
+"score field is unavailable."
+msgstr ""
+"Choisissez un champ de tri par défaut alternatif à utiliser quand le "
+"score de la recherche est indisponible."
+msgid ""
+"If selected, users can enter multiple values in the form of 1+2+3. Due "
+"to the number of JOINs it would require, AND will be treated as OR "
+"with this filter."
+msgstr ""
+"Si sélectionné, les utilisateurs peuvent entrer plusieurs valeurs "
+"sous la forme 1+2+3. A cause du nombre de JOIN que cela demanderait, "
+"AND sera traité comme OR avec ce filtre."
+msgid "Load default filter from term page"
+msgstr "Charger le filtre par défaut depuis la page du terme"
+msgid "Filter value type"
+msgstr "Filtrer le type de valeur"
+msgid ""
+"Select the form of this filter value; if using term name, it is "
+"generally more efficient to convert it to a term ID and use Taxonomy: "
+"Term ID rather than Taxonomy: Term Name\" as the filter."
+msgstr ""
+"Sélectionner la forme de cette valeur de filtre ; si vous utilisez le "
+"nom de terme, il est généralement plus efficace de le convertir en "
+"identifiant (ID) de terme et d'utiliser Taxonomie : Identifiant (ID) "
+"de terme au lieu de Taxonomie : Nom du terme pour le filtre."
+msgid "Transform dashes in URL to spaces in term name filter values"
+msgstr ""
+"Transformer les tirets dans les URL en espaces dans les valeurs du "
+"filtre de nom de terme"
+msgid "Enable to display different text for anonymous users."
+msgstr ""
+"Activer l'affichage d'un texte différent pour les utilisateurs "
+"anonymes."
+msgid "Type of user filter value to allow"
+msgstr "Type de la valeur du filtre utilisateur à autoriser"
+msgid ""
+"Note: you do not have permission to modify this. If you change the "
+"default filter type, this setting will be lost and you will NOT be "
+"able to get it back."
+msgstr ""
+"Note : vous n'avez pas la permission de modifier ceci. Si vous "
+"modifiez le type de filtre par défaut, ce réglage sera perdu et vous "
+"NE pourrez PLUS faire marche arrière."
+msgid "PHP contextual filter code"
+msgstr "Code du filtre contextuel PHP"
+msgid "Change the way content is formatted."
+msgstr "Changer la mise en forme du contenu."
+msgid "Change settings for this format"
+msgstr "Modifier les paramètres de ce format"
+msgid "Change the way each row in the view is styled."
+msgstr "Modifier la façon dont chaque ligne dans cette vue est stylée."
+msgid "Hide attachments in summary"
+msgstr "Masquer les vues attachées dans le sommaire"
+msgid ""
+"Change whether or not to display attachments when displaying a "
+"contextual filter summary."
+msgstr ""
+"Modifier l'affichage ou non des attachements lorsqu'un résumé de "
+"filtre contextuel est affiché."
+msgid "Hide attachments when displaying a contextual filter summary"
+msgstr ""
+"Masquer les attachements lorsqu'un résumé de filtre contextuel est "
+"affiché."
+msgid ""
+"You may also adjust the !settings for the currently selected access "
+"restriction."
+msgstr ""
+"Vous pouvez également ajuster les !settings des restrictions d'accès "
+"actuellement sélectionnées."
+msgid ""
+"You may also adjust the !settings for the currently selected cache "
+"mechanism."
+msgstr ""
+"Vous pouvez également ajuster les !settings du mécanisme de cache "
+"actuellement sélectionné."
+msgid "You may also adjust the !settings for the currently selected style."
+msgstr ""
+"Vous pouvez également ajuster les !settings du style actuellement "
+"sélectionné."
+msgid ""
+"You may also adjust the !settings for the currently selected row "
+"style."
+msgstr ""
+"Vous pouvez également ajuster les !settings du style de ligne "
+"actuellement sélectionné."
+msgid "You may also adjust the !settings for the currently selected pager."
+msgstr ""
+"Vous pouvez également ajuster les !settings de la pagination "
+"actuellement sélectionnée."
+msgid "Attachment position"
+msgstr "Position de l'attachement"
+msgid ""
+"Should this display inherit its contextual filter values from the "
+"parent display to which it is attached?"
+msgstr ""
+"Cet affichage doit-il hériter des valeurs de filtre contextuel de "
+"l'affichage parent auquel il est rattaché ?"
+msgid "Block caching"
+msgstr "Mise en cache de bloc"
+msgid ""
+"This view will be displayed by visiting this path on your site. It is "
+"recommended that the path be something like \"path/%/%/feed\" or "
+"\"path/%/%/rss.xml\", putting one % in the path for each contextual "
+"filter you have defined in the view."
+msgstr ""
+"Cette vue sera affichée en visitant ce chemin dans votre site. Il est "
+"recommandé que le chemin soit quelque chose comme \"path/%/%/feed\" "
+"ou \"path/%/%/rss.xml\", en mettant un % dans le chemin pour chaque "
+"filtre contextuel que vous avez défini dans la vue."
+msgid ""
+"This view will be displayed by visiting this path on your site. You "
+"may use \"%\" in your URL to represent values that will be used for "
+"contextual filters: For example, \"node/%/feed\"."
+msgstr ""
+"Cette vue sera affichée en visitant ce chemin sur votre site. Vous "
+"pouvez utiliser \"%\" dans votre URL pour représenter des valeurs qui "
+"seront utilisées dans les filtres contextuels : par exemple, "
+"\"node/%/feed\"."
+msgid ""
+"Display @display is set to use a menu but the menu link text is not "
+"set."
+msgstr ""
+"L'affichage @display est paramétré pour utiliser un menu mais le "
+"texte du lien de menu n'est pas défini."
+msgid ""
+"Display @display is set to use a parent menu but the parent menu link "
+"text is not set."
+msgstr ""
+"L'affichage @display est paramétré pour utiliser un menu parent mais "
+"le texte du lien du menu parent n'est pas défini."
+msgid "@count item, skip @skip"
+msgid_plural "Paged, @count items, skip @skip"
+msgstr[0] "@count élément, en passer @skip"
+msgstr[1] "Avec pagination, @count éléments, en passer @skip"
+msgid "@count item"
+msgid_plural "Paged, @count items"
+msgstr[0] "@count élément"
+msgstr[1] "Avec pagination, @count éléments"
+msgid ""
+"Disabling SQL rewriting will disable node_access checks as well as "
+"other modules that implement hook_query_alter()."
+msgstr ""
+"La désactivation de la réécriture SQL désactivera les contrôles "
+"de node_access ainsi que tous ceux des autres modules qui "
+"implémentent hook_query_alter()."
+msgid ""
+"If you disable this option, a grid with only one row will have the "
+"same number of table cells (<TD>) as items. Disabling it can cause "
+"problems with your CSS."
+msgstr ""
+"Si vous désactivez cette option, une grille d'une seule ligne aura le "
+"même nombre de cellules de tableau (&lt;TD&gt;) que le nombre "
+"d'éléments. Sa désactivation pourrait causer des problèmes avec "
+"votre CSS."
+msgid ""
+"Per default the table is hidden for an empty view. With this option it "
+"is posible to show an empty table with the text in it."
+msgstr ""
+"Par défaut le tableau est masqué dans une vue vide. Avec cette "
+"option, il est possible d'afficher un tableau vide avec le texte "
+"dedans."
+msgid "Create a page"
+msgstr "Créer une page"
+msgid "Create a menu link"
+msgstr "Créer un lien de menu"
+msgid "Include an RSS feed"
+msgstr "Inclure un flux RSS"
+msgid "Feed path"
+msgstr "Chemin du flux"
+msgid "Feed row style"
+msgstr "Style de ligne du flux"
+msgid "Create a block"
+msgstr "Créer un bloc"
+msgid "of fields"
+msgstr "de champs"
+msgid "of type"
+msgstr "de type"
+msgid "tagged with"
+msgstr "étiquetté avec"
+msgid "Should links be displayed below each comment"
+msgstr "Les liens doivent-ils être affichés sous chaque commentaire"
+msgid "with links (allow users to reply to the comment, etc.)"
+msgstr ""
+"avec liens (permet aux utilisateurs de répondre à un commentaire, "
+"etc.)"
+msgid "without links"
+msgstr "sans liens"
+msgid "teasers"
+msgstr "résumés"
+msgid "full posts"
+msgstr "publications complètes"
+msgid "titles"
+msgstr "titres"
+msgid "titles (linked)"
+msgstr "titres (liés)"
+msgid "Should links be displayed below each node"
+msgstr "Les liens doivent-ils être affichés sous chaque nœud"
+msgid "with links (allow users to add comments, etc.)"
+msgstr ""
+"avec des liens (permet aux utilisateurs d'ajouter des commentaires, "
+"etc.)"
+msgid "Should comments be displayed below each node"
+msgstr "Les commentaires doivent-ils être affichés sous chaque nœud"
+msgid "Number of hits"
+msgstr "Nombre de visites"
+msgid "Hide view"
+msgstr "Cacher la vue"
+msgid "@group (historical data)"
+msgstr "@group (données historiques)"
+msgid "Use path alias"
+msgstr "Utiliser l'alias de chemin"
+msgid "The comment UUID."
+msgstr "L'identifiant universel unique (UUID) du commentaire."
+msgid "The file UUID."
+msgstr "L'identifiant universel unique (UUID) du fichier."
+msgid "Delete translation"
+msgstr "Supprimer la traduction"
+msgid "Unsorted"
+msgstr "Non ordonné"
+msgid ""
+"Each field type has one or more available <em>widgets</em> associated "
+"with it; each widget provides a mechanism for data input when you are "
+"editing (text box, select list, file upload, etc.). Each field type "
+"also has one or more display options, which determine how the field is "
+"displayed to site visitors. The widget and display options can be "
+"changed after you have created the field."
+msgstr ""
+"Chaque type de champ a un ou plusieurs <em>widgets</em> disponibles "
+"associés à celui-ci ; chaque widget fournit un mécanisme pour la "
+"saisie des données au moment de l'édition (champ texte, listes "
+"déroulantes, envoi de fichier, etc.). Chaque type de champ a aussi un "
+"ou plusieurs options d'affichage, qui déterminent comment le champ "
+"est affiché aux visiteurs du site. Les options du widget et de "
+"l'affichage peuvent être modifiées après que vous ayez créé le "
+"champ."
+msgid "Changes to the style have been saved."
+msgstr "Les modifications du style ont été enregistrées."
+msgid ""
+"The Menu module provides an interface for managing menus. A menu is a "
+"hierarchical collection of links, which can be within or external to "
+"the site, generally used for navigation. Each menu is rendered in a "
+"block that can be enabled and positioned through the <a "
+"href=\"@blocks\">Blocks administration page</a>. You can view and "
+"manage menus on the <a href=\"@menus\">Menus administration page</a>. "
+"For more information, see the online handbook entry for the <a "
+"href=\"@menu\">Menu module</a>."
+msgstr ""
+"Le module Menu fournit une interface pour gérer les menus. Un menu "
+"est une collection hiérarchique de liens, qui peuvent être externes "
+"ou internes au site, généralement utilisés pour la navigation. "
+"Chaque menu est affiché dans un bloc qui peut être activé et "
+"positionné via la <a href=\"@blocks\">page d'administration des "
+"Blocs</a>. Vous pouvez voir et gérer les menus sur la <a "
+"href=\"@menus\">page d'administration des Menus</a>. Pour plus "
+"d'information, consultez la documentation en ligne pour le <a "
+"href=\"@menu\">module Menu</a>."
+msgid "(Machine name: @type)"
+msgstr "(Nom système : @type)"
+msgid ""
+"The @module module is missing, so the following module will be "
+"disabled: @depends."
+msgid_plural ""
+"The @module module is missing, so the following modules will be "
+"disabled: @depends."
+msgstr[0] ""
+"Le module @module est manquant, le module suivant sera donc "
+"désactivé : @depends."
+msgstr[1] ""
+"Le module @module est manquant, les modules suivants seront donc "
+"désactivés : @depends."
+msgid "Aggregation type"
+msgstr "Type d'agrégation"
+msgid "Contact category"
+msgstr "Catégorie de contact"
+msgid "Field instance"
+msgstr "Instance de champ"
+msgid "Empty text."
+msgstr "Texte vide."
+msgid "Use replacement tokens from the first row"
+msgstr "Utiliser les jetons (tokens) de remplacement de la première ligne"
+msgid "Allow multiple filter values to work together"
+msgstr "Permettre à des valeurs de filtre multiples de fonctionner ensemble"
+msgid "Customize field HTML"
+msgstr "Personnaliser le code HTML du champ"
+msgid ""
+"You may use token substitutions from the rewriting section in this "
+"class."
+msgstr ""
+"Vous pouvez utiliser les substitutions de jetons (<em>tokens</em>) de "
+"la section \"Réécrire la sortie\" dans cette classe."
+msgid "Customize label HTML"
+msgstr "Personnaliser le code HTML de l'étiquette"
+msgid "Customize field and label wrapper HTML"
+msgstr "Personnaliser le code HTML de l'enveloppe du champ et de l'étiquette"
+msgid ""
+"Choose the HTML element to wrap around this field and label, e.g. H1, "
+"H2, etc. This may not be used if the field and label are not rendered "
+"together, such as with a table."
+msgstr ""
+"Choisir l'élément HTML pour envelopper ce champ et son étiquette, "
+"ex : H1, H2, etc. Ceci peut ne pas être pris en compte si le champ et "
+"son étiquette ne sont pas rendus ensemble, tel que dans un tableau."
+msgid "Remove whitespace"
+msgstr "Retirer les espaces"
+msgid "Hide rewriting if empty"
+msgstr "Masquer la réécriture si vide"
+msgid "Do not display rewritten content if this field is empty."
+msgstr "Ne pas afficher le contenu réécrit si le champ est vide."
+msgid "Thousands marker"
+msgstr "Séparateur de milliers"
+msgid "Expose this filter to visitors, to allow them to change it"
+msgstr "Exposer ce filtre aux visiteurs, pour leur permettre de le modifier"
+msgid "Representative sort order"
+msgstr "Ordre du tri représentatif"
+msgid "Subquery namespace"
+msgstr "Espace de nom (<em>namespace</em>) de la sous-requête"
+msgid ""
+"Advanced. Enter a namespace for the subquery used by this "
+"relationship."
+msgstr ""
+"Avancé. Saisissez un espace de nom pour la sous-requête utilisée "
+"par cette relation."
+msgid "Representative view"
+msgstr "Vue représentative"
+msgid ""
+"Advanced. Use another view to generate the relationship subquery. This "
+"allows you to use filtering and more than one sort. If you pick a view "
+"here, the sort options above are ignored. Your view must have the ID "
+"of its base as its only field, and should have some kind of sorting."
+msgstr ""
+"Avancé. Utiliser une autre vue pour générer la sous-requête de "
+"relation. Ceci vous permet d'utiliser des filtres et plus d'un tri. Si "
+"vous choisissez une vue ici, les options de tri ci-dessus seront "
+"ignorées. Votre vue doit avoir l'identifiant (ID) de sa base comme "
+"seul champ, et devrait avoir un tri."
+msgid "Generate subquery each time view is run."
+msgstr "Générer la sous-requête à chaque fois que la vue est exécutée."
+msgid ""
+"Will re-generate the subquery for this relationship every time the "
+"view is run, instead of only when these options are saved. Use for "
+"testing if you are making changes elsewhere. WARNING: seriously "
+"impairs performance."
+msgstr ""
+"Re-générera la sous-requête pour cette relation à chaque fois que "
+"la vue est exécutée, au lieu de seulement quand ces options sont "
+"enregistrées. Utilisez ceci pour tester si vous faites des "
+"modifications autre part. AVERTISSEMENT : détériore sérieusement "
+"les performances."
+msgid "Expose this sort to visitors, to allow them to change it"
+msgstr "Exposer ce tri aux visiteurs, pour leur permettre de le modifier"
+msgid "This display is disabled."
+msgstr "L'affichage est désactivé."
+msgid ""
+"Error: Display @display refers to a plugin named '@plugin', but that "
+"plugin is not available."
+msgstr ""
+"Erreur : L'affichage @display fait référence à un plugin '@plugin', "
+"mais ce plugin n'est pas disponible."
+msgid "The selected style or row format does not utilize fields."
+msgstr "Le style ou le format de ligne sélectionné n'utilise pas de champs."
+msgid "Aggregation settings"
+msgstr "Paramètres d'agrégation"
+msgid "Display extenders"
+msgstr "Afficher les extensions"
+msgid "Select extensions of the views interface."
+msgstr "Sélectionner les extensions de l'interface de Views."
+msgid ""
+"You have configured display %display with a path which is an path "
+"alias as well. This might lead to unwanted effects so better use an "
+"internal path."
+msgstr ""
+"Vous avez configuré l'affichage %display avec un chemin qui est aussi "
+"un chemin d'alias. Ceci peut produire des effets indésirables, vous "
+"devriez utiliser un chemin interne."
+msgid "Configure aggregation settings for @type %item"
+msgstr "Configurer les paramètres d'agrégation pour @type %item"
+msgid "Select the aggregation function to use on this field."
+msgstr "Sélectionnez la fonction d'agrégation à utiliser sur ce champ."
+msgid "Empty display extender"
+msgstr "Extension d'affichage vide"
+msgid "Raw value from URL"
+msgstr "Valeur brute à partir de l'URL"
+msgid "Apply (all displays)"
+msgstr "Appliquer (tous les affichages)"
+msgid "Apply (this display)"
+msgstr "Appliquer (cet affichage)"
+msgid "The date of the most recent new content on the feed."
+msgstr "La date du contenu le plus récent du flux."
+msgid "The node ID to which the comment is a reply to."
+msgstr "L'identifiant (ID) du nœud auquel le commentaire répond."
+msgid "Comments of the node"
+msgstr "Commentaires du nœud"
+msgid ""
+"Relate all comments on the node. This will create 1 duplicate record "
+"for every comment. Usually if you need this it is better to create a "
+"comment view."
+msgstr ""
+"Relie tous les commentaires du nœud. Ceci créera un doublon pour "
+"chaque commentaire. D'habitude si vous avez besoin de ceci, il est "
+"mieux de créer une vue de commentaires."
+msgid "Appears in: @bundles."
+msgstr "Apparaît dans : @bundles."
+msgid "This is an alias of @group: @field."
+msgstr "Ceci est un alias de @group : @field."
+msgid "@group: @field"
+msgstr "@group : @field"
+msgid "@group (historical data): @field"
+msgstr "@group (données historiques) : @field"
+msgid "Also known as: !also."
+msgstr "Aussi connue comme : \"!also\""
+msgid "@label (!name:!column)"
+msgstr "@label (!name:!column)"
+msgid "@label:!column"
+msgstr "@label:!column"
+msgid "@label (!name:delta)"
+msgstr "@label (!name:delta)"
+msgid "@label:delta"
+msgstr "@label:delta"
+msgid "Delta - Appears in: @bundles."
+msgstr "Delta - Apparaît dans : @bundles."
+msgid "User who uploaded"
+msgstr "Utilisateur ayant transféré"
+msgid "The user that uploaded the file."
+msgstr "L'utilisateur qui a transféré le fichier."
+msgid "Taxonomy term chosen from autocomplete or select widget."
+msgstr ""
+"Terme de taxonomie choisi depuis le widget d'autocomplétion ou de "
+"sélection."
+msgid "Representative node"
+msgstr "Nœud représentatif"
+msgid ""
+"Obtains a single representative node for each term, according to a "
+"chosen sort criterion."
+msgstr ""
+"Récupère un nœud représentatif unique pour chaque terme, selon le "
+"critère de sélection choisi."
+msgid "The taxonomy term name."
+msgstr "Le nom du terme de taxonomie."
+msgid "Content with term"
+msgstr "Contenu avec terme"
+msgid "Relate all content tagged with a term."
+msgstr "Relie tous les contenus étiquetté par un terme."
+msgid "Has taxonomy term ID"
+msgstr "Possède un identifiant (ID) de terme de taxonomie"
+msgid "Display content if it has the selected taxonomy terms."
+msgstr ""
+"Affiche le contenu s'il possède les termes de taxonomie "
+"sélectionnés."
+msgid "Has taxonomy term"
+msgstr "Possède un terme de la taxonomie"
+msgid "Taxonomy terms on node"
+msgstr "Termes de taxonomie du nœud"
+msgid "All taxonomy terms"
+msgstr "Tous les termes de taxonomie"
+msgid ""
+"Display content if it has the selected taxonomy terms, or children of "
+"the selected terms. Due to additional complexity, this has fewer "
+"options than the versions without depth."
+msgstr ""
+"Affiche le contenu s'il possède les termes de taxonomie "
+"sélectionnés ou des termes enfants de ceux-ci. En raison d'une "
+"complexité additionnelle, ce paramètre possède moins d'options que "
+"les versions sans profondeur."
+msgid "Has taxonomy term ID (with depth)"
+msgstr "Possède l'identifiant de terme de taxonomie (avec profondeur)"
+msgid "Has taxonomy terms (with depth)"
+msgstr "Possède les termes de taxonomie (avec profondeur)"
+msgid "Has taxonomy term ID depth modifier"
+msgstr ""
+"Possède l'identifiant du terme de taxonomie avec modification de "
+"profondeur"
+msgid "@entity using @field"
+msgstr "@entity utilisant @field"
+msgid "Relate each @entity with a @field set to the term."
+msgstr "Relier chaque @entity contenant un @field défini au terme."
+msgid "!field_name"
+msgstr "!field_name"
+msgid "Taxonomy term ID from URL"
+msgstr "Identifiant (ID) du terme de taxonomie à partir de l'URL"
+msgid ""
+"Obtains a single representative node for each user, according to a "
+"chosen sort criterion."
+msgstr ""
+"Récupère un nœud représentatif unique pour chaque utilisateur, "
+"selon le critère de sélection choisi."
+msgid ""
+"If checked, multiple values for this field will be shown in the same "
+"row. If not checked, each value in this field will create a new row. "
+"If using group by, please make sure to group by \"Entity ID\" for this "
+"setting to have any effect."
+msgstr ""
+"Si coché, les valeurs multiples de ce champ seront affichées sur une "
+"même ligne. Sinon, chaque valeur de ce champ sera visualisée sur une "
+"nouvelle ligne. Si \"groupé par\" est sélectionné, assurez-vous de "
+"grouper par \"Entity ID\" pour que ce paramètre ait l'effet désiré."
+msgid ""
+"Display an icon representing the file type, instead of the MIME text "
+"(such as \"image/jpeg\")"
+msgstr ""
+"Afficher une icône représentant le type de fichier, au lieu du texte "
+"MIME (tel que \"image/jpeg\")"
+msgid ""
+"Load default filter from node page, that's good for related taxonomy "
+"blocks"
+msgstr ""
+"Charge le filtre par défaut depuis la page de nœud, c'est utile pour "
+"les blocs de taxonomie associée."
+msgid "Path component"
+msgstr "Composant de chemin"
+msgid ""
+"The numbering starts from 1, e.g. on the page admin/structure/types, "
+"the 3rd path component is \"types\"."
+msgstr ""
+"Le numéro de séquence commence à 1, par exemple sur la page "
+"admin/structure/types, le 3ème composant est \"types\"."
+msgid "Use aggregation"
+msgstr "Utiliser l'agrégation"
+msgid "Display title may not be empty."
+msgstr "Le titre de l'affichage ne peut pas être vide."
+msgid "When the filter value is <em>NOT</em> available"
+msgstr "Quand la valeur de filtre <em>N'EST PAS</em> disponible"
+msgid "When the filter value <em>IS</em> available or a default is provided"
+msgstr ""
+"Quand la valeur de filtre <em>EST</em> disponible ou qu'une valeur par "
+"défaut est fournie"
+msgid ""
+"This display does not have a source for contextual filters, so no "
+"contextual filter value will be available unless you select 'Provide "
+"default'."
+msgstr ""
+"Cet affichage n'a pas de source pour les filtres contextuels, donc "
+"aucune valeur de filtre contextuel ne sera disponible à moins que "
+"vous sélectionniez 'Fournir la valeur par défaut'."
+msgid "The contextual filter values is provided by the URL."
+msgstr "Les valeurs de filtre contextuel sont fournies par l'URL."
+msgid "Query Comment"
+msgstr "Commentaire de requête"
+msgid ""
+"If set, this comment will be embedded in the query and passed to the "
+"SQL server. This can be helpful for logging or debugging."
+msgstr ""
+"Si défini, ce commentaire sera intégré dans la requête et transmis "
+"au serveur SQL. Ceci peut être utile pour la journalisation ou le "
+"débogage."
+msgid "When needed, add the field language condition to the query"
+msgstr "Si nécessaire, ajouter la condition de langue à la requête"
+msgid "Count DISTINCT"
+msgstr "Count DISTINCT"
+msgid "Provide default field wrapper elements"
+msgstr "Fournir les éléments par défaut des enveloppes de champs"
+msgid ""
+"Inline fields will be displayed next to each other rather than one "
+"after another. Note that some fields will ignore this if they are "
+"block elements, particularly body fields and other formatted HTML."
+msgstr ""
+"Les champs en ligne seront affichés les uns à côté des autres au "
+"lieu des uns au dessus des autres. Notez que certains champs "
+"ignoreront ceci si ce sont des éléments de bloc, en particulier les "
+"champs de corps et d'autres formatés en HTML."
+msgid "Show the empty text in the table"
+msgstr "Afficher le texte vide dans le tableau"
+msgid "Enabled modules: %modules"
+msgstr "Modules activés : %modules"
+msgid "The field that is going to be used as the RSS item title for each row."
+msgstr ""
+"Le champ qui sera utilisé comme titre de l'élément du flux RSS pour "
+"chaque ligne."
+msgid ""
+"The field that is going to be used as the RSS item link for each row. "
+"This must be a drupal relative path."
+msgstr ""
+"Le champ qui sera utilisé comme lien de l'élément du flux RSS pour "
+"chaque ligne. Ceci doit être un chemin relatif de drupal."
+msgid ""
+"The field that is going to be used as the RSS item description for "
+"each row."
+msgstr ""
+"Le champ qui sera utilisé comme description de l'élément du flux "
+"RSS pour chaque ligne."
+msgid "Creator field"
+msgstr "Champ créateur"
+msgid "Publication date field"
+msgstr "Champ date de publication"
+msgid "File %file could not be copied because it does not exist."
+msgstr "Le fichier %file n'a pas pu être copié car il n'existe pas."
+msgid ""
+"An existing local file system path for storing private files. It "
+"should be writable by Drupal and not accessible over the web. See the "
+"online handbook for <a href=\"@handbook\">more information about "
+"securing private files</a>."
+msgstr ""
+"Un chemin de fichier local existant pour le stockage de fichiers "
+"privés. Il doit être inscriptible par Drupal et non accessible via "
+"Internet. Consultez la section du manuel en ligne pour <a "
+"href=\"@handbook\">plus d'informations sur la sécurité des fichiers "
+"privés</a>."
+msgid "Bolivia, Plurinational State of"
+msgstr "Bolivie"
+msgid "Côte d'Ivoire"
+msgstr "Côte d'Ivoire"
+msgid "Curaçao"
+msgstr "Curaçao"
+msgid "Réunion"
+msgstr "Réunion"
+msgid "Venezuela, Bolivarian Republic of"
+msgstr "Venezuela"
+msgid "Entity Reference"
+msgstr "Entity Reference"
+msgid "An autocomplete text field."
+msgstr "Un champ de texte à autocomplétion."
+msgid "Display the label of the referenced entities."
+msgstr "Afficher l'étiquette des entités référencées."
+msgid "Rendered entity"
+msgstr "Entité rendue"
+msgid "Display the referenced entities rendered by entity_view()."
+msgstr "Afficher les entités référencées rendues par entity_view()."
+msgid "Link label to the referenced entity"
+msgstr "Lier l'étiquette à l'entité référencée"
+msgid "Link to the referenced entity"
+msgstr "Lien vers l'entité référencée"
+msgid "Rendered as @mode"
+msgstr "Affiché(e) comme @mode"
+msgid "Default date"
+msgstr "Date par défaut."
+msgid "No default value"
+msgstr "Pas de valeur par défaut"
+msgid "Time increments"
+msgstr "Incréments de temps"
+msgid "10 minute"
+msgstr "10 minutes"
+msgid "30 minute"
+msgstr "30 minutes"
+msgid "Date value"
+msgstr "Valeur de date"
+msgid "Fields type(s) in use"
+msgstr "Type(s) de champs en cours d'utilisation"
+msgid "Fields pending deletion"
+msgstr "Champs en attente de suppression"
+msgid "(module: !module)"
+msgstr "(module : !module)"
+msgid "Shown"
+msgstr "Affiché"
+msgid "Users may translate this field."
+msgstr "Les utilisateurs peuvent traduire ce champ."
+msgid "Entity translation"
+msgstr "Traduction d'entité"
+msgid "Change handler"
+msgstr "Changer de gestionnaire"
+msgid "Autocomplete (Tags style)"
+msgstr "Autocomplétion (style Étiquettes)"
+msgid "file from !field_name"
+msgstr "fichier de !field_name"
+msgid "Hide empty column"
+msgstr "Cacher les colonnes vides"
+msgid "The operator is invalid on filter: @filter."
+msgstr "L'opérateur est invalide sur le filtre : @filter."
+msgid "No valid values found on filter: @filter."
+msgstr "Aucune valeur valide trouvée sur le filtre : @filter."
+msgid "The value @value is not an array for @operator on filter: @filter"
+msgstr ""
+"La valeur @value n'est pas un tableau pour @operator sur le filtre : "
+"@filter"
+msgid ""
+"Enter PHP code that returns TRUE or FALSE. No return is the same as "
+"FALSE, so be SURE to return something if you do not want to declare "
+"the argument invalid. Do not use &lt;?php ?&gt;. The argument to "
+"validate will be \"$argument\" and the view will be \"$view\". You may "
+"change the argument by setting \"$handler->argument\". You may change "
+"the title used for substitutions for this argument by setting "
+"\"$handler->validated_title\"."
+msgstr ""
+"Saisir du code PHP qui retourne TRUE ou FALSE. Pas de retour est la "
+"même chose que FALSE, soyez donc SÛR de retourner quelque chose si "
+"vous ne souhaitez pas déclarer d'argument d'invalidité. Ne pas "
+"utiliser la balise<?php ?>. L'argument de validité sera \"$argument\" "
+"et la vue, \"$view\". Vous pouvez changer l'argument en définissant "
+"\"$handler->argument\". Vous pouvez changer le titre utilisé en "
+"substitution pour cet argument en définissant "
+"\"$handler->validated_title\"."
+msgid ""
+"If not checked, fields that are not configured to customize their HTML "
+"elements will get no wrappers at all for their field, label and field "
+"+ label wrappers. You can use this to quickly reduce the amount of "
+"markup the view provides by default, at the cost of making it more "
+"difficult to apply CSS."
+msgstr ""
+"Si non coché, les champs qui ne sont pas configurés pour "
+"personnaliser leur élément HTML n'obtiendront aucune enveloppe "
+"(wrapper) ni pour leur champ, ni pour leur étiquette ni pour le champ "
+"+ étiquette. Vous pouvez utiliser ceci pour rapidement réduire le "
+"nombre de balises que fournit la vue par défaut, au risque de rendre "
+"plus difficile l'application des CSS."
+msgid "@label (@column)"
+msgstr "@label (@column)"
+msgid "Simple text"
+msgstr "Texte simple"
+msgid "Checked"
+msgstr "Vérifié"
+msgid "Sender e-mail"
+msgstr "Courriel de l'expéditeur"
+msgid "Header 2"
+msgstr "En-tête 2"
+msgid "The requested page \"@path\" could not be found."
+msgstr "La page demandée \"@path\" n'a pas pu être trouvée."
+msgid ""
+"The form has become outdated. Copy any unsaved work in the form below "
+"and then <a href=\"@link\">reload this page</a>."
+msgstr ""
+"Le formulaire n'est plus à jour. Copiez tout travail non enregistré "
+"dans le formulaire ci-dessous puis <a href=\"@link\">rechargez cette "
+"page</a>."
+msgid ""
+"There are several decisions you will need to make before defining a "
+"field for content, comments, etc.:"
+msgstr ""
+"Il y a plusieurs décisions que vous devrez prendre avant de définir "
+"un champ pour le contenu, les commentaires, etc. :"
+msgid ""
+"The throbber display does not show the status of uploads but takes up "
+"less space. The progress bar is helpful for monitoring progress on "
+"large uploads."
+msgstr ""
+"L'indicateur d'activité (throbber) n'affiche pas le statut des "
+"transferts mais prend moins de place. La barre de progression est "
+"utile pour surveiller la progression des gros transferts."
+msgid ""
+"The search index is not cleared but systematically updated to reflect "
+"the new settings. Searching will continue to work but new content "
+"won't be indexed until all existing content has been re-indexed. This "
+"action cannot be undone."
+msgstr ""
+"L'index de la recherche n'est pas vidé mais systématiquement mis à "
+"jour pour refléter les nouveaux paramètres. La recherche continuera "
+"de fonctionner mais le nouveau contenu ne sera pas indexé tant que "
+"tout le contenu existant n'a pas été ré-indexé. Cette action est "
+"irréversible."
+msgid "Active search modules"
+msgstr "Modules de recherche actifs"
+msgid "No shortcuts available. <a href=\"@link\">Add a shortcut</a>."
+msgstr ""
+"Pas de raccourcis disponibles. <a href=\"@link\">Ajouter un "
+"raccourci</a>."
+msgid "Leave this blank to delete both the existing username and password."
+msgstr ""
+"Laisser ceci vide pour supprimer à la fois le nom d'utilisateur "
+"existant et le mot de passe."
+msgid "To change the password, enter the new password here."
+msgstr "Pour modifier le mot de passe, saisissez le nouveau mot de passe ici."
+msgid ""
+"HTTP authentication credentials must include a username in addition to "
+"a password."
+msgstr ""
+"Les informations d'authentification HTTP doivent inclure un nom "
+"d'utilisateur en plus d'un mot de passe."
+msgid "Incompatible with this version of Drupal core."
+msgstr "Incompatible avec cette version du cœur Drupal."
+msgid ""
+"Cron takes care of running periodic tasks like checking for updates "
+"and indexing content for search."
+msgstr ""
+"Le planificateur de tâche (Cron) s'occupe de lancer des tâches "
+"périodiques pour vérifier les mises à jour et indéxer le contenu "
+"pour la recherche."
+msgid "User name and password"
+msgstr "Nom d'utilisateur et mot de passe"
+msgid "User module account form elements."
+msgstr "Éléments de formulaire de compte utilisateur du module User."
+msgid "Specify which display or custom url this display will link to."
+msgstr ""
+"Préciser à quel affichage ou url personnalisée cet affichage sera "
+"lié."
+msgid "<p>The following tokens are available for this link.</p>"
+msgstr "<p>Les jetons (token) suivants sont disponibles pour ce lien.</p>"
+msgid ""
+"A Drupal path or external URL the more link will point to. Note that "
+"this will override the link display setting above."
+msgstr ""
+"Un chemin Drupal ou une URL externe vers lequel pointera le lien "
+"\"plus\". Noter que cela supplantera le paramètre d'affichage du lien "
+"ci-dessus."
+msgid "<em>Alt</em> field required"
+msgstr "Champ <em>Alt</em> requis"
+msgid "<em>Title</em> field required"
+msgstr "Champ <em>Titre</em> requis"
+msgid "@view : @display"
+msgstr "@view : @display"
+msgid "View: @view - Display: @display"
+msgstr "Vue : @view - Affichage : @display"
+msgid "Overview of fields used in all views."
+msgstr "Vue d'ensemble des champs utilisés dans toutes les vues."
+msgid "Transform the case"
+msgstr "Changer la casse"
+msgid ""
+"When printing url paths, how to transform the case of the filter "
+"value."
+msgstr ""
+"A l'affichage des chemins d'url, comment changer la casse de la valeur "
+"du filtre."
+msgid ""
+"If \"Custom\", see <a "
+"href=\"http://us.php.net/manual/en/function.date.php\" "
+"target=\"_blank\">the PHP docs</a> for date formats. Otherwise, enter "
+"the number of different time units to display, which defaults to 2."
+msgstr ""
+"Si \"Personnalisé\", consulter <a "
+"href=\"http://fr.php.net/manual/fr/function.date.php\" "
+"target=\"_blank\">la documentation PHP</a> pour les formats de date. "
+"Sinon, saisir le nombre d'unités de temps différentes à afficher, "
+"fixé à 2 par défaut."
+msgid "Representative sort criteria"
+msgstr "Critères de tri représentatif"
+msgid ""
+"The sort criteria is applied to the data brought in by the "
+"relationship to determine how a representative item is obtained for "
+"each row. For example, to show the most recent node for each user, "
+"pick 'Content: Updated date'."
+msgstr ""
+"Le critère de tri est appliqué aux données raportées par la "
+"relation pour déterminer comment un élément représentatif est "
+"obtenu pour chaque ligne. Par exemple, pour montrer le nœud le plus "
+"récent pour chaque utilisateur, sélectionner 'Contenu : date de mise "
+"à jour'."
+msgid "The ordering to use for the sort criteria selected above."
+msgstr ""
+"L'ordre à utiliser pour les critères de tri sélectionnés plus "
+"haut."
+msgid "And/Or, Rearrange"
+msgstr "Et/Ou, Réarranger"
+msgid "Revert to default"
+msgstr "Rétablir par défaut"
+msgid ""
+"Optionally, enter a comma delimited list of tags for this view to use "
+"in filtering and sorting views on the administrative page."
+msgstr ""
+"Facultativement, saisir une virgule pour délimiter une liste de "
+"mots-clés pour cette vue à utiliser dans le filtrage et le tri des "
+"vues sur la page d'administration."
+msgid "No fields have been used in views yet."
+msgstr "Aucun champ n'a été jusqu'à présent utilisé dans les vues."
+msgid "Provide a simple link to approve the comment."
+msgstr "Fournir un lien pour approuver le commentaire."
+msgid "Author uid"
+msgstr "uid de l'auteur"
+msgid "Relate each @entity with a @field set to the file."
+msgstr "Relier chaque @entity avec un ensemble @field au fichier."
+msgid "image from !field_name"
+msgstr "image de !field_name"
+msgid "Relate each @entity with a @field set to the image."
+msgstr "Relier chaque @entity avec un ensemble @field à l'image."
+msgid "The tid of a taxonomy term."
+msgstr "Le tid d'un terme de taxonomie"
+msgid "The user permissions."
+msgstr "Les droits utilisateur."
+msgid "First and last only"
+msgstr "Premier et dernier seulement"
+msgid "Multiple-value handling"
+msgstr "Gestion à valeur multiple."
+msgid "Filter to items that share all terms"
+msgstr "Filtrer par éléments qui partagent tous les termes"
+msgid "Filter to items that share any term"
+msgstr "Filtrer par éléments qui partagent n'importe quel terme"
+msgid "Use formatted username"
+msgstr "Utiliser un nom d'utilisateur formaté"
+msgid ""
+"If checked, the username will be formatted by the system. If "
+"unchecked, it will be displayed raw."
+msgstr ""
+"Si coché, le nom d'utilisateur sera formaté par le système. Sinon, "
+"il sera affiché tel quel."
+msgid "You don't have translatable entity types."
+msgstr "Vous n'avez pas de types d'entités traduisibles."
+msgid "Use a pager"
+msgstr "Utiliser une pagination"
+msgid "There was a problem creating field %label: !message"
+msgstr "Il y a eu un problème lors de la création du champ %label : !message"
+msgid ""
+"@module (<span class=\"admin-missing\">incompatible with</span> this "
+"version of Drupal core)"
+msgstr ""
+"@module (<span class=\"admin-missing\">incompatible avec</span> cette "
+"version du cœur de Drupal)"
+msgid "Tokens related to views."
+msgstr "Jetons associés aux vues."
+msgid "The description of the view."
+msgstr "La description de la vue."
+msgid "The title of current display of the view."
+msgstr "Le titre de l'affichage actuel de la vue."
+msgid "The URL of the view."
+msgstr "L'URL de la vue."
+msgid "-Select-"
+msgstr "-Sélectionner-"
+msgid ""
+"Text to place as \"title\" text which most browsers display as a "
+"tooltip when hovering over the link."
+msgstr ""
+"Texte à placer comme texte de l'attribut \"title\" que la plupart des "
+"navigateurs affichent comme bulle d'aide lors du survol du lien."
+msgid ""
+"Enable to hide this field if it is empty. Note that the field label or "
+"rewritten output may still be displayed. To hide labels, check the "
+"style or row style settings for empty fields. To hide rewritten "
+"content, check the \"Hide rewriting if empty\" checkbox."
+msgstr ""
+"Activer pour masquer ce champ s'il est vide. Noter que l'étiquette du "
+"champ ou le rendu réécrit peuvent toujours être affichés. Pour "
+"masquer les étiquettes, vérifier les paramètres du style ou du "
+"style de ligne concernant les champs vides. Pour masquer le contenu "
+"réécrit, cocher la case \"Masquer la réécriture si vide\"."
+msgid "Apostrophe"
+msgstr "Apostrophe"
+msgid "Date in the form of CCYYMMDD."
+msgstr "Date sous la forme AAAAMMJJ."
+msgid "Date in the form of YYYYMM."
+msgstr "Date sous la forme AAAAMM."
+msgid "Date in the form of YYYY."
+msgstr "Date sous la forme AAAA."
+msgid "Date in the form of MM (01 - 12)."
+msgstr "Date sous la forme MM (01 - 12)."
+msgid "Date in the form of DD (01 - 31)."
+msgstr "Date sous la forme JJ (01 - 31)."
+msgid "Date in the form of WW (01 - 53)."
+msgstr "Date sous la forme SS (01 - 53)."
+msgid ""
+"If you need more fields than the uid add the comment: author "
+"relationship"
+msgstr ""
+"Si vous avez besoin de plus de champs que l'uid, ajoutez la relation "
+"Commentaire : auteur"
+msgid "Last comment uid"
+msgstr "Uid du dernier commentaire"
+msgid "The User ID of the author of the last comment of a node."
+msgstr ""
+"L'identifiant utilisateur de l'auteur du dernier commentaire d'un "
+"nœud."
+msgid ""
+"The user authoring the content. If you need more fields than the uid "
+"add the content: author relationship"
+msgstr ""
+"L'utilisateur auteur du contenu. Si vous avez besoin de plus de champs "
+"que l'uid, ajoutez la relation Contenu : auteur"
+msgid "Link field to the node if there is no comment."
+msgstr "Lier le champ au nœud s'il n'y a aucun commentaire."
+msgid "Convert spaces in term names to hyphens"
+msgstr "Convertir les espaces dans les noms de terme en tirets"
+msgid "This allows links to work with Views taxonomy term arguments."
+msgstr ""
+"Ceci permet aux liens de fonctionner avec les arguments de termes de "
+"taxonomie de Views."
+msgid ""
+"Enter PHP code that returns a value to use for this filter. Do not use "
+"&lt;?php ?&gt;. You must return only a single value for just this "
+"filter. Some variables are available: the view object will be "
+"\"$view\". The argument handler will be \"$argument\", for example you "
+"may change the title used for substitutions for this argument by "
+"setting \"argument->validated_title\"\"."
+msgstr ""
+"Saisir du code PHP qui retourne une valeur à utiliser pour ce filtre. "
+"Ne pas utiliser &lt;?php ?&gt;. Vous ne devez retourner qu'une seule "
+"valeur pour ce filtre. Des variables sont disponibles : l'objet vue "
+"sera \"$view\". Le gestionnaire (handler) d'arguments sera "
+"\"$argument\", vous pouvez par exemple changer le titre utilisé pour "
+"les substitutions pour cet argument en définissant "
+"\"$argument->validated_title\"."
+msgid "Use rendered output to group rows"
+msgstr "Utiliser le rendu pour grouper les lignes"
+msgid ""
+"If enabled the rendered output of the grouping field is used to group "
+"the rows."
+msgstr ""
+"Si activé le rendu du champ de regroupement est utilisé pour grouper "
+"les lignes."
+msgid ""
+"You may use HTML code in this field. The following tokens are "
+"supported:"
+msgstr ""
+"Vous pouvez utiliser le code HTML pour ce champ. Les jetons suivants "
+"sont pris en charge :"
+msgid "Provide a simple link to the user."
+msgstr "Fournir un simple lien vers l'utilisateur."
+msgid "Result summary"
+msgstr "Résumé des résultats"
+msgid "Shows result summary, for example the items per page."
+msgstr ""
+"Affiche le résumé des résultats, par exemple les éléments par "
+"page."
+msgid "Use site default RSS settings"
+msgstr "Utiliser les paramètres RSS par défaut du site"
+msgid "Display list value as human readable"
+msgstr "Afficher les valeurs des listes de manière lisible"
+msgid "Displays the link in contextual links"
+msgstr "Affiche le lien dans les liens contextuels"
+msgid "Grouping field Nr.@number"
+msgstr "Champ de groupement N°@number"
+msgid ""
+"Your search used too many AND/OR expressions. Only the first @count "
+"terms were included in this search."
+msgstr ""
+"Votre recherche comporte trop d'opérateurs AND/OR. Seuls les @count "
+"premiers termes seront pris en compte dans cette recherche."
+msgid "The test cannot be executed because it has not been set up properly."
+msgstr ""
+"Le test ne peut pas être executé car il n'a pas été initialisé "
+"correctement."
+msgid "Found field with name @name"
+msgstr "Un champ avec le nom @field trouvé"
+msgid "Found field with name @name and value @value"
+msgstr "Un champ avec le nom @field et la valeur @value trouvé"
+msgid "The selected selection handler is broken."
+msgstr "Le gestionnaire de sélection sélectionné est cassé."
+msgid "Add a read-more link if output is trimmed."
+msgstr "Ajouter un lien \"lire plus\" si la sortie est tronquée."
+msgid "Display field as machine name."
+msgstr "Afficher le champ comme un nom machine."
+msgid "Show the embed display in the ui."
+msgstr "Montrer l'affichage intégré dans l'interface graphique."
+msgid ""
+"Allow advanced user to use the embed view display. The plugin itself "
+"works if it's not visible in the ui"
+msgstr ""
+"Autoriser les utilisateurs avancés à utiliser l'affichage de vue "
+"intégré. Le plugin fonctionne même s'il n'est pas visible dans "
+"l'interface"
+msgid ""
+"All Views-generated queries will include the name of the views and "
+"display 'view-name:display-name' as a string  at the end of the SELECT "
+"clause. This makes identifying Views queries in database server logs "
+"simpler, but should only be used when troubleshooting."
+msgstr ""
+"Toutes les requêtes générées par Views inclueront les noms des "
+"vues et des affichages dans une chaîne de caractères "
+"'view-name:display-name' à la fin de la clause SELECT. Cela facilite "
+"l'identification des requêtes Views dans les journaux du serveur de "
+"base de données mais ne doit être utilisé qu'à des fins de "
+"diagnostic."
+msgid "Provide a display which can be embedded using the views api."
+msgstr ""
+"Fournir un affichage pouvant être intégré en utilisant l'API de "
+"Views."
+msgid "Only has the 'authenticated user' role"
+msgstr "N'a que le rôle 'utilisateur authentifié'"
+msgid "Has roles in addition to 'authenticated user'"
+msgstr "A d'autres rôles que 'utilisateur authentifié'"
+msgid "Remove tags from rendered output"
+msgstr "Retirer les balises du rendu"
+msgid "Fields to be included as contextual links."
+msgstr "Les champs à inclure comme liens contextuels."
+msgid "Include destination"
+msgstr "Inclure la destination"
+msgid ""
+"Include a \"destination\" parameter in the link to return the user to "
+"the original view upon completing the contextual action."
+msgstr ""
+"Inclure un paramètre \"destination\" dans le lien pour rediriger "
+"l'utilisateur à la vue originale après avoir terminé l'action "
+"contextuelle."
+msgid "Contextual Links"
+msgstr "Liens contextuels"
+msgid "Display fields in a contextual links menu."
+msgstr "Afficher les champs dans un menu de liens contextuels."
+msgid "Disable translation"
+msgstr "Désactiver la traduction"
+msgid "Custom Text"
+msgstr "Texte Personnalisé"
+msgid "This field supports tokens."
+msgstr "Ce champ prend en charge les jetons (tokens)."
+msgid "@label (!name:language)"
+msgstr "@label (!name : langue)"
+msgid "@label:language"
+msgstr "@label : langue"
+msgid "Language - Appears in: @bundles."
+msgstr "Langue - apparaît dans @bundles"
+msgid ""
+"A list field (@field_name) with existing data cannot have its keys "
+"changed."
+msgstr ""
+"Un champ de type liste (@field_name) avec des données existantes ne "
+"peut pas avoir ses clés changées."
+msgid ""
+"A unique machine-readable name containing letters, numbers, and "
+"underscores."
+msgstr ""
+"Un nom système unique contenant des lettres, nombres et des tirets "
+"bas."
+msgid ""
+"If no image is uploaded, this image will be shown on display and will "
+"override the field's default image."
+msgstr ""
+"Si aucune image n'est transférée, cette image sera montrée à "
+"l'affichage et surchargera l'image par défaut du champ."
+msgid "No blocked IP addresses available."
+msgstr "Aucune adresse IP bloquée n'est disponible."
+msgid "Taxonomy field @field_name not found."
+msgstr "Le champ de taxonomie @field_name n'a pas été trouvé."
+msgid "You have unsaved changes"
+msgstr "Vous avez des changements non enregistrés"
+msgid "Loading…"
+msgstr "Chargement..."
+msgid "Needs to be updated"
+msgstr "Nécessite une mise à jour"
+msgid "Does not need to be updated"
+msgstr "Ne nécessite aucune mise à jour"
+msgid "Edit comment @subject"
+msgstr "Modifier le commentaire @subject"
+msgid "Used in views"
+msgstr "Utilisés dans les vues"
+msgid "Views plugins"
+msgstr "Plugins de Views"
+msgid "Overview of plugins used in all views."
+msgstr "Vue d'ensemble des plugins utilisés dans toutes les vues."
+msgid "Display \"Access Denied\""
+msgstr "Afficher \"Accès refusé\""
+msgid "Timezone to be used for date output."
+msgstr "Timezone à utiliser pour le rendu de la date."
+msgid "- Default site/user timezone -"
+msgstr "- Timezone par défaut du site ou de l'utilisateur -"
+msgid ""
+"Grouped filters allow a choice between predefined operator|value "
+"pairs."
+msgstr ""
+"Les filtres groupés permettent de choisir entre les couples "
+"opérateur|valeur prédéfinis."
+msgid "Filter type to expose"
+msgstr "Type de filtrer à exposer"
+msgid "Single filter"
+msgstr "Filtre unique"
+msgid "Grouped filters"
+msgstr "Filtres groupés"
+msgid ""
+"Remember exposed selection only for the selected user role(s). If you "
+"select no roles, the exposed data will never be stored."
+msgstr ""
+"Se rappeler de la sélection du filtre exposé uniquement pour le(s) "
+"rôle(s) sélectionné(s). Si vous ne sélectionnez pas de rôle, la "
+"valeur du filtre exposé ne sera jamais mémorisée."
+msgid "The value is required if title for this item is defined."
+msgstr "La valeur est obligatoire si un titre est défini pour cet élément."
+msgid "The title is required if value for this item is defined."
+msgstr "Le titre est requis si une valeur est définie pour cet élément."
+msgid ""
+"Select which kind of widget will be used to render the group of "
+"filters"
+msgstr ""
+"Sélectionner le type de widget qui sera utilisé pour afficher le "
+"groupe de filtres."
+msgid "grouped"
+msgstr "groupés"
+msgid "Choose fields to combine for filtering"
+msgstr "Choisir les champs à combiner pour le filtre"
+msgid "You have to add some fields to be able to use this filter."
+msgstr "Vous devez ajouter des champs pour pouvoir utiliser ce filtre."
+msgid "@entity types"
+msgstr "Types de @entity"
+msgid "Sort within each hierarchy level"
+msgstr "Trier dans chaque niveau de la hiérarchie"
+msgid "There is no lock on view %name to break."
+msgstr "Il n'y a aucun verrou à casser sur la vue %name."
+msgid "&lt;Any&gt;"
+msgstr "&lt;Aucun&gt;"
+msgid "There are no enabled views."
+msgstr "Il n'y a pas de vues actives."
+msgid "Display fields as RSS items."
+msgstr "Afficher les champs comme éléments RSS."
+msgid "The language the comment is in."
+msgstr "La langue de ce commentaire."
+msgid "- No value -"
+msgstr "- Pas de valeur -"
+msgid "Provide a simple link to the revision."
+msgstr "Fournr un lien simple vers la révision."
+msgid "The ID of the entity that is related to the file."
+msgstr "L'identifiant (ID) de l'entité liée au fichier."
+msgid "Filter the results of \"Taxonomy: Term\" by the parent pid."
+msgstr "Filtrer les résultats de \"Taxonomie : Terme\" par le pid parent."
+msgid "The raw numeric user ID."
+msgstr "L'identifiant (ID) numérique brut de l'utilisateur."
+msgid "Unfiltered text"
+msgstr "Texte non filtré"
+msgid "Combine fields filter"
+msgstr "Grouper le filtre des champs"
+msgid "Combine two fields together and search by them."
+msgstr "Grouper deux champs ensemble et les utiliser pour la recherche."
+msgid "Column used for click sorting"
+msgstr "Colonne utilisée pour le tri au clic"
+msgid "Use path alias instead of internal path."
+msgstr "Utiliser l'alias de chemin au lieu du chemin interne."
+msgid "Length of time in seconds raw query results should be cached."
+msgstr ""
+"Durée en secondes pendant laquelle les résultats bruts de la "
+"requête doivent être mis en cache."
+msgid "Length of time in seconds rendered HTML output should be cached."
+msgstr ""
+"Durée en secondes pendant laquelle le rendu HTML doit être mis en "
+"cache."
+msgid "Custom time values must be numeric."
+msgstr "Les valeurs horaires personnalisées doivent être numériques."
+msgid "Display 'more' link only if there is more content"
+msgstr "N'afficher le lien 'plus' que s'il y a plus de contenu"
+msgid ""
+"Leave this unchecked to display the 'more' link even if there are no "
+"more items to display."
+msgstr ""
+"Laissez cette case décochée pour afficher le lien \"plus\" même "
+"s'il n'y a pas d'autres éléments à afficher."
+msgid "View: !view: !display"
+msgstr "Vue : !view: !display"
+msgid "Number of pager links visible"
+msgstr "Nombre de liens de pagination visibles"
+msgid "Query Tags"
+msgstr "Tags de la requête"
+msgid ""
+"The field that is going to be used as the RSS item pubDate for each "
+"row. It needs to be in RFC 2822 format."
+msgstr ""
+"Le champ qui sera utilisé comme pubDate de l'élément du flux RSS "
+"pour chaque ligne. Il doit respecter le format décrit dans la RFC "
+"2822."
+msgid "GUID settings"
+msgstr "Paramètres de GUID"
+msgid "GUID field"
+msgstr "Champ GUID"
+msgid "The globally unique identifier of the RSS item."
+msgstr "L'identificateur global unique de l'élément RSS."
+msgid "GUID is permalink"
+msgstr "GUID est un permalien"
+msgid "The RSS item GUID is a permalink."
+msgstr "Le GUID de l'élément RSS est un permalien."
+msgid "Add views row classes"
+msgstr "Ajouter des classes aux lignes de vues"
+msgid ""
+"Add css classes to the first and last line, as well as odd/even "
+"classes for striping."
+msgstr ""
+"Ajouter des classes CSS aux première et dernière ligne ainsi que les "
+"classes pair/impair pour le striage."
+msgid "Force using fields"
+msgstr "Forcer l'utilisation des champs"
+msgid "The URL %url is not valid."
+msgstr "L'URL %url n'est pas valide."
+msgid "Do not display links"
+msgstr "Ne pas afficher les liens"
+msgid "The connection protocol %backend does not exist."
+msgstr "Le protocole de connexion %backend n'existe pas."
+msgid "Unknown (@langcode)"
+msgstr "Inconnu (@langcode)"
+msgid "\"@key\" is an invalid render array key"
+msgstr "\"@key\" est une clef de tableau de rendu invalide"
+msgid ""
+"The file could not be uploaded because the destination %destination is "
+"invalid."
+msgstr ""
+"Le fichier %file n'a pas pu être transféré car la destination "
+"%destination n'est pas valide."
+msgid ""
+"File %file could not be copied because the destination directory "
+"%destination is not configured correctly."
+msgstr ""
+"Le fichier %file n'a pas pu être copié car le répertoire de "
+"destination %destination n'est pas correctement configuré."
+msgid "The file %path was not deleted because it does not exist."
+msgstr "Le fichier %path n'a pas été supprimé car il n'existe pas."
+msgid "%name field is not in the right format."
+msgstr "Le champ %name n'est pas au bon format."
+msgid "%name must be higher or equal to %min."
+msgstr "%name doit être supérieur ou égal à %min."
+msgid "%name must be below or equal to %max."
+msgstr "%name doit être inférieur ou égal à %max."
+msgid "%name is not a valid number."
+msgstr "%name n'est pas un nombre valide."
+msgid "%name must be a valid color."
+msgstr "%name doit être une couleur valide."
+msgid "Check the messages and <a href=\"!url\">try again</a>."
+msgstr "Vérifiez les messages et <a href=\"!url>réessayez</a>."
+msgid "The settings file is not readable."
+msgstr "Le fichier de paramètres n'est pas lisible."
+msgid "Subscribe to !feed-title"
+msgstr "S'abonner à !feed-title"
+msgid "Theme hook %hook not found."
+msgstr "Hook de thème %hook non trouvé"
+msgid "Table @name already exists."
+msgstr "La table @name existe déjà."
+msgid "Cannot rename @table to @table_new: table @table doesn't exist."
+msgstr ""
+"Impossible de renommer @table en @table_new : la table @table n'existe "
+"pas."
+msgid "Cannot rename @table to @table_new: table @table_new already exists."
+msgstr ""
+"Impossible de renommer @table en @table_new : la table @table_new "
+"existe déjà."
+msgid "Cannot add field @table.@field: table doesn't exist."
+msgstr "Impossible d'ajouter le champ @table.@field : la table n'existe pas."
+msgid "Cannot add field @table.@field: field already exists."
+msgstr "Impossible d'ajouter le champ @table.@field : le champ existe déjà."
+msgid "Cannot set default value of field @table.@field: field doesn't exist."
+msgstr ""
+"Impossible de définir une valeur par défaut pour le champ "
+"@table.@field : le champ n'existe pas."
+msgid ""
+"Cannot remove default value of field @table.@field: field doesn't "
+"exist."
+msgstr ""
+"Impossible de supprimer la valeur par défaut du champ @table.@field : "
+"le champ n'existe pas."
+msgid "Cannot add primary key to table @table: table doesn't exist."
+msgstr ""
+"Impossible d'ajouter une clef primaire à la table @table : la table "
+"n'existe pas."
+msgid "Cannot add primary key to table @table: primary key already exists."
+msgstr ""
+"Impossible d'ajouter une clef primaire à la table @table : la clef "
+"primaire existe déjà."
+msgid "Cannot add unique key @name to table @table: table doesn't exist."
+msgstr ""
+"Impossible d'ajouter la clef unique @name à la table @table : la "
+"table n'existe pas."
+msgid ""
+"Cannot add unique key @name to table @table: unique key already "
+"exists."
+msgstr ""
+"Impossible d'ajouter la clef unique @name à la table @table : la clef "
+"unique existe déjà."
+msgid "Cannot add index @name to table @table: table doesn't exist."
+msgstr ""
+"Impossible d'ajouter l'index @name à la table @table : la table "
+"n'existe pas."
+msgid "Cannot add index @name to table @table: index already exists."
+msgstr ""
+"Impossible d'ajouter l'index @name à la table @table : l'index existe "
+"déjà."
+msgid ""
+"Cannot change the definition of field @table.@name: field doesn't "
+"exist."
+msgstr ""
+"Impossible de changer la définition du champ @table.@name : le champ "
+"n'existe pas."
+msgid ""
+"Cannot rename field @table.@name to @name_new: target field already "
+"exists."
+msgstr ""
+"Impossible de renommer le champ @table.@name en @name_new : le champ "
+"cible existe déjà."
+msgid "There is no @label yet."
+msgstr "Il n'y a encore aucun(e) @label."
+msgid "Boolean value"
+msgstr "Valeur booléenne"
+msgid "The referenced entity"
+msgstr "L'entité référencée"
+msgid "Integer value"
+msgstr "Valeur numérique entière"
+msgid "Show all columns"
+msgstr "Montrer toutes les colonnes"
+msgid "Hide unimportant columns"
+msgstr "Masquer les colonnes sans importance"
+msgid "Aggregator refresh"
+msgstr "Actualiser l’agrégateur"
+msgid "The feed from %site seems to be broken because of error \"%error\"."
+msgstr ""
+"Le flux du site %site semble être cassé à cause de l'erreur  "
+"\"%error\"."
+msgid "The feed from %site seems to be broken due to \"%error\"."
+msgstr "Le flux du site %site semble être cassé à cause de \"%error\"."
+msgid "The feed %name has been added."
+msgstr "Le flux %name a été ajouté."
+msgid "The feed %title has been deleted."
+msgstr "Le flux %title a été supprimé."
+msgid "The category %title has been added."
+msgstr "La catégorie %title a été ajoutée."
+msgid "The URL invalidUrl://empty is not valid."
+msgstr "L'URL invalidUrl://empty n'est pas valide."
+msgid "The feed %name has been updated."
+msgstr "Le flux %name a été mis à jour."
+msgid "Banning IP addresses"
+msgstr "Blocage d'adresses IP"
+msgid "Language type"
+msgstr "Type de langue"
+msgid "Show this block only for specific languages"
+msgstr "Afficher ce bloc uniquement pour des langues spécifiques"
+msgid "active tab"
+msgstr "onglet actif"
+msgid "No book content available."
+msgstr "Aucun contenu de livre disponible."
+msgid "E-mail field is required."
+msgstr "Le champ courriel est requis."
+msgid "Make this the default category."
+msgstr "Faire de ceci la catégorie par défaut."
+msgid "admin/reports/dblog"
+msgstr "admin/reports/dblog"
+msgid "node/@nid"
+msgstr "node/@nid"
+msgid "Field type(s) in use - see <a href=\"@fields-page\">Field list</a>"
+msgstr ""
+"Type(s) de champ(s) utilisé(s) - voir <a href=\"@fields-page\">Liste "
+"des champs</a>"
+msgid "Field !name"
+msgstr "Champ !name"
+msgid "Update succeeded."
+msgstr "Mise à jour réussie."
+msgid "Table %table exists."
+msgstr "La table %table existe."
+msgid "URL only"
+msgstr "URL seulement"
+msgid "Add rel=\"@rel\""
+msgstr "Ajouter rel=\"@rel\""
+msgid "The original file still exists."
+msgstr "Le fichier d'origine existe encore."
+msgid "The copied file exists."
+msgstr "Le fichier copié existe."
+msgid "File copy failed."
+msgstr "La copie du fichier a échoué."
+msgid "File exists."
+msgstr "Le fichier existe."
+msgid "Test file is still in use."
+msgstr "Le fichier test est encore utilisé."
+msgid "File is permanent."
+msgstr "Le fichier est permanant."
+msgid "A MIME type was set."
+msgstr "Un type MIME a été défini."
+msgid "File was named correctly."
+msgstr "Le fichier a été nommé correctement."
+msgid "File saved successfully."
+msgstr "Le fichier a été enregistré correctement."
+msgid "Status was saved correctly."
+msgstr "Le statut a été enregistré correctement."
+msgid "A new file was created."
+msgstr "Un nouveau fichier a été créé."
+msgid "Loaded the file."
+msgstr "Le fichier a été chargé."
+msgid "File was loaded successfully"
+msgstr "Le fichier a été chargé avec succès."
+msgid "Only files with the following extensions are allowed:"
+msgstr ""
+"Seulement les fichiers ayant les extensions suivantes sont autorisés "
+":"
+msgid "Can't upload a disallowed extension"
+msgstr "Impossible de transférer une extension non autorisée"
+msgid "Epic upload FAIL!"
+msgstr "Le transfert a échoué lamentablement !"
+msgid "Add new Forum topic"
+msgstr "Ajouter un nouveau sujet de forum"
+msgid "Forum | Drupal"
+msgstr "Forum | Drupal"
+msgid "Edit style %name"
+msgstr "Modifier le style %name"
+msgid "Error generating image, missing source file."
+msgstr "Erreur de génération d'image, le fichier source est manquant."
+msgid "Scale and crop 300x200"
+msgstr "Redimensionner et couper en 300x200"
+msgid "Scale and crop 360x240"
+msgstr "Redimensionner et couper en 360x240"
+msgid "Scale 24x19"
+msgstr "Redimensionner en 24x19"
+msgid "Scale 12x19"
+msgstr "Redimensionner en 12x19"
+msgid "Files must be less than 50 KB."
+msgstr "Les fichiers doivent faire moins de 50 KB."
+msgid "Images must be between 10x10 and 100x100 pixels."
+msgstr ""
+"La résolution des images doit être comprise entre 10x10 et 100x100 "
+"pixels."
+msgid "Custom language..."
+msgstr "Langue personnalisée ..."
+msgid "The language %language (%langcode) already exists."
+msgstr "La langue %language (%langcode) existe déjà."
+msgid "Are you sure you want to delete %browser_langcode?"
+msgstr "Êtes-vous sûr(e) de vouloir supprimer %browser_langcode ?"
+msgid "- @name -"
+msgstr "- @name -"
+msgid "Edit language | Drupal"
+msgstr "Modifier la langue | Drupal"
+msgid "logged in users only"
+msgstr "utilisateurs connectés seulement"
+msgid "Header background top"
+msgstr "Fond d'écran du haut de l'entête"
+msgid "Header background bottom"
+msgstr "Fond d'écran du bas de l'entête"
+msgid "Site's default language (@lang_name)"
+msgstr "Langue par défaut du site (@lang_name)"
+msgid "Installation profile"
+msgstr "Profil d'installation"
+msgid "Selected language"
+msgstr "Langue sélectionnée"
+msgid "The revision NID of the content revision."
+msgstr "Le NID de la révision du contenu."
+msgid "Use a custom %field_name"
+msgstr "Utiliser un %field_name personnalisé"
+msgid "@dir can not be opened"
+msgstr "@dir ne peut pas être ouvert"
+msgid "The website has encountered an error. Please try again later."
+msgstr "Le site web a rencontré une erreur. Merci de réessayer plus tard."
+msgid "Category %label has been deleted."
+msgstr "La catégorie %label a été supprimée."
+msgid "Category %label has been added."
+msgstr "La catégorie %label a été ajoutée."
+msgid "Category %label has been updated."
+msgstr "La catégorie %label a été mise à jour."
+msgid "Make sure no label field is shown"
+msgstr "s'assurer qu'aucun label de champ n'est affiché"
+msgid "Group items should have a title"
+msgstr "Les groupes d'éléments doivent avoir un titre"
+msgid "Make sure a label field is shown"
+msgstr "S'assurer que le label du champ est affiché"
+msgid "The pager is not rendered."
+msgstr "La pagination n'est pas rendue."
+msgid "Manage customized lists of content."
+msgstr "Gérer des listes personnalisées de contenu."
+msgid "Uyghur"
+msgstr "Ouïghours"
+msgid "@item could not be found in _context"
+msgstr "@item n'a pas pu être trouvé dans _context"
+msgid "Install another module"
+msgstr "Installer un autre module"
+msgid "Are you sure you want to unblock %ip?"
+msgstr "Êtes-vous sûr(e) de vouloir débloquer %ip ?"
+msgid "There are no configuration changes."
+msgstr "Il n'y a pas de changement de configuration."
+msgid "Import all"
+msgstr "Tout importer"
+msgid "@count new"
+msgid_plural "@count new"
+msgstr[0] "@count nouveau"
+msgstr[1] "@count nouveaux"
+msgid "@count changed"
+msgid_plural "@count changed"
+msgstr[0] "@count modifié"
+msgstr[1] "@count modifiés"
+msgid "@count removed"
+msgid_plural "@count removed"
+msgstr[0] "@count retiré"
+msgstr[1] "@count retirés"
+msgid "Synchronize configuration"
+msgstr "Synchroniser la configuration"
+msgid "Synchronize configuration changes."
+msgstr "Synchroniser les changements de configuration."
+msgid "Contact form categories"
+msgstr "Catégories du formulaire de contact"
+msgid "Flag other translations as outdated"
+msgstr "Marquer les autres traductions comme périmées"
+msgid "Do not flag other translations as outdated"
+msgstr "Ne pas marquer les autres traductions comme périmées"
+msgid "No path is set"
+msgstr "Aucun chemin n'est défini"
+msgid "Langcode"
+msgstr "Code de la langue"
+msgid "Add and configure @handler"
+msgstr "Ajouter et configurer @handler"
+msgid "Are you sure you want to delete the %name view?"
+msgstr "Êtes-vous sûr(e) de vouloir supprimer la vue %name ?"
+msgid "Object of type \"@class\" cannot be printed."
+msgstr "L'objet de type \"@class\" ne peut pas être affiché."
+msgid "View differences"
+msgstr "Visualiser les différences"
+msgid "Entity @type @id, field @field"
+msgstr "Entité @type @id, champ @field"
+msgid "Update !title"
+msgstr "Mettre à jour !title"
+msgid "No item selected."
+msgstr "Aucun élément sélectionné."
+msgid "Group separator"
+msgstr "Séparateur de groupes"
+msgid "Custom output for TRUE"
+msgstr "Données de sortie personnalisées pour TRUE"
+msgid "Custom output for FALSE"
+msgstr "Données de sortie personnalisées pour FAUX"
+msgid "File added"
+msgstr "Fichier ajouté"
+msgid "File removed"
+msgstr "Fichier supprimé"
+msgid ""
+"File %file could not be copied because a file by that name already "
+"exists in the destination directory (%destination)"
+msgstr ""
+"Le fichier %file n'a pas pu être copié car un fichier ayant le même "
+"nom existe déjà dans le répertoire de destination (%destination)"
+msgid "!title!required"
+msgstr "!title!required"
+msgid "Translate configuration"
+msgstr "Traduire la configuration"
+msgid "Translations directory"
+msgstr "Répertoire des traductions"
+msgid "The translations directory does not exist."
+msgstr "Le répertoire des traductions n'existe pas."
+msgid "The diretory %translations_directory exists."
+msgstr "Le répertoire %translations_directory existe."
+msgid "The translations directory is not readable."
+msgstr "Le répertoire des traductions n'est pas lisible."
+msgid "The translations directory is not writable."
+msgstr "Le répertoire des traductions n'est pas accessible en écriture."
+msgid "The translations directory is writable."
+msgstr "Le répertoire des traductions est accessible en écriture."
+msgid "The translation server is offline."
+msgstr "Le serveur de traduction est hors ligne."
+msgid "The translation server is online."
+msgstr "Le serveur de traduction est en ligne."
+msgid "The %language translation is not available."
+msgstr "La traduction %language n'est pas disponible."
+msgid "The %language translation is available."
+msgstr "La traduction %language est disponible."
+msgid "DrupalKernel"
+msgstr "DrupalKernel"
+msgid "Negate the condition."
+msgstr "Inverser la condition."
+msgid "E-mail value"
+msgstr "Valeur du champ courriel"
+msgid "Sint Maarten (Dutch part)"
+msgstr "Saint-Martin (partie néerlandaise)"
+msgid "Not null"
+msgstr "Non nul"
+msgid "Not blank"
+msgstr "Non vide"
+msgid "You have unsaved changes."
+msgstr "Vous avez des changements non enregistrés."
+msgid "All actions, except selected"
+msgstr "Toutes les actions, sauf celles sélectionnées"
+msgid "Only selected actions"
+msgstr "Seulement les actions sélectionnées"
+msgid "Selected actions"
+msgstr "Actions sélectionnées"
+msgid "%action was applied to @count item."
+msgid_plural "%action was applied to @count items."
+msgstr[0] "%action a été appliquée à @count élément."
+msgstr[1] "%action a été appliquée à @count éléments."
+msgid "The ID of the aggregor feed."
+msgstr "L'identifiant (ID) du flux de l'agrégateur."
+msgid "The title of the feed."
+msgstr "Le titre du flux."
+msgid "The feed language code."
+msgstr "Le code langue du flux."
+msgid "The URL to the feed."
+msgstr "L'URL du flux."
+msgid "How often to check for new feed items, in seconds."
+msgstr ""
+"Périodicité de vérification de nouveaux éléments du flux, en "
+"secondes."
+msgid "The link of the feed."
+msgstr "Le lien du flux."
+msgid "The ID of the aggregor item."
+msgstr "L'identifiant (ID) de l’élément de l'agrégateur"
+msgid "The ID of the aggregator feed."
+msgstr "L'identifiant (ID) du flux de l'agrégateur."
+msgid "The title of the feed item."
+msgstr "Le titre de l'élément de flux."
+msgid "The feed item language code."
+msgstr "Le code de langue de l'élément de flux."
+msgid "The link of the feed item."
+msgstr "Le lien de l'élément de flux."
+msgid "The author of the feed item."
+msgstr "L'auteur de l'élément de flux."
+msgid "The body of the feed item."
+msgstr "Le corps de l'élément de flux."
+msgid "Failed to download OPML file due to \"%error\"."
+msgstr "Échec de téléchargement du fichier OPML à cause de \"%error\"."
+msgid "@title category latest items"
+msgstr "Derniers éléments de la catégorie @title"
+msgid "@title feed latest items"
+msgstr "Derniers éléments du flux @title"
+msgid "Dummy length setting"
+msgstr "Paramètre de longueur factice"
+msgid "The feed from %title seems to be broken because of error"
+msgstr "Le flux de %title semble endommagé du fait d'une erreur"
+msgid "Configure %label block in %theme"
+msgstr "Configurer le bloc %label pour %theme"
+msgid "Edit custom block %label"
+msgstr "Modifier le bloc personnalisé %label"
+msgid "custom_block"
+msgstr "custom_block"
+msgid "Custom block types"
+msgstr "Types de bloc personnalisé"
+msgid "Manage custom block types."
+msgstr "Gérer les types de bloc personnalisé"
+msgid "Add custom block type"
+msgstr "Ajouter un type de bloc personnalisé"
+msgid "Edit custom block type"
+msgstr "Modifier le type de bloc personnalisé"
+msgid "@type %info has been created."
+msgstr "%info (@type) a été créé(e)."
+msgid "@type %info has been updated."
+msgstr "%info (@type) a été mis(e) à jour."
+msgid "@type: added %info."
+msgstr "@type : %info ajouté(e)."
+msgid "@type: updated %info."
+msgstr "@type : %info mis(e) à jour."
+msgid "The custom block ID."
+msgstr "L'identifiant (ID) du bloc personnalisé."
+msgid "The custom block UUID."
+msgstr "L'identifiant universel unique (UUID) du bloc personnalisé."
+msgid "The revision ID."
+msgstr "L'identifiant (ID) de la révision."
+msgid "The comment language code."
+msgstr "Le code langue du commentaire."
+msgid "The custom block name."
+msgstr "Le nom du bloc personnalisé."
+msgid "The block type."
+msgstr "Le type du bloc."
+msgid "Enter a description for this block type."
+msgstr "Saisir une description pour ce type de bloc."
+msgid "Create a new revision by default for this block type."
+msgstr "Créer une nouvelle révision par défaut pour ce type de bloc."
+msgid "Custom block type %label has been updated."
+msgstr "Le type de bloc personnalisé %label a été mis à jour."
+msgid "Custom block type %label has been added."
+msgstr "Le type de bloc personnalisé %label a été ajouté."
+msgid "Add %type custom block"
+msgstr "Ajouter un bloc personnalisé %type"
+msgid "Custom block type %label has been deleted."
+msgstr "Le type de bloc personnalisé %label a été supprimé."
+msgid "Output the block in this view mode."
+msgstr "Rendre le bloc dans ce mode d'affichage."
+msgid ""
+"Block with uuid %uuid does not exist. <a href=\"!url\">Add custom "
+"block</a>."
+msgstr ""
+"Le bloc ayant l'identifiant universel unique (uuid) %uuid n'existe "
+"pas. <a href=\"!url\">Ajouter un bloc personnalisé</a>."
+msgid "Custom block %name has been deleted."
+msgstr "Le bloc personnalisé %name a été supprimé."
+msgid "Are you sure you want to delete %type?"
+msgstr "Êtes-vous sûr(e) de vouloir supprimer %type ?"
+msgid "Select the region where this block should be displayed."
+msgstr "Sélectionner la région où ce bloc doit être affiché."
+msgid "You must select a valid block."
+msgstr "Vous devez sélectionner un bloc valide."
+msgid "Place blocks"
+msgstr "Positionner les blocs"
+msgid "Block found in %region_name region."
+msgstr "Bloc présent dans la région %region_name."
+msgid "Blocks | Drupal"
+msgstr "Blocs | Drupal"
+msgid "- Create a new book -"
+msgstr "- Créer un nouveau livre -"
+msgid "Toolbar configuration"
+msgstr "Configuration de la barre d'outils"
+msgid "Available buttons"
+msgstr "Boutons disponibles"
+msgid "Active toolbar"
+msgstr "Barre d'outils active"
+msgid "Remove last button row"
+msgstr "Retirer la dernière ligne de boutons"
+msgid "Add additional button row"
+msgstr "Ajouter une ligne de boutons supplémentaire"
+msgid ""
+"The @name button is currently enabled, in row @row and position "
+"@position."
+msgstr ""
+"Le bouton @name est actuellement activé, à la ligne @row et à la "
+"position @position."
+msgid ""
+"Separators are used to visually split individual buttons. This @name "
+"is currently disabled."
+msgstr ""
+"Les séparateurs sont utilisés pour séparer visuellement les boutons "
+"individuels. Ce @name est actuellement désactivé."
+msgid "The @name button is currently disabled."
+msgstr "Le bouton @name est actuellement désactivé."
+msgid "row number @count added."
+msgstr "ligne numéro @count ajoutée."
+msgid "row removed. @count row@plural remaining."
+msgstr "ligne supprimée, @count ligne@plural restante@plural."
+msgid "@row"
+msgstr "@row"
+msgid "No styles configured"
+msgstr "Aucun style configuré"
+msgid "@count styles configured"
+msgstr "@count styles configurés"
+msgid "Button group separator"
+msgstr "Séparateur de groupes de boutons"
+msgid "Button separator"
+msgstr "Séparateur de boutons"
+msgid "The provided list of styles is syntactically incorrect."
+msgstr "La liste de styles fournie est syntaxiquement incorrecte."
+msgid "You must configure the selected text editor."
+msgstr "Vous devez configurer l'éditeur de texte sélectionné."
+msgid ""
+"E-mail of user that posted the comment. Will be empty if the author is "
+"a registered user."
+msgstr ""
+"Courriel de l'utilisateur ayant posté le commentaire. Sera vide si "
+"l'auteur est un utilisateur enregistré."
+msgid "Approved status"
+msgstr "Statut approuvé"
+msgid "Link to comment"
+msgstr "Lien vers le commentaire"
+msgid "Link to edit comment"
+msgstr "Lien de modification du commentaire"
+msgid "Link to delete comment"
+msgstr "Lien de suppression du commentaire"
+msgid "Translation link"
+msgstr "Lien de traduction"
+msgid "The comment title or subject."
+msgstr "Le titre ou sujet du commentaire."
+msgid "The user ID of the comment author."
+msgstr "L'identifiant (ID) de l'auteur du commentaire."
+msgid "Configuration export"
+msgstr "Exportation de la configuration"
+msgid "Export your site configuration"
+msgstr "Exportez la configuration de votre site"
+msgid "Configuration import"
+msgstr "Importation d'une configuration"
+msgid "Import configuration for your site"
+msgstr "Importez la configuration de votre site"
+msgid "Configuration file diff"
+msgstr "Différentiel du fichier de configuration"
+msgid "View changes of @config_file"
+msgstr "Voir les changements de @config_file"
+msgid "Use the export button below to download your site configuration."
+msgstr ""
+"Utilisez le bouton d'exportation ci-dessous afin de télécharger la "
+"configuration de votre site."
+msgid "Use the upload button below."
+msgstr "Utilisez le bouton de transfert ci-dessous."
+msgid "Select your configuration export file"
+msgstr "Sélectionnez votre fichier d'exportation de configuration"
+msgid "Recipient user name"
+msgstr "Nom d'utilisateur du destinataire"
+msgid "Send copy to sender"
+msgstr "Envoyer une copie à l'expéditeur"
+msgid "The main contact message"
+msgstr "Le message de contact principal"
+msgid "Selected user"
+msgstr "Utilisateur sélectionné."
+msgid "!name (not verified)"
+msgstr "!name (non vérifié)"
+msgid "Unable to determine message recipient."
+msgstr "Impossible de déterminer le destinataire du message."
+msgid "[@label] @subject"
+msgstr "[@label] @subject"
+msgid "@count contextual link"
+msgid_plural "@count contextual links"
+msgstr[0] "@count lien contextuel"
+msgstr[1] "@count liens contextuels"
+msgid "The %field date is required."
+msgstr "La date %field est requise."
+msgid "The %field date is invalid."
+msgstr "La date %field est invalide."
+msgctxt "Sunday abbreviation"
+msgid "Sun"
+msgstr "Dim"
+msgctxt "Monday abbreviation"
+msgid "Mon"
+msgstr "Lun"
+msgctxt "Tuesday abbreviation"
+msgid "Tue"
+msgstr "Mar"
+msgctxt "Wednesday abbreviation"
+msgid "Wed"
+msgstr "Mer"
+msgctxt "Thursday abbreviation"
+msgid "Thu"
+msgstr "Jeu"
+msgctxt "Friday abbreviation"
+msgid "Fri"
+msgstr "Ven"
+msgctxt "Saturday abbreviation"
+msgid "Sat"
+msgstr "Sam"
+msgctxt "Sunday 2 letter abbreviation"
+msgid "Su"
+msgstr "Di"
+msgctxt "Monday 2 letter abbreviation"
+msgid "Mo"
+msgstr "Lu"
+msgctxt "Tuesday 2 letter abbreviation"
+msgid "Tu"
+msgstr "Ma"
+msgctxt "Wednesday 2 letter abbreviation"
+msgid "We"
+msgstr "Me"
+msgctxt "Thursday 2 letter abbreviation"
+msgid "Th"
+msgstr "Je"
+msgctxt "Friday 2 letter abbreviation"
+msgid "Fr"
+msgstr "Ve"
+msgctxt "Saturday 2 letter abbreviation"
+msgid "Sa"
+msgstr "Sa"
+msgctxt "Sunday 1 letter abbreviation"
+msgid "S"
+msgstr "D"
+msgctxt "Monday 1 letter abbreviation"
+msgid "M"
+msgstr "L"
+msgctxt "Tuesday 1 letter abbreviation"
+msgid "T"
+msgstr "M"
+msgctxt "Wednesday 1 letter abbreviation"
+msgid "W"
+msgstr "M"
+msgctxt "Thursday 1 letter abbreviation"
+msgid "T"
+msgstr "J"
+msgctxt "Friday 1 letter abbreviation"
+msgid "F"
+msgstr "V"
+msgctxt "Saturday 1 letter abbreviation"
+msgid "S"
+msgstr "S"
+msgid "Format: @display"
+msgstr "Format : @display"
+msgid "Month/Day/Year"
+msgstr "Mois/Jour/Année"
+msgid "Day/Month/Year"
+msgstr "Jour/Mois/Année"
+msgid "Year/Month/Day"
+msgstr "Année/Mois/Jour"
+msgid "entity_test @id has been created."
+msgstr "entity_test @id a été créée."
+msgid "Number of values is required."
+msgstr "Le nombre de valeurs est requis."
+msgid "The file ID."
+msgstr "L'identifiant (ID) du fichier."
+msgid "The file language code."
+msgstr "Le code de langue du fichier."
+msgid "The user ID of the file."
+msgstr "L'identifiant (ID) de l'utilisateur du fchier."
+msgid "A description of the file."
+msgstr "Une description du fichier."
+msgid "The referenced file"
+msgstr "Le fichier référencé"
+msgid "Forum content"
+msgstr "Contenu du forum"
+msgid "Forums | Drupal"
+msgstr "Forums | Drupal"
+msgid "Discussions | Drupal"
+msgstr "Discussions | Drupal"
+msgid "The field !title is required"
+msgstr "Le champ !title est requis"
+msgid "The field Alternate text is required"
+msgstr "Le champ Texte alternatif est requis"
+msgid "The field Title is required"
+msgstr "Le champs Titre est requis"
+msgid "The width of the image in pixels."
+msgstr "La largeur de l'image en pixels."
+msgid "The height of the image in pixels."
+msgstr "La hauteur de l'image en pixels."
+msgid "The language is not @languages."
+msgstr "La langue n'est pas @languages."
+msgid "The language is @languages."
+msgstr "La langue est @languages."
+msgid "Placeholder for URL"
+msgstr "Placeholder pour l'URL"
+msgid "Placeholder for link text"
+msgstr "Placeholder pour le texte du lien"
+msgid "Clone of @label"
+msgstr "Clone de @label"
+msgid "Enable @display_title"
+msgstr "Activer @display_title"
+msgid "View @display"
+msgstr "Voir @display"
+msgid "Clone @display_title"
+msgstr "Cloner @display_title"
+msgid "Delete @display_title"
+msgstr "Supprimer @display_title"
+msgid "Undo delete of @display_title"
+msgstr "Annuler la suppression de @display_title"
+msgid "Disable @display_title"
+msgstr "Désactiver @display_title"
+msgid "Edit view name/description"
+msgstr "Éditer le nom / la description de la vue"
+msgid "Analyze view"
+msgstr "Analyser la vue"
+msgid "Clone view"
+msgstr "Cloner la vue"
+msgid "Reorder displays"
+msgstr "Ré-ordonner les affichages"
+msgid "This display has one or more validation errors."
+msgstr "Cet affichage comporte une ou plusieurs erreurs de validation."
+msgid "There are no disabled views."
+msgstr "Il n'y aucune vue désactivée."
+msgid "[@time ms] @query"
+msgstr "[@time ms] @query"
+msgid "Do you want to break the lock on view %name?"
+msgstr "Voulez-vous casser le verrou de la vue %name ?"
+msgid "View language"
+msgstr "Langage de la vue"
+msgid "Language of labels and other textual elements in this view."
+msgstr "Langage des labels et autre éléments textuels dans cette vue."
+msgid "No displays available."
+msgstr "Aucun affichage disponible."
+msgid "break this lock"
+msgstr "casser ce verrou"
+msgid "The view %view has been saved."
+msgstr "La vue %view a été sauvée."
+msgid "Clone of @label | @site-name"
+msgstr "Clone de @label | @site-name"
+msgid "Machine name: test_view_status"
+msgstr "Nom machine : test_view_status"
+msgid "Delete Page"
+msgstr "Supprimer la Page"
+msgid "Last saved"
+msgstr "Dernier enregistrement"
+msgid "Not saved yet"
+msgstr "Pas encore enregistré"
diff --git a/sites/default/settings.php b/sites/default/settings.php
new file mode 100755
index 0000000..cc299a5
--- /dev/null
+++ b/sites/default/settings.php
@@ -0,0 +1,684 @@
+<?php
+
+/**
+ * @file
+ * Drupal site-specific configuration file.
+ *
+ * IMPORTANT NOTE:
+ * This file may have been set to read-only by the Drupal installation program.
+ * If you make changes to this file, be sure to protect it again after making
+ * your modifications. Failure to remove write permissions to this file is a
+ * security risk.
+ *
+ * In order to use the selection rules below the multisite aliasing file named
+ * sites/sites.php must be present. Its optional settings will be loaded, and
+ * the aliases in the array $sites will override the default directory rules
+ * below. See sites/example.sites.php for more information about aliases.
+ *
+ * The configuration directory will be discovered by stripping the website's
+ * hostname from left to right and pathname from right to left. The first
+ * configuration file found will be used and any others will be ignored. If no
+ * other configuration file is found then the default configuration file at
+ * 'sites/default' will be used.
+ *
+ * For example, for a fictitious site installed at
+ * http://www.drupal.org:8080/mysite/test/, the 'settings.php' file is searched
+ * for in the following directories:
+ *
+ * - sites/8080.www.drupal.org.mysite.test
+ * - sites/www.drupal.org.mysite.test
+ * - sites/drupal.org.mysite.test
+ * - sites/org.mysite.test
+ *
+ * - sites/8080.www.drupal.org.mysite
+ * - sites/www.drupal.org.mysite
+ * - sites/drupal.org.mysite
+ * - sites/org.mysite
+ *
+ * - sites/8080.www.drupal.org
+ * - sites/www.drupal.org
+ * - sites/drupal.org
+ * - sites/org
+ *
+ * - sites/default
+ *
+ * Note that if you are installing on a non-standard port number, prefix the
+ * hostname with that number. For example,
+ * http://www.drupal.org:8080/mysite/test/ could be loaded from
+ * sites/8080.www.drupal.org.mysite.test/.
+ *
+ * @see example.sites.php
+ * @see conf_path()
+ */
+
+/**
+ * Database settings:
+ *
+ * The $databases array specifies the database connection or
+ * connections that Drupal may use.  Drupal is able to connect
+ * to multiple databases, including multiple types of databases,
+ * during the same request.
+ *
+ * Each database connection is specified as an array of settings,
+ * similar to the following:
+ * @code
+ * array(
+ *   'driver' => 'mysql',
+ *   'database' => 'databasename',
+ *   'username' => 'username',
+ *   'password' => 'password',
+ *   'host' => 'localhost',
+ *   'port' => 3306,
+ *   'prefix' => 'myprefix_',
+ *   'collation' => 'utf8_general_ci',
+ * );
+ * @endcode
+ *
+ * The "driver" property indicates what Drupal database driver the
+ * connection should use.  This is usually the same as the name of the
+ * database type, such as mysql or sqlite, but not always.  The other
+ * properties will vary depending on the driver.  For SQLite, you must
+ * specify a database file name in a directory that is writable by the
+ * webserver.  For most other drivers, you must specify a
+ * username, password, host, and database name.
+ *
+ * Transaction support is enabled by default for all drivers that support it,
+ * including MySQL. To explicitly disable it, set the 'transactions' key to
+ * FALSE.
+ * Note that some configurations of MySQL, such as the MyISAM engine, don't
+ * support it and will proceed silently even if enabled. If you experience
+ * transaction related crashes with such configuration, set the 'transactions'
+ * key to FALSE.
+ *
+ * For each database, you may optionally specify multiple "target" databases.
+ * A target database allows Drupal to try to send certain queries to a
+ * different database if it can but fall back to the default connection if not.
+ * That is useful for master/slave replication, as Drupal may try to connect
+ * to a slave server when appropriate and if one is not available will simply
+ * fall back to the single master server.
+ *
+ * The general format for the $databases array is as follows:
+ * @code
+ * $databases['default']['default'] = $info_array;
+ * $databases['default']['slave'][] = $info_array;
+ * $databases['default']['slave'][] = $info_array;
+ * $databases['extra']['default'] = $info_array;
+ * @endcode
+ *
+ * In the above example, $info_array is an array of settings described above.
+ * The first line sets a "default" database that has one master database
+ * (the second level default).  The second and third lines create an array
+ * of potential slave databases.  Drupal will select one at random for a given
+ * request as needed.  The fourth line creates a new database with a name of
+ * "extra".
+ *
+ * For a single database configuration, the following is sufficient:
+ * @code
+ * $databases['default']['default'] = array(
+ *   'driver' => 'mysql',
+ *   'database' => 'databasename',
+ *   'username' => 'username',
+ *   'password' => 'password',
+ *   'host' => 'localhost',
+ *   'prefix' => 'main_',
+ *   'collation' => 'utf8_general_ci',
+ * );
+ * @endcode
+ *
+ * You can optionally set prefixes for some or all database table names
+ * by using the 'prefix' setting. If a prefix is specified, the table
+ * name will be prepended with its value. Be sure to use valid database
+ * characters only, usually alphanumeric and underscore. If no prefixes
+ * are desired, leave it as an empty string ''.
+ *
+ * To have all database names prefixed, set 'prefix' as a string:
+ * @code
+ *   'prefix' => 'main_',
+ * @endcode
+ * To provide prefixes for specific tables, set 'prefix' as an array.
+ * The array's keys are the table names and the values are the prefixes.
+ * The 'default' element is mandatory and holds the prefix for any tables
+ * not specified elsewhere in the array. Example:
+ * @code
+ *   'prefix' => array(
+ *     'default'   => 'main_',
+ *     'users'     => 'shared_',
+ *     'sessions'  => 'shared_',
+ *     'role'      => 'shared_',
+ *     'authmap'   => 'shared_',
+ *   ),
+ * @endcode
+ * You can also use a reference to a schema/database as a prefix. This may be
+ * useful if your Drupal installation exists in a schema that is not the default
+ * or you want to access several databases from the same code base at the same
+ * time.
+ * Example:
+ * @code
+ *   'prefix' => array(
+ *     'default'   => 'main.',
+ *     'users'     => 'shared.',
+ *     'sessions'  => 'shared.',
+ *     'role'      => 'shared.',
+ *     'authmap'   => 'shared.',
+ *   );
+ * @endcode
+ * NOTE: MySQL and SQLite's definition of a schema is a database.
+ *
+ * Advanced users can add or override initial commands to execute when
+ * connecting to the database server, as well as PDO connection settings. For
+ * example, to enable MySQL SELECT queries to exceed the max_join_size system
+ * variable, and to reduce the database connection timeout to 5 seconds:
+ *
+ * @code
+ * $databases['default']['default'] = array(
+ *   'init_commands' => array(
+ *     'big_selects' => 'SET SQL_BIG_SELECTS=1',
+ *   ),
+ *   'pdo' => array(
+ *     PDO::ATTR_TIMEOUT => 5,
+ *   ),
+ * );
+ * @endcode
+ *
+ * WARNING: These defaults are designed for database portability. Changing them
+ * may cause unexpected behavior, including potential data loss.
+ *
+ * @see DatabaseConnection_mysql::__construct
+ * @see DatabaseConnection_pgsql::__construct
+ * @see DatabaseConnection_sqlite::__construct
+ *
+ * Database configuration format:
+ * @code
+ *   $databases['default']['default'] = array(
+ *     'driver' => 'mysql',
+ *     'database' => 'databasename',
+ *     'username' => 'username',
+ *     'password' => 'password',
+ *     'host' => 'localhost',
+ *     'prefix' => '',
+ *   );
+ *   $databases['default']['default'] = array(
+ *     'driver' => 'pgsql',
+ *     'database' => 'databasename',
+ *     'username' => 'username',
+ *     'password' => 'password',
+ *     'host' => 'localhost',
+ *     'prefix' => '',
+ *   );
+ *   $databases['default']['default'] = array(
+ *     'driver' => 'sqlite',
+ *     'database' => '/path/to/databasefilename',
+ *   );
+ * @endcode
+ */
+$databases = array();
+
+/**
+ * Location of the site configuration files.
+ *
+ * By default, Drupal configuration files are stored in a randomly named
+ * directory under the default public files path. On install the
+ * named directory is created in the default files directory. For enhanced
+ * security, you may set this variable to a location outside your docroot.
+ *
+ * @todo Flesh this out, provide more details, etc.
+ *
+ * Example:
+ * @code
+ *   $config_directories = array(
+ *     CONFIG_ACTIVE_DIRECTORY => '/some/directory/outside/webroot',
+ *     CONFIG_STAGING_DIRECTORY => '/another/directory/outside/webroot',
+ *   );
+ * @endcode
+ */
+$config_directories = array();
+
+/**
+ * Settings:
+ *
+ * $settings contains environment-specific configuration, such as the files
+ * directory and reverse proxy address, and temporary configuration, such as
+ * turning on Twig debugging and security overrides.
+ *
+ * @see \Drupal\Component\Utility\Settings::get()
+ */
+
+/**
+ * Salt for one-time login links, cancel links, form tokens, etc.
+ *
+ * This variable will be set to a random value by the installer. All one-time
+ * login links will be invalidated if the value is changed. Note that if your
+ * site is deployed on a cluster of web servers, you must ensure that this
+ * variable has the same value on each server.
+ *
+ * For enhanced security, you may set this variable to a value using the
+ * contents of a file outside your docroot that is never saved together
+ * with any backups of your Drupal files and database.
+ *
+ * Example:
+ * @code
+ *   $settings['hash_salt'] = file_get_contents('/home/example/salt.txt');
+ * @endcode
+ */
+$settings['hash_salt'] = 'HR_8BNsxBZPH9bbj0uhqf67sdeEBxIWwBO8041JXetYuF6izUFKGT4WuyE4_VRYcwAn5CQNDxw';
+
+/**
+ * Access control for update.php script.
+ *
+ * If you are updating your Drupal installation using the update.php script but
+ * are not logged in using either an account with the "Administer software
+ * updates" permission or the site maintenance account (the account that was
+ * created during installation), you will need to modify the access check
+ * statement below. Change the FALSE to a TRUE to disable the access check.
+ * After finishing the upgrade, be sure to open this file again and change the
+ * TRUE back to a FALSE!
+ */
+$settings['update_free_access'] = FALSE;
+
+/**
+ * Twig debugging:
+ *
+ * When debugging is enabled:
+ * - The markup of each Twig template is surrounded by HTML comments that
+ *   contain theming information, such as template file name suggestions.
+ * - Note that this debugging markup will cause automated tests that directly
+ *   check rendered HTML to fail. When running automated tests, 'twig_debug'
+ *   should be set to FALSE.
+ * - The dump() function can be used in Twig templates to output information
+ *   about template variables.
+ * - Twig templates are automatically recompiled whenever the source code
+ *   changes (see twig_auto_reload below).
+ *
+ * Note: changes to this setting will only take effect once the cache is
+ * cleared.
+ *
+ * For more information about debugging Twig templates, see
+ * http://drupal.org/node/1906392.
+ *
+ * Not recommended in production environments (Default: FALSE).
+ */
+# $settings['twig_debug'] = TRUE;
+
+/**
+ * Twig auto-reload:
+ *
+ * Automatically recompile Twig templates whenever the source code changes. If
+ * you don't provide a value for twig_auto_reload, it will be determined based
+ * on the value of twig_debug.
+ *
+ * Note: changes to this setting will only take effect once the cache is
+ * cleared.
+ *
+ * Not recommended in production environments (Default: NULL).
+ */
+# $settings['twig_auto_reload'] = TRUE;
+
+/**
+ * Twig cache:
+ *
+ * By default, Twig templates will be compiled and stored in the filesystem to
+ * increase performance. Disabling the Twig cache will recompile the templates
+ * from source each time they are used. In most cases the twig_auto_reload
+ * setting above should be enabled rather than disabling the Twig cache.
+ *
+ * Note: changes to this setting will only take effect once the cache is
+ * cleared.
+ *
+ * Not recommended in production environments (Default: TRUE).
+ */
+# $settings['twig_cache'] = FALSE;
+
+/**
+ * External access proxy settings:
+ *
+ * If your site must access the Internet via a web proxy then you can enter
+ * the proxy settings here. Currently only basic authentication is supported
+ * by using the username and password variables. The proxy_user_agent variable
+ * can be set to NULL for proxies that require no User-Agent header or to a
+ * non-empty string for proxies that limit requests to a specific agent. The
+ * proxy_exceptions variable is an array of host names to be accessed directly,
+ * not via proxy.
+ */
+# $settings['proxy_server'] = '';
+# $settings['proxy_port'] = 8080;
+# $settings['proxy_username'] = '';
+# $settings['proxy_password'] = '';
+# $settings['proxy_user_agent'] = '';
+# $settings['proxy_exceptions'] = array('127.0.0.1', 'localhost');
+
+/**
+ * Reverse Proxy Configuration:
+ *
+ * Reverse proxy servers are often used to enhance the performance
+ * of heavily visited sites and may also provide other site caching,
+ * security, or encryption benefits. In an environment where Drupal
+ * is behind a reverse proxy, the real IP address of the client should
+ * be determined such that the correct client IP address is available
+ * to Drupal's logging, statistics, and access management systems. In
+ * the most simple scenario, the proxy server will add an
+ * X-Forwarded-For header to the request that contains the client IP
+ * address. However, HTTP headers are vulnerable to spoofing, where a
+ * malicious client could bypass restrictions by setting the
+ * X-Forwarded-For header directly. Therefore, Drupal's proxy
+ * configuration requires the IP addresses of all remote proxies to be
+ * specified in $settings['reverse_proxy_addresses'] to work correctly.
+ *
+ * Enable this setting to get Drupal to determine the client IP from
+ * the X-Forwarded-For header (or $settings['reverse_proxy_header'] if set).
+ * If you are unsure about this setting, do not have a reverse proxy,
+ * or Drupal operates in a shared hosting environment, this setting
+ * should remain commented out.
+ *
+ * In order for this setting to be used you must specify every possible
+ * reverse proxy IP address in $settings['reverse_proxy_addresses'].
+ * If a complete list of reverse proxies is not available in your
+ * environment (for example, if you use a CDN) you may set the
+ * $_SERVER['REMOTE_ADDR'] variable directly in settings.php.
+ * Be aware, however, that it is likely that this would allow IP
+ * address spoofing unless more advanced precautions are taken.
+ */
+# $settings['reverse_proxy'] = TRUE;
+
+/**
+ * Specify every reverse proxy IP address in your environment.
+ * This setting is required if $settings['reverse_proxy'] is TRUE.
+ */
+# $settings['reverse_proxy_addresses'] = array('a.b.c.d', ...);
+
+/**
+ * Set this value if your proxy server sends the client IP in a header
+ * other than X-Forwarded-For.
+ */
+# $settings['reverse_proxy_header'] = 'HTTP_X_CLUSTER_CLIENT_IP';
+
+/**
+ * Page caching:
+ *
+ * By default, Drupal sends a "Vary: Cookie" HTTP header for anonymous page
+ * views. This tells a HTTP proxy that it may return a page from its local
+ * cache without contacting the web server, if the user sends the same Cookie
+ * header as the user who originally requested the cached page. Without "Vary:
+ * Cookie", authenticated users would also be served the anonymous page from
+ * the cache. If the site has mostly anonymous users except a few known
+ * editors/administrators, the Vary header can be omitted. This allows for
+ * better caching in HTTP proxies (including reverse proxies), i.e. even if
+ * clients send different cookies, they still get content served from the cache.
+ * However, authenticated users should access the site directly (i.e. not use an
+ * HTTP proxy, and bypass the reverse proxy if one is used) in order to avoid
+ * getting cached pages from the proxy.
+ */
+# $settings['omit_vary_cookie'] = TRUE;
+
+/**
+ * Class Loader.
+ *
+ * By default, Drupal uses Composer's ClassLoader, which is best for
+ * development, as it does not break when code is moved on the file
+ * system. It is possible, however, to wrap the class loader with a
+ * cached class loader solution for better performance, which is
+ * recommended for production sites.
+ *
+ * Examples:
+ *   $settings['class_loader'] = 'apc';
+ *   $settings['class_loader'] = 'default';
+ */
+# $settings['class_loader'] = 'apc';
+
+/**
+ * Authorized file system operations:
+ *
+ * The Update Manager module included with Drupal provides a mechanism for
+ * site administrators to securely install missing updates for the site
+ * directly through the web user interface. On securely-configured servers,
+ * the Update manager will require the administrator to provide SSH or FTP
+ * credentials before allowing the installation to proceed; this allows the
+ * site to update the new files as the user who owns all the Drupal files,
+ * instead of as the user the webserver is running as. On servers where the
+ * webserver user is itself the owner of the Drupal files, the administrator
+ * will not be prompted for SSH or FTP credentials (note that these server
+ * setups are common on shared hosting, but are inherently insecure).
+ *
+ * Some sites might wish to disable the above functionality, and only update
+ * the code directly via SSH or FTP themselves. This setting completely
+ * disables all functionality related to these authorized file operations.
+ *
+ * @see http://drupal.org/node/244924
+ *
+ * Remove the leading hash signs to disable.
+ */
+# $settings['allow_authorize_operations'] = FALSE;
+
+/**
+ * Mixed-mode sessions:
+ *
+ * Set to TRUE to create both secure and insecure sessions when using HTTPS.
+ * Defaults to FALSE.
+ */
+# $settings['mixed_mode_sessions'] = TRUE;
+
+/**
+ * Default mode for for directories and files written by Drupal.
+ *
+ * Value should be in PHP Octal Notation, with leading zero.
+ */
+# $settings['file_chmod_directory'] = 0775;
+# $settings['file_chmod_file'] = 0664;
+
+/**
+ * Public file path:
+ *
+ * A local file system path where public files will be stored. This directory
+ * must exist and be writable by Drupal. This directory must be relative to
+ * the Drupal installation directory and be accessible over the web.
+ */
+# $settings['file_public_path'] = 'sites/default/files';
+
+/**
+ * Session write interval:
+ *
+ * Set the minimum interval between each session write to database.
+ * For performance reasons it defaults to 180.
+ */
+# $settings['session_write_interval'] = 180;
+
+/**
+ * String overrides:
+ *
+ * To override specific strings on your site with or without enabling the Locale
+ * module, add an entry to this list. This functionality allows you to change
+ * a small number of your site's default English language interface strings.
+ *
+ * Remove the leading hash signs to enable.
+ *
+ * The "en" part of the variable name, is dynamic and can be any langcode of
+ * any enabled language. (eg locale_custom_strings_de for german).
+ */
+# $settings['locale_custom_strings_en'][''] = array(
+#   'forum'      => 'Discussion board',
+#   '@count min' => '@count minutes',
+# );
+
+/**
+ * A custom theme for the offline page:
+ *
+ * This applies when the site is explicitly set to maintenance mode through the
+ * administration page or when the database is inactive due to an error.
+ * The template file should also be copied into the theme. It is located inside
+ * 'core/modules/system/templates/maintenance-page.html.twig'.
+ *
+ * Note: This setting does not apply to installation and update pages.
+ */
+# $settings['maintenance_theme'] = 'bartik';
+
+/**
+ * Enable access to rebuild.php.
+ *
+ * This setting can be enabled to allow Drupal's php and database cached
+ * storage to be cleared via the rebuild.php page. Access to this page can also
+ * be gained by generating a query string from rebuild_token_calculator.sh and
+ * using these parameters in a request to rebuild.php.
+ */
+# $settings['rebuild_access'] = TRUE;
+
+/**
+ * Base URL (optional).
+ *
+ * If Drupal is generating incorrect URLs on your site, which could
+ * be in HTML headers (links to CSS and JS files) or visible links on pages
+ * (such as in menus), uncomment the Base URL statement below (remove the
+ * leading hash sign) and fill in the absolute URL to your Drupal installation.
+ *
+ * You might also want to force users to use a given domain.
+ * See the .htaccess file for more information.
+ *
+ * Examples:
+ *   $base_url = 'http://www.example.com';
+ *   $base_url = 'http://www.example.com:8888';
+ *   $base_url = 'http://www.example.com/drupal';
+ *   $base_url = 'https://www.example.com:8888/drupal';
+ *
+ * It is not allowed to have a trailing slash; Drupal will add it
+ * for you.
+ */
+# $base_url = 'http://www.example.com';  // NO trailing slash!
+
+/**
+ * PHP settings:
+ *
+ * To see what PHP settings are possible, including whether they can be set at
+ * runtime (by using ini_set()), read the PHP documentation:
+ * http://php.net/manual/ini.list.php
+ * See drupal_environment_initialize() in core/includes/bootstrap.inc for
+ * required runtime settings and the .htaccess file for non-runtime settings.
+ * Settings defined there should not be duplicated here so as to avoid conflict
+ * issues.
+ */
+
+/**
+ * Some distributions of Linux (most notably Debian) ship their PHP
+ * installations with garbage collection (gc) disabled. Since Drupal depends on
+ * PHP's garbage collection for clearing sessions, ensure that garbage
+ * collection occurs by using the most common settings.
+ */
+ini_set('session.gc_probability', 1);
+ini_set('session.gc_divisor', 100);
+
+/**
+ * Set session lifetime (in seconds), i.e. the time from the user's last visit
+ * to the active session may be deleted by the session garbage collector. When
+ * a session is deleted, authenticated users are logged out, and the contents
+ * of the user's $_SESSION variable is discarded.
+ */
+ini_set('session.gc_maxlifetime', 200000);
+
+/**
+ * Set session cookie lifetime (in seconds), i.e. the time from the session is
+ * created to the cookie expires, i.e. when the browser is expected to discard
+ * the cookie. The value 0 means "until the browser is closed".
+ */
+ini_set('session.cookie_lifetime', 2000000);
+
+/**
+ * If you encounter a situation where users post a large amount of text, and
+ * the result is stripped out upon viewing but can still be edited, Drupal's
+ * output filter may not have sufficient memory to process it.  If you
+ * experience this issue, you may wish to uncomment the following two lines
+ * and increase the limits of these variables.  For more information, see
+ * http://php.net/manual/pcre.configuration.php.
+ */
+# ini_set('pcre.backtrack_limit', 200000);
+# ini_set('pcre.recursion_limit', 200000);
+
+/**
+ * Drupal automatically generates a unique session cookie name for each site
+ * based on its full domain name. If you have multiple domains pointing at the
+ * same Drupal site, you can either redirect them all to a single domain (see
+ * comment in .htaccess), or uncomment the line below and specify their shared
+ * base domain. Doing so assures that users remain logged in as they cross
+ * between your various domains. Make sure to always start the $cookie_domain
+ * with a leading dot, as per RFC 2109.
+ */
+# $cookie_domain = '.example.com';
+
+/**
+ * Configuration overrides.
+ *
+ * To globally override specific configuration values for this site,
+ * set them here. You usually don't need to use this feature. This is
+ * useful in a configuration file for a vhost or directory, rather than
+ * the default settings.php.
+ *
+ * Note that any values you provide in these variable overrides will not be
+ * modifiable from the Drupal administration interface.
+ */
+# $config['system.site']['name'] = 'My Drupal site';
+# $config['system.theme']['default'] = 'stark';
+# $config['user.settings']['anonymous'] = 'Visitor';
+
+/**
+ * CSS/JS aggregated file gzip compression:
+ *
+ * By default, when CSS or JS aggregation and clean URLs are enabled Drupal will
+ * store a gzip compressed (.gz) copy of the aggregated files. If this file is
+ * available then rewrite rules in the default .htaccess file will serve these
+ * files to browsers that accept gzip encoded content. This allows pages to load
+ * faster for these users and has minimal impact on server load. If you are
+ * using a webserver other than Apache httpd, or a caching reverse proxy that is
+ * configured to cache and compress these files itself you may want to uncomment
+ * one or both of the below lines, which will prevent gzip files being stored.
+ */
+# $config['system.performance']['css']['gzip'] = FALSE;
+# $config['system.performance']['js']['gzip'] = FALSE;
+
+/**
+ * Fast 404 pages:
+ *
+ * Drupal can generate fully themed 404 pages. However, some of these responses
+ * are for images or other resource files that are not displayed to the user.
+ * This can waste bandwidth, and also generate server load.
+ *
+ * The options below return a simple, fast 404 page for URLs matching a
+ * specific pattern:
+ * - $conf['system.performance]['fast_404']['exclude_paths']: A regular
+ *   expression to match paths to exclude, such as images generated by image
+ *   styles, or dynamically-resized images. If you need to add more paths, you
+ *   can add '|path' to the expression.
+ * - $conf['system.performance]['fast_404']['paths']: A regular expression to
+ *   match paths that should return a simple 404 page, rather than the fully
+ *   themed 404 page. If you don't have any aliases ending in htm or html you
+ *   can add '|s?html?' to the expression.
+ * - $conf['system.performance]['fast_404']['html']: The html to return for
+ *   simple 404 pages.
+ *
+ * Remove the leading hash signs if you would like to alter this functionality.
+ */
+# $config['system.performance']['fast_404']['exclude_paths'] = '/\/(?:styles)\//';
+# $config['system.performance']['fast_404']['paths'] = '/\.(?:txt|png|gif|jpe?g|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp)$/i';
+# $config['system.performance']['fast_404']['html'] = '<!DOCTYPE html><html><head><title>404 Not Found</title></head><body><h1>Not Found</h1><p>The requested URL "@path" was not found on this server.</p></body></html>';
+
+/**
+ * Load local development override configuration, if available.
+ *
+ * Use settings.local.php to override variables on secondary (staging,
+ * development, etc) installations of this site. Typically used to disable
+ * caching, JavaScript/CSS compression, re-routing of outgoing e-mails, and
+ * other things that should not happen on development and testing sites.
+ *
+ * Keep this code block at the end of this file to take full effect.
+ */
+# if (file_exists(DRUPAL_ROOT . '/' . $conf_path . '/settings.local.php')) {
+#   include DRUPAL_ROOT . '/' . $conf_path . '/settings.local.php';
+# }
+$databases['default']['default'] = array (
+  'database' => 'drupalTest',
+  'username' => 'root',
+  'password' => 'root',
+  'prefix' => '',
+  'host' => 'localhost',
+  'port' => '3306',
+  'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
+  'driver' => 'mysql',
+);
+$settings['install_profile'] = 'standard';
+$config_directories['active'] = 'sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/active';
+$config_directories['staging'] = 'sites/default/files/config_8ZlpNB_7Qs15TivaMP0Sdac3s6x8YOwR7Wva3wQo-jl3ew4dkruywCXi_hYWpqxrXx2cMIuczw/staging';
