diff --git a/wp-content/themes/ccat/functions.php b/wp-content/themes/ccat/functions.php
index a4722dd..0a2900f 100644
--- a/wp-content/themes/ccat/functions.php
+++ b/wp-content/themes/ccat/functions.php
@@ -6,6 +6,7 @@
require_once __DIR__ . '/includes/core/theme-setup.php';
// Custom Post Types
+require_once __DIR__ . '/includes/cpt/listing.php';
require_once __DIR__ . '/includes/cpt/membership.php';
require_once __DIR__ . '/includes/cpt/contributor.php';
require_once __DIR__ . '/includes/cpt/event.php';
diff --git a/wp-content/themes/ccat/includes/cpt/listing.php b/wp-content/themes/ccat/includes/cpt/listing.php
new file mode 100644
index 0000000..e06bb28
--- /dev/null
+++ b/wp-content/themes/ccat/includes/cpt/listing.php
@@ -0,0 +1,88 @@
+ array(
+ 'name' => __( "Listings", 'ccat' ),
+ 'menu_name' => __( "Listings", 'ccat' ),
+ 'singular_name' => __( "Listing", 'ccat' ),
+ 'add_new' => __( "Add New", 'ccat' ),
+ 'add_new_item' => __( "Add New Listing", 'ccat' ),
+ 'new_item' => __( "New Listing", 'ccat' ),
+ 'edit_item' => __( "Edit Listing", 'ccat' ),
+ 'view_item' => __( "View Listing", 'ccat' ),
+ 'view_items' => __( "View Listings", 'ccat' ),
+ 'search_items' => __( "Search Listings", 'ccat' ),
+ 'not_found' => __( "No Listings found", 'ccat' ),
+ 'not_found_in_trash' => __( "No Listings found in trash", 'ccat' ),
+ 'parent_item_colon' => __( "Parent Listing:", 'ccat' ),
+ 'all_items' => __( "All Listings", 'ccat' ),
+ 'archives' => __( "Listing Archives", 'ccat' ),
+ 'attributes' => __( "Listing Attributes", 'ccat' ),
+ 'insert_into_item' => __( "Insert into Listing", 'ccat' ),
+ 'uploaded_to_this_item' => __( "Uploaded to this Listing", 'ccat' ),
+ 'featured_image' => __( "Featured Image", 'ccat' ),
+ 'set_featured_image' => __( "Set featured image", 'ccat' ),
+ 'remove_featured_image' => __( "Remove featured image", 'ccat' ),
+ 'use_featured_image' => __( "Use as featured image", 'ccat' ),
+ 'filter_items_list' => __( "Filter Listings list", 'ccat' ),
+ 'items_list_navigation' => __( "Listings list navigation", 'ccat' ),
+ 'items_list' => __( "Listings list", 'ccat' ),
+ 'item_published' => __( "Listing published.", 'ccat' ),
+ 'item_published_privately' => __( "Listing published privately.", 'ccat' ),
+ 'item_reverted_to_draft' => __( "Listing reverted to draft.", 'ccat' ),
+ 'item_scheduled' => __( "Listing scheduled.", 'ccat' ),
+ 'item_updated' => __( "Listing updated.", 'ccat' ),
+ ),
+ 'public' => true,
+ 'hierarchical' => false,
+ 'show_ui' => true,
+ 'show_in_nav_menus' => false,
+ 'supports' => array( 'title', 'author', 'revisions' ),
+ 'has_archive' => false,
+ 'rewrite' => array(
+ 'slug' => 'annonce',
+ 'with_front' => false,
+ ),
+ 'query_var' => true,
+ 'menu_icon' => 'dashicons-sticky',
+ 'show_in_rest' => true,
+ 'rest_base' => 'listing',
+ 'rest_controller_class' => 'WP_REST_Posts_Controller',
+ 'show_in_graphql' => true,
+ 'graphql_single_name' => "Annonce",
+ 'graphql_plural_name' => "Annonces",
+ 'graphql_interfaces' => array( 'Node' ),
+ )
+ );
+}
+
+// Custom 'listing' post updated messages
+add_filter( 'post_updated_messages', 'ccat_listing_post_updated_messages' );
+function ccat_listing_post_updated_messages( $messages ) {
+ global $post;
+ $permalink = get_permalink( $post );
+ $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Listing", 'ccat' ) );
+ $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Listing", 'ccat' ) );
+ $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) );
+ $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Listing", 'ccat' ) );
+ $messages['listing'] = array(
+ 0 => '',
+ 1 => __( "Listing updated.", 'ccat' ) . $view_post_link_html,
+ 2 => __( "Custom field updated.", 'ccat' ),
+ 3 => __( "Custom field deleted.", 'ccat' ),
+ 4 => __( "Listing updated.", 'ccat' ),
+ 5 => isset( $_GET['revision'] ) ? sprintf( __( "Listing restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
+ 6 => __( "Listing published.", 'ccat' ) . $view_post_link_html,
+ 7 => __( "Listing saved.", 'ccat' ),
+ 8 => __( "Listing submitted.", 'ccat' ) . $preview_post_link_html,
+ 9 => sprintf( __( 'Listing scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html,
+ 10 => __( 'Listing draft updated.' ) . $preview_post_link_html,
+ );
+
+ return $messages;
+}
diff --git a/wp-content/themes/ccat/includes/cpt/location.php b/wp-content/themes/ccat/includes/cpt/location.php
index 129b0cc..0a828c7 100644
--- a/wp-content/themes/ccat/includes/cpt/location.php
+++ b/wp-content/themes/ccat/includes/cpt/location.php
@@ -47,7 +47,6 @@ function ccat_location_register_post_type() {
'rewrite' => array(
'slug' => 'lieu',
'with_front' => false,
-
),
'query_var' => true,
'menu_icon' => 'dashicons-location',
diff --git a/wp-content/themes/ccat/languages/ccat.pot b/wp-content/themes/ccat/languages/ccat.pot
index 3f06f10..a9aa2a9 100644
--- a/wp-content/themes/ccat/languages/ccat.pot
+++ b/wp-content/themes/ccat/languages/ccat.pot
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: CCAT\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2025-09-22 18:16+0000\n"
+"POT-Creation-Date: 2025-09-24 19:48+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: \n"
@@ -77,9 +77,10 @@ msgid "Add File"
msgstr ""
#: includes/cpt/representation.php:13 includes/cpt/contributor.php:13
-#: includes/cpt/membership.php:13 includes/cpt/project.php:13
-#: includes/cpt/location.php:13 includes/cpt/template.php:13
-#: includes/cpt/event.php:13 includes/cpt/resource.php:13
+#: includes/cpt/listing.php:13 includes/cpt/membership.php:13
+#: includes/cpt/project.php:13 includes/cpt/location.php:13
+#: includes/cpt/template.php:13 includes/cpt/event.php:13
+#: includes/cpt/resource.php:13
msgid "Add New"
msgstr ""
@@ -91,6 +92,10 @@ msgstr ""
msgid "Add New Event"
msgstr ""
+#: includes/cpt/listing.php:14
+msgid "Add New Listing"
+msgstr ""
+
#: includes/cpt/location.php:14
msgid "Add New Location"
msgstr ""
@@ -151,6 +156,10 @@ msgstr ""
msgid "All Events"
msgstr ""
+#: includes/cpt/listing.php:23
+msgid "All Listings"
+msgstr ""
+
#: includes/cpt/location.php:23
msgid "All Locations"
msgstr ""
@@ -219,10 +228,6 @@ msgstr ""
msgid "Cancelled"
msgstr ""
-#: acf-json/acf-translations.php:26
-msgid "Categorie(s)"
-msgstr ""
-
#. Name of the theme
msgid "CCAT"
msgstr ""
@@ -239,31 +244,31 @@ msgstr ""
msgid "Choose from the most used resource-categories"
msgstr ""
-#: acf-json/acf-translations.php:27
+#: acf-json/acf-translations.php:26
msgid "Collectif artistique"
msgstr ""
-#: acf-json/acf-translations.php:28
+#: acf-json/acf-translations.php:27
msgid "Collective profile"
msgstr ""
-#: acf-json/acf-translations.php:29
+#: acf-json/acf-translations.php:28
msgid "Complete"
msgstr ""
-#: acf-json/acf-translations.php:30
+#: acf-json/acf-translations.php:29
msgid "Compositeur"
msgstr ""
-#: acf-json/acf-translations.php:31
+#: acf-json/acf-translations.php:30
msgid "Configuration"
msgstr ""
-#: acf-json/acf-translations.php:32
+#: acf-json/acf-translations.php:31
msgid "Configuration name"
msgstr ""
-#: acf-json/acf-translations.php:33
+#: acf-json/acf-translations.php:32
msgid "Confirmed"
msgstr ""
@@ -271,27 +276,27 @@ msgstr ""
msgid "Conseil de la culture de l'Abitibi-Témiscamingue"
msgstr ""
-#: acf-json/acf-translations.php:34
+#: acf-json/acf-translations.php:33
msgid "Contact"
msgstr ""
-#: acf-json/acf-translations.php:35
+#: acf-json/acf-translations.php:34
msgid "Content"
msgstr ""
-#: acf-json/acf-translations.php:36
+#: acf-json/acf-translations.php:35
msgid "Content width"
msgstr ""
-#: acf-json/acf-translations.php:37
+#: acf-json/acf-translations.php:36
msgid "Contribution type(s)"
msgstr ""
-#: acf-json/acf-translations.php:38
+#: acf-json/acf-translations.php:37
msgid "Contribution(s)"
msgstr ""
-#: acf-json/acf-translations.php:39 includes/cpt/contributor.php:12
+#: acf-json/acf-translations.php:38 includes/cpt/contributor.php:12
msgid "Contributor"
msgstr ""
@@ -332,7 +337,7 @@ msgstr ""
msgid "Contributor submitted."
msgstr ""
-#: acf-json/acf-translations.php:40
+#: acf-json/acf-translations.php:39
msgid "Contributor type"
msgstr ""
@@ -353,45 +358,47 @@ msgstr ""
msgid "Contributors list navigation"
msgstr ""
-#: acf-json/acf-translations.php:41
+#: acf-json/acf-translations.php:40
msgid "Credits"
msgstr ""
#: includes/cpt/representation.php:74 includes/cpt/contributor.php:74
-#: includes/cpt/membership.php:78 includes/cpt/project.php:77
-#: includes/cpt/location.php:78 includes/cpt/template.php:74
-#: includes/cpt/event.php:77 includes/cpt/resource.php:77
+#: includes/cpt/listing.php:70 includes/cpt/membership.php:78
+#: includes/cpt/project.php:77 includes/cpt/location.php:78
+#: includes/cpt/template.php:74 includes/cpt/event.php:77
+#: includes/cpt/resource.php:77
msgid "Custom field deleted."
msgstr ""
#: includes/cpt/representation.php:73 includes/cpt/contributor.php:73
-#: includes/cpt/membership.php:77 includes/cpt/project.php:76
-#: includes/cpt/location.php:77 includes/cpt/template.php:73
-#: includes/cpt/event.php:76 includes/cpt/resource.php:76
+#: includes/cpt/listing.php:69 includes/cpt/membership.php:77
+#: includes/cpt/project.php:76 includes/cpt/location.php:77
+#: includes/cpt/template.php:73 includes/cpt/event.php:76
+#: includes/cpt/resource.php:76
msgid "Custom field updated."
msgstr ""
-#: acf-json/acf-translations.php:42
+#: acf-json/acf-translations.php:41
msgid "Date / time"
msgstr ""
-#: acf-json/acf-translations.php:43
+#: acf-json/acf-translations.php:42
msgid "Date range"
msgstr ""
-#: acf-json/acf-translations.php:44
+#: acf-json/acf-translations.php:43
msgid "Day(s)"
msgstr ""
-#: acf-json/acf-translations.php:45
+#: acf-json/acf-translations.php:44
msgid "Default background"
msgstr ""
-#: acf-json/acf-translations.php:46
+#: acf-json/acf-translations.php:45
msgid "Default container"
msgstr ""
-#: acf-json/acf-translations.php:47
+#: acf-json/acf-translations.php:46
msgid "Description"
msgstr ""
@@ -419,7 +426,7 @@ msgstr ""
msgid "Discipline updated."
msgstr ""
-#: acf-json/acf-translations.php:48
+#: acf-json/acf-translations.php:47
msgid "Discipline(s)"
msgstr ""
@@ -439,11 +446,11 @@ msgstr ""
msgid "Disciplines list navigation"
msgstr ""
-#: acf-json/acf-translations.php:49
+#: acf-json/acf-translations.php:48
msgid "Document type"
msgstr ""
-#: acf-json/acf-translations.php:50
+#: acf-json/acf-translations.php:49
msgid "Document(s)"
msgstr ""
@@ -459,6 +466,10 @@ msgstr ""
msgid "Edit Event"
msgstr ""
+#: includes/cpt/listing.php:16
+msgid "Edit Listing"
+msgstr ""
+
#: includes/cpt/location.php:16
msgid "Edit Location"
msgstr ""
@@ -491,39 +502,39 @@ msgstr ""
msgid "Edit Template"
msgstr ""
-#: acf-json/acf-translations.php:51
+#: acf-json/acf-translations.php:50
msgid "Elevated background"
msgstr ""
-#: acf-json/acf-translations.php:52
+#: acf-json/acf-translations.php:51
msgid "Email"
msgstr ""
-#: acf-json/acf-translations.php:53
+#: acf-json/acf-translations.php:52
msgid "Email preferences"
msgstr ""
-#: acf-json/acf-translations.php:54
+#: acf-json/acf-translations.php:53
msgid "End date"
msgstr ""
-#: acf-json/acf-translations.php:55
+#: acf-json/acf-translations.php:54
msgid "End month"
msgstr ""
-#: acf-json/acf-translations.php:56
+#: acf-json/acf-translations.php:55
msgid "End time"
msgstr ""
-#: acf-json/acf-translations.php:57
+#: acf-json/acf-translations.php:56
msgid "Enfants"
msgstr ""
-#: acf-json/acf-translations.php:58
+#: acf-json/acf-translations.php:57
msgid "Entity"
msgstr ""
-#: acf-json/acf-translations.php:59 includes/cpt/event.php:12
+#: acf-json/acf-translations.php:58 includes/cpt/event.php:12
msgid "Event"
msgstr ""
@@ -564,14 +575,10 @@ msgstr ""
msgid "Event submitted."
msgstr ""
-#: acf-json/acf-translations.php:60
+#: acf-json/acf-translations.php:59
msgid "Event type"
msgstr ""
-#: acf-json/acf-translations.php:61
-msgid "Event type(s)"
-msgstr ""
-
#: includes/cpt/event.php:39 includes/cpt/event.php:75
#: includes/cpt/event.php:78
msgid "Event updated."
@@ -589,30 +596,31 @@ msgstr ""
msgid "Events list navigation"
msgstr ""
-#: acf-json/acf-translations.php:62
+#: acf-json/acf-translations.php:60
msgid "Exposition"
msgstr ""
-#: acf-json/acf-translations.php:63
+#: acf-json/acf-translations.php:61
msgid "Failed"
msgstr ""
-#: acf-json/acf-translations.php:64
+#: acf-json/acf-translations.php:62
msgid "Familial"
msgstr ""
#: includes/cpt/representation.php:28 includes/cpt/contributor.php:28
-#: includes/cpt/membership.php:28 includes/cpt/project.php:28
-#: includes/cpt/location.php:28 includes/cpt/template.php:28
-#: includes/cpt/event.php:28 includes/cpt/resource.php:28
+#: includes/cpt/listing.php:28 includes/cpt/membership.php:28
+#: includes/cpt/project.php:28 includes/cpt/location.php:28
+#: includes/cpt/template.php:28 includes/cpt/event.php:28
+#: includes/cpt/resource.php:28
msgid "Featured Image"
msgstr ""
-#: acf-json/acf-translations.php:65
+#: acf-json/acf-translations.php:63
msgid "Festival"
msgstr ""
-#: acf-json/acf-translations.php:66
+#: acf-json/acf-translations.php:64
msgid "File"
msgstr ""
@@ -624,6 +632,10 @@ msgstr ""
msgid "Filter Events list"
msgstr ""
+#: includes/cpt/listing.php:32
+msgid "Filter Listings list"
+msgstr ""
+
#: includes/cpt/location.php:32
msgid "Filter Locations list"
msgstr ""
@@ -648,27 +660,27 @@ msgstr ""
msgid "Filter Templates list"
msgstr ""
-#: acf-json/acf-translations.php:67
+#: acf-json/acf-translations.php:65
msgid "Fluid container"
msgstr ""
-#: acf-json/acf-translations.php:68
+#: acf-json/acf-translations.php:66
msgid "Form"
msgstr ""
-#: acf-json/acf-translations.php:69
+#: acf-json/acf-translations.php:67
msgid "Free"
msgstr ""
-#: acf-json/acf-translations.php:70
+#: acf-json/acf-translations.php:68
msgid "Full-width container"
msgstr ""
-#: acf-json/acf-translations.php:71
+#: acf-json/acf-translations.php:69
msgid "Gallery"
msgstr ""
-#: acf-json/acf-translations.php:72
+#: acf-json/acf-translations.php:70
msgid "H:i"
msgstr ""
@@ -676,31 +688,31 @@ msgstr ""
msgid "https://websimple.com/"
msgstr ""
-#: acf-json/acf-translations.php:73
+#: acf-json/acf-translations.php:71
msgid "Hybrid"
msgstr ""
-#: acf-json/acf-translations.php:74
+#: acf-json/acf-translations.php:72
msgid "Identifier(s)"
msgstr ""
-#: acf-json/acf-translations.php:75
+#: acf-json/acf-translations.php:73
msgid "Image"
msgstr ""
-#: acf-json/acf-translations.php:76
+#: acf-json/acf-translations.php:74
msgid "In-person"
msgstr ""
-#: acf-json/acf-translations.php:77
+#: acf-json/acf-translations.php:75
msgid "Individu"
msgstr ""
-#: acf-json/acf-translations.php:78
+#: acf-json/acf-translations.php:76
msgid "Individual day(s)"
msgstr ""
-#: acf-json/acf-translations.php:79
+#: acf-json/acf-translations.php:77
msgid "Individual profile"
msgstr ""
@@ -712,6 +724,10 @@ msgstr ""
msgid "Insert into Event"
msgstr ""
+#: includes/cpt/listing.php:26
+msgid "Insert into Listing"
+msgstr ""
+
#: includes/cpt/location.php:26
msgid "Insert into Location"
msgstr ""
@@ -736,31 +752,89 @@ msgstr ""
msgid "Insert into Template"
msgstr ""
-#: acf-json/acf-translations.php:80
+#: acf-json/acf-translations.php:78
msgid "Institution"
msgstr ""
-#: acf-json/acf-translations.php:81
+#: acf-json/acf-translations.php:79
msgid "Institution profile"
msgstr ""
-#: acf-json/acf-translations.php:82
+#: acf-json/acf-translations.php:80
msgid "Interprète"
msgstr ""
-#: acf-json/acf-translations.php:83
+#: acf-json/acf-translations.php:81
msgid "Is asynchronous"
msgstr ""
-#: acf-json/acf-translations.php:84
+#: acf-json/acf-translations.php:82
msgid "Language(s)"
msgstr ""
-#: acf-json/acf-translations.php:85
+#: includes/cpt/listing.php:12
+msgid "Listing"
+msgstr ""
+
+#: includes/cpt/listing.php:24
+msgid "Listing Archives"
+msgstr ""
+
+#: includes/cpt/listing.php:25
+msgid "Listing Attributes"
+msgstr ""
+
+#: includes/cpt/listing.php:36
+msgid "Listing published privately."
+msgstr ""
+
+#: includes/cpt/listing.php:35 includes/cpt/listing.php:73
+msgid "Listing published."
+msgstr ""
+
+#: includes/cpt/listing.php:72
+#, php-format
+msgid "Listing restored to revision from %s"
+msgstr ""
+
+#: includes/cpt/listing.php:37
+msgid "Listing reverted to draft."
+msgstr ""
+
+#: includes/cpt/listing.php:74
+msgid "Listing saved."
+msgstr ""
+
+#: includes/cpt/listing.php:38
+msgid "Listing scheduled."
+msgstr ""
+
+#: includes/cpt/listing.php:75
+msgid "Listing submitted."
+msgstr ""
+
+#: includes/cpt/listing.php:39 includes/cpt/listing.php:68
+#: includes/cpt/listing.php:71
+msgid "Listing updated."
+msgstr ""
+
+#: includes/cpt/listing.php:10 includes/cpt/listing.php:11
+msgid "Listings"
+msgstr ""
+
+#: includes/cpt/listing.php:34
+msgid "Listings list"
+msgstr ""
+
+#: includes/cpt/listing.php:33
+msgid "Listings list navigation"
+msgstr ""
+
+#: acf-json/acf-translations.php:83
msgid "Locality"
msgstr ""
-#: acf-json/acf-translations.php:86 includes/cpt/location.php:12
+#: acf-json/acf-translations.php:84 includes/cpt/location.php:12
msgid "Location"
msgstr ""
@@ -801,7 +875,7 @@ msgstr ""
msgid "Location submitted."
msgstr ""
-#: acf-json/acf-translations.php:87
+#: acf-json/acf-translations.php:85
msgid "Location type"
msgstr ""
@@ -823,17 +897,18 @@ msgid "Locations list navigation"
msgstr ""
#: includes/cpt/representation.php:68 includes/cpt/contributor.php:68
-#: includes/cpt/membership.php:72 includes/cpt/project.php:71
-#: includes/cpt/location.php:72 includes/cpt/template.php:68
-#: includes/cpt/event.php:71 includes/cpt/resource.php:71
+#: includes/cpt/listing.php:64 includes/cpt/membership.php:72
+#: includes/cpt/project.php:71 includes/cpt/location.php:72
+#: includes/cpt/template.php:68 includes/cpt/event.php:71
+#: includes/cpt/resource.php:71
msgid "M j, Y @ H:i"
msgstr ""
-#: acf-json/acf-translations.php:89
+#: acf-json/acf-translations.php:86
msgid "Media type"
msgstr ""
-#: acf-json/acf-translations.php:90
+#: acf-json/acf-translations.php:87
msgid "Media(s)"
msgstr ""
@@ -878,7 +953,7 @@ msgstr ""
msgid "Membership submitted."
msgstr ""
-#: acf-json/acf-translations.php:91
+#: acf-json/acf-translations.php:88
msgid "Membership type"
msgstr ""
@@ -887,7 +962,7 @@ msgstr ""
msgid "Membership updated."
msgstr ""
-#: acf-json/acf-translations.php:92
+#: acf-json/acf-translations.php:89
msgid "Membership(s)"
msgstr ""
@@ -903,15 +978,15 @@ msgstr ""
msgid "Memberships list navigation"
msgstr ""
-#: acf-json/acf-translations.php:93
+#: acf-json/acf-translations.php:90
msgid "Message"
msgstr ""
-#: acf-json/acf-translations.php:94
+#: acf-json/acf-translations.php:91
msgid "Minimum price"
msgstr ""
-#: acf-json/acf-translations.php:95
+#: acf-json/acf-translations.php:92
msgid "Moral entity"
msgstr ""
@@ -921,19 +996,15 @@ msgstr ""
msgid "Most used"
msgstr ""
-#: acf-json/acf-translations.php:88
-msgid "MRC"
-msgstr ""
-
-#: acf-json/acf-translations.php:96
+#: acf-json/acf-translations.php:93
msgid "Multiple day(s)"
msgstr ""
-#: acf-json/acf-translations.php:97
+#: acf-json/acf-translations.php:94
msgid "Muted background"
msgstr ""
-#: acf-json/acf-translations.php:98
+#: acf-json/acf-translations.php:95
msgid "Name"
msgstr ""
@@ -949,6 +1020,10 @@ msgstr ""
msgid "New Event"
msgstr ""
+#: includes/cpt/listing.php:15
+msgid "New Listing"
+msgstr ""
+
#: includes/cpt/location.php:15
msgid "New Location"
msgstr ""
@@ -1007,6 +1082,14 @@ msgstr ""
msgid "No Events found in trash"
msgstr ""
+#: includes/cpt/listing.php:20
+msgid "No Listings found"
+msgstr ""
+
+#: includes/cpt/listing.php:21
+msgid "No Listings found in trash"
+msgstr ""
+
#: includes/cpt/location.php:20
msgid "No Locations found"
msgstr ""
@@ -1071,31 +1154,31 @@ msgstr ""
msgid "No Templates found in trash"
msgstr ""
-#: acf-json/acf-translations.php:99
+#: acf-json/acf-translations.php:96
msgid "Notification(s)"
msgstr ""
-#: acf-json/acf-translations.php:100
+#: acf-json/acf-translations.php:97
msgid "Offer"
msgstr ""
-#: acf-json/acf-translations.php:101
+#: acf-json/acf-translations.php:98
msgid "Offer status"
msgstr ""
-#: acf-json/acf-translations.php:102
+#: acf-json/acf-translations.php:99
msgid "Online"
msgstr ""
-#: acf-json/acf-translations.php:103
+#: acf-json/acf-translations.php:100
msgid "Options page – CCAT"
msgstr ""
-#: acf-json/acf-translations.php:104
+#: acf-json/acf-translations.php:101
msgid "Organisation"
msgstr ""
-#: acf-json/acf-translations.php:105
+#: acf-json/acf-translations.php:102
msgid "Organization profile"
msgstr ""
@@ -1115,6 +1198,10 @@ msgstr ""
msgid "Parent Event:"
msgstr ""
+#: includes/cpt/listing.php:22
+msgid "Parent Listing:"
+msgstr ""
+
#: includes/cpt/location.php:22
msgid "Parent Location:"
msgstr ""
@@ -1155,23 +1242,23 @@ msgstr ""
msgid "Parent Template:"
msgstr ""
-#: acf-json/acf-translations.php:106
+#: acf-json/acf-translations.php:103
msgid "Period"
msgstr ""
-#: acf-json/acf-translations.php:107
+#: acf-json/acf-translations.php:104
msgid "Person name"
msgstr ""
-#: acf-json/acf-translations.php:108
+#: acf-json/acf-translations.php:105
msgid "Phone"
msgstr ""
-#: acf-json/acf-translations.php:109
+#: acf-json/acf-translations.php:106
msgid "Physical person"
msgstr ""
-#: acf-json/acf-translations.php:110
+#: acf-json/acf-translations.php:107
msgid "Planned"
msgstr ""
@@ -1187,51 +1274,51 @@ msgstr ""
msgid "Popular resource-categories"
msgstr ""
-#: acf-json/acf-translations.php:111
+#: acf-json/acf-translations.php:108
msgid "Possible configuration(s)"
msgstr ""
-#: acf-json/acf-translations.php:112
+#: acf-json/acf-translations.php:109
msgid "Post – Article"
msgstr ""
-#: acf-json/acf-translations.php:113
+#: acf-json/acf-translations.php:110
msgid "Post – Contributor"
msgstr ""
-#: acf-json/acf-translations.php:114
+#: acf-json/acf-translations.php:111
msgid "Post – Event"
msgstr ""
-#: acf-json/acf-translations.php:115
+#: acf-json/acf-translations.php:112
msgid "Post – Location"
msgstr ""
-#: acf-json/acf-translations.php:116
+#: acf-json/acf-translations.php:113
msgid "Post – Membership"
msgstr ""
-#: acf-json/acf-translations.php:117
+#: acf-json/acf-translations.php:114
msgid "Post – Page"
msgstr ""
-#: acf-json/acf-translations.php:118
+#: acf-json/acf-translations.php:115
msgid "Post – Project"
msgstr ""
-#: acf-json/acf-translations.php:119
+#: acf-json/acf-translations.php:116
msgid "Post – Representation"
msgstr ""
-#: acf-json/acf-translations.php:120
+#: acf-json/acf-translations.php:117
msgid "Post – Resource"
msgstr ""
-#: acf-json/acf-translations.php:121
+#: acf-json/acf-translations.php:118
msgid "Post – Template"
msgstr ""
-#: acf-json/acf-translations.php:122
+#: acf-json/acf-translations.php:119
msgid "Postponed"
msgstr ""
@@ -1243,6 +1330,10 @@ msgstr ""
msgid "Preview Event"
msgstr ""
+#: includes/cpt/listing.php:62 includes/cpt/listing.php:63
+msgid "Preview Listing"
+msgstr ""
+
#: includes/cpt/location.php:70 includes/cpt/location.php:71
msgid "Preview Location"
msgstr ""
@@ -1267,11 +1358,11 @@ msgstr ""
msgid "Preview Template"
msgstr ""
-#: acf-json/acf-translations.php:123
+#: acf-json/acf-translations.php:120
msgid "Pricing"
msgstr ""
-#: acf-json/acf-translations.php:124
+#: acf-json/acf-translations.php:121
msgid "Profile(s)"
msgstr ""
@@ -1287,7 +1378,7 @@ msgstr ""
msgid "Project Attributes"
msgstr ""
-#: acf-json/acf-translations.php:125
+#: acf-json/acf-translations.php:122
msgid "Project categorie(s)"
msgstr ""
@@ -1378,22 +1469,23 @@ msgstr ""
msgid "Projects list navigation"
msgstr ""
-#: acf-json/acf-translations.php:126
+#: acf-json/acf-translations.php:123
msgid "Range"
msgstr ""
-#: acf-json/acf-translations.php:127
+#: acf-json/acf-translations.php:124
msgid "Rechercher une adresse..."
msgstr ""
-#: acf-json/acf-translations.php:128
+#: acf-json/acf-translations.php:125
msgid "Registration"
msgstr ""
#: includes/cpt/representation.php:30 includes/cpt/contributor.php:30
-#: includes/cpt/membership.php:30 includes/cpt/project.php:30
-#: includes/cpt/location.php:30 includes/cpt/template.php:30
-#: includes/cpt/event.php:30 includes/cpt/resource.php:30
+#: includes/cpt/listing.php:30 includes/cpt/membership.php:30
+#: includes/cpt/project.php:30 includes/cpt/location.php:30
+#: includes/cpt/template.php:30 includes/cpt/event.php:30
+#: includes/cpt/resource.php:30
msgid "Remove featured image"
msgstr ""
@@ -1484,7 +1576,7 @@ msgstr ""
msgid "Resource categories list navigation"
msgstr ""
-#: acf-json/acf-translations.php:129
+#: acf-json/acf-translations.php:126
#: includes/taxonomies/resource-category.php:12
msgid "Resource category"
msgstr ""
@@ -1555,15 +1647,15 @@ msgstr ""
msgid "Resources list navigation"
msgstr ""
-#: acf-json/acf-translations.php:130
+#: acf-json/acf-translations.php:127
msgid "Salle de spectacle"
msgstr ""
-#: acf-json/acf-translations.php:131
+#: acf-json/acf-translations.php:128
msgid "Same as contact"
msgstr ""
-#: acf-json/acf-translations.php:132
+#: acf-json/acf-translations.php:129
msgid "Schedule type"
msgstr ""
@@ -1579,10 +1671,14 @@ msgstr ""
msgid "Search Events"
msgstr ""
-#: acf-json/acf-translations.php:133
+#: acf-json/acf-translations.php:130
msgid "Search for address..."
msgstr ""
+#: includes/cpt/listing.php:19
+msgid "Search Listings"
+msgstr ""
+
#: includes/cpt/location.php:19
msgid "Search Locations"
msgstr ""
@@ -1615,27 +1711,27 @@ msgstr ""
msgid "Search Templates"
msgstr ""
-#: acf-json/acf-translations.php:134
+#: acf-json/acf-translations.php:131
msgid "Section – Container"
msgstr ""
-#: acf-json/acf-translations.php:135
+#: acf-json/acf-translations.php:132
msgid "Section – Theme"
msgstr ""
-#: acf-json/acf-translations.php:136
+#: acf-json/acf-translations.php:133
msgid "Section(s)"
msgstr ""
-#: acf-json/acf-translations.php:137
+#: acf-json/acf-translations.php:134
msgid "Select"
msgstr ""
-#: acf-json/acf-translations.php:138
+#: acf-json/acf-translations.php:135
msgid "Sent"
msgstr ""
-#: acf-json/acf-translations.php:139
+#: acf-json/acf-translations.php:136
msgid "Sent status"
msgstr ""
@@ -1652,37 +1748,38 @@ msgid "Separate resource-categories with commas"
msgstr ""
#: includes/cpt/representation.php:29 includes/cpt/contributor.php:29
-#: includes/cpt/membership.php:29 includes/cpt/project.php:29
-#: includes/cpt/location.php:29 includes/cpt/template.php:29
-#: includes/cpt/event.php:29 includes/cpt/resource.php:29
+#: includes/cpt/listing.php:29 includes/cpt/membership.php:29
+#: includes/cpt/project.php:29 includes/cpt/location.php:29
+#: includes/cpt/template.php:29 includes/cpt/event.php:29
+#: includes/cpt/resource.php:29
msgid "Set featured image"
msgstr ""
-#: acf-json/acf-translations.php:140
+#: acf-json/acf-translations.php:137
msgid "Social"
msgstr ""
-#: acf-json/acf-translations.php:141
+#: acf-json/acf-translations.php:138
msgid "Spectacle"
msgstr ""
-#: acf-json/acf-translations.php:142
+#: acf-json/acf-translations.php:139
msgid "Start date"
msgstr ""
-#: acf-json/acf-translations.php:143
+#: acf-json/acf-translations.php:140
msgid "Start date / time"
msgstr ""
-#: acf-json/acf-translations.php:144
+#: acf-json/acf-translations.php:141
msgid "Start month"
msgstr ""
-#: acf-json/acf-translations.php:145
+#: acf-json/acf-translations.php:142
msgid "Subject"
msgstr ""
-#: acf-json/acf-translations.php:146
+#: acf-json/acf-translations.php:143
msgid "Target audience"
msgstr ""
@@ -1744,39 +1841,39 @@ msgstr ""
msgid "Templates list navigation"
msgstr ""
-#: acf-json/acf-translations.php:147
+#: acf-json/acf-translations.php:144
msgid "Term – Discipline"
msgstr ""
-#: acf-json/acf-translations.php:148
+#: acf-json/acf-translations.php:145
msgid "Text block"
msgstr ""
-#: acf-json/acf-translations.php:149
+#: acf-json/acf-translations.php:146
msgid "This event is asynchronous"
msgstr ""
-#: acf-json/acf-translations.php:150
+#: acf-json/acf-translations.php:147
msgid "This event is free"
msgstr ""
-#: acf-json/acf-translations.php:151
+#: acf-json/acf-translations.php:148
msgid "This event is wordless"
msgstr ""
-#: acf-json/acf-translations.php:152
+#: acf-json/acf-translations.php:149
msgid "Title"
msgstr ""
-#: acf-json/acf-translations.php:153
+#: acf-json/acf-translations.php:150
msgid "Tout public"
msgstr ""
-#: acf-json/acf-translations.php:156
+#: acf-json/acf-translations.php:153
msgid "Universal access"
msgstr ""
-#: acf-json/acf-translations.php:157
+#: acf-json/acf-translations.php:154
msgid "Upcoming"
msgstr ""
@@ -1800,6 +1897,10 @@ msgstr ""
msgid "Uploaded to this Event"
msgstr ""
+#: includes/cpt/listing.php:27
+msgid "Uploaded to this Listing"
+msgstr ""
+
#: includes/cpt/location.php:27
msgid "Uploaded to this Location"
msgstr ""
@@ -1824,22 +1925,23 @@ msgstr ""
msgid "Uploaded to this Template"
msgstr ""
-#: acf-json/acf-translations.php:154
+#: acf-json/acf-translations.php:151
msgid "URI"
msgstr ""
-#: acf-json/acf-translations.php:155
+#: acf-json/acf-translations.php:152
msgid "URL"
msgstr ""
#: includes/cpt/representation.php:31 includes/cpt/contributor.php:31
-#: includes/cpt/membership.php:31 includes/cpt/project.php:31
-#: includes/cpt/location.php:31 includes/cpt/template.php:31
-#: includes/cpt/event.php:31 includes/cpt/resource.php:31
+#: includes/cpt/listing.php:31 includes/cpt/membership.php:31
+#: includes/cpt/project.php:31 includes/cpt/location.php:31
+#: includes/cpt/template.php:31 includes/cpt/event.php:31
+#: includes/cpt/resource.php:31
msgid "Use as featured image"
msgstr ""
-#: acf-json/acf-translations.php:158
+#: acf-json/acf-translations.php:155
msgid "User Profile"
msgstr ""
@@ -1863,6 +1965,14 @@ msgstr ""
msgid "View Events"
msgstr ""
+#: includes/cpt/listing.php:17 includes/cpt/listing.php:65
+msgid "View Listing"
+msgstr ""
+
+#: includes/cpt/listing.php:18
+msgid "View Listings"
+msgstr ""
+
#: includes/cpt/location.php:17 includes/cpt/location.php:73
msgid "View Location"
msgstr ""
@@ -1919,7 +2029,7 @@ msgstr ""
msgid "View Templates"
msgstr ""
-#: acf-json/acf-translations.php:159
+#: acf-json/acf-translations.php:156
msgid "Virtual location"
msgstr ""
@@ -1927,30 +2037,30 @@ msgstr ""
msgid "Websimple "
msgstr ""
-#: acf-json/acf-translations.php:160
+#: acf-json/acf-translations.php:157
msgid "Where"
msgstr ""
-#: acf-json/acf-translations.php:161
+#: acf-json/acf-translations.php:158
msgid "Wordless"
msgstr ""
-#: acf-json/acf-translations.php:162
+#: acf-json/acf-translations.php:159
msgid "Y-m"
msgstr ""
-#: acf-json/acf-translations.php:163
+#: acf-json/acf-translations.php:160
msgid "Y-m-d"
msgstr ""
-#: acf-json/acf-translations.php:164
+#: acf-json/acf-translations.php:161
msgid "Y-m-d H:i:s"
msgstr ""
-#: acf-json/acf-translations.php:165
+#: acf-json/acf-translations.php:162
msgid "YouTube URL"
msgstr ""
-#: acf-json/acf-translations.php:166
+#: acf-json/acf-translations.php:163
msgid "YouTube video"
msgstr ""
diff --git a/wp-content/themes/ccat/languages/fr_CA.l10n.php b/wp-content/themes/ccat/languages/fr_CA.l10n.php
index 592c6d5..f7ff9e8 100644
--- a/wp-content/themes/ccat/languages/fr_CA.l10n.php
+++ b/wp-content/themes/ccat/languages/fr_CA.l10n.php
@@ -1,3 +1,3 @@
'CCAT','report-msgid-bugs-to'=>'','pot-creation-date'=>'2025-05-26 14:47+0000','po-revision-date'=>'2025-09-22 18:20+0000','last-translator'=>'','language-team'=>'Français du Canada','language'=>'fr_CA','plural-forms'=>'nplurals=2; plural=n > 1;','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','x-generator'=>'Loco https://localise.biz/','x-loco-version'=>'2.8.0; wp-6.8.2; php-8.2.28','x-domain'=>'ccat
-','messages'=>['← Back to disciplines'=>'← Retour aux disciplines','← Back to project-categories'=>'← Retour aux catégories de projet','← Back to resource-categories'=>'← Retour aux catégories de ressources','1024px container'=>'Conteneur 1024px','1280px container'=>'Conteneur 1280px','640px container'=>'Conteneur 640px','768px container'=>'Conteneur 768px','Abstract – Builder'=>'Abstrait – Constructeur','Abstract – Credits'=>'Abstrait – Crédits','Abstract – Entity'=>'Abstrait – Entité','Abstract – Gallery'=>'Abstrait – Galerie','Abstract – Offer'=>'Abstrait – Offre','Abstract – Social'=>'Abstrait – Social','Accented background'=>'Arrière-plan accentué','Add File'=>'Ajouter un fichier','Add New'=>'Ajouter','Add New Contributor'=>'Ajouter un contributeur','Add New Event'=>'Ajouter un événement','Add New Location'=>'Ajouter un lieu','Add New Membership'=>'Ajouter une nouvelle adhésion','Add New Project'=>'Ajouter un projet','Add New Representation'=>'Ajouter une représentation','Add New Resource'=>'Ajouter une ressource','Add New Template'=>'Ajouter un modèle','Add or remove disciplines'=>'Ajouter ou supprimer des disciplines','Add or remove project-categories'=>'Ajouter ou supprimer des catégories de projet','Add or remove resource-categories'=>'Ajouter ou supprimer des catégories de ressources','Address'=>'Adresse','Adultes (18+)'=>'Adultes (18+)','Ajouter un élément'=>'Ajouter un élément','All Contributors'=>'Tous les contributeurs','All disciplines'=>'Toutes les disciplines','All Events'=>'Tous les événements','All Locations'=>'Tous les lieux','All Memberships'=>'Toutes les adhésions','All project-categories'=>'Toutes les catégories de projet','All Projects'=>'Tous les projets','All Representations'=>'Toutes les représentations','All resource-categories'=>'Toutes les catégories de ressources','All Resources'=>'Toutes les ressources','All Templates'=>'Tous les modèles','Alternative title(s)'=>'Titre(s) alternatif(s)','Attendance mode'=>'Mode de présence','Auteur'=>'Auteur','Background color'=>'Couleur d\'arrière-plan','Bar'=>'Bar','Billing'=>'Facturation','Billing is the same as contact'=>'Les informations de facturation sont les mêmes que pour le contact','Builder'=>'Constructeur','Cancelled'=>'Annulé','Categorie(s)'=>'Catégorie(s)','CCAT'=>'CCAT','Choose from the most used disciplines'=>'Choisir parmis les disciplines les plus utilisées','Choose from the most used project-categories'=>'Choisir parmi les catégories de projets les plus utilisées','Choose from the most used resource-categories'=>'Choisir parmi les catégories de ressources les plus utilisées','Collectif artistique'=>'Collectif artistique','Complete'=>'Complet','Compositeur'=>'Compositeur','Configuration'=>'Configuration','Configuration name'=>'Nom de la configuration','Confirmed'=>'Confirmé','Conseil de la culture de l\'Abitibi-Témiscamingue'=>'Conseil de la culture de l\'Abitibi-Témiscamingue','Contact'=>'Contact','Content'=>'Contenu','Content width'=>'Largeur du contenu','Contribution type(s)'=>'Type(s) de contribution','Contribution(s)'=>'Contribution(s)','Contributor'=>'Contributeur','Contributor Archives'=>'Archives des contributeurs','Contributor Attributes'=>'Attributs du contributeur','Contributor published privately.'=>'Le contributeur a publié de manière privée.','Contributor published.'=>'Contributeur publié.','Contributor restored to revision from %s'=>'Le contributeur a été restauré à la révision de %s','Contributor reverted to draft.'=>'Le contributeur a été ramené à l\'état de brouillon.','Contributor saved.'=>'Contributeur enregistré.','Contributor scheduled.'=>'Contributeur prévu.','Contributor submitted.'=>'Contributeur soumis.','Contributor type'=>'Type de configuration','Contributor updated.'=>'Contributeur mis à jour.','Contributors'=>'Contributeurs','Contributors list'=>'Liste des contributeurs','Contributors list navigation'=>'Liste des contributeurs et navigation','Credits'=>'Crédits','Custom field deleted.'=>'Champ personnalisé supprimé.','Custom field updated.'=>'Champ personnalisé mis à jour.','Date / time'=>'Date / heure','Date range'=>'Plage de dates','Day(s)'=>'Journée(s)','Default background'=>'Arrière-plan par défaut','Default container'=>'Conteneur par défaut','Description'=>'Description','Discipline'=>'Discipline','Discipline added.'=>'Discipline ajoutée.','Discipline deleted.'=>'Discipline supprimée.','Discipline not added.'=>'Discipline non ajoutée.','Discipline not updated.'=>'Discipline non mis à jour.','Discipline updated.'=>'Discipline mise à jour.','Discipline(s)'=>'Discipline(s)','Disciplines'=>'Disciplines','Disciplines deleted.'=>'Disciplines supprimées.','Disciplines list'=>'Liste des disciplines','Disciplines list navigation'=>'Liste de navigation des disciplines','Document type'=>'Type de document','Document(s)'=>'Document(s)','Edit Contributor'=>'Modifier le contributeur','Edit discipline'=>'Modifier la discipline','Edit Event'=>'Modifier l\'événement','Edit Location'=>'Modifier le lieu','Edit Membership'=>'Modifier l\'adhésion','Edit Project'=>'Modifier le projet','Edit project-category'=>'Modifier la catégorie du projet','Edit Representation'=>'Représentation modifiée','Edit Resource'=>'Modifier la ressource','Edit resource-category'=>'Modifier la catégorie de ressources','Edit Template'=>'Modifier le modèle','Elevated background'=>'Arrière-plan élevé','Email'=>'Courriel','Email preferences'=>'Préférences courriel','End date'=>'Date de fin','End month'=>'Mois de fin','End time'=>'Heure de fin','Enfants'=>'Enfants','Entity'=>'Entité','Event'=>'Événement','Event Archives'=>'Archives d\'événements','Event Attributes'=>'Attributs de l\'événement','Event published privately.'=>'Événement publié en privé.','Event published.'=>'Événement publié.','Event restored to revision from %s'=>'Événement restauré à la révision de %s','Event reverted to draft.'=>'L\'événement a été remis en brouillon.','Event saved.'=>'Événement enregistré.','Event scheduled.'=>'Événement prévu.','Event submitted.'=>'Événement soumis.','Event type'=>'Type d\'événement','Event type(s)'=>'Type(s) d\'événement','Event updated.'=>'Événement mis à jour.','Events'=>'Événements','Events list'=>'Liste des événements','Events list navigation'=>'Navigation de la liste des événements','Exposition'=>'Exposition','Failed'=>'Échec','Familial'=>'Familial','Featured Image'=>'Image en vedette','Festival'=>'Festival','File'=>'Fichier','Filter Contributors list'=>'Filtrer la liste des contributeurs','Filter Events list'=>'Filtrer la liste des événements','Filter Locations list'=>'Filtrer la liste des lieux','Filter Memberships list'=>'Filtrer la liste des adhésions','Filter Projects list'=>'Filtrer la liste des projets','Filter Representations list'=>'Liste des représentations de filtres','Filter Resources list'=>'Filtrer la liste des ressources','Filter Templates list'=>'Liste des modèles de filtres','Fluid container'=>'Conteneur fluide','Form'=>'Formulaire','Free'=>'Gratuit','Full-width container'=>'Conteneur pleine largeur','Gallery'=>'Galerie','H:i'=>'H:i','https://websimple.com/'=>'https://websimple.com/','Hybrid'=>'Hybride','Identifier(s)'=>'Identifiant(s)','Image'=>'Image','In-person'=>'En personne','Individu'=>'Individu','Individual day(s)'=>'Journée(s) individuelle(s)','Insert into Contributor'=>'Insérer dans le contributeur','Insert into Event'=>'Insérer dans l\'événement','Insert into Location'=>'Insérer dans le lieu','Insert into Membership'=>'Insérer dans l\'adhésion','Insert into Project'=>'Insérer dans le projet','Insert into Representation'=>'Insérer dans la représentation','Insert into Resource'=>'Insérer dans la ressource','Insert into Template'=>'Insérer dans le modèle','Institution'=>'Institution','Interprète'=>'Interprète','Is asynchronous'=>'Déroulement asynchrone','Language(s)'=>'Langue(s)','Locality'=>'Lieu','Location'=>'Lieu','Location Archives'=>'Archives de lieux','Location Attributes'=>'Attributs de lieu','Location published privately.'=>'Lieu publié de manière privée.','Location published.'=>'Lieu publié.','Location restored to revision from %s'=>'Le lieu a été restauré à la révision de %s','Location reverted to draft.'=>'Le lieu a été remis en brouillon.','Location saved.'=>'Lieu enregistré.','Location scheduled.'=>'Lieu prévu.','Location submitted.'=>'Lieu soumis.','Location type'=>'Type de lieu','Location updated.'=>'Lieu mis à jour.','Locations'=>'Lieux','Locations list'=>'Liste des lieux','Locations list navigation'=>'Navigation de la liste des lieux','M j, Y @ H:i'=>'Je suis désolé, je ne comprends pas la signification de "M j, Y @ H:i". Pouvez-vous fournir plus de contexte ou une explication supplémentaire?','Media type'=>'Type de média','Media(s)'=>'Média(s)','Membership'=>'Adhésion','Membership Archives'=>'Archives de adhésions','Membership Attributes'=>'Attributs de l\'adhésion','Membership published privately.'=>'Adhésion publiée en privé.','Membership published.'=>'Adhésion publiée.','Membership restored to revision from %s'=>'Adhésion restaurée à la révision de %s','Membership reverted to draft.'=>'L\'adhésion a été ramenée à l\'état de brouillon.','Membership saved.'=>'Adhésion enregistrée.','Membership scheduled.'=>'Adhésion planifiée.','Membership submitted.'=>'Adhésion soumise.','Membership type'=>'Type d\'adhésion','Membership updated.'=>'Adhésion mise à jour.','Membership(s)'=>'Adhésion(s)','Memberships'=>'Adhésions','Memberships list'=>'Liste des adhésions','Memberships list navigation'=>'Liste de navigation des adhésions','Message'=>'Message','Minimum price'=>'Prix à partir de','Moral entity'=>'Entité morale','Most used'=>'Le plus utilisé','MRC'=>'MRC','Multiple day(s)'=>'Journée(s) multiple(s)','Muted background'=>'Arrière-plan atténué','Name'=>'Nom','New Contributor'=>'Nouveau contributeur','New discipline'=>'Nouvelle discipline','New Event'=>'Nouvel événement','New Location'=>'Nouveau lieu','New Membership'=>'Nouvelle adhésion','New Project'=>'Nouveau projet','New project-category'=>'Nouvelle catégorie de projet','New Representation'=>'Nouvelle représentation','New Resource'=>'Nouvelle ressource','New resource-category'=>'Nouvelle catégorie de ressources','New Template'=>'Nouveau modèle','No Contributors found'=>'Aucun contributeur trouvé','No Contributors found in trash'=>'Aucun contributeur trouvé dans la corbeille','No disciplines'=>'Aucune discipline','No disciplines found.'=>'Aucune discipline trouvée.','No Events found'=>'Aucun événement trouvé','No Events found in trash'=>'Aucun événement trouvé dans la corbeille','No Locations found'=>'Aucun lieu trouvé','No Locations found in trash'=>'Aucun lieu trouvé dans la corbeille','No Memberships found'=>'Aucune adhésion trouvée','No Memberships found in trash'=>'Aucune adhésion trouvée dans la corbeille','No project-categories'=>'Aucune catégorie de projet','No project-categories found.'=>'Aucune catégorie de projet trouvée.','No Projects found'=>'Aucun projet trouvé','No Projects found in trash'=>'Aucun projet trouvé dans la corbeille','No Representations found'=>'Aucune représentation trouvée','No Representations found in trash'=>'Aucune représentation trouvée dans la corbeille','No resource-categories'=>'Aucune catégorie de ressources','No resource-categories found.'=>'Aucune catégorie de ressources trouvée.','No Resources found'=>'Aucune ressource trouvée','No Resources found in trash'=>'Aucune ressource trouvée dans la corbeille','No Templates found'=>'Aucun modèle trouvé','No Templates found in trash'=>'Aucun modèle trouvé dans la corbeille','Notification(s)'=>'Notification(s)','Offer'=>'Offre','Offer status'=>'État de l\'offre','Online'=>'En ligne','Options page – CCAT'=>'Page d\'options – CCAT','Organisation'=>'Organisation','Parent Contributor:'=>'Parent Contributor: Contributeur parent','Parent discipline'=>'Discipline parentale','Parent discipline:'=>'Discipline parentale','Parent Event:'=>'Événement pour les parents :','Parent Location:'=>'Lieu parent :','Parent Membership:'=>'Adhésion parent :','Parent project-category'=>'Catégorie de projet parent','Parent project-category:'=>'Catégorie de projet parent :','Parent Project:'=>'Projet parent :','Parent Representation:'=>'Représentation des parents :','Parent resource-category'=>'Catégorie de ressources pour les parents','Parent resource-category:'=>'Catégorie de ressources parent :','Parent Resource:'=>'Ressource pour les parents :','Parent Template:'=>'Modèle parent :','Period'=>'Période','Person name'=>'Nom complet','Phone'=>'Téléphone','Physical person'=>'Personne physique','Planned'=>'Planifié','Popular disciplines'=>'Les disciplines populaires','Popular project-categories'=>'Catégories de projets populaires','Popular resource-categories'=>'Catégories de ressources populaires','Possible configuration(s)'=>'Configuration(s) possible(s)','Post – Article'=>'Contenu – Article','Post – Contributor'=>'Contenu – Contributeur','Post – Event'=>'Contenu – Événement','Post – Location'=>'Contenu – Lieu','Post – Membership'=>'Contenu - Adhésion','Post – Page'=>'Contenu – Page','Post – Project'=>'Contenu – Projet','Post – Representation'=>'Contenu – Représentation','Post – Resource'=>'Contenu – Ressource','Post – Template'=>'Contenu – Modèle','Postponed'=>'Reporté','Preview Contributor'=>'Prévisualiser le contributeur','Preview Event'=>'Prévisualiser l\'événement','Preview Location'=>'Prévisualiser le lieu','Preview Membership'=>'Prévisualiser l\'adhésion','Preview Project'=>'Prévisualiser le projet','Preview Representation'=>'Prévisualiser la représentation','Preview Resource'=>'Prévisualiser la ressource','Preview Template'=>'Prévisualiser le modèle','Pricing'=>'Tarification','Profile(s)'=>'Profil(s)','Project'=>'Projet','Project Archives'=>'Archives du projet','Project Attributes'=>'Attributs du projet','Project categorie(s)'=>'Catégorie(s) de projet','Project categories'=>'Catégories de projet','Project categories deleted.'=>'Catégories de projet supprimées.','Project categories list'=>'Liste des catégories de projets','Project categories list navigation'=>'Liste de catégories de projets pour la navigation','Project category'=>'Catégorie de projet','Project category added.'=>'Catégorie de projet ajoutée.','Project category deleted.'=>'Catégorie de projet supprimée.','Project category not added.'=>'Catégorie de projet non ajoutée.','Project category not updated.'=>'Catégorie de projet non mise à jour.','Project category updated.'=>'Catégorie de projet mise à jour.','Project published privately.'=>'Projet publié en privé.','Project published.'=>'Projet publié.','Project restored to revision from %s'=>'Projet restauré à la révision de %s','Project reverted to draft.'=>'Le projet a été ramené à l\'étape de brouillon.','Project saved.'=>'Projet enregistré.','Project scheduled.'=>'Projet planifié.','Project submitted.'=>'Projet soumis.','Project updated.'=>'Projet mis à jour.','Projects'=>'Projets','Projects list'=>'Liste de projets','Projects list navigation'=>'Navigation de la liste des projets','Range'=>'Plage de dates','Rechercher une adresse...'=>'Rechercher une adresse...','Registration'=>'Inscription','Remove featured image'=>'Retirer l\'image en vedette','Representation'=>'Représentation','Representation Archives'=>'Archives de représentation','Representation Attributes'=>'Attributs de représentation','Representation published privately.'=>'Représentation publiée en privé.','Representation published.'=>'Représentation publiée.','Representation restored to revision from %s'=>'Représentation restaurée à la révision de %s','Representation reverted to draft.'=>'La représentation a été ramenée à l\'état de brouillon.','Representation saved.'=>'Représentation enregistrée.','Representation scheduled.'=>'Représentation prévue.','Representation submitted.'=>'Représentation soumise.','Representation updated.'=>'Représentation mise à jour.','Representations'=>'Représentations','Representations list'=>'Liste des représentations','Representations list navigation'=>'Liste de navigation des représentations','Resource'=>'Ressource','Resource Archives'=>'Archives de ressources','Resource Attributes'=>'Attributs des ressources','Resource categories'=>'Catégories de ressources','Resource categories deleted.'=>'Catégories de ressources supprimées.','Resource categories list'=>'Liste des catégories de ressources','Resource categories list navigation'=>'Liste de navigation des catégories de ressources','Resource category'=>'Catégorie de ressources','Resource category added.'=>'Catégorie de ressources ajoutée.','Resource category deleted.'=>'Catégorie de ressources supprimée.','Resource category not added.'=>'Catégorie de ressources non ajoutée.','Resource category not updated.'=>'Catégorie de ressources non mise à jour.','Resource category updated.'=>'Catégorie de ressources mise à jour.','Resource published privately.'=>'Ressource publiée de façon privée.','Resource published.'=>'Ressource publiée.','Resource restored to revision from %s'=>'Ressource restaurée à la révision de %s','Resource reverted to draft.'=>'La ressource a été ramenée à l\'état de brouillon.','Resource saved.'=>'Ressource sauvegardée.','Resource scheduled.'=>'Ressource planifiée.','Resource submitted.'=>'Ressource soumise.','Resource updated.'=>'Ressource mise à jour.','Resources'=>'Ressources','Resources list'=>'Liste de ressources','Resources list navigation'=>'Liste de navigation des ressources','Salle de spectacle'=>'Salle de spectacle','Same as contact'=>'Même que contact','Schedule type'=>'Type d\'horaire','Search Contributors'=>'Recherche de contributeurs','Search disciplines'=>'Recherche de disciplines','Search Events'=>'Recherche d\'événements','Search for address...'=>'Rechercher une adresse...','Search Locations'=>'Recherche de lieux','Search Memberships'=>'Recherche d\'adhésions','Search project-categories'=>'Recherche de catégories de projet','Search Projects'=>'Recherche de projets','Search Representations'=>'Représentations de recherche','Search resource-categories'=>'Recherche de catégories de ressources','Search Resources'=>'Recherche de ressources','Search Templates'=>'Modèles de recherche','Section – Container'=>'Section – Conteneur','Section – Theme'=>'Section – Thème','Section(s)'=>'Section(s)','Select'=>'Sélectionner','Sent'=>'Envoyé','Sent status'=>'État de l\'envoi','Separate disciplines with commas'=>'Séparez les disciplines avec des virgules.','Separate project-categories with commas'=>'Séparez les catégories de projets avec des virgules.','Separate resource-categories with commas'=>'Séparez les catégories de ressources avec des virgules.','Set featured image'=>'Définir l\'image en vedette','Social'=>'Social','Spectacle'=>'Spectacle','Start date'=>'Date de début','Start date / time'=>'Date et heure de début','Start month'=>'Mois de début','Subject'=>'Sujet','Target audience'=>'Public cible','Template'=>'Modèle','Template Archives'=>'Archives de modèle','Template Attributes'=>'Attributs de modèle','Template published privately.'=>'Modèle publié en privé.','Template published.'=>'Modèle publié.','Template restored to revision from %s'=>'Modèle restauré à la révision du %s','Template reverted to draft.'=>'Le modèle a été rétabli en brouillon.','Template saved.'=>'Modèle enregistré.','Template scheduled.'=>'Modèle programmé.','Template submitted.'=>'Modèle soumis.','Template updated.'=>'Modèle mis à jour.','Templates'=>'Modèles','Templates list'=>'Liste de modèles','Templates list navigation'=>'Liste de modèles de navigation','Term – Discipline'=>'Terme - Discipline','Text block'=>'Bloc de texte','This event is asynchronous'=>'Cet événement est asynchrone','This event is free'=>'Cet événement est gratuit','This event is wordless'=>'Cet événement est sans paroles','Title'=>'Titre','Tout public'=>'Tout public','Universal access'=>'Accès universel','Upcoming'=>'À venir','Update discipline'=>'Mettre à jour la discipline','Update project-category'=>'Mettre à jour la catégorie du projet','Update resource-category'=>'Mettre à jour la catégorie de ressources','Uploaded to this Contributor'=>'Téléchargé par ce contributeur','Uploaded to this Event'=>'Téléchargé à cet événement','Uploaded to this Location'=>'Téléchargé à ce lieu','Uploaded to this Membership'=>'Téléchargé sur cette adhésion','Uploaded to this Project'=>'Téléchargé dans ce projet','Uploaded to this Representation'=>'Téléchargé sur cette représentation','Uploaded to this Resource'=>'Téléchargé dans cette ressource','Uploaded to this Template'=>'Téléchargé dans ce modèle','URI'=>'URI','URL'=>'URL','Use as featured image'=>'Utiliser comme image en vedette','User Profile'=>'Profil utilisateur','View Contributor'=>'Voir le contributeur','View Contributors'=>'Voir les contributeurs','View discipline'=>'Voir la discipline','View Event'=>'Voir l\'événement','View Events'=>'Voir les événements','View Location'=>'Voir le lieu','View Locations'=>'Voir les lieux','View Membership'=>'Afficher l\'adhésion','View Memberships'=>'Voir les adhésions','View Project'=>'Voir le projet','View project-category'=>'Voir la catégorie de projet','View Projects'=>'Voir les projets','View Representation'=>'Voir la représentation','View Representations'=>'Voir les représentations','View Resource'=>'Voir la ressource','View resource-category'=>'Voir la catégorie de ressources','View Resources'=>'Voir les ressources','View Template'=>'Voir le modèle','View Templates'=>'Voir les modèles','Virtual location'=>'Lieu virtuel','Websimple '=>'Websimple ','Where'=>'Lieu','Wordless'=>'Sans paroles','Y-m'=>'Y-m','Y-m-d'=>'Y-m-d','Y-m-d H:i:s'=>'Y-m-d H:i:s','YouTube URL'=>'URL YouTube','YouTube video'=>'Vidéo YouTube']];
+return ['project-id-version'=>'CCAT','report-msgid-bugs-to'=>'','pot-creation-date'=>'2025-05-26 14:47+0000','po-revision-date'=>'2025-09-24 19:52+0000','last-translator'=>'','language-team'=>'Français du Canada','language'=>'fr_CA','plural-forms'=>'nplurals=2; plural=n > 1;','mime-version'=>'1.0','content-type'=>'text/plain; charset=UTF-8','content-transfer-encoding'=>'8bit','x-generator'=>'Loco https://localise.biz/','x-loco-version'=>'2.8.0; wp-6.8.2; php-8.2.28','x-domain'=>'ccat
+','messages'=>['← Back to disciplines'=>'← Retour aux disciplines','← Back to project-categories'=>'← Retour aux catégories de projet','← Back to resource-categories'=>'← Retour aux catégories de ressources','1024px container'=>'Conteneur 1024px','1280px container'=>'Conteneur 1280px','640px container'=>'Conteneur 640px','768px container'=>'Conteneur 768px','Abstract – Builder'=>'Abstrait – Constructeur','Abstract – Credits'=>'Abstrait – Crédits','Abstract – Entity'=>'Abstrait – Entité','Abstract – Gallery'=>'Abstrait – Galerie','Abstract – Offer'=>'Abstrait – Offre','Abstract – Social'=>'Abstrait – Social','Accented background'=>'Arrière-plan accentué','Add File'=>'Ajouter un fichier','Add New'=>'Ajouter','Add New Contributor'=>'Ajouter un contributeur','Add New Event'=>'Ajouter un événement','Add New Listing'=>'Ajouter une annonce','Add New Location'=>'Ajouter un lieu','Add New Membership'=>'Ajouter une nouvelle adhésion','Add New Project'=>'Ajouter un projet','Add New Representation'=>'Ajouter une représentation','Add New Resource'=>'Ajouter une ressource','Add New Template'=>'Ajouter un modèle','Add or remove disciplines'=>'Ajouter ou supprimer des disciplines','Add or remove project-categories'=>'Ajouter ou supprimer des catégories de projet','Add or remove resource-categories'=>'Ajouter ou supprimer des catégories de ressources','Address'=>'Adresse','Adultes (18+)'=>'Adultes (18+)','Ajouter un élément'=>'Ajouter un élément','All Contributors'=>'Tous les contributeurs','All disciplines'=>'Toutes les disciplines','All Events'=>'Tous les événements','All Listings'=>'Toutes les annonces','All Locations'=>'Tous les lieux','All Memberships'=>'Toutes les adhésions','All project-categories'=>'Toutes les catégories de projet','All Projects'=>'Tous les projets','All Representations'=>'Toutes les représentations','All resource-categories'=>'Toutes les catégories de ressources','All Resources'=>'Toutes les ressources','All Templates'=>'Tous les modèles','Alternative title(s)'=>'Titre(s) alternatif(s)','Attendance mode'=>'Mode de présence','Auteur'=>'Auteur','Background color'=>'Couleur d\'arrière-plan','Bar'=>'Bar','Billing'=>'Facturation','Billing is the same as contact'=>'Les informations de facturation sont les mêmes que pour le contact','Builder'=>'Constructeur','Cancelled'=>'Annulé','CCAT'=>'CCAT','Choose from the most used disciplines'=>'Choisir parmis les disciplines les plus utilisées','Choose from the most used project-categories'=>'Choisir parmi les catégories de projets les plus utilisées','Choose from the most used resource-categories'=>'Choisir parmi les catégories de ressources les plus utilisées','Collectif artistique'=>'Collectif artistique','Complete'=>'Complet','Compositeur'=>'Compositeur','Configuration'=>'Configuration','Configuration name'=>'Nom de la configuration','Confirmed'=>'Confirmé','Conseil de la culture de l\'Abitibi-Témiscamingue'=>'Conseil de la culture de l\'Abitibi-Témiscamingue','Contact'=>'Contact','Content'=>'Contenu','Content width'=>'Largeur du contenu','Contribution type(s)'=>'Type(s) de contribution','Contribution(s)'=>'Contribution(s)','Contributor'=>'Contributeur','Contributor Archives'=>'Archives des contributeurs','Contributor Attributes'=>'Attributs du contributeur','Contributor published privately.'=>'Le contributeur a publié de manière privée.','Contributor published.'=>'Contributeur publié.','Contributor restored to revision from %s'=>'Le contributeur a été restauré à la révision de %s','Contributor reverted to draft.'=>'Le contributeur a été ramené à l\'état de brouillon.','Contributor saved.'=>'Contributeur enregistré.','Contributor scheduled.'=>'Contributeur prévu.','Contributor submitted.'=>'Contributeur soumis.','Contributor type'=>'Type de configuration','Contributor updated.'=>'Contributeur mis à jour.','Contributors'=>'Contributeurs','Contributors list'=>'Liste des contributeurs','Contributors list navigation'=>'Liste des contributeurs et navigation','Credits'=>'Crédits','Custom field deleted.'=>'Champ personnalisé supprimé.','Custom field updated.'=>'Champ personnalisé mis à jour.','Date / time'=>'Date / heure','Date range'=>'Plage de dates','Day(s)'=>'Journée(s)','Default background'=>'Arrière-plan par défaut','Default container'=>'Conteneur par défaut','Description'=>'Description','Discipline'=>'Discipline','Discipline added.'=>'Discipline ajoutée.','Discipline deleted.'=>'Discipline supprimée.','Discipline not added.'=>'Discipline non ajoutée.','Discipline not updated.'=>'Discipline non mis à jour.','Discipline updated.'=>'Discipline mise à jour.','Discipline(s)'=>'Discipline(s)','Disciplines'=>'Disciplines','Disciplines deleted.'=>'Disciplines supprimées.','Disciplines list'=>'Liste des disciplines','Disciplines list navigation'=>'Liste de navigation des disciplines','Document type'=>'Type de document','Document(s)'=>'Document(s)','Edit Contributor'=>'Modifier le contributeur','Edit discipline'=>'Modifier la discipline','Edit Event'=>'Modifier l\'événement','Edit Listing'=>'Modifier l\'annonce','Edit Location'=>'Modifier le lieu','Edit Membership'=>'Modifier l\'adhésion','Edit Project'=>'Modifier le projet','Edit project-category'=>'Modifier la catégorie du projet','Edit Representation'=>'Représentation modifiée','Edit Resource'=>'Modifier la ressource','Edit resource-category'=>'Modifier la catégorie de ressources','Edit Template'=>'Modifier le modèle','Elevated background'=>'Arrière-plan élevé','Email'=>'Courriel','Email preferences'=>'Préférences courriel','End date'=>'Date de fin','End month'=>'Mois de fin','End time'=>'Heure de fin','Enfants'=>'Enfants','Entity'=>'Entité','Event'=>'Événement','Event Archives'=>'Archives d\'événements','Event Attributes'=>'Attributs de l\'événement','Event published privately.'=>'Événement publié en privé.','Event published.'=>'Événement publié.','Event restored to revision from %s'=>'Événement restauré à la révision de %s','Event reverted to draft.'=>'L\'événement a été remis en brouillon.','Event saved.'=>'Événement enregistré.','Event scheduled.'=>'Événement prévu.','Event submitted.'=>'Événement soumis.','Event type'=>'Type d\'événement','Event updated.'=>'Événement mis à jour.','Events'=>'Événements','Events list'=>'Liste des événements','Events list navigation'=>'Navigation de la liste des événements','Exposition'=>'Exposition','Failed'=>'Échec','Familial'=>'Familial','Featured Image'=>'Image en vedette','Festival'=>'Festival','File'=>'Fichier','Filter Contributors list'=>'Filtrer la liste des contributeurs','Filter Events list'=>'Filtrer la liste des événements','Filter Listings list'=>'Filtrer la liste des annonces','Filter Locations list'=>'Filtrer la liste des lieux','Filter Memberships list'=>'Filtrer la liste des adhésions','Filter Projects list'=>'Filtrer la liste des projets','Filter Representations list'=>'Liste des représentations de filtres','Filter Resources list'=>'Filtrer la liste des ressources','Filter Templates list'=>'Liste des modèles de filtres','Fluid container'=>'Conteneur fluide','Form'=>'Formulaire','Free'=>'Gratuit','Full-width container'=>'Conteneur pleine largeur','Gallery'=>'Galerie','H:i'=>'H:i','https://websimple.com/'=>'https://websimple.com/','Hybrid'=>'Hybride','Identifier(s)'=>'Identifiant(s)','Image'=>'Image','In-person'=>'En personne','Individu'=>'Individu','Individual day(s)'=>'Journée(s) individuelle(s)','Insert into Contributor'=>'Insérer dans le contributeur','Insert into Event'=>'Insérer dans l\'événement','Insert into Listing'=>'Insérer dans l\'annonce','Insert into Location'=>'Insérer dans le lieu','Insert into Membership'=>'Insérer dans l\'adhésion','Insert into Project'=>'Insérer dans le projet','Insert into Representation'=>'Insérer dans la représentation','Insert into Resource'=>'Insérer dans la ressource','Insert into Template'=>'Insérer dans le modèle','Institution'=>'Institution','Interprète'=>'Interprète','Is asynchronous'=>'Déroulement asynchrone','Language(s)'=>'Langue(s)','Listing'=>'Annonce','Listing Archives'=>'Archive des annonces','Listing Attributes'=>'Attributs de l\'annonce','Listing published privately.'=>'Annonce publiée en privé.','Listing published.'=>'Annoce publiée.','Listing restored to revision from %s'=>'Annonce restaurée à la révision de %s','Listing reverted to draft.'=>'L\'annonce a été ramenée à l\'état de brouillon.','Listing saved.'=>'Annonce sauvegardée.','Listing scheduled.'=>'Annonce prévue.','Listing submitted.'=>'Annonce soumise pour publication.','Listing updated.'=>'Annonce mise à jour.','Listings'=>'Annonces','Listings list'=>'Liste des annonces','Listings list navigation'=>'Navigation de la liste des annonces','Locality'=>'Lieu','Location'=>'Lieu','Location Archives'=>'Archives de lieux','Location Attributes'=>'Attributs de lieu','Location published privately.'=>'Lieu publié de manière privée.','Location published.'=>'Lieu publié.','Location restored to revision from %s'=>'Le lieu a été restauré à la révision de %s','Location reverted to draft.'=>'Le lieu a été remis en brouillon.','Location saved.'=>'Lieu enregistré.','Location scheduled.'=>'Lieu prévu.','Location submitted.'=>'Lieu soumis.','Location type'=>'Type de lieu','Location updated.'=>'Lieu mis à jour.','Locations'=>'Lieux','Locations list'=>'Liste des lieux','Locations list navigation'=>'Navigation de la liste des lieux','M j, Y @ H:i'=>'Je suis désolé, je ne comprends pas la signification de "M j, Y @ H:i". Pouvez-vous fournir plus de contexte ou une explication supplémentaire?','Media type'=>'Type de média','Media(s)'=>'Média(s)','Membership'=>'Adhésion','Membership Archives'=>'Archives de adhésions','Membership Attributes'=>'Attributs de l\'adhésion','Membership published privately.'=>'Adhésion publiée en privé.','Membership published.'=>'Adhésion publiée.','Membership restored to revision from %s'=>'Adhésion restaurée à la révision de %s','Membership reverted to draft.'=>'L\'adhésion a été ramenée à l\'état de brouillon.','Membership saved.'=>'Adhésion enregistrée.','Membership scheduled.'=>'Adhésion planifiée.','Membership submitted.'=>'Adhésion soumise.','Membership type'=>'Type d\'adhésion','Membership updated.'=>'Adhésion mise à jour.','Membership(s)'=>'Adhésion(s)','Memberships'=>'Adhésions','Memberships list'=>'Liste des adhésions','Memberships list navigation'=>'Liste de navigation des adhésions','Message'=>'Message','Minimum price'=>'Prix à partir de','Moral entity'=>'Entité morale','Most used'=>'Le plus utilisé','Multiple day(s)'=>'Journée(s) multiple(s)','Muted background'=>'Arrière-plan atténué','Name'=>'Nom','New Contributor'=>'Nouveau contributeur','New discipline'=>'Nouvelle discipline','New Event'=>'Nouvel événement','New Listing'=>'Nouvelle annonce','New Location'=>'Nouveau lieu','New Membership'=>'Nouvelle adhésion','New Project'=>'Nouveau projet','New project-category'=>'Nouvelle catégorie de projet','New Representation'=>'Nouvelle représentation','New Resource'=>'Nouvelle ressource','New resource-category'=>'Nouvelle catégorie de ressources','New Template'=>'Nouveau modèle','No Contributors found'=>'Aucun contributeur trouvé','No Contributors found in trash'=>'Aucun contributeur trouvé dans la corbeille','No disciplines'=>'Aucune discipline','No disciplines found.'=>'Aucune discipline trouvée.','No Events found'=>'Aucun événement trouvé','No Events found in trash'=>'Aucun événement trouvé dans la corbeille','No Listings found'=>'Aucune annonce trouvée','No Listings found in trash'=>'Aucune annonce dans la corbeille','No Locations found'=>'Aucun lieu trouvé','No Locations found in trash'=>'Aucun lieu trouvé dans la corbeille','No Memberships found'=>'Aucune adhésion trouvée','No Memberships found in trash'=>'Aucune adhésion trouvée dans la corbeille','No project-categories'=>'Aucune catégorie de projet','No project-categories found.'=>'Aucune catégorie de projet trouvée.','No Projects found'=>'Aucun projet trouvé','No Projects found in trash'=>'Aucun projet trouvé dans la corbeille','No Representations found'=>'Aucune représentation trouvée','No Representations found in trash'=>'Aucune représentation trouvée dans la corbeille','No resource-categories'=>'Aucune catégorie de ressources','No resource-categories found.'=>'Aucune catégorie de ressources trouvée.','No Resources found'=>'Aucune ressource trouvée','No Resources found in trash'=>'Aucune ressource trouvée dans la corbeille','No Templates found'=>'Aucun modèle trouvé','No Templates found in trash'=>'Aucun modèle trouvé dans la corbeille','Notification(s)'=>'Notification(s)','Offer'=>'Offre','Offer status'=>'État de l\'offre','Online'=>'En ligne','Options page – CCAT'=>'Page d\'options – CCAT','Organisation'=>'Organisation','Parent Contributor:'=>'Parent Contributor: Contributeur parent','Parent discipline'=>'Discipline parentale','Parent discipline:'=>'Discipline parentale','Parent Event:'=>'Événement pour les parents :','Parent Listing:'=>'Annonce parent:','Parent Location:'=>'Lieu parent :','Parent Membership:'=>'Adhésion parent :','Parent project-category'=>'Catégorie de projet parent','Parent project-category:'=>'Catégorie de projet parent :','Parent Project:'=>'Projet parent :','Parent Representation:'=>'Représentation des parents :','Parent resource-category'=>'Catégorie de ressources pour les parents','Parent resource-category:'=>'Catégorie de ressources parent :','Parent Resource:'=>'Ressource pour les parents :','Parent Template:'=>'Modèle parent :','Period'=>'Période','Person name'=>'Nom complet','Phone'=>'Téléphone','Physical person'=>'Personne physique','Planned'=>'Planifié','Popular disciplines'=>'Les disciplines populaires','Popular project-categories'=>'Catégories de projets populaires','Popular resource-categories'=>'Catégories de ressources populaires','Possible configuration(s)'=>'Configuration(s) possible(s)','Post – Article'=>'Contenu – Article','Post – Contributor'=>'Contenu – Contributeur','Post – Event'=>'Contenu – Événement','Post – Location'=>'Contenu – Lieu','Post – Membership'=>'Contenu - Adhésion','Post – Page'=>'Contenu – Page','Post – Project'=>'Contenu – Projet','Post – Representation'=>'Contenu – Représentation','Post – Resource'=>'Contenu – Ressource','Post – Template'=>'Contenu – Modèle','Postponed'=>'Reporté','Preview Contributor'=>'Prévisualiser le contributeur','Preview Event'=>'Prévisualiser l\'événement','Preview Listing'=>'Prévisualiser l\'annonce','Preview Location'=>'Prévisualiser le lieu','Preview Membership'=>'Prévisualiser l\'adhésion','Preview Project'=>'Prévisualiser le projet','Preview Representation'=>'Prévisualiser la représentation','Preview Resource'=>'Prévisualiser la ressource','Preview Template'=>'Prévisualiser le modèle','Pricing'=>'Tarification','Profile(s)'=>'Profil(s)','Project'=>'Projet','Project Archives'=>'Archives du projet','Project Attributes'=>'Attributs du projet','Project categorie(s)'=>'Catégorie(s) de projet','Project categories'=>'Catégories de projet','Project categories deleted.'=>'Catégories de projet supprimées.','Project categories list'=>'Liste des catégories de projets','Project categories list navigation'=>'Liste de catégories de projets pour la navigation','Project category'=>'Catégorie de projet','Project category added.'=>'Catégorie de projet ajoutée.','Project category deleted.'=>'Catégorie de projet supprimée.','Project category not added.'=>'Catégorie de projet non ajoutée.','Project category not updated.'=>'Catégorie de projet non mise à jour.','Project category updated.'=>'Catégorie de projet mise à jour.','Project published privately.'=>'Projet publié en privé.','Project published.'=>'Projet publié.','Project restored to revision from %s'=>'Projet restauré à la révision de %s','Project reverted to draft.'=>'Le projet a été ramené à l\'étape de brouillon.','Project saved.'=>'Projet enregistré.','Project scheduled.'=>'Projet planifié.','Project submitted.'=>'Projet soumis.','Project updated.'=>'Projet mis à jour.','Projects'=>'Projets','Projects list'=>'Liste de projets','Projects list navigation'=>'Navigation de la liste des projets','Range'=>'Plage de dates','Rechercher une adresse...'=>'Rechercher une adresse...','Registration'=>'Inscription','Remove featured image'=>'Retirer l\'image en vedette','Representation'=>'Représentation','Representation Archives'=>'Archives de représentation','Representation Attributes'=>'Attributs de représentation','Representation published privately.'=>'Représentation publiée en privé.','Representation published.'=>'Représentation publiée.','Representation restored to revision from %s'=>'Représentation restaurée à la révision de %s','Representation reverted to draft.'=>'La représentation a été ramenée à l\'état de brouillon.','Representation saved.'=>'Représentation enregistrée.','Representation scheduled.'=>'Représentation prévue.','Representation submitted.'=>'Représentation soumise.','Representation updated.'=>'Représentation mise à jour.','Representations'=>'Représentations','Representations list'=>'Liste des représentations','Representations list navigation'=>'Liste de navigation des représentations','Resource'=>'Ressource','Resource Archives'=>'Archives de ressources','Resource Attributes'=>'Attributs des ressources','Resource categories'=>'Catégories de ressources','Resource categories deleted.'=>'Catégories de ressources supprimées.','Resource categories list'=>'Liste des catégories de ressources','Resource categories list navigation'=>'Liste de navigation des catégories de ressources','Resource category'=>'Catégorie de ressources','Resource category added.'=>'Catégorie de ressources ajoutée.','Resource category deleted.'=>'Catégorie de ressources supprimée.','Resource category not added.'=>'Catégorie de ressources non ajoutée.','Resource category not updated.'=>'Catégorie de ressources non mise à jour.','Resource category updated.'=>'Catégorie de ressources mise à jour.','Resource published privately.'=>'Ressource publiée de façon privée.','Resource published.'=>'Ressource publiée.','Resource restored to revision from %s'=>'Ressource restaurée à la révision de %s','Resource reverted to draft.'=>'La ressource a été ramenée à l\'état de brouillon.','Resource saved.'=>'Ressource sauvegardée.','Resource scheduled.'=>'Ressource planifiée.','Resource submitted.'=>'Ressource soumise.','Resource updated.'=>'Ressource mise à jour.','Resources'=>'Ressources','Resources list'=>'Liste de ressources','Resources list navigation'=>'Liste de navigation des ressources','Salle de spectacle'=>'Salle de spectacle','Same as contact'=>'Même que contact','Schedule type'=>'Type d\'horaire','Search Contributors'=>'Recherche de contributeurs','Search disciplines'=>'Recherche de disciplines','Search Events'=>'Recherche d\'événements','Search for address...'=>'Rechercher une adresse...','Search Listings'=>'Rechercher des annonces','Search Locations'=>'Recherche de lieux','Search Memberships'=>'Recherche d\'adhésions','Search project-categories'=>'Recherche de catégories de projet','Search Projects'=>'Recherche de projets','Search Representations'=>'Représentations de recherche','Search resource-categories'=>'Recherche de catégories de ressources','Search Resources'=>'Recherche de ressources','Search Templates'=>'Modèles de recherche','Section – Container'=>'Section – Conteneur','Section – Theme'=>'Section – Thème','Section(s)'=>'Section(s)','Select'=>'Sélectionner','Sent'=>'Envoyé','Sent status'=>'État de l\'envoi','Separate disciplines with commas'=>'Séparez les disciplines avec des virgules.','Separate project-categories with commas'=>'Séparez les catégories de projets avec des virgules.','Separate resource-categories with commas'=>'Séparez les catégories de ressources avec des virgules.','Set featured image'=>'Définir l\'image en vedette','Social'=>'Social','Spectacle'=>'Spectacle','Start date'=>'Date de début','Start date / time'=>'Date et heure de début','Start month'=>'Mois de début','Subject'=>'Sujet','Target audience'=>'Public cible','Template'=>'Modèle','Template Archives'=>'Archives de modèle','Template Attributes'=>'Attributs de modèle','Template published privately.'=>'Modèle publié en privé.','Template published.'=>'Modèle publié.','Template restored to revision from %s'=>'Modèle restauré à la révision du %s','Template reverted to draft.'=>'Le modèle a été rétabli en brouillon.','Template saved.'=>'Modèle enregistré.','Template scheduled.'=>'Modèle programmé.','Template submitted.'=>'Modèle soumis.','Template updated.'=>'Modèle mis à jour.','Templates'=>'Modèles','Templates list'=>'Liste de modèles','Templates list navigation'=>'Liste de modèles de navigation','Term – Discipline'=>'Terme - Discipline','Text block'=>'Bloc de texte','This event is asynchronous'=>'Cet événement est asynchrone','This event is free'=>'Cet événement est gratuit','This event is wordless'=>'Cet événement est sans paroles','Title'=>'Titre','Tout public'=>'Tout public','Universal access'=>'Accès universel','Upcoming'=>'À venir','Update discipline'=>'Mettre à jour la discipline','Update project-category'=>'Mettre à jour la catégorie du projet','Update resource-category'=>'Mettre à jour la catégorie de ressources','Uploaded to this Contributor'=>'Téléchargé par ce contributeur','Uploaded to this Event'=>'Téléchargé à cet événement','Uploaded to this Listing'=>'Téléversé vers cette annonce','Uploaded to this Location'=>'Téléchargé à ce lieu','Uploaded to this Membership'=>'Téléchargé sur cette adhésion','Uploaded to this Project'=>'Téléchargé dans ce projet','Uploaded to this Representation'=>'Téléchargé sur cette représentation','Uploaded to this Resource'=>'Téléchargé dans cette ressource','Uploaded to this Template'=>'Téléchargé dans ce modèle','URI'=>'URI','URL'=>'URL','Use as featured image'=>'Utiliser comme image en vedette','User Profile'=>'Profil utilisateur','View Contributor'=>'Voir le contributeur','View Contributors'=>'Voir les contributeurs','View discipline'=>'Voir la discipline','View Event'=>'Voir l\'événement','View Events'=>'Voir les événements','View Listing'=>'Voir l\'annonce','View Listings'=>'Voir les annonces','View Location'=>'Voir le lieu','View Locations'=>'Voir les lieux','View Membership'=>'Afficher l\'adhésion','View Memberships'=>'Voir les adhésions','View Project'=>'Voir le projet','View project-category'=>'Voir la catégorie de projet','View Projects'=>'Voir les projets','View Representation'=>'Voir la représentation','View Representations'=>'Voir les représentations','View Resource'=>'Voir la ressource','View resource-category'=>'Voir la catégorie de ressources','View Resources'=>'Voir les ressources','View Template'=>'Voir le modèle','View Templates'=>'Voir les modèles','Virtual location'=>'Lieu virtuel','Websimple '=>'Websimple ','Where'=>'Lieu','Wordless'=>'Sans paroles','Y-m'=>'Y-m','Y-m-d'=>'Y-m-d','Y-m-d H:i:s'=>'Y-m-d H:i:s','YouTube URL'=>'URL YouTube','YouTube video'=>'Vidéo YouTube']];
diff --git a/wp-content/themes/ccat/languages/fr_CA.mo b/wp-content/themes/ccat/languages/fr_CA.mo
index 0c44c7a..ff75e9a 100644
Binary files a/wp-content/themes/ccat/languages/fr_CA.mo and b/wp-content/themes/ccat/languages/fr_CA.mo differ
diff --git a/wp-content/themes/ccat/languages/fr_CA.po b/wp-content/themes/ccat/languages/fr_CA.po
index 437413e..7d6dcf2 100644
--- a/wp-content/themes/ccat/languages/fr_CA.po
+++ b/wp-content/themes/ccat/languages/fr_CA.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: CCAT\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-05-26 14:47+0000\n"
-"PO-Revision-Date: 2025-09-22 18:20+0000\n"
+"PO-Revision-Date: 2025-09-24 19:52+0000\n"
"Last-Translator: \n"
"Language-Team: Français du Canada\n"
"Language: fr_CA\n"
@@ -76,9 +76,10 @@ msgid "Add File"
msgstr "Ajouter un fichier"
#: includes/cpt/representation.php:13 includes/cpt/contributor.php:13
-#: includes/cpt/membership.php:13 includes/cpt/project.php:13
-#: includes/cpt/location.php:13 includes/cpt/template.php:13
-#: includes/cpt/event.php:13 includes/cpt/resource.php:13
+#: includes/cpt/listing.php:13 includes/cpt/membership.php:13
+#: includes/cpt/project.php:13 includes/cpt/location.php:13
+#: includes/cpt/template.php:13 includes/cpt/event.php:13
+#: includes/cpt/resource.php:13
msgid "Add New"
msgstr "Ajouter"
@@ -90,6 +91,10 @@ msgstr "Ajouter un contributeur"
msgid "Add New Event"
msgstr "Ajouter un événement"
+#: includes/cpt/listing.php:14
+msgid "Add New Listing"
+msgstr "Ajouter une annonce"
+
#: includes/cpt/location.php:14
msgid "Add New Location"
msgstr "Ajouter un lieu"
@@ -150,6 +155,10 @@ msgstr "Toutes les disciplines"
msgid "All Events"
msgstr "Tous les événements"
+#: includes/cpt/listing.php:23
+msgid "All Listings"
+msgstr "Toutes les annonces"
+
#: includes/cpt/location.php:23
msgid "All Locations"
msgstr "Tous les lieux"
@@ -218,10 +227,6 @@ msgstr "Constructeur"
msgid "Cancelled"
msgstr "Annulé"
-#: acf-json/acf-translations.php:26
-msgid "Categorie(s)"
-msgstr "Catégorie(s)"
-
#. Name of the theme
msgid "CCAT"
msgstr "CCAT"
@@ -238,31 +243,31 @@ msgstr "Choisir parmi les catégories de projets les plus utilisées"
msgid "Choose from the most used resource-categories"
msgstr "Choisir parmi les catégories de ressources les plus utilisées"
-#: acf-json/acf-translations.php:27
+#: acf-json/acf-translations.php:26
msgid "Collectif artistique"
msgstr "Collectif artistique"
-#: acf-json/acf-translations.php:28
+#: acf-json/acf-translations.php:27
msgid "Collective profile"
msgstr ""
-#: acf-json/acf-translations.php:29
+#: acf-json/acf-translations.php:28
msgid "Complete"
msgstr "Complet"
-#: acf-json/acf-translations.php:30
+#: acf-json/acf-translations.php:29
msgid "Compositeur"
msgstr "Compositeur"
-#: acf-json/acf-translations.php:31
+#: acf-json/acf-translations.php:30
msgid "Configuration"
msgstr "Configuration"
-#: acf-json/acf-translations.php:32
+#: acf-json/acf-translations.php:31
msgid "Configuration name"
msgstr "Nom de la configuration"
-#: acf-json/acf-translations.php:33
+#: acf-json/acf-translations.php:32
msgid "Confirmed"
msgstr "Confirmé"
@@ -270,27 +275,27 @@ msgstr "Confirmé"
msgid "Conseil de la culture de l'Abitibi-Témiscamingue"
msgstr "Conseil de la culture de l'Abitibi-Témiscamingue"
-#: acf-json/acf-translations.php:34
+#: acf-json/acf-translations.php:33
msgid "Contact"
msgstr "Contact"
-#: acf-json/acf-translations.php:35
+#: acf-json/acf-translations.php:34
msgid "Content"
msgstr "Contenu"
-#: acf-json/acf-translations.php:36
+#: acf-json/acf-translations.php:35
msgid "Content width"
msgstr "Largeur du contenu"
-#: acf-json/acf-translations.php:37
+#: acf-json/acf-translations.php:36
msgid "Contribution type(s)"
msgstr "Type(s) de contribution"
-#: acf-json/acf-translations.php:38
+#: acf-json/acf-translations.php:37
msgid "Contribution(s)"
msgstr "Contribution(s)"
-#: acf-json/acf-translations.php:39 includes/cpt/contributor.php:12
+#: acf-json/acf-translations.php:38 includes/cpt/contributor.php:12
msgid "Contributor"
msgstr "Contributeur"
@@ -331,7 +336,7 @@ msgstr "Contributeur prévu."
msgid "Contributor submitted."
msgstr "Contributeur soumis."
-#: acf-json/acf-translations.php:40
+#: acf-json/acf-translations.php:39
msgid "Contributor type"
msgstr "Type de configuration"
@@ -352,45 +357,47 @@ msgstr "Liste des contributeurs"
msgid "Contributors list navigation"
msgstr "Liste des contributeurs et navigation"
-#: acf-json/acf-translations.php:41
+#: acf-json/acf-translations.php:40
msgid "Credits"
msgstr "Crédits"
#: includes/cpt/representation.php:74 includes/cpt/contributor.php:74
-#: includes/cpt/membership.php:78 includes/cpt/project.php:77
-#: includes/cpt/location.php:78 includes/cpt/template.php:74
-#: includes/cpt/event.php:77 includes/cpt/resource.php:77
+#: includes/cpt/listing.php:70 includes/cpt/membership.php:78
+#: includes/cpt/project.php:77 includes/cpt/location.php:78
+#: includes/cpt/template.php:74 includes/cpt/event.php:77
+#: includes/cpt/resource.php:77
msgid "Custom field deleted."
msgstr "Champ personnalisé supprimé."
#: includes/cpt/representation.php:73 includes/cpt/contributor.php:73
-#: includes/cpt/membership.php:77 includes/cpt/project.php:76
-#: includes/cpt/location.php:77 includes/cpt/template.php:73
-#: includes/cpt/event.php:76 includes/cpt/resource.php:76
+#: includes/cpt/listing.php:69 includes/cpt/membership.php:77
+#: includes/cpt/project.php:76 includes/cpt/location.php:77
+#: includes/cpt/template.php:73 includes/cpt/event.php:76
+#: includes/cpt/resource.php:76
msgid "Custom field updated."
msgstr "Champ personnalisé mis à jour."
-#: acf-json/acf-translations.php:42
+#: acf-json/acf-translations.php:41
msgid "Date / time"
msgstr "Date / heure"
-#: acf-json/acf-translations.php:43
+#: acf-json/acf-translations.php:42
msgid "Date range"
msgstr "Plage de dates"
-#: acf-json/acf-translations.php:44
+#: acf-json/acf-translations.php:43
msgid "Day(s)"
msgstr "Journée(s)"
-#: acf-json/acf-translations.php:45
+#: acf-json/acf-translations.php:44
msgid "Default background"
msgstr "Arrière-plan par défaut"
-#: acf-json/acf-translations.php:46
+#: acf-json/acf-translations.php:45
msgid "Default container"
msgstr "Conteneur par défaut"
-#: acf-json/acf-translations.php:47
+#: acf-json/acf-translations.php:46
msgid "Description"
msgstr "Description"
@@ -418,7 +425,7 @@ msgstr "Discipline non mis à jour."
msgid "Discipline updated."
msgstr "Discipline mise à jour."
-#: acf-json/acf-translations.php:48
+#: acf-json/acf-translations.php:47
msgid "Discipline(s)"
msgstr "Discipline(s)"
@@ -438,11 +445,11 @@ msgstr "Liste des disciplines"
msgid "Disciplines list navigation"
msgstr "Liste de navigation des disciplines"
-#: acf-json/acf-translations.php:49
+#: acf-json/acf-translations.php:48
msgid "Document type"
msgstr "Type de document"
-#: acf-json/acf-translations.php:50
+#: acf-json/acf-translations.php:49
msgid "Document(s)"
msgstr "Document(s)"
@@ -458,6 +465,10 @@ msgstr "Modifier la discipline"
msgid "Edit Event"
msgstr "Modifier l'événement"
+#: includes/cpt/listing.php:16
+msgid "Edit Listing"
+msgstr "Modifier l'annonce"
+
#: includes/cpt/location.php:16
msgid "Edit Location"
msgstr "Modifier le lieu"
@@ -490,39 +501,39 @@ msgstr "Modifier la catégorie de ressources"
msgid "Edit Template"
msgstr "Modifier le modèle"
-#: acf-json/acf-translations.php:51
+#: acf-json/acf-translations.php:50
msgid "Elevated background"
msgstr "Arrière-plan élevé"
-#: acf-json/acf-translations.php:52
+#: acf-json/acf-translations.php:51
msgid "Email"
msgstr "Courriel"
-#: acf-json/acf-translations.php:53
+#: acf-json/acf-translations.php:52
msgid "Email preferences"
msgstr "Préférences courriel"
-#: acf-json/acf-translations.php:54
+#: acf-json/acf-translations.php:53
msgid "End date"
msgstr "Date de fin"
-#: acf-json/acf-translations.php:55
+#: acf-json/acf-translations.php:54
msgid "End month"
msgstr "Mois de fin"
-#: acf-json/acf-translations.php:56
+#: acf-json/acf-translations.php:55
msgid "End time"
msgstr "Heure de fin"
-#: acf-json/acf-translations.php:57
+#: acf-json/acf-translations.php:56
msgid "Enfants"
msgstr "Enfants"
-#: acf-json/acf-translations.php:58
+#: acf-json/acf-translations.php:57
msgid "Entity"
msgstr "Entité"
-#: acf-json/acf-translations.php:59 includes/cpt/event.php:12
+#: acf-json/acf-translations.php:58 includes/cpt/event.php:12
msgid "Event"
msgstr "Événement"
@@ -563,14 +574,10 @@ msgstr "Événement prévu."
msgid "Event submitted."
msgstr "Événement soumis."
-#: acf-json/acf-translations.php:60
+#: acf-json/acf-translations.php:59
msgid "Event type"
msgstr "Type d'événement"
-#: acf-json/acf-translations.php:61
-msgid "Event type(s)"
-msgstr "Type(s) d'événement"
-
#: includes/cpt/event.php:39 includes/cpt/event.php:75
#: includes/cpt/event.php:78
msgid "Event updated."
@@ -588,30 +595,31 @@ msgstr "Liste des événements"
msgid "Events list navigation"
msgstr "Navigation de la liste des événements"
-#: acf-json/acf-translations.php:62
+#: acf-json/acf-translations.php:60
msgid "Exposition"
msgstr "Exposition"
-#: acf-json/acf-translations.php:63
+#: acf-json/acf-translations.php:61
msgid "Failed"
msgstr "Échec"
-#: acf-json/acf-translations.php:64
+#: acf-json/acf-translations.php:62
msgid "Familial"
msgstr "Familial"
#: includes/cpt/representation.php:28 includes/cpt/contributor.php:28
-#: includes/cpt/membership.php:28 includes/cpt/project.php:28
-#: includes/cpt/location.php:28 includes/cpt/template.php:28
-#: includes/cpt/event.php:28 includes/cpt/resource.php:28
+#: includes/cpt/listing.php:28 includes/cpt/membership.php:28
+#: includes/cpt/project.php:28 includes/cpt/location.php:28
+#: includes/cpt/template.php:28 includes/cpt/event.php:28
+#: includes/cpt/resource.php:28
msgid "Featured Image"
msgstr "Image en vedette"
-#: acf-json/acf-translations.php:65
+#: acf-json/acf-translations.php:63
msgid "Festival"
msgstr "Festival"
-#: acf-json/acf-translations.php:66
+#: acf-json/acf-translations.php:64
msgid "File"
msgstr "Fichier"
@@ -623,6 +631,10 @@ msgstr "Filtrer la liste des contributeurs"
msgid "Filter Events list"
msgstr "Filtrer la liste des événements"
+#: includes/cpt/listing.php:32
+msgid "Filter Listings list"
+msgstr "Filtrer la liste des annonces"
+
#: includes/cpt/location.php:32
msgid "Filter Locations list"
msgstr "Filtrer la liste des lieux"
@@ -647,27 +659,27 @@ msgstr "Filtrer la liste des ressources"
msgid "Filter Templates list"
msgstr "Liste des modèles de filtres"
-#: acf-json/acf-translations.php:67
+#: acf-json/acf-translations.php:65
msgid "Fluid container"
msgstr "Conteneur fluide"
-#: acf-json/acf-translations.php:68
+#: acf-json/acf-translations.php:66
msgid "Form"
msgstr "Formulaire"
-#: acf-json/acf-translations.php:69
+#: acf-json/acf-translations.php:67
msgid "Free"
msgstr "Gratuit"
-#: acf-json/acf-translations.php:70
+#: acf-json/acf-translations.php:68
msgid "Full-width container"
msgstr "Conteneur pleine largeur"
-#: acf-json/acf-translations.php:71
+#: acf-json/acf-translations.php:69
msgid "Gallery"
msgstr "Galerie"
-#: acf-json/acf-translations.php:72
+#: acf-json/acf-translations.php:70
msgid "H:i"
msgstr "H:i"
@@ -675,31 +687,31 @@ msgstr "H:i"
msgid "https://websimple.com/"
msgstr "https://websimple.com/"
-#: acf-json/acf-translations.php:73
+#: acf-json/acf-translations.php:71
msgid "Hybrid"
msgstr "Hybride"
-#: acf-json/acf-translations.php:74
+#: acf-json/acf-translations.php:72
msgid "Identifier(s)"
msgstr "Identifiant(s)"
-#: acf-json/acf-translations.php:75
+#: acf-json/acf-translations.php:73
msgid "Image"
msgstr "Image"
-#: acf-json/acf-translations.php:76
+#: acf-json/acf-translations.php:74
msgid "In-person"
msgstr "En personne"
-#: acf-json/acf-translations.php:77
+#: acf-json/acf-translations.php:75
msgid "Individu"
msgstr "Individu"
-#: acf-json/acf-translations.php:78
+#: acf-json/acf-translations.php:76
msgid "Individual day(s)"
msgstr "Journée(s) individuelle(s)"
-#: acf-json/acf-translations.php:79
+#: acf-json/acf-translations.php:77
msgid "Individual profile"
msgstr ""
@@ -711,6 +723,10 @@ msgstr "Insérer dans le contributeur"
msgid "Insert into Event"
msgstr "Insérer dans l'événement"
+#: includes/cpt/listing.php:26
+msgid "Insert into Listing"
+msgstr "Insérer dans l'annonce"
+
#: includes/cpt/location.php:26
msgid "Insert into Location"
msgstr "Insérer dans le lieu"
@@ -735,31 +751,89 @@ msgstr "Insérer dans la ressource"
msgid "Insert into Template"
msgstr "Insérer dans le modèle"
-#: acf-json/acf-translations.php:80
+#: acf-json/acf-translations.php:78
msgid "Institution"
msgstr "Institution"
-#: acf-json/acf-translations.php:81
+#: acf-json/acf-translations.php:79
msgid "Institution profile"
msgstr ""
-#: acf-json/acf-translations.php:82
+#: acf-json/acf-translations.php:80
msgid "Interprète"
msgstr "Interprète"
-#: acf-json/acf-translations.php:83
+#: acf-json/acf-translations.php:81
msgid "Is asynchronous"
msgstr "Déroulement asynchrone"
-#: acf-json/acf-translations.php:84
+#: acf-json/acf-translations.php:82
msgid "Language(s)"
msgstr "Langue(s)"
-#: acf-json/acf-translations.php:85
+#: includes/cpt/listing.php:12
+msgid "Listing"
+msgstr "Annonce"
+
+#: includes/cpt/listing.php:24
+msgid "Listing Archives"
+msgstr "Archive des annonces"
+
+#: includes/cpt/listing.php:25
+msgid "Listing Attributes"
+msgstr "Attributs de l'annonce"
+
+#: includes/cpt/listing.php:36
+msgid "Listing published privately."
+msgstr "Annonce publiée en privé."
+
+#: includes/cpt/listing.php:35 includes/cpt/listing.php:73
+msgid "Listing published."
+msgstr "Annoce publiée."
+
+#: includes/cpt/listing.php:72
+#, php-format
+msgid "Listing restored to revision from %s"
+msgstr "Annonce restaurée à la révision de %s"
+
+#: includes/cpt/listing.php:37
+msgid "Listing reverted to draft."
+msgstr "L'annonce a été ramenée à l'état de brouillon."
+
+#: includes/cpt/listing.php:74
+msgid "Listing saved."
+msgstr "Annonce sauvegardée."
+
+#: includes/cpt/listing.php:38
+msgid "Listing scheduled."
+msgstr "Annonce prévue."
+
+#: includes/cpt/listing.php:75
+msgid "Listing submitted."
+msgstr "Annonce soumise pour publication."
+
+#: includes/cpt/listing.php:39 includes/cpt/listing.php:68
+#: includes/cpt/listing.php:71
+msgid "Listing updated."
+msgstr "Annonce mise à jour."
+
+#: includes/cpt/listing.php:10 includes/cpt/listing.php:11
+msgid "Listings"
+msgstr "Annonces"
+
+#: includes/cpt/listing.php:34
+msgid "Listings list"
+msgstr "Liste des annonces"
+
+#: includes/cpt/listing.php:33
+msgid "Listings list navigation"
+msgstr "Navigation de la liste des annonces"
+
+#: acf-json/acf-translations.php:83
msgid "Locality"
msgstr "Lieu"
-#: acf-json/acf-translations.php:86 includes/cpt/location.php:12
+#: acf-json/acf-translations.php:84 includes/cpt/location.php:12
msgid "Location"
msgstr "Lieu"
@@ -800,7 +874,7 @@ msgstr "Lieu prévu."
msgid "Location submitted."
msgstr "Lieu soumis."
-#: acf-json/acf-translations.php:87
+#: acf-json/acf-translations.php:85
msgid "Location type"
msgstr "Type de lieu"
@@ -822,19 +896,20 @@ msgid "Locations list navigation"
msgstr "Navigation de la liste des lieux"
#: includes/cpt/representation.php:68 includes/cpt/contributor.php:68
-#: includes/cpt/membership.php:72 includes/cpt/project.php:71
-#: includes/cpt/location.php:72 includes/cpt/template.php:68
-#: includes/cpt/event.php:71 includes/cpt/resource.php:71
+#: includes/cpt/listing.php:64 includes/cpt/membership.php:72
+#: includes/cpt/project.php:71 includes/cpt/location.php:72
+#: includes/cpt/template.php:68 includes/cpt/event.php:71
+#: includes/cpt/resource.php:71
msgid "M j, Y @ H:i"
msgstr ""
"Je suis désolé, je ne comprends pas la signification de \"M j, Y @ H:i\". "
"Pouvez-vous fournir plus de contexte ou une explication supplémentaire?"
-#: acf-json/acf-translations.php:89
+#: acf-json/acf-translations.php:86
msgid "Media type"
msgstr "Type de média"
-#: acf-json/acf-translations.php:90
+#: acf-json/acf-translations.php:87
msgid "Media(s)"
msgstr "Média(s)"
@@ -879,7 +954,7 @@ msgstr "Adhésion planifiée."
msgid "Membership submitted."
msgstr "Adhésion soumise."
-#: acf-json/acf-translations.php:91
+#: acf-json/acf-translations.php:88
msgid "Membership type"
msgstr "Type d'adhésion"
@@ -888,7 +963,7 @@ msgstr "Type d'adhésion"
msgid "Membership updated."
msgstr "Adhésion mise à jour."
-#: acf-json/acf-translations.php:92
+#: acf-json/acf-translations.php:89
msgid "Membership(s)"
msgstr "Adhésion(s)"
@@ -904,15 +979,15 @@ msgstr "Liste des adhésions"
msgid "Memberships list navigation"
msgstr "Liste de navigation des adhésions"
-#: acf-json/acf-translations.php:93
+#: acf-json/acf-translations.php:90
msgid "Message"
msgstr "Message"
-#: acf-json/acf-translations.php:94
+#: acf-json/acf-translations.php:91
msgid "Minimum price"
msgstr "Prix à partir de"
-#: acf-json/acf-translations.php:95
+#: acf-json/acf-translations.php:92
msgid "Moral entity"
msgstr "Entité morale"
@@ -922,19 +997,15 @@ msgstr "Entité morale"
msgid "Most used"
msgstr "Le plus utilisé"
-#: acf-json/acf-translations.php:88
-msgid "MRC"
-msgstr "MRC"
-
-#: acf-json/acf-translations.php:96
+#: acf-json/acf-translations.php:93
msgid "Multiple day(s)"
msgstr "Journée(s) multiple(s)"
-#: acf-json/acf-translations.php:97
+#: acf-json/acf-translations.php:94
msgid "Muted background"
msgstr "Arrière-plan atténué"
-#: acf-json/acf-translations.php:98
+#: acf-json/acf-translations.php:95
msgid "Name"
msgstr "Nom"
@@ -950,6 +1021,10 @@ msgstr "Nouvelle discipline"
msgid "New Event"
msgstr "Nouvel événement"
+#: includes/cpt/listing.php:15
+msgid "New Listing"
+msgstr "Nouvelle annonce"
+
#: includes/cpt/location.php:15
msgid "New Location"
msgstr "Nouveau lieu"
@@ -1008,6 +1083,14 @@ msgstr "Aucun événement trouvé"
msgid "No Events found in trash"
msgstr "Aucun événement trouvé dans la corbeille"
+#: includes/cpt/listing.php:20
+msgid "No Listings found"
+msgstr "Aucune annonce trouvée"
+
+#: includes/cpt/listing.php:21
+msgid "No Listings found in trash"
+msgstr "Aucune annonce dans la corbeille"
+
#: includes/cpt/location.php:20
msgid "No Locations found"
msgstr "Aucun lieu trouvé"
@@ -1072,31 +1155,31 @@ msgstr "Aucun modèle trouvé"
msgid "No Templates found in trash"
msgstr "Aucun modèle trouvé dans la corbeille"
-#: acf-json/acf-translations.php:99
+#: acf-json/acf-translations.php:96
msgid "Notification(s)"
msgstr "Notification(s)"
-#: acf-json/acf-translations.php:100
+#: acf-json/acf-translations.php:97
msgid "Offer"
msgstr "Offre"
-#: acf-json/acf-translations.php:101
+#: acf-json/acf-translations.php:98
msgid "Offer status"
msgstr "État de l'offre"
-#: acf-json/acf-translations.php:102
+#: acf-json/acf-translations.php:99
msgid "Online"
msgstr "En ligne"
-#: acf-json/acf-translations.php:103
+#: acf-json/acf-translations.php:100
msgid "Options page – CCAT"
msgstr "Page d'options – CCAT"
-#: acf-json/acf-translations.php:104
+#: acf-json/acf-translations.php:101
msgid "Organisation"
msgstr "Organisation"
-#: acf-json/acf-translations.php:105
+#: acf-json/acf-translations.php:102
msgid "Organization profile"
msgstr ""
@@ -1116,6 +1199,10 @@ msgstr "Discipline parentale"
msgid "Parent Event:"
msgstr "Événement pour les parents :"
+#: includes/cpt/listing.php:22
+msgid "Parent Listing:"
+msgstr "Annonce parent:"
+
#: includes/cpt/location.php:22
msgid "Parent Location:"
msgstr "Lieu parent :"
@@ -1156,23 +1243,23 @@ msgstr "Ressource pour les parents :"
msgid "Parent Template:"
msgstr "Modèle parent :"
-#: acf-json/acf-translations.php:106
+#: acf-json/acf-translations.php:103
msgid "Period"
msgstr "Période"
-#: acf-json/acf-translations.php:107
+#: acf-json/acf-translations.php:104
msgid "Person name"
msgstr "Nom complet"
-#: acf-json/acf-translations.php:108
+#: acf-json/acf-translations.php:105
msgid "Phone"
msgstr "Téléphone"
-#: acf-json/acf-translations.php:109
+#: acf-json/acf-translations.php:106
msgid "Physical person"
msgstr "Personne physique"
-#: acf-json/acf-translations.php:110
+#: acf-json/acf-translations.php:107
msgid "Planned"
msgstr "Planifié"
@@ -1188,51 +1275,51 @@ msgstr "Catégories de projets populaires"
msgid "Popular resource-categories"
msgstr "Catégories de ressources populaires"
-#: acf-json/acf-translations.php:111
+#: acf-json/acf-translations.php:108
msgid "Possible configuration(s)"
msgstr "Configuration(s) possible(s)"
-#: acf-json/acf-translations.php:112
+#: acf-json/acf-translations.php:109
msgid "Post – Article"
msgstr "Contenu – Article"
-#: acf-json/acf-translations.php:113
+#: acf-json/acf-translations.php:110
msgid "Post – Contributor"
msgstr "Contenu – Contributeur"
-#: acf-json/acf-translations.php:114
+#: acf-json/acf-translations.php:111
msgid "Post – Event"
msgstr "Contenu – Événement"
-#: acf-json/acf-translations.php:115
+#: acf-json/acf-translations.php:112
msgid "Post – Location"
msgstr "Contenu – Lieu"
-#: acf-json/acf-translations.php:116
+#: acf-json/acf-translations.php:113
msgid "Post – Membership"
msgstr "Contenu - Adhésion"
-#: acf-json/acf-translations.php:117
+#: acf-json/acf-translations.php:114
msgid "Post – Page"
msgstr "Contenu – Page"
-#: acf-json/acf-translations.php:118
+#: acf-json/acf-translations.php:115
msgid "Post – Project"
msgstr "Contenu – Projet"
-#: acf-json/acf-translations.php:119
+#: acf-json/acf-translations.php:116
msgid "Post – Representation"
msgstr "Contenu – Représentation"
-#: acf-json/acf-translations.php:120
+#: acf-json/acf-translations.php:117
msgid "Post – Resource"
msgstr "Contenu – Ressource"
-#: acf-json/acf-translations.php:121
+#: acf-json/acf-translations.php:118
msgid "Post – Template"
msgstr "Contenu – Modèle"
-#: acf-json/acf-translations.php:122
+#: acf-json/acf-translations.php:119
msgid "Postponed"
msgstr "Reporté"
@@ -1244,6 +1331,10 @@ msgstr "Prévisualiser le contributeur"
msgid "Preview Event"
msgstr "Prévisualiser l'événement"
+#: includes/cpt/listing.php:62 includes/cpt/listing.php:63
+msgid "Preview Listing"
+msgstr "Prévisualiser l'annonce"
+
#: includes/cpt/location.php:70 includes/cpt/location.php:71
msgid "Preview Location"
msgstr "Prévisualiser le lieu"
@@ -1268,11 +1359,11 @@ msgstr "Prévisualiser la ressource"
msgid "Preview Template"
msgstr "Prévisualiser le modèle"
-#: acf-json/acf-translations.php:123
+#: acf-json/acf-translations.php:120
msgid "Pricing"
msgstr "Tarification"
-#: acf-json/acf-translations.php:124
+#: acf-json/acf-translations.php:121
msgid "Profile(s)"
msgstr "Profil(s)"
@@ -1288,7 +1379,7 @@ msgstr "Archives du projet"
msgid "Project Attributes"
msgstr "Attributs du projet"
-#: acf-json/acf-translations.php:125
+#: acf-json/acf-translations.php:122
msgid "Project categorie(s)"
msgstr "Catégorie(s) de projet"
@@ -1379,22 +1470,23 @@ msgstr "Liste de projets"
msgid "Projects list navigation"
msgstr "Navigation de la liste des projets"
-#: acf-json/acf-translations.php:126
+#: acf-json/acf-translations.php:123
msgid "Range"
msgstr "Plage de dates"
-#: acf-json/acf-translations.php:127
+#: acf-json/acf-translations.php:124
msgid "Rechercher une adresse..."
msgstr "Rechercher une adresse..."
-#: acf-json/acf-translations.php:128
+#: acf-json/acf-translations.php:125
msgid "Registration"
msgstr "Inscription"
#: includes/cpt/representation.php:30 includes/cpt/contributor.php:30
-#: includes/cpt/membership.php:30 includes/cpt/project.php:30
-#: includes/cpt/location.php:30 includes/cpt/template.php:30
-#: includes/cpt/event.php:30 includes/cpt/resource.php:30
+#: includes/cpt/listing.php:30 includes/cpt/membership.php:30
+#: includes/cpt/project.php:30 includes/cpt/location.php:30
+#: includes/cpt/template.php:30 includes/cpt/event.php:30
+#: includes/cpt/resource.php:30
msgid "Remove featured image"
msgstr "Retirer l'image en vedette"
@@ -1485,7 +1577,7 @@ msgstr "Liste des catégories de ressources"
msgid "Resource categories list navigation"
msgstr "Liste de navigation des catégories de ressources"
-#: acf-json/acf-translations.php:129
+#: acf-json/acf-translations.php:126
#: includes/taxonomies/resource-category.php:12
msgid "Resource category"
msgstr "Catégorie de ressources"
@@ -1556,15 +1648,15 @@ msgstr "Liste de ressources"
msgid "Resources list navigation"
msgstr "Liste de navigation des ressources"
-#: acf-json/acf-translations.php:130
+#: acf-json/acf-translations.php:127
msgid "Salle de spectacle"
msgstr "Salle de spectacle"
-#: acf-json/acf-translations.php:131
+#: acf-json/acf-translations.php:128
msgid "Same as contact"
msgstr "Même que contact"
-#: acf-json/acf-translations.php:132
+#: acf-json/acf-translations.php:129
msgid "Schedule type"
msgstr "Type d'horaire"
@@ -1580,10 +1672,14 @@ msgstr "Recherche de disciplines"
msgid "Search Events"
msgstr "Recherche d'événements"
-#: acf-json/acf-translations.php:133
+#: acf-json/acf-translations.php:130
msgid "Search for address..."
msgstr "Rechercher une adresse..."
+#: includes/cpt/listing.php:19
+msgid "Search Listings"
+msgstr "Rechercher des annonces"
+
#: includes/cpt/location.php:19
msgid "Search Locations"
msgstr "Recherche de lieux"
@@ -1616,27 +1712,27 @@ msgstr "Recherche de ressources"
msgid "Search Templates"
msgstr "Modèles de recherche"
-#: acf-json/acf-translations.php:134
+#: acf-json/acf-translations.php:131
msgid "Section – Container"
msgstr "Section – Conteneur"
-#: acf-json/acf-translations.php:135
+#: acf-json/acf-translations.php:132
msgid "Section – Theme"
msgstr "Section – Thème"
-#: acf-json/acf-translations.php:136
+#: acf-json/acf-translations.php:133
msgid "Section(s)"
msgstr "Section(s)"
-#: acf-json/acf-translations.php:137
+#: acf-json/acf-translations.php:134
msgid "Select"
msgstr "Sélectionner"
-#: acf-json/acf-translations.php:138
+#: acf-json/acf-translations.php:135
msgid "Sent"
msgstr "Envoyé"
-#: acf-json/acf-translations.php:139
+#: acf-json/acf-translations.php:136
msgid "Sent status"
msgstr "État de l'envoi"
@@ -1653,37 +1749,38 @@ msgid "Separate resource-categories with commas"
msgstr "Séparez les catégories de ressources avec des virgules."
#: includes/cpt/representation.php:29 includes/cpt/contributor.php:29
-#: includes/cpt/membership.php:29 includes/cpt/project.php:29
-#: includes/cpt/location.php:29 includes/cpt/template.php:29
-#: includes/cpt/event.php:29 includes/cpt/resource.php:29
+#: includes/cpt/listing.php:29 includes/cpt/membership.php:29
+#: includes/cpt/project.php:29 includes/cpt/location.php:29
+#: includes/cpt/template.php:29 includes/cpt/event.php:29
+#: includes/cpt/resource.php:29
msgid "Set featured image"
msgstr "Définir l'image en vedette"
-#: acf-json/acf-translations.php:140
+#: acf-json/acf-translations.php:137
msgid "Social"
msgstr "Social"
-#: acf-json/acf-translations.php:141
+#: acf-json/acf-translations.php:138
msgid "Spectacle"
msgstr "Spectacle"
-#: acf-json/acf-translations.php:142
+#: acf-json/acf-translations.php:139
msgid "Start date"
msgstr "Date de début"
-#: acf-json/acf-translations.php:143
+#: acf-json/acf-translations.php:140
msgid "Start date / time"
msgstr "Date et heure de début"
-#: acf-json/acf-translations.php:144
+#: acf-json/acf-translations.php:141
msgid "Start month"
msgstr "Mois de début"
-#: acf-json/acf-translations.php:145
+#: acf-json/acf-translations.php:142
msgid "Subject"
msgstr "Sujet"
-#: acf-json/acf-translations.php:146
+#: acf-json/acf-translations.php:143
msgid "Target audience"
msgstr "Public cible"
@@ -1745,39 +1842,39 @@ msgstr "Liste de modèles"
msgid "Templates list navigation"
msgstr "Liste de modèles de navigation"
-#: acf-json/acf-translations.php:147
+#: acf-json/acf-translations.php:144
msgid "Term – Discipline"
msgstr "Terme - Discipline"
-#: acf-json/acf-translations.php:148
+#: acf-json/acf-translations.php:145
msgid "Text block"
msgstr "Bloc de texte"
-#: acf-json/acf-translations.php:149
+#: acf-json/acf-translations.php:146
msgid "This event is asynchronous"
msgstr "Cet événement est asynchrone"
-#: acf-json/acf-translations.php:150
+#: acf-json/acf-translations.php:147
msgid "This event is free"
msgstr "Cet événement est gratuit"
-#: acf-json/acf-translations.php:151
+#: acf-json/acf-translations.php:148
msgid "This event is wordless"
msgstr "Cet événement est sans paroles"
-#: acf-json/acf-translations.php:152
+#: acf-json/acf-translations.php:149
msgid "Title"
msgstr "Titre"
-#: acf-json/acf-translations.php:153
+#: acf-json/acf-translations.php:150
msgid "Tout public"
msgstr "Tout public"
-#: acf-json/acf-translations.php:156
+#: acf-json/acf-translations.php:153
msgid "Universal access"
msgstr "Accès universel"
-#: acf-json/acf-translations.php:157
+#: acf-json/acf-translations.php:154
msgid "Upcoming"
msgstr "À venir"
@@ -1801,6 +1898,10 @@ msgstr "Téléchargé par ce contributeur"
msgid "Uploaded to this Event"
msgstr "Téléchargé à cet événement"
+#: includes/cpt/listing.php:27
+msgid "Uploaded to this Listing"
+msgstr "Téléversé vers cette annonce"
+
#: includes/cpt/location.php:27
msgid "Uploaded to this Location"
msgstr "Téléchargé à ce lieu"
@@ -1825,22 +1926,23 @@ msgstr "Téléchargé dans cette ressource"
msgid "Uploaded to this Template"
msgstr "Téléchargé dans ce modèle"
-#: acf-json/acf-translations.php:154
+#: acf-json/acf-translations.php:151
msgid "URI"
msgstr "URI"
-#: acf-json/acf-translations.php:155
+#: acf-json/acf-translations.php:152
msgid "URL"
msgstr "URL"
#: includes/cpt/representation.php:31 includes/cpt/contributor.php:31
-#: includes/cpt/membership.php:31 includes/cpt/project.php:31
-#: includes/cpt/location.php:31 includes/cpt/template.php:31
-#: includes/cpt/event.php:31 includes/cpt/resource.php:31
+#: includes/cpt/listing.php:31 includes/cpt/membership.php:31
+#: includes/cpt/project.php:31 includes/cpt/location.php:31
+#: includes/cpt/template.php:31 includes/cpt/event.php:31
+#: includes/cpt/resource.php:31
msgid "Use as featured image"
msgstr "Utiliser comme image en vedette"
-#: acf-json/acf-translations.php:158
+#: acf-json/acf-translations.php:155
msgid "User Profile"
msgstr "Profil utilisateur"
@@ -1864,6 +1966,14 @@ msgstr "Voir l'événement"
msgid "View Events"
msgstr "Voir les événements"
+#: includes/cpt/listing.php:17 includes/cpt/listing.php:65
+msgid "View Listing"
+msgstr "Voir l'annonce"
+
+#: includes/cpt/listing.php:18
+msgid "View Listings"
+msgstr "Voir les annonces"
+
#: includes/cpt/location.php:17 includes/cpt/location.php:73
msgid "View Location"
msgstr "Voir le lieu"
@@ -1920,7 +2030,7 @@ msgstr "Voir le modèle"
msgid "View Templates"
msgstr "Voir les modèles"
-#: acf-json/acf-translations.php:159
+#: acf-json/acf-translations.php:156
msgid "Virtual location"
msgstr "Lieu virtuel"
@@ -1928,30 +2038,30 @@ msgstr "Lieu virtuel"
msgid "Websimple "
msgstr "Websimple "
-#: acf-json/acf-translations.php:160
+#: acf-json/acf-translations.php:157
msgid "Where"
msgstr "Lieu"
-#: acf-json/acf-translations.php:161
+#: acf-json/acf-translations.php:158
msgid "Wordless"
msgstr "Sans paroles"
-#: acf-json/acf-translations.php:162
+#: acf-json/acf-translations.php:159
msgid "Y-m"
msgstr "Y-m"
-#: acf-json/acf-translations.php:163
+#: acf-json/acf-translations.php:160
msgid "Y-m-d"
msgstr "Y-m-d"
-#: acf-json/acf-translations.php:164
+#: acf-json/acf-translations.php:161
msgid "Y-m-d H:i:s"
msgstr "Y-m-d H:i:s"
-#: acf-json/acf-translations.php:165
+#: acf-json/acf-translations.php:162
msgid "YouTube URL"
msgstr "URL YouTube"
-#: acf-json/acf-translations.php:166
+#: acf-json/acf-translations.php:163
msgid "YouTube video"
msgstr "Vidéo YouTube"