From add3869f43b676bf97a87a9d019f0bd627a6b71e Mon Sep 17 00:00:00 2001 From: Pascal Martineau Date: Wed, 24 Sep 2025 16:11:43 -0400 Subject: [PATCH] feat: listing_category --- wp-content/themes/ccat/functions.php | 1 + .../includes/taxonomies/listing-category.php | 68 ++ wp-content/themes/ccat/languages/ccat.pot | 645 ++++++++++------- .../themes/ccat/languages/fr_CA.l10n.php | 4 +- wp-content/themes/ccat/languages/fr_CA.mo | Bin 29472 -> 31639 bytes wp-content/themes/ccat/languages/fr_CA.po | 675 ++++++++++-------- 6 files changed, 850 insertions(+), 543 deletions(-) create mode 100644 wp-content/themes/ccat/includes/taxonomies/listing-category.php diff --git a/wp-content/themes/ccat/functions.php b/wp-content/themes/ccat/functions.php index d198fa0..351af56 100644 --- a/wp-content/themes/ccat/functions.php +++ b/wp-content/themes/ccat/functions.php @@ -18,6 +18,7 @@ require_once __DIR__ . '/includes/cpt/template.php'; // Custom Taxonomies require_once __DIR__ . '/includes/taxonomies/discipline.php'; +require_once __DIR__ . '/includes/taxonomies/listing-category.php'; require_once __DIR__ . '/includes/taxonomies/project-category.php'; require_once __DIR__ . '/includes/taxonomies/resource-category.php'; diff --git a/wp-content/themes/ccat/includes/taxonomies/listing-category.php b/wp-content/themes/ccat/includes/taxonomies/listing-category.php new file mode 100644 index 0000000..840fe8f --- /dev/null +++ b/wp-content/themes/ccat/includes/taxonomies/listing-category.php @@ -0,0 +1,68 @@ + array( + 'name' => __( "Listing categories", 'ccat' ), + 'singular_name' => __( "Listing category", 'ccat' ), + 'search_items' => __( "Search listing-categories", 'ccat' ), + 'popular_items' => __( "Popular listing-categories", 'ccat' ), + 'all_items' => __( "All listing-categories", 'ccat' ), + 'parent_item' => __( "Parent listing-category", 'ccat' ), + 'parent_item_colon' => __( "Parent listing-category:", 'ccat' ), + 'edit_item' => __( "Edit listing-category", 'ccat' ), + 'update_item' => __( "Update listing-category", 'ccat' ), + 'view_item' => __( "View listing-category", 'ccat' ), + 'add_new_item' => __( "New listing-category", 'ccat' ), + 'new_item_name' => __( "New listing-category", 'ccat' ), + 'separate_items_with_commas' => __( "Separate listing-categories with commas", 'ccat' ), + 'add_or_remove_items' => __( "Add or remove listing-categories", 'ccat' ), + 'choose_from_most_used' => __( "Choose from the most used listing-categories", 'ccat' ), + 'not_found' => __( "No listing-categories found.", 'ccat' ), + 'no_terms' => __( "No listing-categories", 'ccat' ), + 'menu_name' => __( "Listing categories", 'ccat' ), + 'items_list_navigation' => __( "Listing categories list navigation", 'ccat' ), + 'items_list' => __( "Listing categories list", 'ccat' ), + 'most_used' => __( "Most used", 'ccat' ), + 'back_to_items' => __( "← Back to listing-categories", 'ccat' ), + ), + 'public' => false, + 'hierarchical' => false, + 'show_ui' => true, + 'show_in_menu' => true, + 'show_in_nav_menus' => false, + 'show_admin_column' => true, + 'rewrite' => false, + 'query_var' => true, + 'show_in_rest' => true, + 'rest_base' => 'listing_category', + 'rest_controller_class' => 'WP_REST_Terms_Controller', + 'meta_box_cb' => false, + 'show_in_graphql' => true, + 'graphql_single_name' => "ListingCategory", + 'graphql_plural_name' => "ListingCategories", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'listing-category' term updated messages +add_filter( 'term_updated_messages', 'ccat_listing_category_term_updated_messages' ); +function ccat_listing_category_term_updated_messages( $messages ) { + $messages['listing_category'] = array( + 0 => '', + 1 => __( "Listing category added.", 'ccat' ), + 2 => __( "Listing category deleted.", 'ccat' ), + 3 => __( "Listing category updated.", 'ccat' ), + 4 => __( "Listing category not added.", 'ccat' ), + 5 => __( "Listing category not updated.", 'ccat' ), + 6 => __( "Listing categories deleted.", 'ccat' ), + ); + + return $messages; +} diff --git a/wp-content/themes/ccat/languages/ccat.pot b/wp-content/themes/ccat/languages/ccat.pot index a9aa2a9..c26b832 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-24 19:48+0000\n" +"POT-Creation-Date: 2025-09-24 20:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: \n" @@ -20,6 +20,10 @@ msgstr "" msgid "← Back to disciplines" msgstr "" +#: includes/taxonomies/listing-category.php:32 +msgid "← Back to listing-categories" +msgstr "" + #: includes/taxonomies/project-category.php:32 msgid "← Back to project-categories" msgstr "" @@ -77,7 +81,7 @@ msgid "Add File" msgstr "" #: includes/cpt/representation.php:13 includes/cpt/contributor.php:13 -#: includes/cpt/listing.php:13 includes/cpt/membership.php:13 +#: includes/cpt/listing.php:13 includes/cpt/profile.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 @@ -100,8 +104,8 @@ msgstr "" msgid "Add New Location" msgstr "" -#: includes/cpt/membership.php:14 -msgid "Add New Membership" +#: includes/cpt/profile.php:14 +msgid "Add New Profile" msgstr "" #: includes/cpt/project.php:14 @@ -124,6 +128,10 @@ msgstr "" msgid "Add or remove disciplines" msgstr "" +#: includes/taxonomies/listing-category.php:24 +msgid "Add or remove listing-categories" +msgstr "" + #: includes/taxonomies/project-category.php:24 msgid "Add or remove project-categories" msgstr "" @@ -156,6 +164,10 @@ msgstr "" msgid "All Events" msgstr "" +#: includes/taxonomies/listing-category.php:15 +msgid "All listing-categories" +msgstr "" + #: includes/cpt/listing.php:23 msgid "All Listings" msgstr "" @@ -164,8 +176,8 @@ msgstr "" msgid "All Locations" msgstr "" -#: includes/cpt/membership.php:23 -msgid "All Memberships" +#: includes/cpt/profile.php:23 +msgid "All Profiles" msgstr "" #: includes/taxonomies/project-category.php:15 @@ -228,6 +240,10 @@ msgstr "" msgid "Cancelled" msgstr "" +#: acf-json/acf-translations.php:26 +msgid "Categorie(s)" +msgstr "" + #. Name of the theme msgid "CCAT" msgstr "" @@ -236,6 +252,10 @@ msgstr "" msgid "Choose from the most used disciplines" msgstr "" +#: includes/taxonomies/listing-category.php:25 +msgid "Choose from the most used listing-categories" +msgstr "" + #: includes/taxonomies/project-category.php:25 msgid "Choose from the most used project-categories" msgstr "" @@ -244,31 +264,31 @@ msgstr "" msgid "Choose from the most used resource-categories" msgstr "" -#: acf-json/acf-translations.php:26 +#: acf-json/acf-translations.php:27 msgid "Collectif artistique" msgstr "" -#: acf-json/acf-translations.php:27 +#: acf-json/acf-translations.php:28 msgid "Collective profile" msgstr "" -#: acf-json/acf-translations.php:28 +#: acf-json/acf-translations.php:29 msgid "Complete" msgstr "" -#: acf-json/acf-translations.php:29 +#: acf-json/acf-translations.php:30 msgid "Compositeur" msgstr "" -#: acf-json/acf-translations.php:30 +#: acf-json/acf-translations.php:31 msgid "Configuration" msgstr "" -#: acf-json/acf-translations.php:31 +#: acf-json/acf-translations.php:32 msgid "Configuration name" msgstr "" -#: acf-json/acf-translations.php:32 +#: acf-json/acf-translations.php:33 msgid "Confirmed" msgstr "" @@ -276,27 +296,27 @@ msgstr "" msgid "Conseil de la culture de l'Abitibi-Témiscamingue" msgstr "" -#: acf-json/acf-translations.php:33 +#: acf-json/acf-translations.php:34 msgid "Contact" msgstr "" -#: acf-json/acf-translations.php:34 +#: acf-json/acf-translations.php:35 msgid "Content" msgstr "" -#: acf-json/acf-translations.php:35 +#: acf-json/acf-translations.php:36 msgid "Content width" msgstr "" -#: acf-json/acf-translations.php:36 +#: acf-json/acf-translations.php:37 msgid "Contribution type(s)" msgstr "" -#: acf-json/acf-translations.php:37 +#: acf-json/acf-translations.php:38 msgid "Contribution(s)" msgstr "" -#: acf-json/acf-translations.php:38 includes/cpt/contributor.php:12 +#: acf-json/acf-translations.php:39 includes/cpt/contributor.php:12 msgid "Contributor" msgstr "" @@ -337,7 +357,7 @@ msgstr "" msgid "Contributor submitted." msgstr "" -#: acf-json/acf-translations.php:39 +#: acf-json/acf-translations.php:40 msgid "Contributor type" msgstr "" @@ -358,47 +378,47 @@ msgstr "" msgid "Contributors list navigation" msgstr "" -#: acf-json/acf-translations.php:40 +#: acf-json/acf-translations.php:41 msgid "Credits" msgstr "" #: includes/cpt/representation.php:74 includes/cpt/contributor.php:74 -#: includes/cpt/listing.php:70 includes/cpt/membership.php:78 -#: includes/cpt/project.php:77 includes/cpt/location.php:78 +#: includes/cpt/listing.php:77 includes/cpt/profile.php:78 +#: includes/cpt/project.php:77 includes/cpt/location.php:77 #: 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/listing.php:69 includes/cpt/membership.php:77 -#: includes/cpt/project.php:76 includes/cpt/location.php:77 +#: includes/cpt/listing.php:76 includes/cpt/profile.php:77 +#: includes/cpt/project.php:76 includes/cpt/location.php:76 #: 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:41 +#: acf-json/acf-translations.php:42 msgid "Date / time" msgstr "" -#: acf-json/acf-translations.php:42 +#: acf-json/acf-translations.php:43 msgid "Date range" msgstr "" -#: acf-json/acf-translations.php:43 +#: acf-json/acf-translations.php:44 msgid "Day(s)" msgstr "" -#: acf-json/acf-translations.php:44 +#: acf-json/acf-translations.php:45 msgid "Default background" msgstr "" -#: acf-json/acf-translations.php:45 +#: acf-json/acf-translations.php:46 msgid "Default container" msgstr "" -#: acf-json/acf-translations.php:46 +#: acf-json/acf-translations.php:47 msgid "Description" msgstr "" @@ -426,7 +446,7 @@ msgstr "" msgid "Discipline updated." msgstr "" -#: acf-json/acf-translations.php:47 +#: acf-json/acf-translations.php:48 msgid "Discipline(s)" msgstr "" @@ -446,11 +466,11 @@ msgstr "" msgid "Disciplines list navigation" msgstr "" -#: acf-json/acf-translations.php:48 +#: acf-json/acf-translations.php:49 msgid "Document type" msgstr "" -#: acf-json/acf-translations.php:49 +#: acf-json/acf-translations.php:50 msgid "Document(s)" msgstr "" @@ -470,12 +490,16 @@ msgstr "" msgid "Edit Listing" msgstr "" +#: includes/taxonomies/listing-category.php:18 +msgid "Edit listing-category" +msgstr "" + #: includes/cpt/location.php:16 msgid "Edit Location" msgstr "" -#: includes/cpt/membership.php:16 -msgid "Edit Membership" +#: includes/cpt/profile.php:16 +msgid "Edit Profile" msgstr "" #: includes/cpt/project.php:16 @@ -502,39 +526,39 @@ msgstr "" msgid "Edit Template" msgstr "" -#: acf-json/acf-translations.php:50 +#: acf-json/acf-translations.php:51 msgid "Elevated background" msgstr "" -#: acf-json/acf-translations.php:51 +#: acf-json/acf-translations.php:52 msgid "Email" msgstr "" -#: acf-json/acf-translations.php:52 +#: acf-json/acf-translations.php:53 msgid "Email preferences" msgstr "" -#: acf-json/acf-translations.php:53 +#: acf-json/acf-translations.php:54 msgid "End date" msgstr "" -#: acf-json/acf-translations.php:54 +#: acf-json/acf-translations.php:55 msgid "End month" msgstr "" -#: acf-json/acf-translations.php:55 +#: acf-json/acf-translations.php:56 msgid "End time" msgstr "" -#: acf-json/acf-translations.php:56 +#: acf-json/acf-translations.php:57 msgid "Enfants" msgstr "" -#: acf-json/acf-translations.php:57 +#: acf-json/acf-translations.php:58 msgid "Entity" msgstr "" -#: acf-json/acf-translations.php:58 includes/cpt/event.php:12 +#: acf-json/acf-translations.php:59 includes/cpt/event.php:12 msgid "Event" msgstr "" @@ -575,10 +599,14 @@ msgstr "" msgid "Event submitted." msgstr "" -#: acf-json/acf-translations.php:59 +#: acf-json/acf-translations.php:60 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." @@ -596,31 +624,31 @@ msgstr "" msgid "Events list navigation" msgstr "" -#: acf-json/acf-translations.php:60 +#: acf-json/acf-translations.php:62 msgid "Exposition" msgstr "" -#: acf-json/acf-translations.php:61 +#: acf-json/acf-translations.php:63 msgid "Failed" msgstr "" -#: acf-json/acf-translations.php:62 +#: acf-json/acf-translations.php:64 msgid "Familial" msgstr "" #: includes/cpt/representation.php:28 includes/cpt/contributor.php:28 -#: includes/cpt/listing.php:28 includes/cpt/membership.php:28 +#: includes/cpt/listing.php:28 includes/cpt/profile.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:63 +#: acf-json/acf-translations.php:65 msgid "Festival" msgstr "" -#: acf-json/acf-translations.php:64 +#: acf-json/acf-translations.php:66 msgid "File" msgstr "" @@ -640,8 +668,8 @@ msgstr "" msgid "Filter Locations list" msgstr "" -#: includes/cpt/membership.php:32 -msgid "Filter Memberships list" +#: includes/cpt/profile.php:32 +msgid "Filter Profiles list" msgstr "" #: includes/cpt/project.php:32 @@ -660,27 +688,27 @@ msgstr "" msgid "Filter Templates list" msgstr "" -#: acf-json/acf-translations.php:65 +#: acf-json/acf-translations.php:67 msgid "Fluid container" msgstr "" -#: acf-json/acf-translations.php:66 +#: acf-json/acf-translations.php:68 msgid "Form" msgstr "" -#: acf-json/acf-translations.php:67 +#: acf-json/acf-translations.php:69 msgid "Free" msgstr "" -#: acf-json/acf-translations.php:68 +#: acf-json/acf-translations.php:70 msgid "Full-width container" msgstr "" -#: acf-json/acf-translations.php:69 +#: acf-json/acf-translations.php:71 msgid "Gallery" msgstr "" -#: acf-json/acf-translations.php:70 +#: acf-json/acf-translations.php:72 msgid "H:i" msgstr "" @@ -688,31 +716,31 @@ msgstr "" msgid "https://websimple.com/" msgstr "" -#: acf-json/acf-translations.php:71 +#: acf-json/acf-translations.php:73 msgid "Hybrid" msgstr "" -#: acf-json/acf-translations.php:72 +#: acf-json/acf-translations.php:74 msgid "Identifier(s)" msgstr "" -#: acf-json/acf-translations.php:73 +#: acf-json/acf-translations.php:75 msgid "Image" msgstr "" -#: acf-json/acf-translations.php:74 +#: acf-json/acf-translations.php:76 msgid "In-person" msgstr "" -#: acf-json/acf-translations.php:75 +#: acf-json/acf-translations.php:77 msgid "Individu" msgstr "" -#: acf-json/acf-translations.php:76 +#: acf-json/acf-translations.php:78 msgid "Individual day(s)" msgstr "" -#: acf-json/acf-translations.php:77 +#: acf-json/acf-translations.php:79 msgid "Individual profile" msgstr "" @@ -732,8 +760,8 @@ msgstr "" msgid "Insert into Location" msgstr "" -#: includes/cpt/membership.php:26 -msgid "Insert into Membership" +#: includes/cpt/profile.php:26 +msgid "Insert into Profile" msgstr "" #: includes/cpt/project.php:26 @@ -752,23 +780,23 @@ msgstr "" msgid "Insert into Template" msgstr "" -#: acf-json/acf-translations.php:78 +#: acf-json/acf-translations.php:80 msgid "Institution" msgstr "" -#: acf-json/acf-translations.php:79 +#: acf-json/acf-translations.php:81 msgid "Institution profile" msgstr "" -#: acf-json/acf-translations.php:80 +#: acf-json/acf-translations.php:82 msgid "Interprète" msgstr "" -#: acf-json/acf-translations.php:81 +#: acf-json/acf-translations.php:83 msgid "Is asynchronous" msgstr "" -#: acf-json/acf-translations.php:82 +#: acf-json/acf-translations.php:84 msgid "Language(s)" msgstr "" @@ -784,15 +812,56 @@ msgstr "" msgid "Listing Attributes" msgstr "" +#: includes/taxonomies/listing-category.php:11 +#: includes/taxonomies/listing-category.php:28 +msgid "Listing categories" +msgstr "" + +#: includes/taxonomies/listing-category.php:64 +msgid "Listing categories deleted." +msgstr "" + +#: includes/taxonomies/listing-category.php:30 +msgid "Listing categories list" +msgstr "" + +#: includes/taxonomies/listing-category.php:29 +msgid "Listing categories list navigation" +msgstr "" + +#: includes/taxonomies/listing-category.php:12 +msgid "Listing category" +msgstr "" + +#: includes/taxonomies/listing-category.php:59 +msgid "Listing category added." +msgstr "" + +#: includes/taxonomies/listing-category.php:60 +msgid "Listing category deleted." +msgstr "" + +#: includes/taxonomies/listing-category.php:62 +msgid "Listing category not added." +msgstr "" + +#: includes/taxonomies/listing-category.php:63 +msgid "Listing category not updated." +msgstr "" + +#: includes/taxonomies/listing-category.php:61 +msgid "Listing category updated." +msgstr "" + #: includes/cpt/listing.php:36 msgid "Listing published privately." msgstr "" -#: includes/cpt/listing.php:35 includes/cpt/listing.php:73 +#: includes/cpt/listing.php:35 includes/cpt/listing.php:80 msgid "Listing published." msgstr "" -#: includes/cpt/listing.php:72 +#: includes/cpt/listing.php:79 #, php-format msgid "Listing restored to revision from %s" msgstr "" @@ -801,7 +870,7 @@ msgstr "" msgid "Listing reverted to draft." msgstr "" -#: includes/cpt/listing.php:74 +#: includes/cpt/listing.php:81 msgid "Listing saved." msgstr "" @@ -809,12 +878,12 @@ msgstr "" msgid "Listing scheduled." msgstr "" -#: includes/cpt/listing.php:75 +#: includes/cpt/listing.php:82 msgid "Listing submitted." msgstr "" -#: includes/cpt/listing.php:39 includes/cpt/listing.php:68 -#: includes/cpt/listing.php:71 +#: includes/cpt/listing.php:39 includes/cpt/listing.php:75 +#: includes/cpt/listing.php:78 msgid "Listing updated." msgstr "" @@ -830,11 +899,11 @@ msgstr "" msgid "Listings list navigation" msgstr "" -#: acf-json/acf-translations.php:83 +#: acf-json/acf-translations.php:85 msgid "Locality" msgstr "" -#: acf-json/acf-translations.php:84 includes/cpt/location.php:12 +#: acf-json/acf-translations.php:86 includes/cpt/location.php:12 msgid "Location" msgstr "" @@ -850,11 +919,11 @@ msgstr "" msgid "Location published privately." msgstr "" -#: includes/cpt/location.php:35 includes/cpt/location.php:81 +#: includes/cpt/location.php:35 includes/cpt/location.php:80 msgid "Location published." msgstr "" -#: includes/cpt/location.php:80 +#: includes/cpt/location.php:79 #, php-format msgid "Location restored to revision from %s" msgstr "" @@ -863,7 +932,7 @@ msgstr "" msgid "Location reverted to draft." msgstr "" -#: includes/cpt/location.php:82 +#: includes/cpt/location.php:81 msgid "Location saved." msgstr "" @@ -871,16 +940,16 @@ msgstr "" msgid "Location scheduled." msgstr "" -#: includes/cpt/location.php:83 +#: includes/cpt/location.php:82 msgid "Location submitted." msgstr "" -#: acf-json/acf-translations.php:85 +#: acf-json/acf-translations.php:87 msgid "Location type" msgstr "" -#: includes/cpt/location.php:39 includes/cpt/location.php:76 -#: includes/cpt/location.php:79 +#: includes/cpt/location.php:39 includes/cpt/location.php:75 +#: includes/cpt/location.php:78 msgid "Location updated." msgstr "" @@ -897,114 +966,57 @@ msgid "Locations list navigation" msgstr "" #: includes/cpt/representation.php:68 includes/cpt/contributor.php:68 -#: includes/cpt/listing.php:64 includes/cpt/membership.php:72 -#: includes/cpt/project.php:71 includes/cpt/location.php:72 +#: includes/cpt/listing.php:71 includes/cpt/profile.php:72 +#: includes/cpt/project.php:71 includes/cpt/location.php:71 #: 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:86 +#: acf-json/acf-translations.php:89 msgid "Media type" msgstr "" -#: acf-json/acf-translations.php:87 +#: acf-json/acf-translations.php:90 msgid "Media(s)" msgstr "" -#: includes/cpt/membership.php:12 -msgid "Membership" -msgstr "" - -#: includes/cpt/membership.php:24 -msgid "Membership Archives" -msgstr "" - -#: includes/cpt/membership.php:25 -msgid "Membership Attributes" -msgstr "" - -#: includes/cpt/membership.php:36 -msgid "Membership published privately." -msgstr "" - -#: includes/cpt/membership.php:35 includes/cpt/membership.php:81 -msgid "Membership published." -msgstr "" - -#: includes/cpt/membership.php:80 -#, php-format -msgid "Membership restored to revision from %s" -msgstr "" - -#: includes/cpt/membership.php:37 -msgid "Membership reverted to draft." -msgstr "" - -#: includes/cpt/membership.php:82 -msgid "Membership saved." -msgstr "" - -#: includes/cpt/membership.php:38 -msgid "Membership scheduled." -msgstr "" - -#: includes/cpt/membership.php:83 -msgid "Membership submitted." -msgstr "" - -#: acf-json/acf-translations.php:88 -msgid "Membership type" -msgstr "" - -#: includes/cpt/membership.php:39 includes/cpt/membership.php:76 -#: includes/cpt/membership.php:79 -msgid "Membership updated." -msgstr "" - -#: acf-json/acf-translations.php:89 +#: acf-json/acf-translations.php:91 msgid "Membership(s)" msgstr "" -#: includes/cpt/membership.php:10 includes/cpt/membership.php:11 -msgid "Memberships" -msgstr "" - -#: includes/cpt/membership.php:34 -msgid "Memberships list" -msgstr "" - -#: includes/cpt/membership.php:33 -msgid "Memberships list navigation" -msgstr "" - -#: acf-json/acf-translations.php:90 +#: acf-json/acf-translations.php:92 msgid "Message" msgstr "" -#: acf-json/acf-translations.php:91 +#: acf-json/acf-translations.php:93 msgid "Minimum price" msgstr "" -#: acf-json/acf-translations.php:92 +#: acf-json/acf-translations.php:94 msgid "Moral entity" msgstr "" #: includes/taxonomies/resource-category.php:31 #: includes/taxonomies/discipline.php:31 +#: includes/taxonomies/listing-category.php:31 #: includes/taxonomies/project-category.php:31 msgid "Most used" msgstr "" -#: acf-json/acf-translations.php:93 -msgid "Multiple day(s)" -msgstr "" - -#: acf-json/acf-translations.php:94 -msgid "Muted background" +#: acf-json/acf-translations.php:88 +msgid "MRC" msgstr "" #: acf-json/acf-translations.php:95 +msgid "Multiple day(s)" +msgstr "" + +#: acf-json/acf-translations.php:96 +msgid "Muted background" +msgstr "" + +#: acf-json/acf-translations.php:97 msgid "Name" msgstr "" @@ -1024,12 +1036,17 @@ msgstr "" msgid "New Listing" msgstr "" +#: includes/taxonomies/listing-category.php:21 +#: includes/taxonomies/listing-category.php:22 +msgid "New listing-category" +msgstr "" + #: includes/cpt/location.php:15 msgid "New Location" msgstr "" -#: includes/cpt/membership.php:15 -msgid "New Membership" +#: includes/cpt/profile.php:15 +msgid "New Profile" msgstr "" #: includes/cpt/project.php:15 @@ -1082,6 +1099,14 @@ msgstr "" msgid "No Events found in trash" msgstr "" +#: includes/taxonomies/listing-category.php:27 +msgid "No listing-categories" +msgstr "" + +#: includes/taxonomies/listing-category.php:26 +msgid "No listing-categories found." +msgstr "" + #: includes/cpt/listing.php:20 msgid "No Listings found" msgstr "" @@ -1098,12 +1123,12 @@ msgstr "" msgid "No Locations found in trash" msgstr "" -#: includes/cpt/membership.php:20 -msgid "No Memberships found" +#: includes/cpt/profile.php:20 +msgid "No Profiles found" msgstr "" -#: includes/cpt/membership.php:21 -msgid "No Memberships found in trash" +#: includes/cpt/profile.php:21 +msgid "No Profiles found in trash" msgstr "" #: includes/taxonomies/project-category.php:27 @@ -1154,31 +1179,31 @@ msgstr "" msgid "No Templates found in trash" msgstr "" -#: acf-json/acf-translations.php:96 +#: acf-json/acf-translations.php:98 msgid "Notification(s)" msgstr "" -#: acf-json/acf-translations.php:97 +#: acf-json/acf-translations.php:99 msgid "Offer" msgstr "" -#: acf-json/acf-translations.php:98 +#: acf-json/acf-translations.php:100 msgid "Offer status" msgstr "" -#: acf-json/acf-translations.php:99 +#: acf-json/acf-translations.php:101 msgid "Online" msgstr "" -#: acf-json/acf-translations.php:100 +#: acf-json/acf-translations.php:102 msgid "Options page – CCAT" msgstr "" -#: acf-json/acf-translations.php:101 +#: acf-json/acf-translations.php:103 msgid "Organisation" msgstr "" -#: acf-json/acf-translations.php:102 +#: acf-json/acf-translations.php:104 msgid "Organization profile" msgstr "" @@ -1198,6 +1223,14 @@ msgstr "" msgid "Parent Event:" msgstr "" +#: includes/taxonomies/listing-category.php:16 +msgid "Parent listing-category" +msgstr "" + +#: includes/taxonomies/listing-category.php:17 +msgid "Parent listing-category:" +msgstr "" + #: includes/cpt/listing.php:22 msgid "Parent Listing:" msgstr "" @@ -1206,8 +1239,8 @@ msgstr "" msgid "Parent Location:" msgstr "" -#: includes/cpt/membership.php:22 -msgid "Parent Membership:" +#: includes/cpt/profile.php:22 +msgid "Parent Profile:" msgstr "" #: includes/taxonomies/project-category.php:16 @@ -1242,23 +1275,23 @@ msgstr "" msgid "Parent Template:" msgstr "" -#: acf-json/acf-translations.php:103 +#: acf-json/acf-translations.php:105 msgid "Period" msgstr "" -#: acf-json/acf-translations.php:104 +#: acf-json/acf-translations.php:106 msgid "Person name" msgstr "" -#: acf-json/acf-translations.php:105 +#: acf-json/acf-translations.php:107 msgid "Phone" msgstr "" -#: acf-json/acf-translations.php:106 +#: acf-json/acf-translations.php:108 msgid "Physical person" msgstr "" -#: acf-json/acf-translations.php:107 +#: acf-json/acf-translations.php:109 msgid "Planned" msgstr "" @@ -1266,6 +1299,10 @@ msgstr "" msgid "Popular disciplines" msgstr "" +#: includes/taxonomies/listing-category.php:14 +msgid "Popular listing-categories" +msgstr "" + #: includes/taxonomies/project-category.php:14 msgid "Popular project-categories" msgstr "" @@ -1274,51 +1311,55 @@ msgstr "" msgid "Popular resource-categories" msgstr "" -#: acf-json/acf-translations.php:108 +#: acf-json/acf-translations.php:110 msgid "Possible configuration(s)" msgstr "" -#: acf-json/acf-translations.php:109 +#: acf-json/acf-translations.php:111 msgid "Post – Article" msgstr "" -#: acf-json/acf-translations.php:110 +#: acf-json/acf-translations.php:112 msgid "Post – Contributor" msgstr "" -#: acf-json/acf-translations.php:111 +#: acf-json/acf-translations.php:113 msgid "Post – Event" msgstr "" -#: acf-json/acf-translations.php:112 -msgid "Post – Location" -msgstr "" - -#: acf-json/acf-translations.php:113 -msgid "Post – Membership" -msgstr "" - #: acf-json/acf-translations.php:114 -msgid "Post – Page" +msgid "Post – Listing" msgstr "" #: acf-json/acf-translations.php:115 -msgid "Post – Project" +msgid "Post – Location" msgstr "" #: acf-json/acf-translations.php:116 -msgid "Post – Representation" +msgid "Post – Page" msgstr "" #: acf-json/acf-translations.php:117 -msgid "Post – Resource" +msgid "Post – Profile" msgstr "" #: acf-json/acf-translations.php:118 -msgid "Post – Template" +msgid "Post – Project" msgstr "" #: acf-json/acf-translations.php:119 +msgid "Post – Representation" +msgstr "" + +#: acf-json/acf-translations.php:120 +msgid "Post – Resource" +msgstr "" + +#: acf-json/acf-translations.php:121 +msgid "Post – Template" +msgstr "" + +#: acf-json/acf-translations.php:122 msgid "Postponed" msgstr "" @@ -1330,16 +1371,16 @@ msgstr "" msgid "Preview Event" msgstr "" -#: includes/cpt/listing.php:62 includes/cpt/listing.php:63 +#: includes/cpt/listing.php:69 includes/cpt/listing.php:70 msgid "Preview Listing" msgstr "" -#: includes/cpt/location.php:70 includes/cpt/location.php:71 +#: includes/cpt/location.php:69 includes/cpt/location.php:70 msgid "Preview Location" msgstr "" -#: includes/cpt/membership.php:70 includes/cpt/membership.php:71 -msgid "Preview Membership" +#: includes/cpt/profile.php:70 includes/cpt/profile.php:71 +msgid "Preview Profile" msgstr "" #: includes/cpt/project.php:69 includes/cpt/project.php:70 @@ -1358,14 +1399,76 @@ msgstr "" msgid "Preview Template" msgstr "" -#: acf-json/acf-translations.php:120 +#: acf-json/acf-translations.php:123 msgid "Pricing" msgstr "" -#: acf-json/acf-translations.php:121 +#: includes/cpt/profile.php:12 +msgid "Profile" +msgstr "" + +#: includes/cpt/profile.php:24 +msgid "Profile Archives" +msgstr "" + +#: includes/cpt/profile.php:25 +msgid "Profile Attributes" +msgstr "" + +#: includes/cpt/profile.php:36 +msgid "Profile published privately." +msgstr "" + +#: includes/cpt/profile.php:35 includes/cpt/profile.php:81 +msgid "Profile published." +msgstr "" + +#: includes/cpt/profile.php:80 +#, php-format +msgid "Profile restored to revision from %s" +msgstr "" + +#: includes/cpt/profile.php:37 +msgid "Profile reverted to draft." +msgstr "" + +#: includes/cpt/profile.php:82 +msgid "Profile saved." +msgstr "" + +#: includes/cpt/profile.php:38 +msgid "Profile scheduled." +msgstr "" + +#: includes/cpt/profile.php:83 +msgid "Profile submitted." +msgstr "" + +#: acf-json/acf-translations.php:124 +msgid "Profile type" +msgstr "" + +#: includes/cpt/profile.php:39 includes/cpt/profile.php:76 +#: includes/cpt/profile.php:79 +msgid "Profile updated." +msgstr "" + +#: acf-json/acf-translations.php:125 msgid "Profile(s)" msgstr "" +#: includes/cpt/profile.php:10 includes/cpt/profile.php:11 +msgid "Profiles" +msgstr "" + +#: includes/cpt/profile.php:34 +msgid "Profiles list" +msgstr "" + +#: includes/cpt/profile.php:33 +msgid "Profiles list navigation" +msgstr "" + #: includes/cpt/project.php:12 msgid "Project" msgstr "" @@ -1378,7 +1481,7 @@ msgstr "" msgid "Project Attributes" msgstr "" -#: acf-json/acf-translations.php:122 +#: acf-json/acf-translations.php:126 msgid "Project categorie(s)" msgstr "" @@ -1469,20 +1572,20 @@ msgstr "" msgid "Projects list navigation" msgstr "" -#: acf-json/acf-translations.php:123 +#: acf-json/acf-translations.php:127 msgid "Range" msgstr "" -#: acf-json/acf-translations.php:124 +#: acf-json/acf-translations.php:128 msgid "Rechercher une adresse..." msgstr "" -#: acf-json/acf-translations.php:125 +#: acf-json/acf-translations.php:129 msgid "Registration" msgstr "" #: includes/cpt/representation.php:30 includes/cpt/contributor.php:30 -#: includes/cpt/listing.php:30 includes/cpt/membership.php:30 +#: includes/cpt/listing.php:30 includes/cpt/profile.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 @@ -1576,7 +1679,7 @@ msgstr "" msgid "Resource categories list navigation" msgstr "" -#: acf-json/acf-translations.php:126 +#: acf-json/acf-translations.php:130 #: includes/taxonomies/resource-category.php:12 msgid "Resource category" msgstr "" @@ -1647,15 +1750,15 @@ msgstr "" msgid "Resources list navigation" msgstr "" -#: acf-json/acf-translations.php:127 +#: acf-json/acf-translations.php:131 msgid "Salle de spectacle" msgstr "" -#: acf-json/acf-translations.php:128 +#: acf-json/acf-translations.php:132 msgid "Same as contact" msgstr "" -#: acf-json/acf-translations.php:129 +#: acf-json/acf-translations.php:133 msgid "Schedule type" msgstr "" @@ -1671,10 +1774,14 @@ msgstr "" msgid "Search Events" msgstr "" -#: acf-json/acf-translations.php:130 +#: acf-json/acf-translations.php:134 msgid "Search for address..." msgstr "" +#: includes/taxonomies/listing-category.php:13 +msgid "Search listing-categories" +msgstr "" + #: includes/cpt/listing.php:19 msgid "Search Listings" msgstr "" @@ -1683,8 +1790,8 @@ msgstr "" msgid "Search Locations" msgstr "" -#: includes/cpt/membership.php:19 -msgid "Search Memberships" +#: includes/cpt/profile.php:19 +msgid "Search Profiles" msgstr "" #: includes/taxonomies/project-category.php:13 @@ -1711,27 +1818,27 @@ msgstr "" msgid "Search Templates" msgstr "" -#: acf-json/acf-translations.php:131 +#: acf-json/acf-translations.php:135 msgid "Section – Container" msgstr "" -#: acf-json/acf-translations.php:132 +#: acf-json/acf-translations.php:136 msgid "Section – Theme" msgstr "" -#: acf-json/acf-translations.php:133 +#: acf-json/acf-translations.php:137 msgid "Section(s)" msgstr "" -#: acf-json/acf-translations.php:134 +#: acf-json/acf-translations.php:138 msgid "Select" msgstr "" -#: acf-json/acf-translations.php:135 +#: acf-json/acf-translations.php:139 msgid "Sent" msgstr "" -#: acf-json/acf-translations.php:136 +#: acf-json/acf-translations.php:140 msgid "Sent status" msgstr "" @@ -1739,6 +1846,10 @@ msgstr "" msgid "Separate disciplines with commas" msgstr "" +#: includes/taxonomies/listing-category.php:23 +msgid "Separate listing-categories with commas" +msgstr "" + #: includes/taxonomies/project-category.php:23 msgid "Separate project-categories with commas" msgstr "" @@ -1748,38 +1859,38 @@ msgid "Separate resource-categories with commas" msgstr "" #: includes/cpt/representation.php:29 includes/cpt/contributor.php:29 -#: includes/cpt/listing.php:29 includes/cpt/membership.php:29 +#: includes/cpt/listing.php:29 includes/cpt/profile.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:137 +#: acf-json/acf-translations.php:141 msgid "Social" msgstr "" -#: acf-json/acf-translations.php:138 +#: acf-json/acf-translations.php:142 msgid "Spectacle" msgstr "" -#: acf-json/acf-translations.php:139 +#: acf-json/acf-translations.php:143 msgid "Start date" msgstr "" -#: acf-json/acf-translations.php:140 +#: acf-json/acf-translations.php:144 msgid "Start date / time" msgstr "" -#: acf-json/acf-translations.php:141 +#: acf-json/acf-translations.php:145 msgid "Start month" msgstr "" -#: acf-json/acf-translations.php:142 +#: acf-json/acf-translations.php:146 msgid "Subject" msgstr "" -#: acf-json/acf-translations.php:143 +#: acf-json/acf-translations.php:147 msgid "Target audience" msgstr "" @@ -1841,39 +1952,39 @@ msgstr "" msgid "Templates list navigation" msgstr "" -#: acf-json/acf-translations.php:144 +#: acf-json/acf-translations.php:148 msgid "Term – Discipline" msgstr "" -#: acf-json/acf-translations.php:145 +#: acf-json/acf-translations.php:149 msgid "Text block" msgstr "" -#: acf-json/acf-translations.php:146 +#: acf-json/acf-translations.php:150 msgid "This event is asynchronous" msgstr "" -#: acf-json/acf-translations.php:147 +#: acf-json/acf-translations.php:151 msgid "This event is free" msgstr "" -#: acf-json/acf-translations.php:148 +#: acf-json/acf-translations.php:152 msgid "This event is wordless" msgstr "" -#: acf-json/acf-translations.php:149 +#: acf-json/acf-translations.php:153 msgid "Title" msgstr "" -#: acf-json/acf-translations.php:150 +#: acf-json/acf-translations.php:154 msgid "Tout public" msgstr "" -#: acf-json/acf-translations.php:153 +#: acf-json/acf-translations.php:157 msgid "Universal access" msgstr "" -#: acf-json/acf-translations.php:154 +#: acf-json/acf-translations.php:158 msgid "Upcoming" msgstr "" @@ -1881,6 +1992,10 @@ msgstr "" msgid "Update discipline" msgstr "" +#: includes/taxonomies/listing-category.php:19 +msgid "Update listing-category" +msgstr "" + #: includes/taxonomies/project-category.php:19 msgid "Update project-category" msgstr "" @@ -1905,8 +2020,8 @@ msgstr "" msgid "Uploaded to this Location" msgstr "" -#: includes/cpt/membership.php:27 -msgid "Uploaded to this Membership" +#: includes/cpt/profile.php:27 +msgid "Uploaded to this Profile" msgstr "" #: includes/cpt/project.php:27 @@ -1925,23 +2040,23 @@ msgstr "" msgid "Uploaded to this Template" msgstr "" -#: acf-json/acf-translations.php:151 +#: acf-json/acf-translations.php:155 msgid "URI" msgstr "" -#: acf-json/acf-translations.php:152 +#: acf-json/acf-translations.php:156 msgid "URL" msgstr "" #: includes/cpt/representation.php:31 includes/cpt/contributor.php:31 -#: includes/cpt/listing.php:31 includes/cpt/membership.php:31 +#: includes/cpt/listing.php:31 includes/cpt/profile.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:155 +#: acf-json/acf-translations.php:159 msgid "User Profile" msgstr "" @@ -1965,15 +2080,19 @@ msgstr "" msgid "View Events" msgstr "" -#: includes/cpt/listing.php:17 includes/cpt/listing.php:65 +#: includes/cpt/listing.php:17 includes/cpt/listing.php:72 msgid "View Listing" msgstr "" +#: includes/taxonomies/listing-category.php:20 +msgid "View listing-category" +msgstr "" + #: includes/cpt/listing.php:18 msgid "View Listings" msgstr "" -#: includes/cpt/location.php:17 includes/cpt/location.php:73 +#: includes/cpt/location.php:17 includes/cpt/location.php:72 msgid "View Location" msgstr "" @@ -1981,12 +2100,12 @@ msgstr "" msgid "View Locations" msgstr "" -#: includes/cpt/membership.php:17 includes/cpt/membership.php:73 -msgid "View Membership" +#: includes/cpt/profile.php:17 includes/cpt/profile.php:73 +msgid "View Profile" msgstr "" -#: includes/cpt/membership.php:18 -msgid "View Memberships" +#: includes/cpt/profile.php:18 +msgid "View Profiles" msgstr "" #: includes/cpt/project.php:17 includes/cpt/project.php:72 @@ -2029,7 +2148,7 @@ msgstr "" msgid "View Templates" msgstr "" -#: acf-json/acf-translations.php:156 +#: acf-json/acf-translations.php:160 msgid "Virtual location" msgstr "" @@ -2037,30 +2156,30 @@ msgstr "" msgid "Websimple " msgstr "" -#: acf-json/acf-translations.php:157 +#: acf-json/acf-translations.php:161 msgid "Where" msgstr "" -#: acf-json/acf-translations.php:158 +#: acf-json/acf-translations.php:162 msgid "Wordless" msgstr "" -#: acf-json/acf-translations.php:159 +#: acf-json/acf-translations.php:163 msgid "Y-m" msgstr "" -#: acf-json/acf-translations.php:160 +#: acf-json/acf-translations.php:164 msgid "Y-m-d" msgstr "" -#: acf-json/acf-translations.php:161 +#: acf-json/acf-translations.php:165 msgid "Y-m-d H:i:s" msgstr "" -#: acf-json/acf-translations.php:162 +#: acf-json/acf-translations.php:166 msgid "YouTube URL" msgstr "" -#: acf-json/acf-translations.php:163 +#: acf-json/acf-translations.php:167 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 c02e96d..16c3e23 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-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 Profile'=>'Ajouter un nouveau profil','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 Profiles'=>'Tous les profils','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 Profile'=>'Modifier le profil','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 Profiles list'=>'Filtrer la liste des profils','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 Profile'=>'Insérer dans le profil','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)','Profile'=>'Profil','Profile Archives'=>'Archives de profils','Profile Attributes'=>'Attributs du profil','Profile published privately.'=>'Profil publié en privé.','Profile published.'=>'Profil publié.','Profile restored to revision from %s'=>'Profil restauré à la révision de %s','Profile reverted to draft.'=>'Le profil a été ramené à l\'état de brouillon.','Profile saved.'=>'Profil enregistré.','Profile scheduled.'=>'Profil planifié.','Profile submitted.'=>'Profil soumis.','Profile type'=>'Type de profil','Profile updated.'=>'Profil mis à jour.','Profile(s)'=>'Profil(s)','Profiles'=>'Profils','Profiles list'=>'Liste des profils','Profiles list navigation'=>'Liste de navigation des profils','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 Profile'=>'Nouveau profil','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 Profiles found'=>'Aucun profil trouvé','No Profiles found in trash'=>'Aucun profil trouvé 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 Profile:'=>'Profil 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 – Profile'=>'Contenu - Profil','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 Profile'=>'Prévisualiser le profil','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 Profiles'=>'Recherche de profils','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 Profile'=>'Téléchargé sur ce profil','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 Profile'=>'Afficher le profil','View Profiles'=>'Voir les profils','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 20:11+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 listing-categories'=>'← Retour à la liste des catégories','← 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 Profile'=>'Ajouter un nouveau profil','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 listing-categories'=>'Ajouter ou supprimer des catégories d\'annonce','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 listing-categories'=>'Toutes les catégories d\'annonce','All Listings'=>'Toutes les annonces','All Locations'=>'Tous les lieux','All Profiles'=>'Tous les profils','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 listing-categories'=>'Choisissez parmi les catégories d\'annonce 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','Collective profile'=>'Profil collectif','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 listing-category'=>'Modifier la catégorie d\'annonce','Edit Location'=>'Modifier le lieu','Edit Profile'=>'Modifier le profil','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 Listings list'=>'Filtrer la liste des annonces','Filter Locations list'=>'Filtrer la liste des lieux','Filter Profiles list'=>'Filtrer la liste des profils','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)','Individual profile'=>'Profil individuel','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 Profile'=>'Insérer dans le profil','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','Institution profile'=>'Profil d\'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 categories'=>'Catégories d\'annonce','Listing categories deleted.'=>'Catégories d\'annonce supprimées.','Listing categories list'=>'Liste des catégories d\'annonce','Listing categories list navigation'=>'Navigation dans la liste des catégories d\'annonce','Listing category'=>'Catégorie d\'annonce','Listing category added.'=>'Catégorie d\'annonce ajoutée.','Listing category deleted.'=>'Catégorie d\'annonce supprimée.','Listing category not added.'=>'Catégorie d\'annonce non ajoutée.','Listing category not updated.'=>'Catégorie d\'annonce non mise à jour.','Listing category updated.'=>'Catégorie d\'annonce mise à jour.','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(s)'=>'Adhésion(s)','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 Listing'=>'Nouvelle annonce','New listing-category'=>'Nouvelle catégorie d\'annonce','New Location'=>'Nouveau lieu','New Profile'=>'Nouveau profil','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 listing-categories'=>'Aucune catégorie d\'annonce','No listing-categories found.'=>'Aucune catégorie d\'annonce trouvée.','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 Profiles found'=>'Aucun profil trouvé','No Profiles found in trash'=>'Aucun profil trouvé 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','Organization profile'=>'Profil d\'organisation','Parent Contributor:'=>'Parent Contributor: Contributeur parent','Parent discipline'=>'Discipline parentale','Parent discipline:'=>'Discipline parentale','Parent Event:'=>'Événement pour les parents :','Parent listing-category'=>'Catégorie d\'annonce parente','Parent listing-category:'=>'Catégorie d\'annonce parente :','Parent Listing:'=>'Annonce parent:','Parent Location:'=>'Lieu parent :','Parent Profile:'=>'Profil 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 listing-categories'=>'Catégories d\'annonce 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 – Listing'=>'Publication – Liste','Post – Location'=>'Contenu – Lieu','Post – Page'=>'Contenu – Page','Post – Profile'=>'Publication – Profil','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 Profile'=>'Aperçu du profil','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'=>'Profil','Profile Archives'=>'Archives des profils','Profile Attributes'=>'Attributs du profil','Profile published privately.'=>'Profil publié en privé.','Profile published.'=>'Profil publié.','Profile restored to revision from %s'=>'Profil restauré à la révision de %s','Profile reverted to draft.'=>'Profil reverti à l\'ébauche.','Profile saved.'=>'Profil enregistré.','Profile scheduled.'=>'Profil programmé.','Profile submitted.'=>'Profil soumis.','Profile type'=>'Type de profil','Profile updated.'=>'Profil mis à jour.','Profile(s)'=>'Profil(s)','Profiles'=>'Profils','Profiles list'=>'Liste des profils','Profiles list navigation'=>'Navigation dans la liste des profils','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 listing-categories'=>'Rechercher des catégories d\'annonce','Search Listings'=>'Rechercher des annonces','Search Locations'=>'Recherche de lieux','Search Profiles'=>'Rechercher des profils','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 listing-categories with commas'=>'Séparer les catégories d\'annonce par 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 listing-category'=>'Mettre à jour la catégorie d\'annonce','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 Profile'=>'Téléchargé dans ce profil','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 listing-category'=>'Voir la catégorie d\'annonce','View Listings'=>'Voir les annonces','View Location'=>'Voir le lieu','View Locations'=>'Voir les lieux','View Profile'=>'Voir le profil','View Profiles'=>'Voir les profils','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 ff75e9acd7d9469930d0bdc7b27be9685b544a02..a8d7101a3f683f4513f7213ca007e1cdb4ec4206 100644 GIT binary patch literal 31639 zcmbuH37DK!neR(k69}t-1i_C$2#eiW*h0bs8gc}9MH z-m|~wJ?~k*Q~Az8yZ>E@|2yEhrP2%Fod+ny-$!Sh&!0yUmT0;0a=3u-E1I_JVr=ZIHqs1R|j8AtAJRJEcFo72un~{v5GwvW<1kdaUkcT}hVf>o{@)2z-$$X+eG%>n|2I_q--WxuXQ0~o zYj_m=ZwtR*VX3q`;bY+(cmh;APlo(|>0JKvA~D~#IZkNeF3N_B3gDUqwpvLiOlka_k*TV~-@}CIR&eNdU{StTtyb?-Z z+o96E#^T=!Ro{D|`gI>vx(6-%MdM>o?Re7Se{0<1M6dUQq1tzh@eC-vZ-mM>4)=gN zq56A0+#9|X&Vlc+@ION7@jfU$eH<#^r{I2Y8meFa2IV)NwD6xHQ?a!FNq*ihgX+&q zpweGztiid2cS7~^W~g#+gR1X6a38n}s{J2>O8*E{{NqsV{ti^WA6fV}Q1jw1P=053 zCV|HHNT~5x0;Qid7QVtb1vNf5Tm0R|Pe9r8SD?y$!uWlt@_q!Rr$0f>*WCwv`}T(F z*Zxp?I}%F2$3V4v080O-LACD!==`F|+fd_mGgLiqxA1+&hoJQSn8iP1+;hL`gjjiyFLvyu8%>b|GmlQF7|$Q0aW@k;gRrC zlW&8Xmv4qD|3eTLR{9K7`+o@cgQX=tet+WvsCrI?($`uz4{n4S*Q-pv&G;%Pecl4q z@4ts?$9)!l1mf~a--T-Do=d$x7C@z6W?TzZ&*ktyH~}?oJE7Wn6V$qL8{8Lu2x{CP zfU?g|L$&vdQ04p^l%Bt9;U7cg`wdjNyDjtWmD4pxS*elpQ@_{9jP>;0MM(K>6PTPWJ6t45jCD;DPW`sPWng4}v#C z>G2MW|ER@(&cffb@Gqgt+3ys;?k!;El~6BS}1+I63TDf3N?OjG5Njld4&HN9t^(%HE!R7D(4qa!*Wl!s&+B*U@E)&KZq4ateRCy0T_3s-{_5TE_UC&+a<%hsS2%iYm?sHAP$+!io zyjMV_yTf=NlwCdy)sC-1>FxVa?R*+aFQqel_(0>)@KD4{q2ezvUIx{#t;UwgcS5!I z^-$w~mxUjM@*`h`>i;jH>}J0eKK+r#B~ar(1XbTK)I2Ri&C@zmySwoD@J6V1+zFNb zAE4_07?d8rVBsgA^zt-34DP$q`^RIU@|_PQzZ4!0r{EFrRwz4tpUEGF>eqLm>iHv7 zzxF%R_v>V+eq9I^f0c0xs-7F6`tdfXe!LT^ANNAp&BIXje+fztKY$v?XQ0a6>nz{S zL!r_QLbkf43oKlRETyH_K<%6FhsysAi~p%{_p^ODM?sDMX;AuF3ttGYfNJM;P9;coD8pLE5e9tjn0%bQ%xEH*^$iZ`y^C- zUx6zB38?Y(@@E|}6 zal9Aq1OEv!MN1FDec@l=?r`6Yz8?p|d4vy#>fa)W>n>dmS!zmehq&Obee7(@Zo1pCMawz{?gVJ9Us@>N?+0RYzK=^K``tCRR*Wh7<{|ib# zyI=0Z^Nq`3g8apBKD-*LJ+FbP=Uq_aaj%6x16AH5Q1kf*Q2qEhRJz|l>3g3me0>X` z^tT*JA6LL-@H(jU_d$*OG)&<4q0;YmC36WL2Nm7`kAPE9dVB*s9=;Qv3_l0ezdu;~ z0ay9)IvPqo1f{RbpytIW)I91!`M+ltLFxH-Q2n0wa-TkdDt9SVIcFO;K#l*EQ0co+?Y#wR-rWI@gda41 z2}(adhV$XvvcIoh2oEQ`37!P&Q0=<|Ch)^h<$oQ@ulxY2opVP0xE}=-USr|Q;R^}B z8ZL!*LzVw1RQW%H8t22u{5)R_rKd}v?51YC8ESssZQ;*b_(`bp=TyAEIRUEQo1w;S z3`);6C_CB-Rql;YdVCjD{U3yj;6v~z_*1BI=2X4?91ay;WIP>8pXb9Dz$#QdH$e6O zHsd`O|0$?){{yQ2-$Ug;WZbv=WOy{;tDxHXD!324#rQTTy}TRBzV3$_w|{{Nd>ktO z@8Gd;{ubY^bD+lWN(*VFH=ID81Iy`MLJ8>-xAp!~tU6JEc^K&2moD(@<|H|#?7 z>u;g-@J=W@d;lu{qfqVssmcEY)y_j|z8$ASmAe^gJSO3ua3@r|UJYfxw?n1-0Ms}< z43C4~fYRe1q0$|`)!XL))ciQtxDhJ;rEm^x!M)%spxSp6l-_QKs{cVKJAVi&-#4N9 z{SzpAdCt||za0h>!Ykl1cm-6u-w36b_gefzZ~@^bq1wG?-G>LD`ZWyIudPt=JK@Rj zZs_WVYUfX&`t?VX&zxoH$v5O zCse;b4psjXa4CGwluvguRKM0kjZ+gU{oCM)@IedzCtOH)-ZfrtCqu=b4^M+FsBzo{ zHIAQ!8t2DN{!=)Y@N-)}|2(LAkA_OO8XgEQf&0N4ls>mZ_2)LI@;?XVH2}f4^k$&p?&CPsg`+0h~v80Lrdc!UNzC zJPD4#li~GHdiW?j13m>c{tLU_?pHyL(*;od+XU60vW0iRJqX_d_l0kSs_z}}VEA76 zJopJHy*vWdjvv8A@OSV8m~8XuUJRA*WpIDkHu;TkZ^Cy#>HBUdKmQRZy*>)n-~WV~ zXTO5#$HCY7`M4OWox@Oee=*z*jvB|I+O-v`p6j6O|0XCs-);N?l>Phy%5Tlz?#n+D zsy$ahjoT}s^51U!2vmQ+1~q=agBtfEcKCc}K=tD?D1Fu8q43ovzXKjZ_+F@S_$-tj zz6PcD@0;#XWmYq{wS#M06Ywy4G)JGLzOcHrS}`4^nSa^-v`yMe}?MMmyJJ$ z3E@4i^YtGGWhW=Y-Qig#KMzXJ8=>^S8A|_`8LLqJxdy7g*Td3r^>VAVGC8k2c6HKe zCY4%ytTt7zHLC4mRK3>j)EZj`#>$=QmS(Hgn_{Zf+*%#$%#xy2Z8y8Ev1*)T>5^rq zOl?obnvG7GdRwKX%a$+62~ImDA3puG<+=D(qwP+sJl08$J7)Q^rAz5ew^pxEQcuKC zt6Hgb+Px8L8l75aN3Z<+a=l({^@-RxKHjf_&CRh|xn5c|HdbwPs+D9Ey>4kWyNya| zRi%=wt<|gUj|;2U1|~!Fyj2_RcAB)9M8qX)wvj&#t@oWr@wG+RllI@#P-%~^$7n8oxlihP1THjz)z&m>5J zm|?1P>z!&lIezK#lTIkD+S=@Ps;#8kNTzqyr*};{71isp0?C8GY0v*@s~TRI+{6gKg|s_>A_g1 zHlCDQ9nG6-y46w;qD?ArQ)Q@$saG*|{n2dKoGO`$EEBEjwpv>abw;r;UoVl>mYko~lU8}WlP{-T-d3#?L}N6ki{TZ--O%#> zDcTNXv)l<2mILP-RG^DbCvH5m3sHlXcGlVK^Yod=KEh_O1+uwof^61$ft#<{pUwbW zdsEAFk=6?{EH85NHnyoX+nul0-e)bk#SgE=z1FqoT3ap41y_=FlVv91THF=x4Y@W( z{6|}d$mXmbi-@WVY0U=n>4GihrDl^oLbs#vzQ^jx+h{&Ru+_XY*ldv2yR}NRSzg<0 zO_tWSs&uhiuMfDjB#I9E*9%tEN*C-HZE+X3u7WMq@NX@Rgjd$O#=umy)kdr98kO3% zTBV!*QD%wr{wzcxVN#4st?O6=Tb-oVz|}{(&B>i=bCNK-{9xrCL**NWJj7_wfjb^u9T92>qVrkN1=#ep- zsi`2Ft3ec5h+RZrw#+Ui+dR>;@KX@w|rTWK(JT&XB?T|rcAHRJ9NV>Taiq1aQ&pzAtQrj{N4 zh^)g_w%C=YsrsuY@&3$@MH5j^&1*^yj-*_gXjp(id7 z{FM^%xARl_yWpR^$R8(NzSJKnCfb%LSoh`@ZcKK#4ESFao)E zeWm#DgiDn6gfiJ`m?n?IxrC|pr%CgYeB#swvebD|F1aZ)YIR;xOzaoiv}n`6WzQwf z4@Xo%--tq1y9LN}8CIBnHHCqV>L`eErDsFm)-XgtU)`Xj1%uE%TwiIFrC=_WrB@nd zDH@aI=_AfEX;?zq!VrkJ(qot?XZ*x1@qZq(ZT zMCJoKT_9bNhs*4tbBBi&C6hTTO+#jgS=dZ16__=}VVO`G&KpA{_7;!|!hoiNY}i7} zGD(`KFp4`u(xN=gP#CQ=Ls6b)C=OMcqbGta)mE)p5!eIbj&Xs*6HSI{cw$GJF=fZ+ zw}->^a-+end$>8(<>ojx(NtFGf-EN_FEloeDz?hUwcE8(ob_0IFC*g`mO~HMy{owB z8Dlq^6UOd47vcA#Ig!~)zJS!T=aLRaY%?G&!e&4m_Kmg-#rCFRTe?D1vR1P4>e4YQ*c}tH4Ua{{ z`<)<4H#Azm!?jdTT}xOf#6qHL>^2D6<`D#|uGLFD#1A&_o!OyKO& z8v_<^fB5}QE);Kfh%l8q<}{^&K=6Fu_uzN#lCI!*MAi&Y%AZ%1~674pqwKQ3Du>Fmdep3QzNQ9t`}QJMYtV9tKL zC}%%TRP0YWSazDQ&iGKQ{7vp+aZ{CAxa#F5qubyf-+d*i4h{~MHdVJUTy}50$$zyO z4;LaecOg=k&G}$vctv@3a4p27I*ljnOlj1@_!HFZ)3+yW&nOg9*kBZ;*_ae#vY{!& zq$8A1xW9d~^cU;fy^hMl1{NoDt_U^7aMV@4*bY;sMig>*BYdiXfEnbU>)PdKw| zu1=NltGSQhe6s6IuqmCKEUP(|ptlqK)Ae?#f4V*$EF|nC1s`wE4>o5e)Zr_r|JJZM z{WE;B@)H03VRLs>D^zKu+}cv*Q&P85)3=IJ7}NBR%!7rf*n_3AzSFihb}%cK?#{fS zOLO+w(WP-VZL@GTZ8KRmZBtn~ZG)tpw#ue$8qwq7N2;yK)ZA8QUzA3w+xhZWZ;oAE z8kykZI~!4st^AR@L(WHy>l!~Vy0+P>Ff(b89s!g_cma_()sB@e+O&@UtuI~F;LC5T z%^9uCs}qu5G=*hq8-9`dE*hQDf}~)nJA%AmnW?;JiHfK<%Y2vAH{Oo=7avD@BK^6f zM{JI%x3Ki+)sqF+)F0OLR}pFzBU=c>TbeiNah%+DbxuE-oI) zih_2@NxUYqKTRAo;UX*$qQa@o$ECj81#{I~!157t3JK{Hu&9DcT#CFbP3T>$Z+p;` zMW*U;`9sJeGtcky_E?U1%1rjx%Kx}-YVuIc?oQo4lQaJ6(v zm?xJFOqTfHK*j%8*T^f{rOTS#k?v?U(R>Mi^OdXGEKPJeQ|%Rt7hfAn9Axq=4riNz zb(MjOnOv+KD-zvM%|%bmR%c*CdrPe{a9(#ydtjuwBAGk9ab$qUWv+DtdJ3>2S+-=^ zsRK(+9awf+vhMe; z5xzGKj8w~$E0VRuO~1d))T?w8Uhb4D#ZD-Z-{ewds3W)d38n;nto;r>pX_XL?)*Pw<^NhywM3Zwv$TuNQd17G;^< zwQYJ=gT0xaKc*$&e;bXa_9K~$QLJ|3FkfZ2Rm)wwDvo1p;Ih0`&YyhN-4#8FjOt3q zFD`=@chmQ<1cySJ-K5=};;w3vWk9BsxjY^PT4_Cra+b2F*s0l*rv~`fm99RfcDTx4 z75p_XD%oSO>(ShZhKLPF5Jw~Aqamt^Z{=g(@dFz-=$qV{B z^YGj-^B3+b%c@4B%llcq@-*kC#`4UPH+?O>%Cva3=t_+=>B6iU?S$77_|NHGoWy*V zcDuUM=W>bq>UoyzR%378Fa*9W{p+43b2dEvEARJCbl90FmTzxJ@y70zsAK;}q8IX5 zkWtYa(D);T{J36URGrRKy^5l;{x3%LQaC&l zC0B8JhsR`YJCT;COzWc>)QGY_fK2aF-IIK-(<0#R0I>;PN`?j~tvjkr@8XR@Pa)I0 zFg|w;SnlG96TdR^m%S{d@P)h^m?FdTfis_T<0n$qjTcIm}58!fsgOsir?r0JYgrg!mx zHM~=H!x>5ciifLO1f5N+PS3?z(=nAu%;KJu`=wVzzCT%6$g7$5v(n_vvQYjhYpS{` z1H3-n2UgNjvjK{R1C`|$_+T0pd*hmW-iq6I@9Xe8+2lljS`RD&o6Yt)kvQxKG7+vt z`V@;AAzGqdiTO6i=5f99qF_XBOv+ z6SxhT8aGpd{6-~bhWyT>ik_IWUF6j|=Q50PdY6Aki*iluj2yEbuQjMfXCnXi1+w}O z$i1wk(COD@Ly&pKcx2ef+2;>eVm*$Fvj;!Nb0c$vgZ-lOLe{6wtgbJv4X+y8#AuHkJLPCKe;?uK`u|4^SAvH z*qNmmmHAr=$3=>{X*8#EKk%>c4mDRES@sQ zdyW~C20L8JGpV zo8VA*yUfkVmU4?7T~wuC5h8(K4(tT!zcRREXV%KT9gUq=+4p@`XP>57uZ@lSPqzH} znYq2N@P>pzaq@}1M-LShQn(|BoN}hFXIpQ5)lqt_aQT(i)sS0aeVw+pxmkYs!0ukGiz`7C5mtbZ)t2TgZ+7^|WGLJ2W-^!7KUQb&d|TqY`OS5AtZ?

)vG@UXUf}SA|XTC;erXJ@w1g^ww0#!O^OCRjhU$woe{ND z3<<4M1?fz=Ib5YD=TLVh31w=Hk;&j#`kD1CakH0@ntq=WLfo^J5bd7(mXgIsC0*F; zdF##|dir&?1lJce-KP__!gbs*_b%?*Wl_@}zNepZ^sD>aoA+UV0a;npj9QRE69KmrWc-;tw0C+v?lG zOgO{&K2#pHG=IKN6U=afyQ5bJM`%Q1!p7fTt z_<75Jh>Grftr11rb=8N}!+z}0;WM%SpkQ-wHp zI({?W&GdNB>=xl!FKLSHh=vp&Rg6`?wsreN*yT-cj=b>}%FD*RT|B~OQPK2eQuIlf zEr<=;3&I`u*I7>X&!!im*48`+bEU zo6MihIv>K(wBXZbxvtD=&0kn%ay>QkA2j3kM5Z4qouSi_O}By~B3ZUfnVqNB*yq<7 z8}#JHy|@|UD5ihd%U^;mn&1u#569GHm!V&4$yAgkZ2H=9RJ`GfB6KSjUEJr&(ly8S ztPGzNpUmDVDnYddM_rutife`DWhHrW+G*R%+H|tckIlG^V=%1oo)7aMB;XW0oC;KX* zT50q2E*&Iyx~D~v5)%G#voTuNPPWxrTli4JF3Qqs@1J{cnqBPaK%2`H^7!%#J+(od zrK-N!G6nU^$%iFAo^u)7XIbv~RY~~V&LuSeY^DFF&)Da zk}>_RTTcS~qe}m=%30cEkj0ch@XTGg{eSMuO4r^PS@GGbt*@WBmK|vJ%M&h6`b5)s{{^^DTw5m;jI@afm)v7VJ?rfGDGLAW>GVCk z5cI!D;km~2_3Z7iDsKK6&2$;kkszBieIhf9&nC&UBuh_0y;a4f+Vf+Ln5P{z<}(aOooV(vz(^w^o>2&vt#-HP#-4@}LX{dvQ}Pq@Y9- z7M~n?alHP8?1hITmN2L^EiV0#XcDj3G}^mgnB?LmYmw=%7&>jIBX~nC} zrh^;w2{dgtkB$v;+6ao`ppBpn=qQc29h=2=L`B8S_xElwc{rZq`Bc@dTlKGhRow*G z@?Fr=p9Oh8ifZ$O#eY|WEUP;{9;upTg(tKaPq72_L`=tCI1W4Fa^rodS06F%#5n3N z7~jAy)GwI&b?j_eUMtGwJjlRkIuu|qPRI7R0M%ZK9dI>jq7A43wqg`EpxO^316wCh z&o3Ik!LHQXvI>e;0wyxQHIjlRDn?DP6l3si)Bu|>6#o;$u>sYu5jEkfru|)1pcl;Z zYsS{3OZ_^b0!u_?A`fGj-zqd6+}MtKJ!;~6u{CZ&1-Kb|;x<$NE4HEDgdzAErr_VP zFJ8k;?3Ls!s1TJ|H-=#)dbN_(6qLdZsDXB1Hts@Ae8zYl)&Fx;hOVJj7Mkn~7>{aC zMXhuQx^RlAdoZ2)Z%_;IC2RjFoH89gHU5OkKs3wIfXS%T=VK=vjXJEePyyCsEUq!y zs1-J#w(c*e%r>FsdmS~-`zhpK9WR-V-9>RL9UXC#7+y_H@*t%0)f@m2oC2^=?#v^{A9@ zMD>3b+hQYXrH4^_|2Ari&zQRR0)_T8e2MMwYt)O^F#?-WD~e#_^c_e*)dwTz%Nmcm z=ar~{*PG{$8+V~r+K3wO71TT@k&Jk)GZYm0MO4QhOoz4^PQ>A;7h_F58QW0LL`|H7 z+SBo!MFgG`Z81?t4w_}YKxvj|NVcFf--QzJh+HT^>^xkQGFcKP={!!aV#qE zX{KI+3bY!vMR%hz^APH`JZb6&kqc&>K(8kHHwC3Qysz^@H)9rRpaRs2rl3|l7nS;Q z)Bb>QBWlHuqgJ>Zd*C5cKZ{&2>k?`!qB7ZktspDYd11J53TmQK)PQxU)UHDX`Y7sK zz7xaoAco>GRG{ye`unIrK1H30>zII%Sx&uQ7W>Zux9+4tkuFC~xY2ZY%IHG{dK@+2 zIqZO!F${l1WvYEYXJv7ytr&pnHxw11U1eKiy?Uy~(M2tK6&FzNU&W64`QJ<-iiVE;od-#% z3HxJ59A})1ov2r!`rn7T*PBr*ZZIA}1@HkXplhft{0S9s@Bn9?2yD;%R!<7in2Ji_ zU{tE6qXw$M7~F`O=xI~{2T>V2fePefRDeHV42I`A<0PW`4Kq$fovm{8YGMxsrDi=U zHBX>cz6&)`qiH{m%FH?Q{3~P7KbkJhkEg(X}^HV#C25v=t0g|=!a^bi2A~np(gqd)E90GDx-%{XY7o5{+aRmAo8z? z!t2!#nq^RAH^=X6V>lU;o9P#J1B z)LCdOYK!_I?|ZFL6qNEQsDT!ldY#k3dH}UWkD*?C&a^jTXX?ky^AC+zQ2m-wDUKTE zOq`Bd@hDTDkFmP{D=FyIZbIGHt*B4&PSm}99$ok+)X$1{FdeU>Ch9fZc`p~W;-RSV zMx!!u7iyfvsGkW{sLZXzVBP=q6x8uiR0f{K9@uE=@1j!w1$M)T5zYX;QT+!SC!xkE zMg>xbO8tG<6*r;(Y@q^t8T~*1-=v_Ge2Plx_o!1JIns$d7WJD?qA>-vB^jv0I2bkY z?WhT+qYmG4?2hYD<35LKKZFYC^hk66FPjG;1`c+)vu%aokpFle;Ti#GV&8@3&KWuoq@WIa$e|*dLbW`+A*l>H`laRqd%plzRA>g zpa$H73iJ?a#V1jLevS(8dsJpy-|l2C#7jY`jY2)>j9Ni=V>&9J0jL2-;ocz2nvFUm zZSQmrWfJzGJ{~pUO5+ApVB3rhsP_({GVDD=L3{FVW9VpSq9oK_4mM6fosp%eQ@qBs zKZpwKDOAP|peB3+d*WHt7JY|0ydh(p45c9Bd95K7^sSzRS?IwWd=}f|d#DV2h}w#O zp(eD(IsgX$kL-mw#EYr3NP_eE{N9jJh&p}u@Ys6D?ImFeH1SEuzg3WM+i z%){sjPR9wTl$RRsLG^#sJl~B9v{Ka4^R z4T@|HYJx4O_I((N2T_5%irV{gs6+b|`VZA4r=EfxXdjMxe}ZYBg&Ma8lW;xiZ0w!H z{;T6*)A0?|1Q$>#{oZs8o9qP89o3$V3iuAxzza}^unzV926W+0)R}5R_4^c+nIBR8 z+IS0{0J<5|P$}w<+T)SNvF3RpD%JB)ds>IOW{;pU^hfN2M==AhqB7O>E+@bo<7m`E zymKh1!*bNb>rj!|n1*{$TW|_>3qC}x;1leKmrea=RKV@0IKRS0Vj}e%)CXr8D&Sg7 zz)i@{2Cub`f)34_=D}B}7dlRLCdfhsFakBfI8?w>Onn*ZI(kffB}P#9Vq5$zYKtF7 z1^zVZ%rsyR-T&82!$nkTn^Ak!Wty|cnW*+L=)#4lm8?YtvI8~20b>)Y{|VH!{R9>G z6^y}eQ5g=KP9V&0^`f9u4##wyjQ#O$jKx2oo*zM_^t5TehFVeB3}-K6P^UW$^#K}h zEW}RKryI*qD^5jaCLi^D94g>q z)S0P5rF=E^!bebBu^+X7L$k@hB0NEZ2KoRs&?RG=InLqgjvB~?QJ9PBKNdCNY|~zf z8gCWG;Re(G3@SqhPz!t&wcxW}3fhZrF&^XQI)8WDAG=atgu2hGQGxA77ybSItTs={t~zws&5bv=k0 z@I2~6(~MeS#scR|fYv~w&Zry ziwjVxUW?sv7ivq6nELyuiN8Yy6kX)(bvmj(6m{zF!USA`U76q7KtTgNi;CrgN3MSTfRnfeV(p`KjsWM~}f`2rk>523cQ3H7Bsi`wferafq> z^JVOc%CI+?f+o&Gb)1XZib_<9*P>SX2x>)pP!k+Q_5T31;wz}L(RP`W!FW`^JX9cs zsP{`z8Sx_XdaZ2~w9>=o!9~=7H!u`qDxB{@0=B1~i8>3p*at_WR$hzw*nryei`WjE zF$CK!cNWwU6*NA6U|1Ys0g*PdQ>KUg9>05rePyy;76!_!IjQ? zJy3@*8`WNb!8ikz;f0u>`(Hyrsoabm@Ojkr+K>Lzi!SPyQGrHOIj21aTT^!#lTm@C zqbABno%&Iz3@^mqxDNHb_%nK46i!n}z;94{6jSYV$V3e=8MV?1)LD5PbxU4Ez4sn! z0oTxO)ZN<1q^7qZU$)F5HBg_m8z>okR8#4Q*&RW*+<(Dz#@(DgSQ_!;g(u zP%HTXby!0@c6?%{uRL*eQ0PSW@?v+bXGwXr{bjFOdri`gz@~)csdlT}X#2_Jt#(1m z2zy`3EMHt|W9z^^?`2H&4evcM$lliHcwl>Z-wXEq%=v*$uVgNV! zN3PW}y{n*h@sjctZqF@kb#=An#r1W!wAvAAom~MhR@WC-lzW!AOR@r9wXcro88~&* zuo!Q^JD#EyxAu2=7BfP9#V=dyiOk?UVhR z*{(+WNJ+H)&)h+QL-ZWD(mpnDkG*lwRy!{*Ht^Aiyd-;N-m`&CuKd}pS%GiI;C1Z+ z+tUl~@t=p21zUZOj(VV#-TThK_k5@C3=WEK3CNmJ?p_%f;MLJju#isn-Z9N>v-1b% z=J;M1J3q)?FfQ6YS=Y`tdEC~Z7`Lmks(yvLqQdPeDp_*0!J~wHJN`NQ?Ydz5wVtojX}QgGjoGNTH0@$ z)y4PJtkyyH{@E)7`)AKtZ8yy+_EpdOs+C=`u-72#<^gq;1VrYs3d|YxsJ)_PMytRd zz1_S#F5W4!5SRb39&K=E-F!T(GPS*V$*!r)^0st!SJt}AI4QLO-TgyU6jhd&mj9yF zQ&qpb+{3ujIGnDM{}+eeR0r45r(H{{>T7QXK)cTB&1pMVdaMad$`H4txVb7mwCLt` zcoP!UrwzPR{J z`)El?$ju-s?M(NR_S?%s?1<8T*b&Qu?G9y6+pm}PaAmswua9+mRb`#Kvfh=Nl$Vp8 zJ;YU5ROYtBmYk0-Bx5VeJ@rN0Gk0y^p4dMwdC-5b4=qg%4iC(deW`Y*ecIzchxT#L z-|VmJVtps;uC}th(?jjARvxfFx;wPx*!cF}Js~KqptQ7{&&DlNSTm~1X}BeM-B%yA Pe_A~<$Yl?`XYT(3f!mpZ diff --git a/wp-content/themes/ccat/languages/fr_CA.po b/wp-content/themes/ccat/languages/fr_CA.po index 7d6dcf2..5228b42 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-24 19:52+0000\n" +"PO-Revision-Date: 2025-09-24 20:11+0000\n" "Last-Translator: \n" "Language-Team: Français du Canada\n" "Language: fr_CA\n" @@ -19,6 +19,10 @@ msgstr "" msgid "← Back to disciplines" msgstr "← Retour aux disciplines" +#: includes/taxonomies/listing-category.php:32 +msgid "← Back to listing-categories" +msgstr "← Retour à la liste des catégories" + #: includes/taxonomies/project-category.php:32 msgid "← Back to project-categories" msgstr "← Retour aux catégories de projet" @@ -76,7 +80,7 @@ msgid "Add File" msgstr "Ajouter un fichier" #: includes/cpt/representation.php:13 includes/cpt/contributor.php:13 -#: includes/cpt/listing.php:13 includes/cpt/membership.php:13 +#: includes/cpt/listing.php:13 includes/cpt/profile.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 @@ -99,9 +103,9 @@ msgstr "Ajouter une annonce" msgid "Add New Location" msgstr "Ajouter un lieu" -#: includes/cpt/membership.php:14 -msgid "Add New Membership" -msgstr "Ajouter une nouvelle adhésion" +#: includes/cpt/profile.php:14 +msgid "Add New Profile" +msgstr "Ajouter un nouveau profil" #: includes/cpt/project.php:14 msgid "Add New Project" @@ -123,6 +127,10 @@ msgstr "Ajouter un modèle" msgid "Add or remove disciplines" msgstr "Ajouter ou supprimer des disciplines" +#: includes/taxonomies/listing-category.php:24 +msgid "Add or remove listing-categories" +msgstr "Ajouter ou supprimer des catégories d'annonce" + #: includes/taxonomies/project-category.php:24 msgid "Add or remove project-categories" msgstr "Ajouter ou supprimer des catégories de projet" @@ -155,6 +163,10 @@ msgstr "Toutes les disciplines" msgid "All Events" msgstr "Tous les événements" +#: includes/taxonomies/listing-category.php:15 +msgid "All listing-categories" +msgstr "Toutes les catégories d'annonce" + #: includes/cpt/listing.php:23 msgid "All Listings" msgstr "Toutes les annonces" @@ -163,9 +175,9 @@ msgstr "Toutes les annonces" msgid "All Locations" msgstr "Tous les lieux" -#: includes/cpt/membership.php:23 -msgid "All Memberships" -msgstr "Toutes les adhésions" +#: includes/cpt/profile.php:23 +msgid "All Profiles" +msgstr "Tous les profils" #: includes/taxonomies/project-category.php:15 msgid "All project-categories" @@ -227,6 +239,10 @@ 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" @@ -235,6 +251,10 @@ msgstr "CCAT" msgid "Choose from the most used disciplines" msgstr "Choisir parmis les disciplines les plus utilisées" +#: includes/taxonomies/listing-category.php:25 +msgid "Choose from the most used listing-categories" +msgstr "Choisissez parmi les catégories d'annonce les plus utilisées" + #: includes/taxonomies/project-category.php:25 msgid "Choose from the most used project-categories" msgstr "Choisir parmi les catégories de projets les plus utilisées" @@ -243,31 +263,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:26 +#: acf-json/acf-translations.php:27 msgid "Collectif artistique" msgstr "Collectif artistique" -#: acf-json/acf-translations.php:27 -msgid "Collective profile" -msgstr "" - #: acf-json/acf-translations.php:28 +msgid "Collective profile" +msgstr "Profil collectif" + +#: acf-json/acf-translations.php:29 msgid "Complete" msgstr "Complet" -#: acf-json/acf-translations.php:29 +#: acf-json/acf-translations.php:30 msgid "Compositeur" msgstr "Compositeur" -#: acf-json/acf-translations.php:30 +#: acf-json/acf-translations.php:31 msgid "Configuration" msgstr "Configuration" -#: acf-json/acf-translations.php:31 +#: acf-json/acf-translations.php:32 msgid "Configuration name" msgstr "Nom de la configuration" -#: acf-json/acf-translations.php:32 +#: acf-json/acf-translations.php:33 msgid "Confirmed" msgstr "Confirmé" @@ -275,27 +295,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:33 +#: acf-json/acf-translations.php:34 msgid "Contact" msgstr "Contact" -#: acf-json/acf-translations.php:34 +#: acf-json/acf-translations.php:35 msgid "Content" msgstr "Contenu" -#: acf-json/acf-translations.php:35 +#: acf-json/acf-translations.php:36 msgid "Content width" msgstr "Largeur du contenu" -#: acf-json/acf-translations.php:36 +#: acf-json/acf-translations.php:37 msgid "Contribution type(s)" msgstr "Type(s) de contribution" -#: acf-json/acf-translations.php:37 +#: acf-json/acf-translations.php:38 msgid "Contribution(s)" msgstr "Contribution(s)" -#: acf-json/acf-translations.php:38 includes/cpt/contributor.php:12 +#: acf-json/acf-translations.php:39 includes/cpt/contributor.php:12 msgid "Contributor" msgstr "Contributeur" @@ -336,7 +356,7 @@ msgstr "Contributeur prévu." msgid "Contributor submitted." msgstr "Contributeur soumis." -#: acf-json/acf-translations.php:39 +#: acf-json/acf-translations.php:40 msgid "Contributor type" msgstr "Type de configuration" @@ -357,47 +377,47 @@ msgstr "Liste des contributeurs" msgid "Contributors list navigation" msgstr "Liste des contributeurs et navigation" -#: acf-json/acf-translations.php:40 +#: acf-json/acf-translations.php:41 msgid "Credits" msgstr "Crédits" #: includes/cpt/representation.php:74 includes/cpt/contributor.php:74 -#: includes/cpt/listing.php:70 includes/cpt/membership.php:78 -#: includes/cpt/project.php:77 includes/cpt/location.php:78 +#: includes/cpt/listing.php:77 includes/cpt/profile.php:78 +#: includes/cpt/project.php:77 includes/cpt/location.php:77 #: 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/listing.php:69 includes/cpt/membership.php:77 -#: includes/cpt/project.php:76 includes/cpt/location.php:77 +#: includes/cpt/listing.php:76 includes/cpt/profile.php:77 +#: includes/cpt/project.php:76 includes/cpt/location.php:76 #: 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:41 +#: acf-json/acf-translations.php:42 msgid "Date / time" msgstr "Date / heure" -#: acf-json/acf-translations.php:42 +#: acf-json/acf-translations.php:43 msgid "Date range" msgstr "Plage de dates" -#: acf-json/acf-translations.php:43 +#: acf-json/acf-translations.php:44 msgid "Day(s)" msgstr "Journée(s)" -#: acf-json/acf-translations.php:44 +#: acf-json/acf-translations.php:45 msgid "Default background" msgstr "Arrière-plan par défaut" -#: acf-json/acf-translations.php:45 +#: acf-json/acf-translations.php:46 msgid "Default container" msgstr "Conteneur par défaut" -#: acf-json/acf-translations.php:46 +#: acf-json/acf-translations.php:47 msgid "Description" msgstr "Description" @@ -425,7 +445,7 @@ msgstr "Discipline non mis à jour." msgid "Discipline updated." msgstr "Discipline mise à jour." -#: acf-json/acf-translations.php:47 +#: acf-json/acf-translations.php:48 msgid "Discipline(s)" msgstr "Discipline(s)" @@ -445,11 +465,11 @@ msgstr "Liste des disciplines" msgid "Disciplines list navigation" msgstr "Liste de navigation des disciplines" -#: acf-json/acf-translations.php:48 +#: acf-json/acf-translations.php:49 msgid "Document type" msgstr "Type de document" -#: acf-json/acf-translations.php:49 +#: acf-json/acf-translations.php:50 msgid "Document(s)" msgstr "Document(s)" @@ -469,13 +489,17 @@ msgstr "Modifier l'événement" msgid "Edit Listing" msgstr "Modifier l'annonce" +#: includes/taxonomies/listing-category.php:18 +msgid "Edit listing-category" +msgstr "Modifier la catégorie d'annonce" + #: includes/cpt/location.php:16 msgid "Edit Location" msgstr "Modifier le lieu" -#: includes/cpt/membership.php:16 -msgid "Edit Membership" -msgstr "Modifier l'adhésion" +#: includes/cpt/profile.php:16 +msgid "Edit Profile" +msgstr "Modifier le profil" #: includes/cpt/project.php:16 msgid "Edit Project" @@ -501,39 +525,39 @@ msgstr "Modifier la catégorie de ressources" msgid "Edit Template" msgstr "Modifier le modèle" -#: acf-json/acf-translations.php:50 +#: acf-json/acf-translations.php:51 msgid "Elevated background" msgstr "Arrière-plan élevé" -#: acf-json/acf-translations.php:51 +#: acf-json/acf-translations.php:52 msgid "Email" msgstr "Courriel" -#: acf-json/acf-translations.php:52 +#: acf-json/acf-translations.php:53 msgid "Email preferences" msgstr "Préférences courriel" -#: acf-json/acf-translations.php:53 +#: acf-json/acf-translations.php:54 msgid "End date" msgstr "Date de fin" -#: acf-json/acf-translations.php:54 +#: acf-json/acf-translations.php:55 msgid "End month" msgstr "Mois de fin" -#: acf-json/acf-translations.php:55 +#: acf-json/acf-translations.php:56 msgid "End time" msgstr "Heure de fin" -#: acf-json/acf-translations.php:56 +#: acf-json/acf-translations.php:57 msgid "Enfants" msgstr "Enfants" -#: acf-json/acf-translations.php:57 +#: acf-json/acf-translations.php:58 msgid "Entity" msgstr "Entité" -#: acf-json/acf-translations.php:58 includes/cpt/event.php:12 +#: acf-json/acf-translations.php:59 includes/cpt/event.php:12 msgid "Event" msgstr "Événement" @@ -574,10 +598,14 @@ msgstr "Événement prévu." msgid "Event submitted." msgstr "Événement soumis." -#: acf-json/acf-translations.php:59 +#: acf-json/acf-translations.php:60 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." @@ -595,31 +623,31 @@ msgstr "Liste des événements" msgid "Events list navigation" msgstr "Navigation de la liste des événements" -#: acf-json/acf-translations.php:60 +#: acf-json/acf-translations.php:62 msgid "Exposition" msgstr "Exposition" -#: acf-json/acf-translations.php:61 +#: acf-json/acf-translations.php:63 msgid "Failed" msgstr "Échec" -#: acf-json/acf-translations.php:62 +#: acf-json/acf-translations.php:64 msgid "Familial" msgstr "Familial" #: includes/cpt/representation.php:28 includes/cpt/contributor.php:28 -#: includes/cpt/listing.php:28 includes/cpt/membership.php:28 +#: includes/cpt/listing.php:28 includes/cpt/profile.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:63 +#: acf-json/acf-translations.php:65 msgid "Festival" msgstr "Festival" -#: acf-json/acf-translations.php:64 +#: acf-json/acf-translations.php:66 msgid "File" msgstr "Fichier" @@ -639,9 +667,9 @@ msgstr "Filtrer la liste des annonces" msgid "Filter Locations list" msgstr "Filtrer la liste des lieux" -#: includes/cpt/membership.php:32 -msgid "Filter Memberships list" -msgstr "Filtrer la liste des adhésions" +#: includes/cpt/profile.php:32 +msgid "Filter Profiles list" +msgstr "Filtrer la liste des profils" #: includes/cpt/project.php:32 msgid "Filter Projects list" @@ -659,27 +687,27 @@ msgstr "Filtrer la liste des ressources" msgid "Filter Templates list" msgstr "Liste des modèles de filtres" -#: acf-json/acf-translations.php:65 +#: acf-json/acf-translations.php:67 msgid "Fluid container" msgstr "Conteneur fluide" -#: acf-json/acf-translations.php:66 +#: acf-json/acf-translations.php:68 msgid "Form" msgstr "Formulaire" -#: acf-json/acf-translations.php:67 +#: acf-json/acf-translations.php:69 msgid "Free" msgstr "Gratuit" -#: acf-json/acf-translations.php:68 +#: acf-json/acf-translations.php:70 msgid "Full-width container" msgstr "Conteneur pleine largeur" -#: acf-json/acf-translations.php:69 +#: acf-json/acf-translations.php:71 msgid "Gallery" msgstr "Galerie" -#: acf-json/acf-translations.php:70 +#: acf-json/acf-translations.php:72 msgid "H:i" msgstr "H:i" @@ -687,33 +715,33 @@ msgstr "H:i" msgid "https://websimple.com/" msgstr "https://websimple.com/" -#: acf-json/acf-translations.php:71 +#: acf-json/acf-translations.php:73 msgid "Hybrid" msgstr "Hybride" -#: acf-json/acf-translations.php:72 +#: acf-json/acf-translations.php:74 msgid "Identifier(s)" msgstr "Identifiant(s)" -#: acf-json/acf-translations.php:73 +#: acf-json/acf-translations.php:75 msgid "Image" msgstr "Image" -#: acf-json/acf-translations.php:74 +#: acf-json/acf-translations.php:76 msgid "In-person" msgstr "En personne" -#: acf-json/acf-translations.php:75 +#: acf-json/acf-translations.php:77 msgid "Individu" msgstr "Individu" -#: acf-json/acf-translations.php:76 +#: acf-json/acf-translations.php:78 msgid "Individual day(s)" msgstr "Journée(s) individuelle(s)" -#: acf-json/acf-translations.php:77 +#: acf-json/acf-translations.php:79 msgid "Individual profile" -msgstr "" +msgstr "Profil individuel" #: includes/cpt/contributor.php:26 msgid "Insert into Contributor" @@ -731,9 +759,9 @@ msgstr "Insérer dans l'annonce" msgid "Insert into Location" msgstr "Insérer dans le lieu" -#: includes/cpt/membership.php:26 -msgid "Insert into Membership" -msgstr "Insérer dans l'adhésion" +#: includes/cpt/profile.php:26 +msgid "Insert into Profile" +msgstr "Insérer dans le profil" #: includes/cpt/project.php:26 msgid "Insert into Project" @@ -751,23 +779,23 @@ msgstr "Insérer dans la ressource" msgid "Insert into Template" msgstr "Insérer dans le modèle" -#: acf-json/acf-translations.php:78 +#: acf-json/acf-translations.php:80 msgid "Institution" msgstr "Institution" -#: acf-json/acf-translations.php:79 +#: acf-json/acf-translations.php:81 msgid "Institution profile" -msgstr "" +msgstr "Profil d'institution" -#: acf-json/acf-translations.php:80 +#: acf-json/acf-translations.php:82 msgid "Interprète" msgstr "Interprète" -#: acf-json/acf-translations.php:81 +#: acf-json/acf-translations.php:83 msgid "Is asynchronous" msgstr "Déroulement asynchrone" -#: acf-json/acf-translations.php:82 +#: acf-json/acf-translations.php:84 msgid "Language(s)" msgstr "Langue(s)" @@ -783,15 +811,56 @@ msgstr "Archive des annonces" msgid "Listing Attributes" msgstr "Attributs de l'annonce" +#: includes/taxonomies/listing-category.php:11 +#: includes/taxonomies/listing-category.php:28 +msgid "Listing categories" +msgstr "Catégories d'annonce" + +#: includes/taxonomies/listing-category.php:64 +msgid "Listing categories deleted." +msgstr "Catégories d'annonce supprimées." + +#: includes/taxonomies/listing-category.php:30 +msgid "Listing categories list" +msgstr "Liste des catégories d'annonce" + +#: includes/taxonomies/listing-category.php:29 +msgid "Listing categories list navigation" +msgstr "Navigation dans la liste des catégories d'annonce" + +#: includes/taxonomies/listing-category.php:12 +msgid "Listing category" +msgstr "Catégorie d'annonce" + +#: includes/taxonomies/listing-category.php:59 +msgid "Listing category added." +msgstr "Catégorie d'annonce ajoutée." + +#: includes/taxonomies/listing-category.php:60 +msgid "Listing category deleted." +msgstr "Catégorie d'annonce supprimée." + +#: includes/taxonomies/listing-category.php:62 +msgid "Listing category not added." +msgstr "Catégorie d'annonce non ajoutée." + +#: includes/taxonomies/listing-category.php:63 +msgid "Listing category not updated." +msgstr "Catégorie d'annonce non mise à jour." + +#: includes/taxonomies/listing-category.php:61 +msgid "Listing category updated." +msgstr "Catégorie d'annonce mise à jour." + #: 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 +#: includes/cpt/listing.php:35 includes/cpt/listing.php:80 msgid "Listing published." msgstr "Annoce publiée." -#: includes/cpt/listing.php:72 +#: includes/cpt/listing.php:79 #, php-format msgid "Listing restored to revision from %s" msgstr "Annonce restaurée à la révision de %s" @@ -800,7 +869,7 @@ msgstr "Annonce restaurée à la révision de %s" msgid "Listing reverted to draft." msgstr "L'annonce a été ramenée à l'état de brouillon." -#: includes/cpt/listing.php:74 +#: includes/cpt/listing.php:81 msgid "Listing saved." msgstr "Annonce sauvegardée." @@ -808,12 +877,12 @@ msgstr "Annonce sauvegardée." msgid "Listing scheduled." msgstr "Annonce prévue." -#: includes/cpt/listing.php:75 +#: includes/cpt/listing.php:82 msgid "Listing submitted." msgstr "Annonce soumise pour publication." -#: includes/cpt/listing.php:39 includes/cpt/listing.php:68 -#: includes/cpt/listing.php:71 +#: includes/cpt/listing.php:39 includes/cpt/listing.php:75 +#: includes/cpt/listing.php:78 msgid "Listing updated." msgstr "Annonce mise à jour." @@ -829,11 +898,11 @@ msgstr "Liste des annonces" msgid "Listings list navigation" msgstr "Navigation de la liste des annonces" -#: acf-json/acf-translations.php:83 +#: acf-json/acf-translations.php:85 msgid "Locality" msgstr "Lieu" -#: acf-json/acf-translations.php:84 includes/cpt/location.php:12 +#: acf-json/acf-translations.php:86 includes/cpt/location.php:12 msgid "Location" msgstr "Lieu" @@ -849,11 +918,11 @@ msgstr "Attributs de lieu" msgid "Location published privately." msgstr "Lieu publié de manière privée." -#: includes/cpt/location.php:35 includes/cpt/location.php:81 +#: includes/cpt/location.php:35 includes/cpt/location.php:80 msgid "Location published." msgstr "Lieu publié." -#: includes/cpt/location.php:80 +#: includes/cpt/location.php:79 #, php-format msgid "Location restored to revision from %s" msgstr "Le lieu a été restauré à la révision de %s" @@ -862,7 +931,7 @@ msgstr "Le lieu a été restauré à la révision de %s" msgid "Location reverted to draft." msgstr "Le lieu a été remis en brouillon." -#: includes/cpt/location.php:82 +#: includes/cpt/location.php:81 msgid "Location saved." msgstr "Lieu enregistré." @@ -870,16 +939,16 @@ msgstr "Lieu enregistré." msgid "Location scheduled." msgstr "Lieu prévu." -#: includes/cpt/location.php:83 +#: includes/cpt/location.php:82 msgid "Location submitted." msgstr "Lieu soumis." -#: acf-json/acf-translations.php:85 +#: acf-json/acf-translations.php:87 msgid "Location type" msgstr "Type de lieu" -#: includes/cpt/location.php:39 includes/cpt/location.php:76 -#: includes/cpt/location.php:79 +#: includes/cpt/location.php:39 includes/cpt/location.php:75 +#: includes/cpt/location.php:78 msgid "Location updated." msgstr "Lieu mis à jour." @@ -896,8 +965,8 @@ msgid "Locations list navigation" msgstr "Navigation de la liste des lieux" #: includes/cpt/representation.php:68 includes/cpt/contributor.php:68 -#: includes/cpt/listing.php:64 includes/cpt/membership.php:72 -#: includes/cpt/project.php:71 includes/cpt/location.php:72 +#: includes/cpt/listing.php:71 includes/cpt/profile.php:72 +#: includes/cpt/project.php:71 includes/cpt/location.php:71 #: includes/cpt/template.php:68 includes/cpt/event.php:71 #: includes/cpt/resource.php:71 msgid "M j, Y @ H:i" @@ -905,107 +974,50 @@ 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:86 +#: acf-json/acf-translations.php:89 msgid "Media type" msgstr "Type de média" -#: acf-json/acf-translations.php:87 +#: acf-json/acf-translations.php:90 msgid "Media(s)" msgstr "Média(s)" -#: includes/cpt/membership.php:12 -msgid "Membership" -msgstr "Adhésion" - -#: includes/cpt/membership.php:24 -msgid "Membership Archives" -msgstr "Archives de adhésions" - -#: includes/cpt/membership.php:25 -msgid "Membership Attributes" -msgstr "Attributs de l'adhésion" - -#: includes/cpt/membership.php:36 -msgid "Membership published privately." -msgstr "Adhésion publiée en privé." - -#: includes/cpt/membership.php:35 includes/cpt/membership.php:81 -msgid "Membership published." -msgstr "Adhésion publiée." - -#: includes/cpt/membership.php:80 -#, php-format -msgid "Membership restored to revision from %s" -msgstr "Adhésion restaurée à la révision de %s" - -#: includes/cpt/membership.php:37 -msgid "Membership reverted to draft." -msgstr "L'adhésion a été ramenée à l'état de brouillon." - -#: includes/cpt/membership.php:82 -msgid "Membership saved." -msgstr "Adhésion enregistrée." - -#: includes/cpt/membership.php:38 -msgid "Membership scheduled." -msgstr "Adhésion planifiée." - -#: includes/cpt/membership.php:83 -msgid "Membership submitted." -msgstr "Adhésion soumise." - -#: acf-json/acf-translations.php:88 -msgid "Membership type" -msgstr "Type d'adhésion" - -#: includes/cpt/membership.php:39 includes/cpt/membership.php:76 -#: includes/cpt/membership.php:79 -msgid "Membership updated." -msgstr "Adhésion mise à jour." - -#: acf-json/acf-translations.php:89 +#: acf-json/acf-translations.php:91 msgid "Membership(s)" msgstr "Adhésion(s)" -#: includes/cpt/membership.php:10 includes/cpt/membership.php:11 -msgid "Memberships" -msgstr "Adhésions" - -#: includes/cpt/membership.php:34 -msgid "Memberships list" -msgstr "Liste des adhésions" - -#: includes/cpt/membership.php:33 -msgid "Memberships list navigation" -msgstr "Liste de navigation des adhésions" - -#: acf-json/acf-translations.php:90 +#: acf-json/acf-translations.php:92 msgid "Message" msgstr "Message" -#: acf-json/acf-translations.php:91 +#: acf-json/acf-translations.php:93 msgid "Minimum price" msgstr "Prix à partir de" -#: acf-json/acf-translations.php:92 +#: acf-json/acf-translations.php:94 msgid "Moral entity" msgstr "Entité morale" #: includes/taxonomies/resource-category.php:31 #: includes/taxonomies/discipline.php:31 +#: includes/taxonomies/listing-category.php:31 #: includes/taxonomies/project-category.php:31 msgid "Most used" msgstr "Le plus utilisé" -#: acf-json/acf-translations.php:93 +#: acf-json/acf-translations.php:88 +msgid "MRC" +msgstr "MRC" + +#: acf-json/acf-translations.php:95 msgid "Multiple day(s)" msgstr "Journée(s) multiple(s)" -#: acf-json/acf-translations.php:94 +#: acf-json/acf-translations.php:96 msgid "Muted background" msgstr "Arrière-plan atténué" -#: acf-json/acf-translations.php:95 +#: acf-json/acf-translations.php:97 msgid "Name" msgstr "Nom" @@ -1025,13 +1037,18 @@ msgstr "Nouvel événement" msgid "New Listing" msgstr "Nouvelle annonce" +#: includes/taxonomies/listing-category.php:21 +#: includes/taxonomies/listing-category.php:22 +msgid "New listing-category" +msgstr "Nouvelle catégorie d'annonce" + #: includes/cpt/location.php:15 msgid "New Location" msgstr "Nouveau lieu" -#: includes/cpt/membership.php:15 -msgid "New Membership" -msgstr "Nouvelle adhésion" +#: includes/cpt/profile.php:15 +msgid "New Profile" +msgstr "Nouveau profil" #: includes/cpt/project.php:15 msgid "New Project" @@ -1083,6 +1100,14 @@ msgstr "Aucun événement trouvé" msgid "No Events found in trash" msgstr "Aucun événement trouvé dans la corbeille" +#: includes/taxonomies/listing-category.php:27 +msgid "No listing-categories" +msgstr "Aucune catégorie d'annonce" + +#: includes/taxonomies/listing-category.php:26 +msgid "No listing-categories found." +msgstr "Aucune catégorie d'annonce trouvée." + #: includes/cpt/listing.php:20 msgid "No Listings found" msgstr "Aucune annonce trouvée" @@ -1099,13 +1124,13 @@ msgstr "Aucun lieu trouvé" msgid "No Locations found in trash" msgstr "Aucun lieu trouvé dans la corbeille" -#: includes/cpt/membership.php:20 -msgid "No Memberships found" -msgstr "Aucune adhésion trouvée" +#: includes/cpt/profile.php:20 +msgid "No Profiles found" +msgstr "Aucun profil trouvé" -#: includes/cpt/membership.php:21 -msgid "No Memberships found in trash" -msgstr "Aucune adhésion trouvée dans la corbeille" +#: includes/cpt/profile.php:21 +msgid "No Profiles found in trash" +msgstr "Aucun profil trouvé dans la corbeille" #: includes/taxonomies/project-category.php:27 msgid "No project-categories" @@ -1155,33 +1180,33 @@ msgstr "Aucun modèle trouvé" msgid "No Templates found in trash" msgstr "Aucun modèle trouvé dans la corbeille" -#: acf-json/acf-translations.php:96 +#: acf-json/acf-translations.php:98 msgid "Notification(s)" msgstr "Notification(s)" -#: acf-json/acf-translations.php:97 +#: acf-json/acf-translations.php:99 msgid "Offer" msgstr "Offre" -#: acf-json/acf-translations.php:98 +#: acf-json/acf-translations.php:100 msgid "Offer status" msgstr "État de l'offre" -#: acf-json/acf-translations.php:99 +#: acf-json/acf-translations.php:101 msgid "Online" msgstr "En ligne" -#: acf-json/acf-translations.php:100 +#: acf-json/acf-translations.php:102 msgid "Options page – CCAT" msgstr "Page d'options – CCAT" -#: acf-json/acf-translations.php:101 +#: acf-json/acf-translations.php:103 msgid "Organisation" msgstr "Organisation" -#: acf-json/acf-translations.php:102 +#: acf-json/acf-translations.php:104 msgid "Organization profile" -msgstr "" +msgstr "Profil d'organisation" #: includes/cpt/contributor.php:22 msgid "Parent Contributor:" @@ -1199,6 +1224,14 @@ msgstr "Discipline parentale" msgid "Parent Event:" msgstr "Événement pour les parents :" +#: includes/taxonomies/listing-category.php:16 +msgid "Parent listing-category" +msgstr "Catégorie d'annonce parente" + +#: includes/taxonomies/listing-category.php:17 +msgid "Parent listing-category:" +msgstr "Catégorie d'annonce parente :" + #: includes/cpt/listing.php:22 msgid "Parent Listing:" msgstr "Annonce parent:" @@ -1207,9 +1240,9 @@ msgstr "Annonce parent:" msgid "Parent Location:" msgstr "Lieu parent :" -#: includes/cpt/membership.php:22 -msgid "Parent Membership:" -msgstr "Adhésion parent :" +#: includes/cpt/profile.php:22 +msgid "Parent Profile:" +msgstr "Profil parent :" #: includes/taxonomies/project-category.php:16 msgid "Parent project-category" @@ -1243,23 +1276,23 @@ msgstr "Ressource pour les parents :" msgid "Parent Template:" msgstr "Modèle parent :" -#: acf-json/acf-translations.php:103 +#: acf-json/acf-translations.php:105 msgid "Period" msgstr "Période" -#: acf-json/acf-translations.php:104 +#: acf-json/acf-translations.php:106 msgid "Person name" msgstr "Nom complet" -#: acf-json/acf-translations.php:105 +#: acf-json/acf-translations.php:107 msgid "Phone" msgstr "Téléphone" -#: acf-json/acf-translations.php:106 +#: acf-json/acf-translations.php:108 msgid "Physical person" msgstr "Personne physique" -#: acf-json/acf-translations.php:107 +#: acf-json/acf-translations.php:109 msgid "Planned" msgstr "Planifié" @@ -1267,6 +1300,10 @@ msgstr "Planifié" msgid "Popular disciplines" msgstr "Les disciplines populaires" +#: includes/taxonomies/listing-category.php:14 +msgid "Popular listing-categories" +msgstr "Catégories d'annonce populaires" + #: includes/taxonomies/project-category.php:14 msgid "Popular project-categories" msgstr "Catégories de projets populaires" @@ -1275,51 +1312,55 @@ msgstr "Catégories de projets populaires" msgid "Popular resource-categories" msgstr "Catégories de ressources populaires" -#: acf-json/acf-translations.php:108 +#: acf-json/acf-translations.php:110 msgid "Possible configuration(s)" msgstr "Configuration(s) possible(s)" -#: acf-json/acf-translations.php:109 +#: acf-json/acf-translations.php:111 msgid "Post – Article" msgstr "Contenu – Article" -#: acf-json/acf-translations.php:110 +#: acf-json/acf-translations.php:112 msgid "Post – Contributor" msgstr "Contenu – Contributeur" -#: acf-json/acf-translations.php:111 +#: acf-json/acf-translations.php:113 msgid "Post – Event" msgstr "Contenu – Événement" -#: acf-json/acf-translations.php:112 +#: acf-json/acf-translations.php:114 +msgid "Post – Listing" +msgstr "Publication – Liste" + +#: acf-json/acf-translations.php:115 msgid "Post – Location" msgstr "Contenu – Lieu" -#: acf-json/acf-translations.php:113 -msgid "Post – Membership" -msgstr "Contenu - Adhésion" - -#: acf-json/acf-translations.php:114 +#: acf-json/acf-translations.php:116 msgid "Post – Page" msgstr "Contenu – Page" -#: acf-json/acf-translations.php:115 +#: acf-json/acf-translations.php:117 +msgid "Post – Profile" +msgstr "Publication – Profil" + +#: acf-json/acf-translations.php:118 msgid "Post – Project" msgstr "Contenu – Projet" -#: acf-json/acf-translations.php:116 +#: acf-json/acf-translations.php:119 msgid "Post – Representation" msgstr "Contenu – Représentation" -#: acf-json/acf-translations.php:117 +#: acf-json/acf-translations.php:120 msgid "Post – Resource" msgstr "Contenu – Ressource" -#: acf-json/acf-translations.php:118 +#: acf-json/acf-translations.php:121 msgid "Post – Template" msgstr "Contenu – Modèle" -#: acf-json/acf-translations.php:119 +#: acf-json/acf-translations.php:122 msgid "Postponed" msgstr "Reporté" @@ -1331,17 +1372,17 @@ msgstr "Prévisualiser le contributeur" msgid "Preview Event" msgstr "Prévisualiser l'événement" -#: includes/cpt/listing.php:62 includes/cpt/listing.php:63 +#: includes/cpt/listing.php:69 includes/cpt/listing.php:70 msgid "Preview Listing" msgstr "Prévisualiser l'annonce" -#: includes/cpt/location.php:70 includes/cpt/location.php:71 +#: includes/cpt/location.php:69 includes/cpt/location.php:70 msgid "Preview Location" msgstr "Prévisualiser le lieu" -#: includes/cpt/membership.php:70 includes/cpt/membership.php:71 -msgid "Preview Membership" -msgstr "Prévisualiser l'adhésion" +#: includes/cpt/profile.php:70 includes/cpt/profile.php:71 +msgid "Preview Profile" +msgstr "Aperçu du profil" #: includes/cpt/project.php:69 includes/cpt/project.php:70 msgid "Preview Project" @@ -1359,14 +1400,76 @@ msgstr "Prévisualiser la ressource" msgid "Preview Template" msgstr "Prévisualiser le modèle" -#: acf-json/acf-translations.php:120 +#: acf-json/acf-translations.php:123 msgid "Pricing" msgstr "Tarification" -#: acf-json/acf-translations.php:121 +#: includes/cpt/profile.php:12 +msgid "Profile" +msgstr "Profil" + +#: includes/cpt/profile.php:24 +msgid "Profile Archives" +msgstr "Archives des profils" + +#: includes/cpt/profile.php:25 +msgid "Profile Attributes" +msgstr "Attributs du profil" + +#: includes/cpt/profile.php:36 +msgid "Profile published privately." +msgstr "Profil publié en privé." + +#: includes/cpt/profile.php:35 includes/cpt/profile.php:81 +msgid "Profile published." +msgstr "Profil publié." + +#: includes/cpt/profile.php:80 +#, php-format +msgid "Profile restored to revision from %s" +msgstr "Profil restauré à la révision de %s" + +#: includes/cpt/profile.php:37 +msgid "Profile reverted to draft." +msgstr "Profil reverti à l'ébauche." + +#: includes/cpt/profile.php:82 +msgid "Profile saved." +msgstr "Profil enregistré." + +#: includes/cpt/profile.php:38 +msgid "Profile scheduled." +msgstr "Profil programmé." + +#: includes/cpt/profile.php:83 +msgid "Profile submitted." +msgstr "Profil soumis." + +#: acf-json/acf-translations.php:124 +msgid "Profile type" +msgstr "Type de profil" + +#: includes/cpt/profile.php:39 includes/cpt/profile.php:76 +#: includes/cpt/profile.php:79 +msgid "Profile updated." +msgstr "Profil mis à jour." + +#: acf-json/acf-translations.php:125 msgid "Profile(s)" msgstr "Profil(s)" +#: includes/cpt/profile.php:10 includes/cpt/profile.php:11 +msgid "Profiles" +msgstr "Profils" + +#: includes/cpt/profile.php:34 +msgid "Profiles list" +msgstr "Liste des profils" + +#: includes/cpt/profile.php:33 +msgid "Profiles list navigation" +msgstr "Navigation dans la liste des profils" + #: includes/cpt/project.php:12 msgid "Project" msgstr "Projet" @@ -1379,7 +1482,7 @@ msgstr "Archives du projet" msgid "Project Attributes" msgstr "Attributs du projet" -#: acf-json/acf-translations.php:122 +#: acf-json/acf-translations.php:126 msgid "Project categorie(s)" msgstr "Catégorie(s) de projet" @@ -1470,20 +1573,20 @@ msgstr "Liste de projets" msgid "Projects list navigation" msgstr "Navigation de la liste des projets" -#: acf-json/acf-translations.php:123 +#: acf-json/acf-translations.php:127 msgid "Range" msgstr "Plage de dates" -#: acf-json/acf-translations.php:124 +#: acf-json/acf-translations.php:128 msgid "Rechercher une adresse..." msgstr "Rechercher une adresse..." -#: acf-json/acf-translations.php:125 +#: acf-json/acf-translations.php:129 msgid "Registration" msgstr "Inscription" #: includes/cpt/representation.php:30 includes/cpt/contributor.php:30 -#: includes/cpt/listing.php:30 includes/cpt/membership.php:30 +#: includes/cpt/listing.php:30 includes/cpt/profile.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 @@ -1577,7 +1680,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:126 +#: acf-json/acf-translations.php:130 #: includes/taxonomies/resource-category.php:12 msgid "Resource category" msgstr "Catégorie de ressources" @@ -1648,15 +1751,15 @@ msgstr "Liste de ressources" msgid "Resources list navigation" msgstr "Liste de navigation des ressources" -#: acf-json/acf-translations.php:127 +#: acf-json/acf-translations.php:131 msgid "Salle de spectacle" msgstr "Salle de spectacle" -#: acf-json/acf-translations.php:128 +#: acf-json/acf-translations.php:132 msgid "Same as contact" msgstr "Même que contact" -#: acf-json/acf-translations.php:129 +#: acf-json/acf-translations.php:133 msgid "Schedule type" msgstr "Type d'horaire" @@ -1672,10 +1775,14 @@ msgstr "Recherche de disciplines" msgid "Search Events" msgstr "Recherche d'événements" -#: acf-json/acf-translations.php:130 +#: acf-json/acf-translations.php:134 msgid "Search for address..." msgstr "Rechercher une adresse..." +#: includes/taxonomies/listing-category.php:13 +msgid "Search listing-categories" +msgstr "Rechercher des catégories d'annonce" + #: includes/cpt/listing.php:19 msgid "Search Listings" msgstr "Rechercher des annonces" @@ -1684,9 +1791,9 @@ msgstr "Rechercher des annonces" msgid "Search Locations" msgstr "Recherche de lieux" -#: includes/cpt/membership.php:19 -msgid "Search Memberships" -msgstr "Recherche d'adhésions" +#: includes/cpt/profile.php:19 +msgid "Search Profiles" +msgstr "Rechercher des profils" #: includes/taxonomies/project-category.php:13 msgid "Search project-categories" @@ -1712,27 +1819,27 @@ msgstr "Recherche de ressources" msgid "Search Templates" msgstr "Modèles de recherche" -#: acf-json/acf-translations.php:131 +#: acf-json/acf-translations.php:135 msgid "Section – Container" msgstr "Section – Conteneur" -#: acf-json/acf-translations.php:132 +#: acf-json/acf-translations.php:136 msgid "Section – Theme" msgstr "Section – Thème" -#: acf-json/acf-translations.php:133 +#: acf-json/acf-translations.php:137 msgid "Section(s)" msgstr "Section(s)" -#: acf-json/acf-translations.php:134 +#: acf-json/acf-translations.php:138 msgid "Select" msgstr "Sélectionner" -#: acf-json/acf-translations.php:135 +#: acf-json/acf-translations.php:139 msgid "Sent" msgstr "Envoyé" -#: acf-json/acf-translations.php:136 +#: acf-json/acf-translations.php:140 msgid "Sent status" msgstr "État de l'envoi" @@ -1740,6 +1847,10 @@ msgstr "État de l'envoi" msgid "Separate disciplines with commas" msgstr "Séparez les disciplines avec des virgules." +#: includes/taxonomies/listing-category.php:23 +msgid "Separate listing-categories with commas" +msgstr "Séparer les catégories d'annonce par des virgules" + #: includes/taxonomies/project-category.php:23 msgid "Separate project-categories with commas" msgstr "Séparez les catégories de projets avec des virgules." @@ -1749,38 +1860,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/listing.php:29 includes/cpt/membership.php:29 +#: includes/cpt/listing.php:29 includes/cpt/profile.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:137 +#: acf-json/acf-translations.php:141 msgid "Social" msgstr "Social" -#: acf-json/acf-translations.php:138 +#: acf-json/acf-translations.php:142 msgid "Spectacle" msgstr "Spectacle" -#: acf-json/acf-translations.php:139 +#: acf-json/acf-translations.php:143 msgid "Start date" msgstr "Date de début" -#: acf-json/acf-translations.php:140 +#: acf-json/acf-translations.php:144 msgid "Start date / time" msgstr "Date et heure de début" -#: acf-json/acf-translations.php:141 +#: acf-json/acf-translations.php:145 msgid "Start month" msgstr "Mois de début" -#: acf-json/acf-translations.php:142 +#: acf-json/acf-translations.php:146 msgid "Subject" msgstr "Sujet" -#: acf-json/acf-translations.php:143 +#: acf-json/acf-translations.php:147 msgid "Target audience" msgstr "Public cible" @@ -1842,39 +1953,39 @@ msgstr "Liste de modèles" msgid "Templates list navigation" msgstr "Liste de modèles de navigation" -#: acf-json/acf-translations.php:144 +#: acf-json/acf-translations.php:148 msgid "Term – Discipline" msgstr "Terme - Discipline" -#: acf-json/acf-translations.php:145 +#: acf-json/acf-translations.php:149 msgid "Text block" msgstr "Bloc de texte" -#: acf-json/acf-translations.php:146 +#: acf-json/acf-translations.php:150 msgid "This event is asynchronous" msgstr "Cet événement est asynchrone" -#: acf-json/acf-translations.php:147 +#: acf-json/acf-translations.php:151 msgid "This event is free" msgstr "Cet événement est gratuit" -#: acf-json/acf-translations.php:148 +#: acf-json/acf-translations.php:152 msgid "This event is wordless" msgstr "Cet événement est sans paroles" -#: acf-json/acf-translations.php:149 +#: acf-json/acf-translations.php:153 msgid "Title" msgstr "Titre" -#: acf-json/acf-translations.php:150 +#: acf-json/acf-translations.php:154 msgid "Tout public" msgstr "Tout public" -#: acf-json/acf-translations.php:153 +#: acf-json/acf-translations.php:157 msgid "Universal access" msgstr "Accès universel" -#: acf-json/acf-translations.php:154 +#: acf-json/acf-translations.php:158 msgid "Upcoming" msgstr "À venir" @@ -1882,6 +1993,10 @@ msgstr "À venir" msgid "Update discipline" msgstr "Mettre à jour la discipline" +#: includes/taxonomies/listing-category.php:19 +msgid "Update listing-category" +msgstr "Mettre à jour la catégorie d'annonce" + #: includes/taxonomies/project-category.php:19 msgid "Update project-category" msgstr "Mettre à jour la catégorie du projet" @@ -1906,9 +2021,9 @@ msgstr "Téléversé vers cette annonce" msgid "Uploaded to this Location" msgstr "Téléchargé à ce lieu" -#: includes/cpt/membership.php:27 -msgid "Uploaded to this Membership" -msgstr "Téléchargé sur cette adhésion" +#: includes/cpt/profile.php:27 +msgid "Uploaded to this Profile" +msgstr "Téléchargé dans ce profil" #: includes/cpt/project.php:27 msgid "Uploaded to this Project" @@ -1926,23 +2041,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:151 +#: acf-json/acf-translations.php:155 msgid "URI" msgstr "URI" -#: acf-json/acf-translations.php:152 +#: acf-json/acf-translations.php:156 msgid "URL" msgstr "URL" #: includes/cpt/representation.php:31 includes/cpt/contributor.php:31 -#: includes/cpt/listing.php:31 includes/cpt/membership.php:31 +#: includes/cpt/listing.php:31 includes/cpt/profile.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:155 +#: acf-json/acf-translations.php:159 msgid "User Profile" msgstr "Profil utilisateur" @@ -1966,15 +2081,19 @@ msgstr "Voir l'événement" msgid "View Events" msgstr "Voir les événements" -#: includes/cpt/listing.php:17 includes/cpt/listing.php:65 +#: includes/cpt/listing.php:17 includes/cpt/listing.php:72 msgid "View Listing" msgstr "Voir l'annonce" +#: includes/taxonomies/listing-category.php:20 +msgid "View listing-category" +msgstr "Voir la catégorie d'annonce" + #: includes/cpt/listing.php:18 msgid "View Listings" msgstr "Voir les annonces" -#: includes/cpt/location.php:17 includes/cpt/location.php:73 +#: includes/cpt/location.php:17 includes/cpt/location.php:72 msgid "View Location" msgstr "Voir le lieu" @@ -1982,13 +2101,13 @@ msgstr "Voir le lieu" msgid "View Locations" msgstr "Voir les lieux" -#: includes/cpt/membership.php:17 includes/cpt/membership.php:73 -msgid "View Membership" -msgstr "Afficher l'adhésion" +#: includes/cpt/profile.php:17 includes/cpt/profile.php:73 +msgid "View Profile" +msgstr "Voir le profil" -#: includes/cpt/membership.php:18 -msgid "View Memberships" -msgstr "Voir les adhésions" +#: includes/cpt/profile.php:18 +msgid "View Profiles" +msgstr "Voir les profils" #: includes/cpt/project.php:17 includes/cpt/project.php:72 msgid "View Project" @@ -2030,38 +2149,38 @@ msgstr "Voir le modèle" msgid "View Templates" msgstr "Voir les modèles" -#: acf-json/acf-translations.php:156 +#: acf-json/acf-translations.php:160 msgid "Virtual location" msgstr "Lieu virtuel" #. Author of the theme msgid "Websimple " -msgstr "Websimple " +msgstr "Websimple" -#: acf-json/acf-translations.php:157 +#: acf-json/acf-translations.php:161 msgid "Where" msgstr "Lieu" -#: acf-json/acf-translations.php:158 +#: acf-json/acf-translations.php:162 msgid "Wordless" msgstr "Sans paroles" -#: acf-json/acf-translations.php:159 +#: acf-json/acf-translations.php:163 msgid "Y-m" msgstr "Y-m" -#: acf-json/acf-translations.php:160 +#: acf-json/acf-translations.php:164 msgid "Y-m-d" msgstr "Y-m-d" -#: acf-json/acf-translations.php:161 +#: acf-json/acf-translations.php:165 msgid "Y-m-d H:i:s" msgstr "Y-m-d H:i:s" -#: acf-json/acf-translations.php:162 +#: acf-json/acf-translations.php:166 msgid "YouTube URL" msgstr "URL YouTube" -#: acf-json/acf-translations.php:163 +#: acf-json/acf-translations.php:167 msgid "YouTube video" msgstr "Vidéo YouTube"