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 ff75e9a..a8d7101 100644 Binary files a/wp-content/themes/ccat/languages/fr_CA.mo and b/wp-content/themes/ccat/languages/fr_CA.mo differ diff --git a/wp-content/themes/ccat/languages/fr_CA.po b/wp-content/themes/ccat/languages/fr_CA.po index 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"