From d225837d7b718e730e92c88c2b77a6ec2e2d681f Mon Sep 17 00:00:00 2001 From: Pascal Martineau Date: Wed, 27 Aug 2025 10:46:59 -0400 Subject: [PATCH] feat: Initial plugins and theme --- .gitignore | 4 +- .vscode/extensions.json | 5 + .vscode/settings.json | 9 + composer.json | 25 +- composer.lock | 496 ++++- wp-content/themes/ccat/.gitignore | 26 + wp-content/themes/ccat/.hygen.cjs | 7 + .../themes/ccat/acf-json/acf-translations.php | 144 ++ .../ccat/acf-json/group_abstract_builder.json | 103 + .../ccat/acf-json/group_abstract_credits.json | 141 ++ .../ccat/acf-json/group_abstract_entity.json | 78 + .../ccat/acf-json/group_abstract_gallery.json | 178 ++ .../ccat/acf-json/group_abstract_offer.json | 676 ++++++ .../ccat/acf-json/group_abstract_social.json | 86 + .../acf-json/group_options_page_ccat.json | 64 + .../ccat/acf-json/group_post_article.json | 66 + .../ccat/acf-json/group_post_contributor.json | 359 ++++ .../ccat/acf-json/group_post_event.json | 375 ++++ .../ccat/acf-json/group_post_location.json | 356 ++++ .../ccat/acf-json/group_post_membership.json | 350 ++++ .../themes/ccat/acf-json/group_post_page.json | 66 + .../ccat/acf-json/group_post_project.json | 180 ++ .../acf-json/group_post_representation.json | 384 ++++ .../ccat/acf-json/group_post_resource.json | 243 +++ .../ccat/acf-json/group_post_template.json | 64 + .../ccat/acf-json/group_term_discipline.json | 64 + .../ccat/acf-json/group_user_profile.json | 224 ++ .../ui_options_page_site_options.json | 25 + wp-content/themes/ccat/functions.php | 34 + .../themes/ccat/includes/core/theme-setup.php | 31 + .../themes/ccat/includes/cpt/contributor.php | 88 + wp-content/themes/ccat/includes/cpt/event.php | 88 + .../themes/ccat/includes/cpt/location.php | 89 + .../themes/ccat/includes/cpt/membership.php | 88 + .../themes/ccat/includes/cpt/project.php | 88 + .../ccat/includes/cpt/representation.php | 85 + .../themes/ccat/includes/cpt/resource.php | 88 + .../themes/ccat/includes/cpt/template.php | 85 + .../ccat/includes/taxonomies/discipline.php | 92 + .../includes/taxonomies/project-category.php | 68 + .../includes/taxonomies/resource-category.php | 68 + .../themes/ccat/includes/vendors/acf.php | 20 + wp-content/themes/ccat/index.php | 0 wp-content/themes/ccat/languages/ccat.pot | 1815 ++++++++++++++++ .../themes/ccat/languages/fr_CA.l10n.php | 3 + wp-content/themes/ccat/languages/fr_CA.mo | Bin 0 -> 26509 bytes wp-content/themes/ccat/languages/fr_CA.po | 1816 +++++++++++++++++ .../themes/ccat/languages/systemprompt.txt | 1 + wp-content/themes/ccat/style.css | 9 + 49 files changed, 9448 insertions(+), 6 deletions(-) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json create mode 100644 wp-content/themes/ccat/.gitignore create mode 100644 wp-content/themes/ccat/.hygen.cjs create mode 100644 wp-content/themes/ccat/acf-json/acf-translations.php create mode 100644 wp-content/themes/ccat/acf-json/group_abstract_builder.json create mode 100644 wp-content/themes/ccat/acf-json/group_abstract_credits.json create mode 100644 wp-content/themes/ccat/acf-json/group_abstract_entity.json create mode 100644 wp-content/themes/ccat/acf-json/group_abstract_gallery.json create mode 100644 wp-content/themes/ccat/acf-json/group_abstract_offer.json create mode 100644 wp-content/themes/ccat/acf-json/group_abstract_social.json create mode 100644 wp-content/themes/ccat/acf-json/group_options_page_ccat.json create mode 100644 wp-content/themes/ccat/acf-json/group_post_article.json create mode 100644 wp-content/themes/ccat/acf-json/group_post_contributor.json create mode 100644 wp-content/themes/ccat/acf-json/group_post_event.json create mode 100644 wp-content/themes/ccat/acf-json/group_post_location.json create mode 100644 wp-content/themes/ccat/acf-json/group_post_membership.json create mode 100644 wp-content/themes/ccat/acf-json/group_post_page.json create mode 100644 wp-content/themes/ccat/acf-json/group_post_project.json create mode 100644 wp-content/themes/ccat/acf-json/group_post_representation.json create mode 100644 wp-content/themes/ccat/acf-json/group_post_resource.json create mode 100644 wp-content/themes/ccat/acf-json/group_post_template.json create mode 100644 wp-content/themes/ccat/acf-json/group_term_discipline.json create mode 100644 wp-content/themes/ccat/acf-json/group_user_profile.json create mode 100644 wp-content/themes/ccat/acf-json/ui_options_page_site_options.json create mode 100644 wp-content/themes/ccat/functions.php create mode 100644 wp-content/themes/ccat/includes/core/theme-setup.php create mode 100644 wp-content/themes/ccat/includes/cpt/contributor.php create mode 100644 wp-content/themes/ccat/includes/cpt/event.php create mode 100644 wp-content/themes/ccat/includes/cpt/location.php create mode 100644 wp-content/themes/ccat/includes/cpt/membership.php create mode 100644 wp-content/themes/ccat/includes/cpt/project.php create mode 100644 wp-content/themes/ccat/includes/cpt/representation.php create mode 100644 wp-content/themes/ccat/includes/cpt/resource.php create mode 100644 wp-content/themes/ccat/includes/cpt/template.php create mode 100644 wp-content/themes/ccat/includes/taxonomies/discipline.php create mode 100644 wp-content/themes/ccat/includes/taxonomies/project-category.php create mode 100644 wp-content/themes/ccat/includes/taxonomies/resource-category.php create mode 100644 wp-content/themes/ccat/includes/vendors/acf.php create mode 100644 wp-content/themes/ccat/index.php create mode 100644 wp-content/themes/ccat/languages/ccat.pot create mode 100644 wp-content/themes/ccat/languages/fr_CA.l10n.php create mode 100644 wp-content/themes/ccat/languages/fr_CA.mo create mode 100644 wp-content/themes/ccat/languages/fr_CA.po create mode 100644 wp-content/themes/ccat/languages/systemprompt.txt create mode 100644 wp-content/themes/ccat/style.css diff --git a/.gitignore b/.gitignore index 2bd1921..4b67bf3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ /* !/.gitea !/.gitignore +!/.vscode/ +!/CLAUDE.md !/composer.* !/phpcs.xml !/wp-content/ @@ -16,4 +18,4 @@ !/wp-content/themes/ /wp-content/themes/* !/wp-content/themes/.gitkeep -#!/wp-content/themes/wp-skeleton/ +!/wp-content/themes/ccat/ diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..0c52f3d --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "graphql.vscode-graphql-syntax" + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..73eeb75 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,9 @@ +{ + "files.associations": { + "*.css": "tailwindcss" + }, + "editor.quickSuggestions": { + "strings": "on" + }, + "graphql-config.load.rootDir": "wp-content/themes/ccat" +} \ No newline at end of file diff --git a/composer.json b/composer.json index 0421a46..36b22cc 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,10 @@ { - "name": "wp-sites/wp-skeleton", + "name": "wp-sites/ccat", "repositories": [ + { + "type": "composer", + "url": "https://satis.ledevsimple.ca" + }, { "type": "composer", "url": "https://wpackagist.org" @@ -14,5 +18,20 @@ "preferred-install": "dist", "sort-packages": true }, - "require": {} -} \ No newline at end of file + "require": { + "lewebsimple/acf-extended-pro": "*", + "lewebsimple/acf-polylang": "*", + "lewebsimple/admin-site-enhancements-pro": "*", + "lewebsimple/advanced-custom-fields-pro": "6.4.3", + "lewebsimple/ithemes-security-pro": "*", + "lewebsimple/kaliroots": "*", + "lewebsimple/wp-offload-ses": "*", + "wp-graphql/wp-graphql-jwt-authentication": "*", + "wpackagist-plugin/clean-image-filenames": "*", + "wpackagist-plugin/disable-comments": "*", + "wpackagist-plugin/redirection": "*", + "wpackagist-plugin/user-switching": "*", + "wpackagist-plugin/wp-graphql": "*", + "wpackagist-plugin/wpgraphql-acf": "*" + } +} diff --git a/composer.lock b/composer.lock index d567d06..955ddcc 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,500 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "4aa995413150b1483d96d7b2d8d8e272", - "packages": [], + "content-hash": "7404139a6c60217cf6e5f80ac88be31f", + "packages": [ + { + "name": "composer/installers", + "version": "v2.3.0", + "source": { + "type": "git", + "url": "https://github.com/composer/installers.git", + "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/installers/zipball/12fb2dfe5e16183de69e784a7b84046c43d97e8e", + "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0", + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "composer/composer": "^1.10.27 || ^2.7", + "composer/semver": "^1.7.2 || ^3.4.0", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-phpunit": "^1", + "symfony/phpunit-bridge": "^7.1.1", + "symfony/process": "^5 || ^6 || ^7" + }, + "type": "composer-plugin", + "extra": { + "class": "Composer\\Installers\\Plugin", + "branch-alias": { + "dev-main": "2.x-dev" + }, + "plugin-modifies-install-path": true + }, + "autoload": { + "psr-4": { + "Composer\\Installers\\": "src/Composer/Installers" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kyle Robinson Young", + "email": "kyle@dontkry.com", + "homepage": "https://github.com/shama" + } + ], + "description": "A multi-framework Composer library installer", + "homepage": "https://composer.github.io/installers/", + "keywords": [ + "Dolibarr", + "Eliasis", + "Hurad", + "ImageCMS", + "Kanboard", + "Lan Management System", + "MODX Evo", + "MantisBT", + "Mautic", + "Maya", + "OXID", + "Plentymarkets", + "Porto", + "RadPHP", + "SMF", + "Starbug", + "Thelia", + "Whmcs", + "WolfCMS", + "agl", + "annotatecms", + "attogram", + "bitrix", + "cakephp", + "chef", + "cockpit", + "codeigniter", + "concrete5", + "concreteCMS", + "croogo", + "dokuwiki", + "drupal", + "eZ Platform", + "elgg", + "expressionengine", + "fuelphp", + "grav", + "installer", + "itop", + "known", + "kohana", + "laravel", + "lavalite", + "lithium", + "magento", + "majima", + "mako", + "matomo", + "mediawiki", + "miaoxing", + "modulework", + "modx", + "moodle", + "osclass", + "pantheon", + "phpbb", + "piwik", + "ppi", + "processwire", + "puppet", + "pxcms", + "reindex", + "roundcube", + "shopware", + "silverstripe", + "sydes", + "sylius", + "tastyigniter", + "wordpress", + "yawik", + "zend", + "zikula" + ], + "support": { + "issues": "https://github.com/composer/installers/issues", + "source": "https://github.com/composer/installers/tree/v2.3.0" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-06-24T20:46:46+00:00" + }, + { + "name": "firebase/php-jwt", + "version": "v6.11.1", + "source": { + "type": "git", + "url": "https://github.com/firebase/php-jwt.git", + "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66", + "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66", + "shasum": "" + }, + "require": { + "php": "^8.0" + }, + "require-dev": { + "guzzlehttp/guzzle": "^7.4", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.5", + "psr/cache": "^2.0||^3.0", + "psr/http-client": "^1.0", + "psr/http-factory": "^1.0" + }, + "suggest": { + "ext-sodium": "Support EdDSA (Ed25519) signatures", + "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present" + }, + "type": "library", + "autoload": { + "psr-4": { + "Firebase\\JWT\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Neuman Vong", + "email": "neuman+pear@twilio.com", + "role": "Developer" + }, + { + "name": "Anant Narayanan", + "email": "anant@php.net", + "role": "Developer" + } + ], + "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", + "homepage": "https://github.com/firebase/php-jwt", + "keywords": [ + "jwt", + "php" + ], + "support": { + "issues": "https://github.com/firebase/php-jwt/issues", + "source": "https://github.com/firebase/php-jwt/tree/v6.11.1" + }, + "time": "2025-04-09T20:32:01+00:00" + }, + { + "name": "lewebsimple/acf-extended-pro", + "version": "v0.9.1", + "source": { + "type": "git", + "url": "ssh://git@gitlab.ledevsimple.ca:222/wp-plugins/acf-extended-pro.git", + "reference": "123a9cb62feeb020b495f9963ce0c78529970d89" + }, + "dist": { + "type": "zip", + "url": "https://satis.ledevsimple.ca/dist/lewebsimple/acf-extended-pro/lewebsimple-acf-extended-pro-v0.9.1-72f8d5.zip", + "reference": "123a9cb62feeb020b495f9963ce0c78529970d89", + "shasum": "9fb98d03a632cd9310c32cb7185431ebce6cc337" + }, + "type": "wordpress-plugin", + "time": "2025-02-25T14:28:04+00:00" + }, + { + "name": "lewebsimple/acf-polylang", + "version": "v1.4.0", + "source": { + "type": "git", + "url": "ssh://git@gitlab.ledevsimple.ca:222/wp-plugins/acf-polylang.git", + "reference": "3998e44ccc400bd6233c98364df03a4f6db4f7b0" + }, + "dist": { + "type": "zip", + "url": "https://satis.ledevsimple.ca/dist/lewebsimple/acf-polylang/lewebsimple-acf-polylang-v1.4.0-d64a6e.zip", + "reference": "3998e44ccc400bd6233c98364df03a4f6db4f7b0", + "shasum": "1cb04729c3991e538bc38b3ef2371f9cbe47aea6" + }, + "type": "wordpress-plugin", + "time": "2025-04-11T12:05:23+00:00" + }, + { + "name": "lewebsimple/admin-site-enhancements-pro", + "version": "v7.9.2", + "source": { + "type": "git", + "url": "ssh://git@gitlab.ledevsimple.ca:222/wp-plugins/admin-site-enhancements-pro.git", + "reference": "01b95e4a6da08543cd69b0d30485b221e032352e" + }, + "dist": { + "type": "zip", + "url": "https://satis.ledevsimple.ca/dist/lewebsimple/admin-site-enhancements-pro/lewebsimple-admin-site-enhancements-pro-v7.9.2-83c8f1.zip", + "reference": "01b95e4a6da08543cd69b0d30485b221e032352e", + "shasum": "6a447b4255483b32a9c1e319d2fbbbb7e58e5d18" + }, + "type": "wordpress-plugin", + "time": "2025-07-22T14:09:35+00:00" + }, + { + "name": "lewebsimple/advanced-custom-fields-pro", + "version": "v6.4.3", + "source": { + "type": "git", + "url": "ssh://git@gitlab.ledevsimple.ca:222/wp-plugins/advanced-custom-fields-pro.git", + "reference": "9e4bb1f624589e4718cb4b58e44916ebc859f659" + }, + "dist": { + "type": "zip", + "url": "https://satis.ledevsimple.ca/dist/lewebsimple/advanced-custom-fields-pro/lewebsimple-advanced-custom-fields-pro-v6.4.3-eea950.zip", + "reference": "9e4bb1f624589e4718cb4b58e44916ebc859f659", + "shasum": "4c027c55c91e54dc1d207d9c3adf53398fcb1348" + }, + "type": "wordpress-plugin", + "time": "2025-07-22T14:16:09+00:00" + }, + { + "name": "lewebsimple/ithemes-security-pro", + "version": "v8.5.8", + "source": { + "type": "git", + "url": "ssh://git@gitlab.ledevsimple.ca:222/wp-plugins/ithemes-security-pro.git", + "reference": "d9b6bd9368baef4b8775928c04eaa5d1bdfb004d" + }, + "dist": { + "type": "zip", + "url": "https://satis.ledevsimple.ca/dist/lewebsimple/ithemes-security-pro/lewebsimple-ithemes-security-pro-v8.5.8-c0732d.zip", + "reference": "d9b6bd9368baef4b8775928c04eaa5d1bdfb004d", + "shasum": "2940032a3bfb6f7c7773e4e210fdfed2df554985" + }, + "type": "wordpress-plugin", + "time": "2025-07-22T14:11:07+00:00" + }, + { + "name": "lewebsimple/kaliroots", + "version": "v0.9.17", + "source": { + "type": "git", + "url": "ssh://git@gitlab.ledevsimple.ca:222/wp-themes/kaliroots.git", + "reference": "a9cf1340420b4c36800e67dbb6641141d1d27b9b" + }, + "dist": { + "type": "zip", + "url": "https://satis.ledevsimple.ca/dist/lewebsimple/kaliroots/lewebsimple-kaliroots-v0.9.17-b18806.zip", + "reference": "a9cf1340420b4c36800e67dbb6641141d1d27b9b", + "shasum": "88a98020c7feb584b055d3aae30e937461933095" + }, + "type": "wordpress-theme", + "time": "2025-04-10T12:17:27+00:00" + }, + { + "name": "lewebsimple/wp-offload-ses", + "version": "v1.6.8", + "source": { + "type": "git", + "url": "ssh://git@gitlab.ledevsimple.ca:222/wp-plugins/wp-offload-ses.git", + "reference": "7b6046d329e96da3a5f6714cd73e14172d9e7840" + }, + "dist": { + "type": "zip", + "url": "https://satis.ledevsimple.ca/dist/lewebsimple/wp-offload-ses/lewebsimple-wp-offload-ses-v1.6.8-368121.zip", + "reference": "7b6046d329e96da3a5f6714cd73e14172d9e7840", + "shasum": "dd0d6ff96a3c6cd6abe248ad53287a47b6f78de3" + }, + "type": "wordpress-plugin", + "time": "2025-01-09T15:43:07+00:00" + }, + { + "name": "wp-graphql/wp-graphql-jwt-authentication", + "version": "v0.7.0", + "source": { + "type": "git", + "url": "https://github.com/wp-graphql/wp-graphql-jwt-authentication.git", + "reference": "5de35ce97efcae2beeb9118e1ad458480ae6187b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wp-graphql/wp-graphql-jwt-authentication/zipball/5de35ce97efcae2beeb9118e1ad458480ae6187b", + "reference": "5de35ce97efcae2beeb9118e1ad458480ae6187b", + "shasum": "" + }, + "require": { + "firebase/php-jwt": "^6.1.0" + }, + "require-dev": { + "codeception/module-asserts": "^1.0", + "codeception/module-cli": "^1.0", + "codeception/module-db": "^1.0", + "codeception/module-filesystem": "^1.0", + "codeception/module-phpbrowser": "^1.0", + "codeception/module-rest": "^1.2", + "codeception/module-webdriver": "^1.0", + "codeception/util-universalframework": "^1.0", + "lucatume/wp-browser": "3.1.0", + "phpunit/phpunit": "^8.5" + }, + "type": "wordpress-plugin", + "autoload": { + "psr-4": { + "WPGraphQL\\JWT_Authentication\\": "src/" + }, + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0+" + ], + "authors": [ + { + "name": "jasonbahl", + "email": "jasonbahl@mac.com" + } + ], + "description": "JWT Authentication for WPGraphQL", + "support": { + "issues": "https://github.com/wp-graphql/wp-graphql-jwt-authentication/issues", + "source": "https://github.com/wp-graphql/wp-graphql-jwt-authentication/tree/v0.7.0" + }, + "time": "2023-03-31T21:57:48+00:00" + }, + { + "name": "wpackagist-plugin/clean-image-filenames", + "version": "1.5", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/clean-image-filenames/", + "reference": "tags/1.5" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/clean-image-filenames.1.5.zip" + }, + "require": { + "composer/installers": "^1.0 || ^2.0" + }, + "type": "wordpress-plugin", + "homepage": "https://wordpress.org/plugins/clean-image-filenames/" + }, + { + "name": "wpackagist-plugin/disable-comments", + "version": "2.5.2", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/disable-comments/", + "reference": "tags/2.5.2" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/disable-comments.2.5.2.zip" + }, + "require": { + "composer/installers": "^1.0 || ^2.0" + }, + "type": "wordpress-plugin", + "homepage": "https://wordpress.org/plugins/disable-comments/" + }, + { + "name": "wpackagist-plugin/redirection", + "version": "5.5.2", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/redirection/", + "reference": "tags/5.5.2" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/redirection.5.5.2.zip" + }, + "require": { + "composer/installers": "^1.0 || ^2.0" + }, + "type": "wordpress-plugin", + "homepage": "https://wordpress.org/plugins/redirection/" + }, + { + "name": "wpackagist-plugin/user-switching", + "version": "1.10.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/user-switching/", + "reference": "tags/1.10.0" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/user-switching.1.10.0.zip" + }, + "require": { + "composer/installers": "^1.0 || ^2.0" + }, + "type": "wordpress-plugin", + "homepage": "https://wordpress.org/plugins/user-switching/" + }, + { + "name": "wpackagist-plugin/wp-graphql", + "version": "2.3.3", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/wp-graphql/", + "reference": "tags/2.3.3" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/wp-graphql.2.3.3.zip" + }, + "require": { + "composer/installers": "^1.0 || ^2.0" + }, + "type": "wordpress-plugin", + "homepage": "https://wordpress.org/plugins/wp-graphql/" + }, + { + "name": "wpackagist-plugin/wpgraphql-acf", + "version": "2.4.1", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/wpgraphql-acf/", + "reference": "tags/2.4.1" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/wpgraphql-acf.2.4.1.zip" + }, + "require": { + "composer/installers": "^1.0 || ^2.0" + }, + "type": "wordpress-plugin", + "homepage": "https://wordpress.org/plugins/wpgraphql-acf/" + } + ], "packages-dev": [], "aliases": [], "minimum-stability": "stable", diff --git a/wp-content/themes/ccat/.gitignore b/wp-content/themes/ccat/.gitignore new file mode 100644 index 0000000..6f8438c --- /dev/null +++ b/wp-content/themes/ccat/.gitignore @@ -0,0 +1,26 @@ +# Nuxt dev/build outputs +.output +.data +.nuxt +.nitro +.cache +dist + +# Node dependencies +node_modules + +# Logs +logs +*.log + +# Misc +.DS_Store +.fleet +.idea + +# Local env files +.env +.env.* +!.env.example + +.wrangler \ No newline at end of file diff --git a/wp-content/themes/ccat/.hygen.cjs b/wp-content/themes/ccat/.hygen.cjs new file mode 100644 index 0000000..d1e667d --- /dev/null +++ b/wp-content/themes/ccat/.hygen.cjs @@ -0,0 +1,7 @@ +module.exports = { + templates: `../kaliroots/_templates`, + helpers: { + description: "CCAT", + textdomain: "ccat", + }, +}; diff --git a/wp-content/themes/ccat/acf-json/acf-translations.php b/wp-content/themes/ccat/acf-json/acf-translations.php new file mode 100644 index 0000000..e9ccbc7 --- /dev/null +++ b/wp-content/themes/ccat/acf-json/acf-translations.php @@ -0,0 +1,144 @@ +set_404(); + status_header( 404 ); + } +} diff --git a/wp-content/themes/ccat/includes/cpt/contributor.php b/wp-content/themes/ccat/includes/cpt/contributor.php new file mode 100644 index 0000000..b236cb0 --- /dev/null +++ b/wp-content/themes/ccat/includes/cpt/contributor.php @@ -0,0 +1,88 @@ + array( + 'name' => __( "Contributors", 'ccat' ), + 'menu_name' => __( "Contributors", 'ccat' ), + 'singular_name' => __( "Contributor", 'ccat' ), + 'add_new' => __( "Add New", 'ccat' ), + 'add_new_item' => __( "Add New Contributor", 'ccat' ), + 'new_item' => __( "New Contributor", 'ccat' ), + 'edit_item' => __( "Edit Contributor", 'ccat' ), + 'view_item' => __( "View Contributor", 'ccat' ), + 'view_items' => __( "View Contributors", 'ccat' ), + 'search_items' => __( "Search Contributors", 'ccat' ), + 'not_found' => __( "No Contributors found", 'ccat' ), + 'not_found_in_trash' => __( "No Contributors found in trash", 'ccat' ), + 'parent_item_colon' => __( "Parent Contributor:", 'ccat' ), + 'all_items' => __( "All Contributors", 'ccat' ), + 'archives' => __( "Contributor Archives", 'ccat' ), + 'attributes' => __( "Contributor Attributes", 'ccat' ), + 'insert_into_item' => __( "Insert into Contributor", 'ccat' ), + 'uploaded_to_this_item' => __( "Uploaded to this Contributor", 'ccat' ), + 'featured_image' => __( "Featured Image", 'ccat' ), + 'set_featured_image' => __( "Set featured image", 'ccat' ), + 'remove_featured_image' => __( "Remove featured image", 'ccat' ), + 'use_featured_image' => __( "Use as featured image", 'ccat' ), + 'filter_items_list' => __( "Filter Contributors list", 'ccat' ), + 'items_list_navigation' => __( "Contributors list navigation", 'ccat' ), + 'items_list' => __( "Contributors list", 'ccat' ), + 'item_published' => __( "Contributor published.", 'ccat' ), + 'item_published_privately' => __( "Contributor published privately.", 'ccat' ), + 'item_reverted_to_draft' => __( "Contributor reverted to draft.", 'ccat' ), + 'item_scheduled' => __( "Contributor scheduled.", 'ccat' ), + 'item_updated' => __( "Contributor updated.", 'ccat' ), + ), + 'public' => true, + 'hierarchical' => true, + 'show_ui' => true, + 'show_in_nav_menus' => false, + 'supports' => array( 'title', 'thumbnail', 'author', 'excerpt', 'revisions' ), + 'has_archive' => false, + 'rewrite' => array( + 'slug' => 'contributeur', + 'with_front' => false, + ), + 'query_var' => true, + 'menu_icon' => 'dashicons-art', + 'show_in_rest' => true, + 'rest_base' => 'contributor', + 'rest_controller_class' => 'WP_REST_Posts_Controller', + 'show_in_graphql' => true, + 'graphql_single_name' => "Contributor", + 'graphql_plural_name' => "Contributors", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'contributor' post updated messages +add_filter( 'post_updated_messages', 'ccat_contributor_post_updated_messages' ); +function ccat_contributor_post_updated_messages( $messages ) { + global $post; + $permalink = get_permalink( $post ); + $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Contributor", 'ccat' ) ); + $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Contributor", 'ccat' ) ); + $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) ); + $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Contributor", 'ccat' ) ); + $messages['contributor'] = array( + 0 => '', + 1 => __( "Contributor updated.", 'ccat' ) . $view_post_link_html, + 2 => __( "Custom field updated.", 'ccat' ), + 3 => __( "Custom field deleted.", 'ccat' ), + 4 => __( "Contributor updated.", 'ccat' ), + 5 => isset( $_GET['revision'] ) ? sprintf( __( "Contributor restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, + 6 => __( "Contributor published.", 'ccat' ) . $view_post_link_html, + 7 => __( "Contributor saved.", 'ccat' ), + 8 => __( "Contributor submitted.", 'ccat' ) . $preview_post_link_html, + 9 => sprintf( __( 'Contributor scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html, + 10 => __( 'Contributor draft updated.' ) . $preview_post_link_html, + ); + + return $messages; +} diff --git a/wp-content/themes/ccat/includes/cpt/event.php b/wp-content/themes/ccat/includes/cpt/event.php new file mode 100644 index 0000000..eb9e3ab --- /dev/null +++ b/wp-content/themes/ccat/includes/cpt/event.php @@ -0,0 +1,88 @@ + array( + 'name' => __( "Events", 'ccat' ), + 'menu_name' => __( "Events", 'ccat' ), + 'singular_name' => __( "Event", 'ccat' ), + 'add_new' => __( "Add New", 'ccat' ), + 'add_new_item' => __( "Add New Event", 'ccat' ), + 'new_item' => __( "New Event", 'ccat' ), + 'edit_item' => __( "Edit Event", 'ccat' ), + 'view_item' => __( "View Event", 'ccat' ), + 'view_items' => __( "View Events", 'ccat' ), + 'search_items' => __( "Search Events", 'ccat' ), + 'not_found' => __( "No Events found", 'ccat' ), + 'not_found_in_trash' => __( "No Events found in trash", 'ccat' ), + 'parent_item_colon' => __( "Parent Event:", 'ccat' ), + 'all_items' => __( "All Events", 'ccat' ), + 'archives' => __( "Event Archives", 'ccat' ), + 'attributes' => __( "Event Attributes", 'ccat' ), + 'insert_into_item' => __( "Insert into Event", 'ccat' ), + 'uploaded_to_this_item' => __( "Uploaded to this Event", 'ccat' ), + 'featured_image' => __( "Featured Image", 'ccat' ), + 'set_featured_image' => __( "Set featured image", 'ccat' ), + 'remove_featured_image' => __( "Remove featured image", 'ccat' ), + 'use_featured_image' => __( "Use as featured image", 'ccat' ), + 'filter_items_list' => __( "Filter Events list", 'ccat' ), + 'items_list_navigation' => __( "Events list navigation", 'ccat' ), + 'items_list' => __( "Events list", 'ccat' ), + 'item_published' => __( "Event published.", 'ccat' ), + 'item_published_privately' => __( "Event published privately.", 'ccat' ), + 'item_reverted_to_draft' => __( "Event reverted to draft.", 'ccat' ), + 'item_scheduled' => __( "Event scheduled.", 'ccat' ), + 'item_updated' => __( "Event updated.", 'ccat' ), + ), + 'public' => true, + 'hierarchical' => true, + 'show_ui' => true, + 'show_in_nav_menus' => false, + 'supports' => array( 'title', 'thumbnail', 'excerpt', 'revisions', 'page-attributes' ), + 'has_archive' => false, + 'rewrite' => array( + 'slug' => 'evenement', + 'with_front' => false, + ), + 'query_var' => true, + 'menu_icon' => 'dashicons-calendar', + 'show_in_rest' => true, + 'rest_base' => 'event', + 'rest_controller_class' => 'WP_REST_Posts_Controller', + 'show_in_graphql' => true, + 'graphql_single_name' => "Event", + 'graphql_plural_name' => "Events", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'event' post updated messages +add_filter( 'post_updated_messages', 'ccat_event_post_updated_messages' ); +function ccat_event_post_updated_messages( $messages ) { + global $post; + $permalink = get_permalink( $post ); + $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Event", 'ccat' ) ); + $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Event", 'ccat' ) ); + $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) ); + $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Event", 'ccat' ) ); + $messages['event'] = array( + 0 => '', + 1 => __( "Event updated.", 'ccat' ) . $view_post_link_html, + 2 => __( "Custom field updated.", 'ccat' ), + 3 => __( "Custom field deleted.", 'ccat' ), + 4 => __( "Event updated.", 'ccat' ), + 5 => isset( $_GET['revision'] ) ? sprintf( __( "Event restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, + 6 => __( "Event published.", 'ccat' ) . $view_post_link_html, + 7 => __( "Event saved.", 'ccat' ), + 8 => __( "Event submitted.", 'ccat' ) . $preview_post_link_html, + 9 => sprintf( __( 'Event scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html, + 10 => __( 'Event draft updated.' ) . $preview_post_link_html, + ); + + return $messages; +} diff --git a/wp-content/themes/ccat/includes/cpt/location.php b/wp-content/themes/ccat/includes/cpt/location.php new file mode 100644 index 0000000..e6bd110 --- /dev/null +++ b/wp-content/themes/ccat/includes/cpt/location.php @@ -0,0 +1,89 @@ + array( + 'name' => __( "Locations", 'ccat' ), + 'menu_name' => __( "Locations", 'ccat' ), + 'singular_name' => __( "Location", 'ccat' ), + 'add_new' => __( "Add New", 'ccat' ), + 'add_new_item' => __( "Add New Location", 'ccat' ), + 'new_item' => __( "New Location", 'ccat' ), + 'edit_item' => __( "Edit Location", 'ccat' ), + 'view_item' => __( "View Location", 'ccat' ), + 'view_items' => __( "View Locations", 'ccat' ), + 'search_items' => __( "Search Locations", 'ccat' ), + 'not_found' => __( "No Locations found", 'ccat' ), + 'not_found_in_trash' => __( "No Locations found in trash", 'ccat' ), + 'parent_item_colon' => __( "Parent Location:", 'ccat' ), + 'all_items' => __( "All Locations", 'ccat' ), + 'archives' => __( "Location Archives", 'ccat' ), + 'attributes' => __( "Location Attributes", 'ccat' ), + 'insert_into_item' => __( "Insert into Location", 'ccat' ), + 'uploaded_to_this_item' => __( "Uploaded to this Location", 'ccat' ), + 'featured_image' => __( "Featured Image", 'ccat' ), + 'set_featured_image' => __( "Set featured image", 'ccat' ), + 'remove_featured_image' => __( "Remove featured image", 'ccat' ), + 'use_featured_image' => __( "Use as featured image", 'ccat' ), + 'filter_items_list' => __( "Filter Locations list", 'ccat' ), + 'items_list_navigation' => __( "Locations list navigation", 'ccat' ), + 'items_list' => __( "Locations list", 'ccat' ), + 'item_published' => __( "Location published.", 'ccat' ), + 'item_published_privately' => __( "Location published privately.", 'ccat' ), + 'item_reverted_to_draft' => __( "Location reverted to draft.", 'ccat' ), + 'item_scheduled' => __( "Location scheduled.", 'ccat' ), + 'item_updated' => __( "Location updated.", 'ccat' ), + ), + 'public' => false, + 'hierarchical' => true, + 'show_ui' => true, + 'show_in_nav_menus' => false, + 'supports' => array( 'title', 'thumbnail', 'excerpt', 'revisions' ), + 'has_archive' => false, + 'rewrite' => array( + 'slug' => 'emplacement', + 'with_front' => false, + + ), + 'query_var' => true, + 'menu_icon' => 'dashicons-location', + 'show_in_rest' => true, + 'rest_base' => 'location', + 'rest_controller_class' => 'WP_REST_Posts_Controller', + 'show_in_graphql' => true, + 'graphql_single_name' => "Location", + 'graphql_plural_name' => "Locations", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'location' post updated messages +add_filter( 'post_updated_messages', 'ccat_location_post_updated_messages' ); +function ccat_location_post_updated_messages( $messages ) { + global $post; + $permalink = get_permalink( $post ); + $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Location", 'ccat' ) ); + $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Location", 'ccat' ) ); + $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) ); + $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Location", 'ccat' ) ); + $messages['location'] = array( + 0 => '', + 1 => __( "Location updated.", 'ccat' ) . $view_post_link_html, + 2 => __( "Custom field updated.", 'ccat' ), + 3 => __( "Custom field deleted.", 'ccat' ), + 4 => __( "Location updated.", 'ccat' ), + 5 => isset( $_GET['revision'] ) ? sprintf( __( "Location restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, + 6 => __( "Location published.", 'ccat' ) . $view_post_link_html, + 7 => __( "Location saved.", 'ccat' ), + 8 => __( "Location submitted.", 'ccat' ) . $preview_post_link_html, + 9 => sprintf( __( 'Location scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html, + 10 => __( 'Location draft updated.' ) . $preview_post_link_html, + ); + + return $messages; +} diff --git a/wp-content/themes/ccat/includes/cpt/membership.php b/wp-content/themes/ccat/includes/cpt/membership.php new file mode 100644 index 0000000..2d9e35b --- /dev/null +++ b/wp-content/themes/ccat/includes/cpt/membership.php @@ -0,0 +1,88 @@ + array( + 'name' => __( "Memberships", 'ccat' ), + 'menu_name' => __( "Memberships", 'ccat' ), + 'singular_name' => __( "Membership", 'ccat' ), + 'add_new' => __( "Add New", 'ccat' ), + 'add_new_item' => __( "Add New Membership", 'ccat' ), + 'new_item' => __( "New Membership", 'ccat' ), + 'edit_item' => __( "Edit Membership", 'ccat' ), + 'view_item' => __( "View Membership", 'ccat' ), + 'view_items' => __( "View Memberships", 'ccat' ), + 'search_items' => __( "Search Memberships", 'ccat' ), + 'not_found' => __( "No Memberships found", 'ccat' ), + 'not_found_in_trash' => __( "No Memberships found in trash", 'ccat' ), + 'parent_item_colon' => __( "Parent Membership:", 'ccat' ), + 'all_items' => __( "All Memberships", 'ccat' ), + 'archives' => __( "Membership Archives", 'ccat' ), + 'attributes' => __( "Membership Attributes", 'ccat' ), + 'insert_into_item' => __( "Insert into Membership", 'ccat' ), + 'uploaded_to_this_item' => __( "Uploaded to this Membership", 'ccat' ), + 'featured_image' => __( "Featured Image", 'ccat' ), + 'set_featured_image' => __( "Set featured image", 'ccat' ), + 'remove_featured_image' => __( "Remove featured image", 'ccat' ), + 'use_featured_image' => __( "Use as featured image", 'ccat' ), + 'filter_items_list' => __( "Filter Memberships list", 'ccat' ), + 'items_list_navigation' => __( "Memberships list navigation", 'ccat' ), + 'items_list' => __( "Memberships list", 'ccat' ), + 'item_published' => __( "Membership published.", 'ccat' ), + 'item_published_privately' => __( "Membership published privately.", 'ccat' ), + 'item_reverted_to_draft' => __( "Membership reverted to draft.", 'ccat' ), + 'item_scheduled' => __( "Membership scheduled.", 'ccat' ), + 'item_updated' => __( "Membership updated.", 'ccat' ), + ), + 'public' => true, + 'hierarchical' => false, + 'show_ui' => true, + 'show_in_nav_menus' => false, + 'supports' => array( 'title', 'thumbnail', 'author', 'revisions' ), + 'has_archive' => false, + 'rewrite' => array( + 'slug' => 'membre', + 'with_front' => false, + ), + 'query_var' => true, + 'menu_icon' => 'dashicons-id', + 'show_in_rest' => true, + 'rest_base' => 'membership', + 'rest_controller_class' => 'WP_REST_Posts_Controller', + 'show_in_graphql' => true, + 'graphql_single_name' => "Membership", + 'graphql_plural_name' => "Memberships", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'membership' post updated messages +add_filter( 'post_updated_messages', 'ccat_membership_post_updated_messages' ); +function ccat_membership_post_updated_messages( $messages ) { + global $post; + $permalink = get_permalink( $post ); + $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Membership", 'ccat' ) ); + $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Membership", 'ccat' ) ); + $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) ); + $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Membership", 'ccat' ) ); + $messages['membership'] = array( + 0 => '', + 1 => __( "Membership updated.", 'ccat' ) . $view_post_link_html, + 2 => __( "Custom field updated.", 'ccat' ), + 3 => __( "Custom field deleted.", 'ccat' ), + 4 => __( "Membership updated.", 'ccat' ), + 5 => isset( $_GET['revision'] ) ? sprintf( __( "Membership restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, + 6 => __( "Membership published.", 'ccat' ) . $view_post_link_html, + 7 => __( "Membership saved.", 'ccat' ), + 8 => __( "Membership submitted.", 'ccat' ) . $preview_post_link_html, + 9 => sprintf( __( 'Membership scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html, + 10 => __( 'Membership draft updated.' ) . $preview_post_link_html, + ); + + return $messages; +} diff --git a/wp-content/themes/ccat/includes/cpt/project.php b/wp-content/themes/ccat/includes/cpt/project.php new file mode 100644 index 0000000..a5e3535 --- /dev/null +++ b/wp-content/themes/ccat/includes/cpt/project.php @@ -0,0 +1,88 @@ + array( + 'name' => __( "Projects", 'ccat' ), + 'menu_name' => __( "Projects", 'ccat' ), + 'singular_name' => __( "Project", 'ccat' ), + 'add_new' => __( "Add New", 'ccat' ), + 'add_new_item' => __( "Add New Project", 'ccat' ), + 'new_item' => __( "New Project", 'ccat' ), + 'edit_item' => __( "Edit Project", 'ccat' ), + 'view_item' => __( "View Project", 'ccat' ), + 'view_items' => __( "View Projects", 'ccat' ), + 'search_items' => __( "Search Projects", 'ccat' ), + 'not_found' => __( "No Projects found", 'ccat' ), + 'not_found_in_trash' => __( "No Projects found in trash", 'ccat' ), + 'parent_item_colon' => __( "Parent Project:", 'ccat' ), + 'all_items' => __( "All Projects", 'ccat' ), + 'archives' => __( "Project Archives", 'ccat' ), + 'attributes' => __( "Project Attributes", 'ccat' ), + 'insert_into_item' => __( "Insert into Project", 'ccat' ), + 'uploaded_to_this_item' => __( "Uploaded to this Project", 'ccat' ), + 'featured_image' => __( "Featured Image", 'ccat' ), + 'set_featured_image' => __( "Set featured image", 'ccat' ), + 'remove_featured_image' => __( "Remove featured image", 'ccat' ), + 'use_featured_image' => __( "Use as featured image", 'ccat' ), + 'filter_items_list' => __( "Filter Projects list", 'ccat' ), + 'items_list_navigation' => __( "Projects list navigation", 'ccat' ), + 'items_list' => __( "Projects list", 'ccat' ), + 'item_published' => __( "Project published.", 'ccat' ), + 'item_published_privately' => __( "Project published privately.", 'ccat' ), + 'item_reverted_to_draft' => __( "Project reverted to draft.", 'ccat' ), + 'item_scheduled' => __( "Project scheduled.", 'ccat' ), + 'item_updated' => __( "Project updated.", 'ccat' ), + ), + 'public' => true, + 'hierarchical' => false, + 'show_ui' => true, + 'show_in_nav_menus' => true, + 'supports' => array( 'title', 'thumbnail', 'excerpt', 'revisions' ), + 'has_archive' => false, + 'rewrite' => array( + 'slug' => 'projet', + 'with_front' => false, + ), + 'query_var' => true, + 'menu_icon' => 'dashicons-portfolio', + 'show_in_rest' => true, + 'rest_base' => 'project', + 'rest_controller_class' => 'WP_REST_Posts_Controller', + 'show_in_graphql' => true, + 'graphql_single_name' => "Project", + 'graphql_plural_name' => "Projects", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'project' post updated messages +add_filter( 'post_updated_messages', 'ccat_project_post_updated_messages' ); +function ccat_project_post_updated_messages( $messages ) { + global $post; + $permalink = get_permalink( $post ); + $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Project", 'ccat' ) ); + $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Project", 'ccat' ) ); + $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) ); + $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Project", 'ccat' ) ); + $messages['project'] = array( + 0 => '', + 1 => __( "Project updated.", 'ccat' ) . $view_post_link_html, + 2 => __( "Custom field updated.", 'ccat' ), + 3 => __( "Custom field deleted.", 'ccat' ), + 4 => __( "Project updated.", 'ccat' ), + 5 => isset( $_GET['revision'] ) ? sprintf( __( "Project restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, + 6 => __( "Project published.", 'ccat' ) . $view_post_link_html, + 7 => __( "Project saved.", 'ccat' ), + 8 => __( "Project submitted.", 'ccat' ) . $preview_post_link_html, + 9 => sprintf( __( 'Project scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html, + 10 => __( 'Project draft updated.' ) . $preview_post_link_html, + ); + + return $messages; +} diff --git a/wp-content/themes/ccat/includes/cpt/representation.php b/wp-content/themes/ccat/includes/cpt/representation.php new file mode 100644 index 0000000..4eb419f --- /dev/null +++ b/wp-content/themes/ccat/includes/cpt/representation.php @@ -0,0 +1,85 @@ + array( + 'name' => __( "Representations", 'ccat' ), + 'menu_name' => __( "Representations", 'ccat' ), + 'singular_name' => __( "Representation", 'ccat' ), + 'add_new' => __( "Add New", 'ccat' ), + 'add_new_item' => __( "Add New Representation", 'ccat' ), + 'new_item' => __( "New Representation", 'ccat' ), + 'edit_item' => __( "Edit Representation", 'ccat' ), + 'view_item' => __( "View Representation", 'ccat' ), + 'view_items' => __( "View Representations", 'ccat' ), + 'search_items' => __( "Search Representations", 'ccat' ), + 'not_found' => __( "No Representations found", 'ccat' ), + 'not_found_in_trash' => __( "No Representations found in trash", 'ccat' ), + 'parent_item_colon' => __( "Parent Representation:", 'ccat' ), + 'all_items' => __( "All Representations", 'ccat' ), + 'archives' => __( "Representation Archives", 'ccat' ), + 'attributes' => __( "Representation Attributes", 'ccat' ), + 'insert_into_item' => __( "Insert into Representation", 'ccat' ), + 'uploaded_to_this_item' => __( "Uploaded to this Representation", 'ccat' ), + 'featured_image' => __( "Featured Image", 'ccat' ), + 'set_featured_image' => __( "Set featured image", 'ccat' ), + 'remove_featured_image' => __( "Remove featured image", 'ccat' ), + 'use_featured_image' => __( "Use as featured image", 'ccat' ), + 'filter_items_list' => __( "Filter Representations list", 'ccat' ), + 'items_list_navigation' => __( "Representations list navigation", 'ccat' ), + 'items_list' => __( "Representations list", 'ccat' ), + 'item_published' => __( "Representation published.", 'ccat' ), + 'item_published_privately' => __( "Representation published privately.", 'ccat' ), + 'item_reverted_to_draft' => __( "Representation reverted to draft.", 'ccat' ), + 'item_scheduled' => __( "Representation scheduled.", 'ccat' ), + 'item_updated' => __( "Representation updated.", 'ccat' ), + ), + 'public' => false, + 'hierarchical' => false, + 'show_ui' => true, + 'show_in_nav_menus' => false, + 'supports' => array( 'title', 'revisions' ), + 'has_archive' => false, + 'rewrite' => false, + 'query_var' => true, + 'menu_icon' => 'dashicons-tickets-alt', + 'show_in_rest' => true, + 'rest_base' => 'representation', + 'rest_controller_class' => 'WP_REST_Posts_Controller', + 'show_in_graphql' => true, + 'graphql_single_name' => "Representation", + 'graphql_plural_name' => "Representations", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'representation' post updated messages +add_filter( 'post_updated_messages', 'ccat_representation_post_updated_messages' ); +function ccat_representation_post_updated_messages( $messages ) { + global $post; + $permalink = get_permalink( $post ); + $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Representation", 'ccat' ) ); + $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Representation", 'ccat' ) ); + $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) ); + $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Representation", 'ccat' ) ); + $messages['representation'] = array( + 0 => '', + 1 => __( "Representation updated.", 'ccat' ) . $view_post_link_html, + 2 => __( "Custom field updated.", 'ccat' ), + 3 => __( "Custom field deleted.", 'ccat' ), + 4 => __( "Representation updated.", 'ccat' ), + 5 => isset( $_GET['revision'] ) ? sprintf( __( "Representation restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, + 6 => __( "Representation published.", 'ccat' ) . $view_post_link_html, + 7 => __( "Representation saved.", 'ccat' ), + 8 => __( "Representation submitted.", 'ccat' ) . $preview_post_link_html, + 9 => sprintf( __( 'Representation scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html, + 10 => __( 'Representation draft updated.' ) . $preview_post_link_html, + ); + + return $messages; +} diff --git a/wp-content/themes/ccat/includes/cpt/resource.php b/wp-content/themes/ccat/includes/cpt/resource.php new file mode 100644 index 0000000..4d9e836 --- /dev/null +++ b/wp-content/themes/ccat/includes/cpt/resource.php @@ -0,0 +1,88 @@ + array( + 'name' => __( "Resources", 'ccat' ), + 'menu_name' => __( "Resources", 'ccat' ), + 'singular_name' => __( "Resource", 'ccat' ), + 'add_new' => __( "Add New", 'ccat' ), + 'add_new_item' => __( "Add New Resource", 'ccat' ), + 'new_item' => __( "New Resource", 'ccat' ), + 'edit_item' => __( "Edit Resource", 'ccat' ), + 'view_item' => __( "View Resource", 'ccat' ), + 'view_items' => __( "View Resources", 'ccat' ), + 'search_items' => __( "Search Resources", 'ccat' ), + 'not_found' => __( "No Resources found", 'ccat' ), + 'not_found_in_trash' => __( "No Resources found in trash", 'ccat' ), + 'parent_item_colon' => __( "Parent Resource:", 'ccat' ), + 'all_items' => __( "All Resources", 'ccat' ), + 'archives' => __( "Resource Archives", 'ccat' ), + 'attributes' => __( "Resource Attributes", 'ccat' ), + 'insert_into_item' => __( "Insert into Resource", 'ccat' ), + 'uploaded_to_this_item' => __( "Uploaded to this Resource", 'ccat' ), + 'featured_image' => __( "Featured Image", 'ccat' ), + 'set_featured_image' => __( "Set featured image", 'ccat' ), + 'remove_featured_image' => __( "Remove featured image", 'ccat' ), + 'use_featured_image' => __( "Use as featured image", 'ccat' ), + 'filter_items_list' => __( "Filter Resources list", 'ccat' ), + 'items_list_navigation' => __( "Resources list navigation", 'ccat' ), + 'items_list' => __( "Resources list", 'ccat' ), + 'item_published' => __( "Resource published.", 'ccat' ), + 'item_published_privately' => __( "Resource published privately.", 'ccat' ), + 'item_reverted_to_draft' => __( "Resource reverted to draft.", 'ccat' ), + 'item_scheduled' => __( "Resource scheduled.", 'ccat' ), + 'item_updated' => __( "Resource updated.", 'ccat' ), + ), + 'public' => true, + 'hierarchical' => false, + 'show_ui' => true, + 'show_in_nav_menus' => false, + 'supports' => array( 'title', 'thumbnail', 'excerpt', 'revisions' ), + 'has_archive' => false, + 'rewrite' => array( + 'slug' => 'ressource', + 'with_front' => false, + ), + 'query_var' => true, + 'menu_icon' => 'dashicons-admin-tools', + 'show_in_rest' => true, + 'rest_base' => 'resource', + 'rest_controller_class' => 'WP_REST_Posts_Controller', + 'show_in_graphql' => true, + 'graphql_single_name' => "Resource", + 'graphql_plural_name' => "Resources", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'resource' post updated messages +add_filter( 'post_updated_messages', 'ccat_resource_post_updated_messages' ); +function ccat_resource_post_updated_messages( $messages ) { + global $post; + $permalink = get_permalink( $post ); + $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Resource", 'ccat' ) ); + $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Resource", 'ccat' ) ); + $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) ); + $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Resource", 'ccat' ) ); + $messages['resource'] = array( + 0 => '', + 1 => __( "Resource updated.", 'ccat' ) . $view_post_link_html, + 2 => __( "Custom field updated.", 'ccat' ), + 3 => __( "Custom field deleted.", 'ccat' ), + 4 => __( "Resource updated.", 'ccat' ), + 5 => isset( $_GET['revision'] ) ? sprintf( __( "Resource restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, + 6 => __( "Resource published.", 'ccat' ) . $view_post_link_html, + 7 => __( "Resource saved.", 'ccat' ), + 8 => __( "Resource submitted.", 'ccat' ) . $preview_post_link_html, + 9 => sprintf( __( 'Resource scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html, + 10 => __( 'Resource draft updated.' ) . $preview_post_link_html, + ); + + return $messages; +} diff --git a/wp-content/themes/ccat/includes/cpt/template.php b/wp-content/themes/ccat/includes/cpt/template.php new file mode 100644 index 0000000..b28eaa1 --- /dev/null +++ b/wp-content/themes/ccat/includes/cpt/template.php @@ -0,0 +1,85 @@ + array( + 'name' => __( "Templates", 'ccat' ), + 'menu_name' => __( "Templates", 'ccat' ), + 'singular_name' => __( "Template", 'ccat' ), + 'add_new' => __( "Add New", 'ccat' ), + 'add_new_item' => __( "Add New Template", 'ccat' ), + 'new_item' => __( "New Template", 'ccat' ), + 'edit_item' => __( "Edit Template", 'ccat' ), + 'view_item' => __( "View Template", 'ccat' ), + 'view_items' => __( "View Templates", 'ccat' ), + 'search_items' => __( "Search Templates", 'ccat' ), + 'not_found' => __( "No Templates found", 'ccat' ), + 'not_found_in_trash' => __( "No Templates found in trash", 'ccat' ), + 'parent_item_colon' => __( "Parent Template:", 'ccat' ), + 'all_items' => __( "All Templates", 'ccat' ), + 'archives' => __( "Template Archives", 'ccat' ), + 'attributes' => __( "Template Attributes", 'ccat' ), + 'insert_into_item' => __( "Insert into Template", 'ccat' ), + 'uploaded_to_this_item' => __( "Uploaded to this Template", 'ccat' ), + 'featured_image' => __( "Featured Image", 'ccat' ), + 'set_featured_image' => __( "Set featured image", 'ccat' ), + 'remove_featured_image' => __( "Remove featured image", 'ccat' ), + 'use_featured_image' => __( "Use as featured image", 'ccat' ), + 'filter_items_list' => __( "Filter Templates list", 'ccat' ), + 'items_list_navigation' => __( "Templates list navigation", 'ccat' ), + 'items_list' => __( "Templates list", 'ccat' ), + 'item_published' => __( "Template published.", 'ccat' ), + 'item_published_privately' => __( "Template published privately.", 'ccat' ), + 'item_reverted_to_draft' => __( "Template reverted to draft.", 'ccat' ), + 'item_scheduled' => __( "Template scheduled.", 'ccat' ), + 'item_updated' => __( "Template updated.", 'ccat' ), + ), + 'public' => false, + 'hierarchical' => false, + 'show_ui' => true, + 'show_in_nav_menus' => false, + 'supports' => array( 'title', 'revisions' ), + 'has_archive' => false, + 'rewrite' => false, + 'query_var' => true, + 'menu_icon' => 'dashicons-clipboard', + 'show_in_rest' => true, + 'rest_base' => 'template', + 'rest_controller_class' => 'WP_REST_Posts_Controller', + 'show_in_graphql' => true, + 'graphql_single_name' => "Template", + 'graphql_plural_name' => "Templates", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'template' post updated messages +add_filter( 'post_updated_messages', 'ccat_template_post_updated_messages' ); +function ccat_template_post_updated_messages( $messages ) { + global $post; + $permalink = get_permalink( $post ); + $preview_post_link_html = sprintf( ' %2$s', esc_url( get_preview_post_link( $post ) ), __( "Preview Template", 'ccat' ) ); + $scheduled_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "Preview Template", 'ccat' ) ); + $scheduled_date = date_i18n( __( "M j, Y @ H:i", 'ccat' ), strtotime( $post->post_date ) ); + $view_post_link_html = sprintf( ' %2$s', esc_url( $permalink ), __( "View Template", 'ccat' ) ); + $messages['template'] = array( + 0 => '', + 1 => __( "Template updated.", 'ccat' ) . $view_post_link_html, + 2 => __( "Custom field updated.", 'ccat' ), + 3 => __( "Custom field deleted.", 'ccat' ), + 4 => __( "Template updated.", 'ccat' ), + 5 => isset( $_GET['revision'] ) ? sprintf( __( "Template restored to revision from %s", 'ccat' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, + 6 => __( "Template published.", 'ccat' ) . $view_post_link_html, + 7 => __( "Template saved.", 'ccat' ), + 8 => __( "Template submitted.", 'ccat' ) . $preview_post_link_html, + 9 => sprintf( __( 'Template scheduled for: %s.' ), '' . $scheduled_date . '' ) . $scheduled_post_link_html, + 10 => __( 'Template draft updated.' ) . $preview_post_link_html, + ); + + return $messages; +} diff --git a/wp-content/themes/ccat/includes/taxonomies/discipline.php b/wp-content/themes/ccat/includes/taxonomies/discipline.php new file mode 100644 index 0000000..995d952 --- /dev/null +++ b/wp-content/themes/ccat/includes/taxonomies/discipline.php @@ -0,0 +1,92 @@ + array( + 'name' => __( "Disciplines", 'ccat' ), + 'singular_name' => __( "Discipline", 'ccat' ), + 'search_items' => __( "Search disciplines", 'ccat' ), + 'popular_items' => __( "Popular disciplines", 'ccat' ), + 'all_items' => __( "All disciplines", 'ccat' ), + 'parent_item' => __( "Parent discipline", 'ccat' ), + 'parent_item_colon' => __( "Parent discipline:", 'ccat' ), + 'edit_item' => __( "Edit discipline", 'ccat' ), + 'update_item' => __( "Update discipline", 'ccat' ), + 'view_item' => __( "View discipline", 'ccat' ), + 'add_new_item' => __( "New discipline", 'ccat' ), + 'new_item_name' => __( "New discipline", 'ccat' ), + 'separate_items_with_commas' => __( "Separate disciplines with commas", 'ccat' ), + 'add_or_remove_items' => __( "Add or remove disciplines", 'ccat' ), + 'choose_from_most_used' => __( "Choose from the most used disciplines", 'ccat' ), + 'not_found' => __( "No disciplines found.", 'ccat' ), + 'no_terms' => __( "No disciplines", 'ccat' ), + 'menu_name' => __( "Disciplines", 'ccat' ), + 'items_list_navigation' => __( "Disciplines list navigation", 'ccat' ), + 'items_list' => __( "Disciplines list", 'ccat' ), + 'most_used' => __( "Most used", 'ccat' ), + 'back_to_items' => __( "← Back to disciplines", 'ccat' ), + ), + 'public' => false, + 'hierarchical' => true, + 'show_ui' => true, + 'show_in_menu' => false, + 'show_in_nav_menus' => false, + 'show_admin_column' => true, + 'rewrite' => false, + 'query_var' => true, + 'show_in_rest' => true, + 'rest_base' => 'discipline', + 'rest_controller_class' => 'WP_REST_Terms_Controller', + 'meta_box_cb' => false, + 'show_in_graphql' => true, + 'graphql_single_name' => "Discipline", + 'graphql_plural_name' => "Disciplines", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'discipline' term updated messages +add_filter( 'term_updated_messages', 'ccat_discipline_term_updated_messages' ); +function ccat_discipline_term_updated_messages( $messages ) { + $messages['discipline'] = array( + 0 => '', + 1 => __( "Discipline added.", 'ccat' ), + 2 => __( "Discipline deleted.", 'ccat' ), + 3 => __( "Discipline updated.", 'ccat' ), + 4 => __( "Discipline not added.", 'ccat' ), + 5 => __( "Discipline not updated.", 'ccat' ), + 6 => __( "Disciplines deleted.", 'ccat' ), + ); + + return $messages; +} + +// Add a top-level menu for the 'discipline' taxonomy in the admin menu +add_action( 'admin_menu', 'ccat_discripline_admin_menu' ); +function ccat_discripline_admin_menu() { + add_menu_page( + 'Disciplines', + 'Disciplines', + 'manage_options', + 'edit-tags.php?taxonomy=discipline', + '', + 'dashicons-microphone', + 5 + ); +} + +// Set the 'discipline' taxonomy menu as active in the admin menu +add_filter( 'parent_file', 'ccat_discipline_parent_file' ); +function ccat_discipline_parent_file( $parent_file ) { + global $current_screen; + if ( isset( $current_screen->taxonomy ) && $current_screen->taxonomy === 'discipline' ) { + $parent_file = 'edit-tags.php?taxonomy=discipline'; + } + return $parent_file; +} diff --git a/wp-content/themes/ccat/includes/taxonomies/project-category.php b/wp-content/themes/ccat/includes/taxonomies/project-category.php new file mode 100644 index 0000000..f6c535c --- /dev/null +++ b/wp-content/themes/ccat/includes/taxonomies/project-category.php @@ -0,0 +1,68 @@ + array( + 'name' => __( "Project categories", 'ccat' ), + 'singular_name' => __( "Project category", 'ccat' ), + 'search_items' => __( "Search project-categories", 'ccat' ), + 'popular_items' => __( "Popular project-categories", 'ccat' ), + 'all_items' => __( "All project-categories", 'ccat' ), + 'parent_item' => __( "Parent project-category", 'ccat' ), + 'parent_item_colon' => __( "Parent project-category:", 'ccat' ), + 'edit_item' => __( "Edit project-category", 'ccat' ), + 'update_item' => __( "Update project-category", 'ccat' ), + 'view_item' => __( "View project-category", 'ccat' ), + 'add_new_item' => __( "New project-category", 'ccat' ), + 'new_item_name' => __( "New project-category", 'ccat' ), + 'separate_items_with_commas' => __( "Separate project-categories with commas", 'ccat' ), + 'add_or_remove_items' => __( "Add or remove project-categories", 'ccat' ), + 'choose_from_most_used' => __( "Choose from the most used project-categories", 'ccat' ), + 'not_found' => __( "No project-categories found.", 'ccat' ), + 'no_terms' => __( "No project-categories", 'ccat' ), + 'menu_name' => __( "Project categories", 'ccat' ), + 'items_list_navigation' => __( "Project categories list navigation", 'ccat' ), + 'items_list' => __( "Project categories list", 'ccat' ), + 'most_used' => __( "Most used", 'ccat' ), + 'back_to_items' => __( "← Back to project-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' => 'project_category', + 'rest_controller_class' => 'WP_REST_Terms_Controller', + 'meta_box_cb' => false, + 'show_in_graphql' => true, + 'graphql_single_name' => "ProjectCategory", + 'graphql_plural_name' => "ProjectCategories", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'project-category' term updated messages +add_filter( 'term_updated_messages', 'ccat_project_category_term_updated_messages' ); +function ccat_project_category_term_updated_messages( $messages ) { + $messages['project_category'] = array( + 0 => '', + 1 => __( "Project category added.", 'ccat' ), + 2 => __( "Project category deleted.", 'ccat' ), + 3 => __( "Project category updated.", 'ccat' ), + 4 => __( "Project category not added.", 'ccat' ), + 5 => __( "Project category not updated.", 'ccat' ), + 6 => __( "Project categories deleted.", 'ccat' ), + ); + + return $messages; +} diff --git a/wp-content/themes/ccat/includes/taxonomies/resource-category.php b/wp-content/themes/ccat/includes/taxonomies/resource-category.php new file mode 100644 index 0000000..4730e9f --- /dev/null +++ b/wp-content/themes/ccat/includes/taxonomies/resource-category.php @@ -0,0 +1,68 @@ + array( + 'name' => __( "Resource categories", 'ccat' ), + 'singular_name' => __( "Resource category", 'ccat' ), + 'search_items' => __( "Search resource-categories", 'ccat' ), + 'popular_items' => __( "Popular resource-categories", 'ccat' ), + 'all_items' => __( "All resource-categories", 'ccat' ), + 'parent_item' => __( "Parent resource-category", 'ccat' ), + 'parent_item_colon' => __( "Parent resource-category:", 'ccat' ), + 'edit_item' => __( "Edit resource-category", 'ccat' ), + 'update_item' => __( "Update resource-category", 'ccat' ), + 'view_item' => __( "View resource-category", 'ccat' ), + 'add_new_item' => __( "New resource-category", 'ccat' ), + 'new_item_name' => __( "New resource-category", 'ccat' ), + 'separate_items_with_commas' => __( "Separate resource-categories with commas", 'ccat' ), + 'add_or_remove_items' => __( "Add or remove resource-categories", 'ccat' ), + 'choose_from_most_used' => __( "Choose from the most used resource-categories", 'ccat' ), + 'not_found' => __( "No resource-categories found.", 'ccat' ), + 'no_terms' => __( "No resource-categories", 'ccat' ), + 'menu_name' => __( "Resource categories", 'ccat' ), + 'items_list_navigation' => __( "Resource categories list navigation", 'ccat' ), + 'items_list' => __( "Resource categories list", 'ccat' ), + 'most_used' => __( "Most used", 'ccat' ), + 'back_to_items' => __( "← Back to resource-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' => 'resource_category', + 'rest_controller_class' => 'WP_REST_Terms_Controller', + 'meta_box_cb' => false, + 'show_in_graphql' => true, + 'graphql_single_name' => "ResourceCategory", + 'graphql_plural_name' => "ResourceCategories", + 'graphql_interfaces' => array( 'Node' ), + ) + ); +} + +// Custom 'resource-category' term updated messages +add_filter( 'term_updated_messages', 'ccat_resource_category_term_updated_messages' ); +function ccat_resource_category_term_updated_messages( $messages ) { + $messages['resource_category'] = array( + 0 => '', + 1 => __( "Resource category added.", 'ccat' ), + 2 => __( "Resource category deleted.", 'ccat' ), + 3 => __( "Resource category updated.", 'ccat' ), + 4 => __( "Resource category not added.", 'ccat' ), + 5 => __( "Resource category not updated.", 'ccat' ), + 6 => __( "Resource categories deleted.", 'ccat' ), + ); + + return $messages; +} diff --git a/wp-content/themes/ccat/includes/vendors/acf.php b/wp-content/themes/ccat/includes/vendors/acf.php new file mode 100644 index 0000000..c5143b1 --- /dev/null +++ b/wp-content/themes/ccat/includes/vendors/acf.php @@ -0,0 +1,20 @@ +\n" +"Language-Team: \n" +"Language: \n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Loco https://localise.biz/\n" +"X-Loco-Version: 2.8.0; wp-6.8.1; php-8.2.28\n" +"X-Domain: ccat" + +#: includes/taxonomies/discipline.php:32 +msgid "← Back to disciplines" +msgstr "" + +#: includes/taxonomies/project-category.php:32 +msgid "← Back to project-categories" +msgstr "" + +#: includes/taxonomies/resource-category.php:32 +msgid "← Back to resource-categories" +msgstr "" + +#: acf-json/acf-translations.php:2 +msgid "Abstract – Builder" +msgstr "" + +#: acf-json/acf-translations.php:3 +msgid "Abstract – Credits" +msgstr "" + +#: acf-json/acf-translations.php:4 +msgid "Abstract – Entity" +msgstr "" + +#: acf-json/acf-translations.php:5 +msgid "Abstract – Gallery" +msgstr "" + +#: acf-json/acf-translations.php:6 +msgid "Abstract – Offer" +msgstr "" + +#: acf-json/acf-translations.php:7 +msgid "Abstract – Social" +msgstr "" + +#: acf-json/acf-translations.php:8 +msgid "Add File" +msgstr "" + +#: includes/cpt/representation.php:13 includes/cpt/contributor.php:13 +#: includes/cpt/membership.php:13 includes/cpt/project.php:13 +#: includes/cpt/location.php:13 includes/cpt/template.php:13 +#: includes/cpt/event.php:13 includes/cpt/resource.php:13 +msgid "Add New" +msgstr "" + +#: includes/cpt/contributor.php:14 +msgid "Add New Contributor" +msgstr "" + +#: includes/cpt/event.php:14 +msgid "Add New Event" +msgstr "" + +#: includes/cpt/location.php:14 +msgid "Add New Location" +msgstr "" + +#: includes/cpt/membership.php:14 +msgid "Add New Membership" +msgstr "" + +#: includes/cpt/project.php:14 +msgid "Add New Project" +msgstr "" + +#: includes/cpt/representation.php:14 +msgid "Add New Representation" +msgstr "" + +#: includes/cpt/resource.php:14 +msgid "Add New Resource" +msgstr "" + +#: includes/cpt/template.php:14 +msgid "Add New Template" +msgstr "" + +#: includes/taxonomies/discipline.php:24 +msgid "Add or remove disciplines" +msgstr "" + +#: includes/taxonomies/project-category.php:24 +msgid "Add or remove project-categories" +msgstr "" + +#: includes/taxonomies/resource-category.php:24 +msgid "Add or remove resource-categories" +msgstr "" + +#: acf-json/acf-translations.php:9 +msgid "Address" +msgstr "" + +#: acf-json/acf-translations.php:10 +msgid "Adultes (18+)" +msgstr "" + +#: acf-json/acf-translations.php:11 +msgid "Ajouter un élément" +msgstr "" + +#: includes/cpt/contributor.php:23 +msgid "All Contributors" +msgstr "" + +#: includes/taxonomies/discipline.php:15 +msgid "All disciplines" +msgstr "" + +#: includes/cpt/event.php:23 +msgid "All Events" +msgstr "" + +#: includes/cpt/location.php:23 +msgid "All Locations" +msgstr "" + +#: includes/cpt/membership.php:23 +msgid "All Memberships" +msgstr "" + +#: includes/taxonomies/project-category.php:15 +msgid "All project-categories" +msgstr "" + +#: includes/cpt/project.php:23 +msgid "All Projects" +msgstr "" + +#: includes/cpt/representation.php:23 +msgid "All Representations" +msgstr "" + +#: includes/taxonomies/resource-category.php:15 +msgid "All resource-categories" +msgstr "" + +#: includes/cpt/resource.php:23 +msgid "All Resources" +msgstr "" + +#: includes/cpt/template.php:23 +msgid "All Templates" +msgstr "" + +#: acf-json/acf-translations.php:12 +msgid "Alternative title(s)" +msgstr "" + +#: acf-json/acf-translations.php:13 +msgid "Attendance mode" +msgstr "" + +#: acf-json/acf-translations.php:14 +msgid "Auteur" +msgstr "" + +#: acf-json/acf-translations.php:15 +msgid "Bar" +msgstr "" + +#: acf-json/acf-translations.php:16 +msgid "Builder" +msgstr "" + +#: acf-json/acf-translations.php:17 +msgid "Cancelled" +msgstr "" + +#: acf-json/acf-translations.php:18 +msgid "Categorie(s)" +msgstr "" + +#: acf-json/acf-translations.php:19 +msgid "Category" +msgstr "" + +#. Name of the theme +msgid "CCAT" +msgstr "" + +#: includes/taxonomies/discipline.php:25 +msgid "Choose from the most used disciplines" +msgstr "" + +#: includes/taxonomies/project-category.php:25 +msgid "Choose from the most used project-categories" +msgstr "" + +#: includes/taxonomies/resource-category.php:25 +msgid "Choose from the most used resource-categories" +msgstr "" + +#: acf-json/acf-translations.php:20 +msgid "Complete" +msgstr "" + +#: acf-json/acf-translations.php:21 +msgid "Compositeur" +msgstr "" + +#: acf-json/acf-translations.php:22 +msgid "Configuration" +msgstr "" + +#: acf-json/acf-translations.php:23 +msgid "Configuration name" +msgstr "" + +#: acf-json/acf-translations.php:24 +msgid "Confirmed" +msgstr "" + +#. Description of the theme +msgid "Conseil de la culture de l'Abitibi-Témiscamingue" +msgstr "" + +#: acf-json/acf-translations.php:25 +msgid "Content" +msgstr "" + +#: acf-json/acf-translations.php:26 +msgid "Contribution type(s)" +msgstr "" + +#: acf-json/acf-translations.php:27 +msgid "Contribution(s)" +msgstr "" + +#: acf-json/acf-translations.php:28 includes/cpt/contributor.php:12 +msgid "Contributor" +msgstr "" + +#: includes/cpt/contributor.php:24 +msgid "Contributor Archives" +msgstr "" + +#: includes/cpt/contributor.php:25 +msgid "Contributor Attributes" +msgstr "" + +#: includes/cpt/contributor.php:36 +msgid "Contributor published privately." +msgstr "" + +#: includes/cpt/contributor.php:35 includes/cpt/contributor.php:80 +msgid "Contributor published." +msgstr "" + +#: includes/cpt/contributor.php:79 +#, php-format +msgid "Contributor restored to revision from %s" +msgstr "" + +#: includes/cpt/contributor.php:37 +msgid "Contributor reverted to draft." +msgstr "" + +#: includes/cpt/contributor.php:81 +msgid "Contributor saved." +msgstr "" + +#: includes/cpt/contributor.php:38 +msgid "Contributor scheduled." +msgstr "" + +#: includes/cpt/contributor.php:82 +msgid "Contributor submitted." +msgstr "" + +#: acf-json/acf-translations.php:29 +msgid "Contributor type" +msgstr "" + +#: includes/cpt/contributor.php:39 includes/cpt/contributor.php:75 +#: includes/cpt/contributor.php:78 +msgid "Contributor updated." +msgstr "" + +#: includes/cpt/contributor.php:10 includes/cpt/contributor.php:11 +msgid "Contributors" +msgstr "" + +#: includes/cpt/contributor.php:34 +msgid "Contributors list" +msgstr "" + +#: includes/cpt/contributor.php:33 +msgid "Contributors list navigation" +msgstr "" + +#: acf-json/acf-translations.php:30 +msgid "Credits" +msgstr "" + +#: includes/cpt/representation.php:74 includes/cpt/contributor.php:77 +#: includes/cpt/membership.php:77 includes/cpt/project.php:77 +#: includes/cpt/location.php:78 includes/cpt/template.php:74 +#: includes/cpt/event.php:77 includes/cpt/resource.php:77 +msgid "Custom field deleted." +msgstr "" + +#: includes/cpt/representation.php:73 includes/cpt/contributor.php:76 +#: includes/cpt/membership.php:76 includes/cpt/project.php:76 +#: includes/cpt/location.php:77 includes/cpt/template.php:73 +#: includes/cpt/event.php:76 includes/cpt/resource.php:76 +msgid "Custom field updated." +msgstr "" + +#: acf-json/acf-translations.php:31 +msgid "Date / time" +msgstr "" + +#: acf-json/acf-translations.php:32 +msgid "Date range" +msgstr "" + +#: acf-json/acf-translations.php:33 +msgid "Day(s)" +msgstr "" + +#: acf-json/acf-translations.php:34 +msgid "Description" +msgstr "" + +#: includes/taxonomies/discipline.php:12 +msgid "Discipline" +msgstr "" + +#: includes/taxonomies/discipline.php:59 +msgid "Discipline added." +msgstr "" + +#: includes/taxonomies/discipline.php:60 +msgid "Discipline deleted." +msgstr "" + +#: includes/taxonomies/discipline.php:62 +msgid "Discipline not added." +msgstr "" + +#: includes/taxonomies/discipline.php:63 +msgid "Discipline not updated." +msgstr "" + +#: includes/taxonomies/discipline.php:61 +msgid "Discipline updated." +msgstr "" + +#: acf-json/acf-translations.php:35 +msgid "Discipline(s)" +msgstr "" + +#: includes/taxonomies/discipline.php:11 includes/taxonomies/discipline.php:28 +msgid "Disciplines" +msgstr "" + +#: includes/taxonomies/discipline.php:64 +msgid "Disciplines deleted." +msgstr "" + +#: includes/taxonomies/discipline.php:30 +msgid "Disciplines list" +msgstr "" + +#: includes/taxonomies/discipline.php:29 +msgid "Disciplines list navigation" +msgstr "" + +#: acf-json/acf-translations.php:36 +msgid "Document type" +msgstr "" + +#: acf-json/acf-translations.php:37 +msgid "Document(s)" +msgstr "" + +#: includes/cpt/contributor.php:16 +msgid "Edit Contributor" +msgstr "" + +#: includes/taxonomies/discipline.php:18 +msgid "Edit discipline" +msgstr "" + +#: includes/cpt/event.php:16 +msgid "Edit Event" +msgstr "" + +#: includes/cpt/location.php:16 +msgid "Edit Location" +msgstr "" + +#: includes/cpt/membership.php:16 +msgid "Edit Membership" +msgstr "" + +#: includes/cpt/project.php:16 +msgid "Edit Project" +msgstr "" + +#: includes/taxonomies/project-category.php:18 +msgid "Edit project-category" +msgstr "" + +#: includes/cpt/representation.php:16 +msgid "Edit Representation" +msgstr "" + +#: includes/cpt/resource.php:16 +msgid "Edit Resource" +msgstr "" + +#: includes/taxonomies/resource-category.php:18 +msgid "Edit resource-category" +msgstr "" + +#: includes/cpt/template.php:16 +msgid "Edit Template" +msgstr "" + +#: acf-json/acf-translations.php:38 +msgid "Email" +msgstr "" + +#: acf-json/acf-translations.php:39 +msgid "End date" +msgstr "" + +#: acf-json/acf-translations.php:40 +msgid "End month" +msgstr "" + +#: acf-json/acf-translations.php:41 +msgid "End time" +msgstr "" + +#: acf-json/acf-translations.php:42 +msgid "Enfants" +msgstr "" + +#: acf-json/acf-translations.php:43 +msgid "Entity" +msgstr "" + +#: acf-json/acf-translations.php:44 includes/cpt/event.php:12 +msgid "Event" +msgstr "" + +#: includes/cpt/event.php:24 +msgid "Event Archives" +msgstr "" + +#: includes/cpt/event.php:25 +msgid "Event Attributes" +msgstr "" + +#: includes/cpt/event.php:36 +msgid "Event published privately." +msgstr "" + +#: includes/cpt/event.php:35 includes/cpt/event.php:80 +msgid "Event published." +msgstr "" + +#: includes/cpt/event.php:79 +#, php-format +msgid "Event restored to revision from %s" +msgstr "" + +#: includes/cpt/event.php:37 +msgid "Event reverted to draft." +msgstr "" + +#: includes/cpt/event.php:81 +msgid "Event saved." +msgstr "" + +#: includes/cpt/event.php:38 +msgid "Event scheduled." +msgstr "" + +#: includes/cpt/event.php:82 +msgid "Event submitted." +msgstr "" + +#: acf-json/acf-translations.php:45 +msgid "Event type" +msgstr "" + +#: includes/cpt/event.php:39 includes/cpt/event.php:75 +#: includes/cpt/event.php:78 +msgid "Event updated." +msgstr "" + +#: includes/cpt/event.php:10 includes/cpt/event.php:11 +msgid "Events" +msgstr "" + +#: includes/cpt/event.php:34 +msgid "Events list" +msgstr "" + +#: includes/cpt/event.php:33 +msgid "Events list navigation" +msgstr "" + +#: acf-json/acf-translations.php:46 +msgid "Exposition" +msgstr "" + +#: acf-json/acf-translations.php:47 +msgid "Failed" +msgstr "" + +#: acf-json/acf-translations.php:48 +msgid "Familial" +msgstr "" + +#: includes/cpt/representation.php:28 includes/cpt/contributor.php:28 +#: includes/cpt/membership.php:28 includes/cpt/project.php:28 +#: includes/cpt/location.php:28 includes/cpt/template.php:28 +#: includes/cpt/event.php:28 includes/cpt/resource.php:28 +msgid "Featured Image" +msgstr "" + +#: acf-json/acf-translations.php:49 +msgid "Festival" +msgstr "" + +#: acf-json/acf-translations.php:50 +msgid "File" +msgstr "" + +#: includes/cpt/contributor.php:32 +msgid "Filter Contributors list" +msgstr "" + +#: includes/cpt/event.php:32 +msgid "Filter Events list" +msgstr "" + +#: includes/cpt/location.php:32 +msgid "Filter Locations list" +msgstr "" + +#: includes/cpt/membership.php:32 +msgid "Filter Memberships list" +msgstr "" + +#: includes/cpt/project.php:32 +msgid "Filter Projects list" +msgstr "" + +#: includes/cpt/representation.php:32 +msgid "Filter Representations list" +msgstr "" + +#: includes/cpt/resource.php:32 +msgid "Filter Resources list" +msgstr "" + +#: includes/cpt/template.php:32 +msgid "Filter Templates list" +msgstr "" + +#: acf-json/acf-translations.php:51 +msgid "Form" +msgstr "" + +#: acf-json/acf-translations.php:52 +msgid "Free" +msgstr "" + +#: acf-json/acf-translations.php:53 +msgid "Gallery" +msgstr "" + +#: acf-json/acf-translations.php:54 +msgid "H:i" +msgstr "" + +#. Author URI of the theme +msgid "https://websimple.com/" +msgstr "" + +#: acf-json/acf-translations.php:55 +msgid "Hybrid" +msgstr "" + +#: acf-json/acf-translations.php:56 +msgid "Identifier(s)" +msgstr "" + +#: acf-json/acf-translations.php:57 +msgid "Image" +msgstr "" + +#: acf-json/acf-translations.php:58 +msgid "In-person" +msgstr "" + +#: acf-json/acf-translations.php:59 +msgid "Individual day(s)" +msgstr "" + +#: includes/cpt/contributor.php:26 +msgid "Insert into Contributor" +msgstr "" + +#: includes/cpt/event.php:26 +msgid "Insert into Event" +msgstr "" + +#: includes/cpt/location.php:26 +msgid "Insert into Location" +msgstr "" + +#: includes/cpt/membership.php:26 +msgid "Insert into Membership" +msgstr "" + +#: includes/cpt/project.php:26 +msgid "Insert into Project" +msgstr "" + +#: includes/cpt/representation.php:26 +msgid "Insert into Representation" +msgstr "" + +#: includes/cpt/resource.php:26 +msgid "Insert into Resource" +msgstr "" + +#: includes/cpt/template.php:26 +msgid "Insert into Template" +msgstr "" + +#: acf-json/acf-translations.php:60 +msgid "Interprète" +msgstr "" + +#: acf-json/acf-translations.php:61 +msgid "Language(s)" +msgstr "" + +#: acf-json/acf-translations.php:62 +msgid "Locality" +msgstr "" + +#: acf-json/acf-translations.php:63 includes/cpt/location.php:12 +msgid "Location" +msgstr "" + +#: includes/cpt/location.php:24 +msgid "Location Archives" +msgstr "" + +#: includes/cpt/location.php:25 +msgid "Location Attributes" +msgstr "" + +#: includes/cpt/location.php:36 +msgid "Location published privately." +msgstr "" + +#: includes/cpt/location.php:35 includes/cpt/location.php:81 +msgid "Location published." +msgstr "" + +#: includes/cpt/location.php:80 +#, php-format +msgid "Location restored to revision from %s" +msgstr "" + +#: includes/cpt/location.php:37 +msgid "Location reverted to draft." +msgstr "" + +#: includes/cpt/location.php:82 +msgid "Location saved." +msgstr "" + +#: includes/cpt/location.php:38 +msgid "Location scheduled." +msgstr "" + +#: includes/cpt/location.php:83 +msgid "Location submitted." +msgstr "" + +#: acf-json/acf-translations.php:64 +msgid "Location type" +msgstr "" + +#: includes/cpt/location.php:39 includes/cpt/location.php:76 +#: includes/cpt/location.php:79 +msgid "Location updated." +msgstr "" + +#: includes/cpt/location.php:10 includes/cpt/location.php:11 +msgid "Locations" +msgstr "" + +#: includes/cpt/location.php:34 +msgid "Locations list" +msgstr "" + +#: includes/cpt/location.php:33 +msgid "Locations list navigation" +msgstr "" + +#: includes/cpt/representation.php:68 includes/cpt/contributor.php:71 +#: includes/cpt/membership.php:71 includes/cpt/project.php:71 +#: includes/cpt/location.php:72 includes/cpt/template.php:68 +#: includes/cpt/event.php:71 includes/cpt/resource.php:71 +msgid "M j, Y @ H:i" +msgstr "" + +#: acf-json/acf-translations.php:65 +msgid "Managed contributor(s)" +msgstr "" + +#: acf-json/acf-translations.php:66 +msgid "Media type" +msgstr "" + +#: acf-json/acf-translations.php:67 +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 "" + +#: acf-json/acf-translations.php:68 +msgid "Membership profile" +msgstr "" + +#: includes/cpt/membership.php:36 +msgid "Membership published privately." +msgstr "" + +#: includes/cpt/membership.php:35 includes/cpt/membership.php:80 +msgid "Membership published." +msgstr "" + +#: includes/cpt/membership.php:79 +#, 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:81 +msgid "Membership saved." +msgstr "" + +#: includes/cpt/membership.php:38 +msgid "Membership scheduled." +msgstr "" + +#: includes/cpt/membership.php:82 +msgid "Membership submitted." +msgstr "" + +#: acf-json/acf-translations.php:69 +msgid "Membership type" +msgstr "" + +#: includes/cpt/membership.php:39 includes/cpt/membership.php:75 +#: includes/cpt/membership.php:78 +msgid "Membership updated." +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:70 +msgid "Message" +msgstr "" + +#: acf-json/acf-translations.php:71 +msgid "Minimum price" +msgstr "" + +#: acf-json/acf-translations.php:72 +msgid "Moral entity" +msgstr "" + +#: includes/taxonomies/resource-category.php:31 +#: includes/taxonomies/discipline.php:31 +#: includes/taxonomies/project-category.php:31 +msgid "Most used" +msgstr "" + +#: acf-json/acf-translations.php:73 +msgid "Name" +msgstr "" + +#: includes/cpt/contributor.php:15 +msgid "New Contributor" +msgstr "" + +#: includes/taxonomies/discipline.php:21 includes/taxonomies/discipline.php:22 +msgid "New discipline" +msgstr "" + +#: includes/cpt/event.php:15 +msgid "New Event" +msgstr "" + +#: includes/cpt/location.php:15 +msgid "New Location" +msgstr "" + +#: includes/cpt/membership.php:15 +msgid "New Membership" +msgstr "" + +#: includes/cpt/project.php:15 +msgid "New Project" +msgstr "" + +#: includes/taxonomies/project-category.php:21 +#: includes/taxonomies/project-category.php:22 +msgid "New project-category" +msgstr "" + +#: includes/cpt/representation.php:15 +msgid "New Representation" +msgstr "" + +#: includes/cpt/resource.php:15 +msgid "New Resource" +msgstr "" + +#: includes/taxonomies/resource-category.php:21 +#: includes/taxonomies/resource-category.php:22 +msgid "New resource-category" +msgstr "" + +#: includes/cpt/template.php:15 +msgid "New Template" +msgstr "" + +#: includes/cpt/contributor.php:20 +msgid "No Contributors found" +msgstr "" + +#: includes/cpt/contributor.php:21 +msgid "No Contributors found in trash" +msgstr "" + +#: includes/taxonomies/discipline.php:27 +msgid "No disciplines" +msgstr "" + +#: includes/taxonomies/discipline.php:26 +msgid "No disciplines found." +msgstr "" + +#: includes/cpt/event.php:20 +msgid "No Events found" +msgstr "" + +#: includes/cpt/event.php:21 +msgid "No Events found in trash" +msgstr "" + +#: includes/cpt/location.php:20 +msgid "No Locations found" +msgstr "" + +#: includes/cpt/location.php:21 +msgid "No Locations found in trash" +msgstr "" + +#: includes/cpt/membership.php:20 +msgid "No Memberships found" +msgstr "" + +#: includes/cpt/membership.php:21 +msgid "No Memberships found in trash" +msgstr "" + +#: includes/taxonomies/project-category.php:27 +msgid "No project-categories" +msgstr "" + +#: includes/taxonomies/project-category.php:26 +msgid "No project-categories found." +msgstr "" + +#: includes/cpt/project.php:20 +msgid "No Projects found" +msgstr "" + +#: includes/cpt/project.php:21 +msgid "No Projects found in trash" +msgstr "" + +#: includes/cpt/representation.php:20 +msgid "No Representations found" +msgstr "" + +#: includes/cpt/representation.php:21 +msgid "No Representations found in trash" +msgstr "" + +#: includes/taxonomies/resource-category.php:27 +msgid "No resource-categories" +msgstr "" + +#: includes/taxonomies/resource-category.php:26 +msgid "No resource-categories found." +msgstr "" + +#: includes/cpt/resource.php:20 +msgid "No Resources found" +msgstr "" + +#: includes/cpt/resource.php:21 +msgid "No Resources found in trash" +msgstr "" + +#: includes/cpt/template.php:20 +msgid "No Templates found" +msgstr "" + +#: includes/cpt/template.php:21 +msgid "No Templates found in trash" +msgstr "" + +#: acf-json/acf-translations.php:74 +msgid "Notification(s)" +msgstr "" + +#: acf-json/acf-translations.php:75 +msgid "Offer" +msgstr "" + +#: acf-json/acf-translations.php:76 +msgid "Offer status" +msgstr "" + +#: acf-json/acf-translations.php:77 +msgid "Online" +msgstr "" + +#: includes/cpt/contributor.php:22 +msgid "Parent Contributor:" +msgstr "" + +#: includes/taxonomies/discipline.php:16 +msgid "Parent discipline" +msgstr "" + +#: includes/taxonomies/discipline.php:17 +msgid "Parent discipline:" +msgstr "" + +#: includes/cpt/event.php:22 +msgid "Parent Event:" +msgstr "" + +#: includes/cpt/location.php:22 +msgid "Parent Location:" +msgstr "" + +#: includes/cpt/membership.php:22 +msgid "Parent Membership:" +msgstr "" + +#: includes/taxonomies/project-category.php:16 +msgid "Parent project-category" +msgstr "" + +#: includes/taxonomies/project-category.php:17 +msgid "Parent project-category:" +msgstr "" + +#: includes/cpt/project.php:22 +msgid "Parent Project:" +msgstr "" + +#: includes/cpt/representation.php:22 +msgid "Parent Representation:" +msgstr "" + +#: includes/taxonomies/resource-category.php:16 +msgid "Parent resource-category" +msgstr "" + +#: includes/taxonomies/resource-category.php:17 +msgid "Parent resource-category:" +msgstr "" + +#: includes/cpt/resource.php:22 +msgid "Parent Resource:" +msgstr "" + +#: includes/cpt/template.php:22 +msgid "Parent Template:" +msgstr "" + +#: acf-json/acf-translations.php:78 +msgid "Period" +msgstr "" + +#: acf-json/acf-translations.php:79 +msgid "Phone" +msgstr "" + +#: acf-json/acf-translations.php:80 +msgid "Physical person" +msgstr "" + +#: acf-json/acf-translations.php:81 +msgid "Planned" +msgstr "" + +#: includes/taxonomies/discipline.php:14 +msgid "Popular disciplines" +msgstr "" + +#: includes/taxonomies/project-category.php:14 +msgid "Popular project-categories" +msgstr "" + +#: includes/taxonomies/resource-category.php:14 +msgid "Popular resource-categories" +msgstr "" + +#: acf-json/acf-translations.php:82 +msgid "Possible configuration(s)" +msgstr "" + +#: acf-json/acf-translations.php:83 +msgid "Post – Article" +msgstr "" + +#: acf-json/acf-translations.php:84 +msgid "Post – Contributor" +msgstr "" + +#: acf-json/acf-translations.php:85 +msgid "Post – Event" +msgstr "" + +#: acf-json/acf-translations.php:86 +msgid "Post – Location" +msgstr "" + +#: acf-json/acf-translations.php:87 +msgid "Post – Membership" +msgstr "" + +#: acf-json/acf-translations.php:88 +msgid "Post – Page" +msgstr "" + +#: acf-json/acf-translations.php:89 +msgid "Post – Project" +msgstr "" + +#: acf-json/acf-translations.php:90 +msgid "Post – Representation" +msgstr "" + +#: acf-json/acf-translations.php:91 +msgid "Post – Resource" +msgstr "" + +#: acf-json/acf-translations.php:92 +msgid "Post – Template" +msgstr "" + +#: acf-json/acf-translations.php:93 +msgid "Postponed" +msgstr "" + +#: includes/cpt/contributor.php:69 includes/cpt/contributor.php:70 +msgid "Preview Contributor" +msgstr "" + +#: includes/cpt/event.php:69 includes/cpt/event.php:70 +msgid "Preview Event" +msgstr "" + +#: includes/cpt/location.php:70 includes/cpt/location.php:71 +msgid "Preview Location" +msgstr "" + +#: includes/cpt/membership.php:69 includes/cpt/membership.php:70 +msgid "Preview Membership" +msgstr "" + +#: includes/cpt/project.php:69 includes/cpt/project.php:70 +msgid "Preview Project" +msgstr "" + +#: includes/cpt/representation.php:66 includes/cpt/representation.php:67 +msgid "Preview Representation" +msgstr "" + +#: includes/cpt/resource.php:69 includes/cpt/resource.php:70 +msgid "Preview Resource" +msgstr "" + +#: includes/cpt/template.php:66 includes/cpt/template.php:67 +msgid "Preview Template" +msgstr "" + +#: acf-json/acf-translations.php:94 +msgid "Pricing" +msgstr "" + +#: acf-json/acf-translations.php:95 +msgid "Profile(s)" +msgstr "" + +#: includes/cpt/project.php:12 +msgid "Project" +msgstr "" + +#: includes/cpt/project.php:24 +msgid "Project Archives" +msgstr "" + +#: includes/cpt/project.php:25 +msgid "Project Attributes" +msgstr "" + +#: includes/taxonomies/project-category.php:11 +#: includes/taxonomies/project-category.php:28 +msgid "Project categories" +msgstr "" + +#: includes/taxonomies/project-category.php:64 +msgid "Project categories deleted." +msgstr "" + +#: includes/taxonomies/project-category.php:30 +msgid "Project categories list" +msgstr "" + +#: includes/taxonomies/project-category.php:29 +msgid "Project categories list navigation" +msgstr "" + +#: includes/taxonomies/project-category.php:12 +msgid "Project category" +msgstr "" + +#: includes/taxonomies/project-category.php:59 +msgid "Project category added." +msgstr "" + +#: includes/taxonomies/project-category.php:60 +msgid "Project category deleted." +msgstr "" + +#: includes/taxonomies/project-category.php:62 +msgid "Project category not added." +msgstr "" + +#: includes/taxonomies/project-category.php:63 +msgid "Project category not updated." +msgstr "" + +#: includes/taxonomies/project-category.php:61 +msgid "Project category updated." +msgstr "" + +#: includes/cpt/project.php:36 +msgid "Project published privately." +msgstr "" + +#: includes/cpt/project.php:35 includes/cpt/project.php:80 +msgid "Project published." +msgstr "" + +#: includes/cpt/project.php:79 +#, php-format +msgid "Project restored to revision from %s" +msgstr "" + +#: includes/cpt/project.php:37 +msgid "Project reverted to draft." +msgstr "" + +#: includes/cpt/project.php:81 +msgid "Project saved." +msgstr "" + +#: includes/cpt/project.php:38 +msgid "Project scheduled." +msgstr "" + +#: includes/cpt/project.php:82 +msgid "Project submitted." +msgstr "" + +#: includes/cpt/project.php:39 includes/cpt/project.php:75 +#: includes/cpt/project.php:78 +msgid "Project updated." +msgstr "" + +#: includes/cpt/project.php:10 includes/cpt/project.php:11 +msgid "Projects" +msgstr "" + +#: includes/cpt/project.php:34 +msgid "Projects list" +msgstr "" + +#: includes/cpt/project.php:33 +msgid "Projects list navigation" +msgstr "" + +#: acf-json/acf-translations.php:96 +msgid "Range" +msgstr "" + +#: acf-json/acf-translations.php:97 +msgid "Rechercher une adresse..." +msgstr "" + +#: acf-json/acf-translations.php:98 +msgid "Registration" +msgstr "" + +#: includes/cpt/representation.php:30 includes/cpt/contributor.php:30 +#: includes/cpt/membership.php:30 includes/cpt/project.php:30 +#: includes/cpt/location.php:30 includes/cpt/template.php:30 +#: includes/cpt/event.php:30 includes/cpt/resource.php:30 +msgid "Remove featured image" +msgstr "" + +#: includes/cpt/representation.php:12 +msgid "Representation" +msgstr "" + +#: includes/cpt/representation.php:24 +msgid "Representation Archives" +msgstr "" + +#: includes/cpt/representation.php:25 +msgid "Representation Attributes" +msgstr "" + +#: includes/cpt/representation.php:36 +msgid "Representation published privately." +msgstr "" + +#: includes/cpt/representation.php:35 includes/cpt/representation.php:77 +msgid "Representation published." +msgstr "" + +#: includes/cpt/representation.php:76 +#, php-format +msgid "Representation restored to revision from %s" +msgstr "" + +#: includes/cpt/representation.php:37 +msgid "Representation reverted to draft." +msgstr "" + +#: includes/cpt/representation.php:78 +msgid "Representation saved." +msgstr "" + +#: includes/cpt/representation.php:38 +msgid "Representation scheduled." +msgstr "" + +#: includes/cpt/representation.php:79 +msgid "Representation submitted." +msgstr "" + +#: includes/cpt/representation.php:39 includes/cpt/representation.php:72 +#: includes/cpt/representation.php:75 +msgid "Representation updated." +msgstr "" + +#: includes/cpt/representation.php:10 includes/cpt/representation.php:11 +msgid "Representations" +msgstr "" + +#: includes/cpt/representation.php:34 +msgid "Representations list" +msgstr "" + +#: includes/cpt/representation.php:33 +msgid "Representations list navigation" +msgstr "" + +#: includes/cpt/resource.php:12 +msgid "Resource" +msgstr "" + +#: includes/cpt/resource.php:24 +msgid "Resource Archives" +msgstr "" + +#: includes/cpt/resource.php:25 +msgid "Resource Attributes" +msgstr "" + +#: includes/taxonomies/resource-category.php:11 +#: includes/taxonomies/resource-category.php:28 +msgid "Resource categories" +msgstr "" + +#: includes/taxonomies/resource-category.php:64 +msgid "Resource categories deleted." +msgstr "" + +#: includes/taxonomies/resource-category.php:30 +msgid "Resource categories list" +msgstr "" + +#: includes/taxonomies/resource-category.php:29 +msgid "Resource categories list navigation" +msgstr "" + +#: includes/taxonomies/resource-category.php:12 +msgid "Resource category" +msgstr "" + +#: includes/taxonomies/resource-category.php:59 +msgid "Resource category added." +msgstr "" + +#: includes/taxonomies/resource-category.php:60 +msgid "Resource category deleted." +msgstr "" + +#: includes/taxonomies/resource-category.php:62 +msgid "Resource category not added." +msgstr "" + +#: includes/taxonomies/resource-category.php:63 +msgid "Resource category not updated." +msgstr "" + +#: includes/taxonomies/resource-category.php:61 +msgid "Resource category updated." +msgstr "" + +#: includes/cpt/resource.php:36 +msgid "Resource published privately." +msgstr "" + +#: includes/cpt/resource.php:35 includes/cpt/resource.php:80 +msgid "Resource published." +msgstr "" + +#: includes/cpt/resource.php:79 +#, php-format +msgid "Resource restored to revision from %s" +msgstr "" + +#: includes/cpt/resource.php:37 +msgid "Resource reverted to draft." +msgstr "" + +#: includes/cpt/resource.php:81 +msgid "Resource saved." +msgstr "" + +#: includes/cpt/resource.php:38 +msgid "Resource scheduled." +msgstr "" + +#: includes/cpt/resource.php:82 +msgid "Resource submitted." +msgstr "" + +#: includes/cpt/resource.php:39 includes/cpt/resource.php:75 +#: includes/cpt/resource.php:78 +msgid "Resource updated." +msgstr "" + +#: includes/cpt/resource.php:10 includes/cpt/resource.php:11 +msgid "Resources" +msgstr "" + +#: includes/cpt/resource.php:34 +msgid "Resources list" +msgstr "" + +#: includes/cpt/resource.php:33 +msgid "Resources list navigation" +msgstr "" + +#: acf-json/acf-translations.php:99 +msgid "Salle de spectacle" +msgstr "" + +#: acf-json/acf-translations.php:100 +msgid "Schedule type" +msgstr "" + +#: includes/cpt/contributor.php:19 +msgid "Search Contributors" +msgstr "" + +#: includes/taxonomies/discipline.php:13 +msgid "Search disciplines" +msgstr "" + +#: includes/cpt/event.php:19 +msgid "Search Events" +msgstr "" + +#: acf-json/acf-translations.php:101 +msgid "Search for address..." +msgstr "" + +#: includes/cpt/location.php:19 +msgid "Search Locations" +msgstr "" + +#: includes/cpt/membership.php:19 +msgid "Search Memberships" +msgstr "" + +#: includes/taxonomies/project-category.php:13 +msgid "Search project-categories" +msgstr "" + +#: includes/cpt/project.php:19 +msgid "Search Projects" +msgstr "" + +#: includes/cpt/representation.php:19 +msgid "Search Representations" +msgstr "" + +#: includes/taxonomies/resource-category.php:13 +msgid "Search resource-categories" +msgstr "" + +#: includes/cpt/resource.php:19 +msgid "Search Resources" +msgstr "" + +#: includes/cpt/template.php:19 +msgid "Search Templates" +msgstr "" + +#: acf-json/acf-translations.php:102 +msgid "Section(s)" +msgstr "" + +#: acf-json/acf-translations.php:103 +msgid "Select" +msgstr "" + +#: acf-json/acf-translations.php:104 +msgid "Sent" +msgstr "" + +#: acf-json/acf-translations.php:105 +msgid "Sent status" +msgstr "" + +#: includes/taxonomies/discipline.php:23 +msgid "Separate disciplines with commas" +msgstr "" + +#: includes/taxonomies/project-category.php:23 +msgid "Separate project-categories with commas" +msgstr "" + +#: includes/taxonomies/resource-category.php:23 +msgid "Separate resource-categories with commas" +msgstr "" + +#: includes/cpt/representation.php:29 includes/cpt/contributor.php:29 +#: includes/cpt/membership.php:29 includes/cpt/project.php:29 +#: includes/cpt/location.php:29 includes/cpt/template.php:29 +#: includes/cpt/event.php:29 includes/cpt/resource.php:29 +msgid "Set featured image" +msgstr "" + +#: acf-json/acf-translations.php:106 +msgid "Social" +msgstr "" + +#: acf-json/acf-translations.php:107 +msgid "Spectacle" +msgstr "" + +#: acf-json/acf-translations.php:108 +msgid "Start date" +msgstr "" + +#: acf-json/acf-translations.php:109 +msgid "Start date / time" +msgstr "" + +#: acf-json/acf-translations.php:110 +msgid "Start month" +msgstr "" + +#: acf-json/acf-translations.php:111 +msgid "Subject" +msgstr "" + +#: acf-json/acf-translations.php:112 +msgid "Target audience" +msgstr "" + +#: includes/cpt/template.php:12 +msgid "Template" +msgstr "" + +#: includes/cpt/template.php:24 +msgid "Template Archives" +msgstr "" + +#: includes/cpt/template.php:25 +msgid "Template Attributes" +msgstr "" + +#: includes/cpt/template.php:36 +msgid "Template published privately." +msgstr "" + +#: includes/cpt/template.php:35 includes/cpt/template.php:77 +msgid "Template published." +msgstr "" + +#: includes/cpt/template.php:76 +#, php-format +msgid "Template restored to revision from %s" +msgstr "" + +#: includes/cpt/template.php:37 +msgid "Template reverted to draft." +msgstr "" + +#: includes/cpt/template.php:78 +msgid "Template saved." +msgstr "" + +#: includes/cpt/template.php:38 +msgid "Template scheduled." +msgstr "" + +#: includes/cpt/template.php:79 +msgid "Template submitted." +msgstr "" + +#: includes/cpt/template.php:39 includes/cpt/template.php:72 +#: includes/cpt/template.php:75 +msgid "Template updated." +msgstr "" + +#: includes/cpt/template.php:10 includes/cpt/template.php:11 +msgid "Templates" +msgstr "" + +#: includes/cpt/template.php:34 +msgid "Templates list" +msgstr "" + +#: includes/cpt/template.php:33 +msgid "Templates list navigation" +msgstr "" + +#: acf-json/acf-translations.php:113 +msgid "Term – Discipline" +msgstr "" + +#: acf-json/acf-translations.php:114 +msgid "Text block" +msgstr "" + +#: acf-json/acf-translations.php:115 +msgid "This event is free" +msgstr "" + +#: acf-json/acf-translations.php:116 +msgid "This event is wordless" +msgstr "" + +#: acf-json/acf-translations.php:117 +msgid "Title" +msgstr "" + +#: acf-json/acf-translations.php:118 +msgid "Tout public" +msgstr "" + +#: acf-json/acf-translations.php:121 +msgid "Universal access" +msgstr "" + +#: acf-json/acf-translations.php:122 +msgid "Upcoming" +msgstr "" + +#: includes/taxonomies/discipline.php:19 +msgid "Update discipline" +msgstr "" + +#: includes/taxonomies/project-category.php:19 +msgid "Update project-category" +msgstr "" + +#: includes/taxonomies/resource-category.php:19 +msgid "Update resource-category" +msgstr "" + +#: includes/cpt/contributor.php:27 +msgid "Uploaded to this Contributor" +msgstr "" + +#: includes/cpt/event.php:27 +msgid "Uploaded to this Event" +msgstr "" + +#: includes/cpt/location.php:27 +msgid "Uploaded to this Location" +msgstr "" + +#: includes/cpt/membership.php:27 +msgid "Uploaded to this Membership" +msgstr "" + +#: includes/cpt/project.php:27 +msgid "Uploaded to this Project" +msgstr "" + +#: includes/cpt/representation.php:27 +msgid "Uploaded to this Representation" +msgstr "" + +#: includes/cpt/resource.php:27 +msgid "Uploaded to this Resource" +msgstr "" + +#: includes/cpt/template.php:27 +msgid "Uploaded to this Template" +msgstr "" + +#: acf-json/acf-translations.php:119 +msgid "URI" +msgstr "" + +#: acf-json/acf-translations.php:120 +msgid "URL" +msgstr "" + +#: includes/cpt/representation.php:31 includes/cpt/contributor.php:31 +#: includes/cpt/membership.php:31 includes/cpt/project.php:31 +#: includes/cpt/location.php:31 includes/cpt/template.php:31 +#: includes/cpt/event.php:31 includes/cpt/resource.php:31 +msgid "Use as featured image" +msgstr "" + +#: includes/cpt/contributor.php:17 includes/cpt/contributor.php:72 +msgid "View Contributor" +msgstr "" + +#: includes/cpt/contributor.php:18 +msgid "View Contributors" +msgstr "" + +#: includes/taxonomies/discipline.php:20 +msgid "View discipline" +msgstr "" + +#: includes/cpt/event.php:17 includes/cpt/event.php:72 +msgid "View Event" +msgstr "" + +#: includes/cpt/event.php:18 +msgid "View Events" +msgstr "" + +#: includes/cpt/location.php:17 includes/cpt/location.php:73 +msgid "View Location" +msgstr "" + +#: includes/cpt/location.php:18 +msgid "View Locations" +msgstr "" + +#: includes/cpt/membership.php:17 includes/cpt/membership.php:72 +msgid "View Membership" +msgstr "" + +#: includes/cpt/membership.php:18 +msgid "View Memberships" +msgstr "" + +#: includes/cpt/project.php:17 includes/cpt/project.php:72 +msgid "View Project" +msgstr "" + +#: includes/taxonomies/project-category.php:20 +msgid "View project-category" +msgstr "" + +#: includes/cpt/project.php:18 +msgid "View Projects" +msgstr "" + +#: includes/cpt/representation.php:17 includes/cpt/representation.php:69 +msgid "View Representation" +msgstr "" + +#: includes/cpt/representation.php:18 +msgid "View Representations" +msgstr "" + +#: includes/cpt/resource.php:17 includes/cpt/resource.php:72 +msgid "View Resource" +msgstr "" + +#: includes/taxonomies/resource-category.php:20 +msgid "View resource-category" +msgstr "" + +#: includes/cpt/resource.php:18 +msgid "View Resources" +msgstr "" + +#: includes/cpt/template.php:17 includes/cpt/template.php:69 +msgid "View Template" +msgstr "" + +#: includes/cpt/template.php:18 +msgid "View Templates" +msgstr "" + +#: acf-json/acf-translations.php:123 +msgid "Virtual location" +msgstr "" + +#. Author of the theme +msgid "Websimple " +msgstr "" + +#: acf-json/acf-translations.php:124 +msgid "Where" +msgstr "" + +#: acf-json/acf-translations.php:125 +msgid "Wordless" +msgstr "" + +#: acf-json/acf-translations.php:126 +msgid "Y-m" +msgstr "" + +#: acf-json/acf-translations.php:127 +msgid "Y-m-d" +msgstr "" + +#: acf-json/acf-translations.php:128 +msgid "Y-m-d H:i:s" +msgstr "" + +#: acf-json/acf-translations.php:129 +msgid "YouTube URL" +msgstr "" + +#: acf-json/acf-translations.php:130 +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 new file mode 100644 index 0000000..f6894ed --- /dev/null +++ b/wp-content/themes/ccat/languages/fr_CA.l10n.php @@ -0,0 +1,3 @@ +'CCAT','report-msgid-bugs-to'=>'','pot-creation-date'=>'2025-05-26 14:47+0000','po-revision-date'=>'2025-07-08 13:31+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.1; 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','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','Add File'=>'Ajouter un fichier','Add New'=>'Ajouter','Add New Contributor'=>'Ajouter un contributeur','Add New Event'=>'Ajouter un événement','Add New Location'=>'Ajouter un emplacement','Add New Membership'=>'Ajouter une nouvelle adhésion','Add New Project'=>'Ajouter un projet','Add New Representation'=>'Ajouter une représentation','Add New Resource'=>'Ajouter une ressource','Add New Template'=>'Ajouter un modèle','Add or remove disciplines'=>'Ajouter ou supprimer des disciplines','Add or remove project-categories'=>'Ajouter ou supprimer des catégories de projet','Add or remove resource-categories'=>'Ajouter ou supprimer des catégories de ressources','Address'=>'Adresse','Adultes (18+)'=>'Adultes (18+)','Ajouter un élément'=>'Ajouter un élément','All Contributors'=>'Tous les contributeurs','All disciplines'=>'Toutes les disciplines','All Events'=>'Tous les événements','All Locations'=>'Tous les emplacements','All Memberships'=>'Toutes les adhésions','All project-categories'=>'Toutes les catégories de projet','All Projects'=>'Tous les projets','All Representations'=>'Toutes les représentations','All resource-categories'=>'Toutes les catégories de ressources','All Resources'=>'Toutes les ressources','All Templates'=>'Tous les modèles','Alternative title(s)'=>'Titre(s) alternatif(s)','Attendance mode'=>'Mode de présence','Auteur'=>'Auteur','Bar'=>'Bar','Builder'=>'Constructeur','Cancelled'=>'Annulé','Categorie(s)'=>'Catégorie(s)','Category'=>'Categorie','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','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','Content'=>'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)','Description'=>'Description','Discipline'=>'Discipline','Discipline added.'=>'Discipline ajoutée.','Discipline deleted.'=>'Discipline supprimée.','Discipline not added.'=>'Discipline non ajoutée.','Discipline not updated.'=>'Discipline non mis à jour.','Discipline updated.'=>'Discipline mise à jour.','Discipline(s)'=>'Discipline(s)','Disciplines'=>'Disciplines','Disciplines deleted.'=>'Disciplines supprimées.','Disciplines list'=>'Liste des disciplines','Disciplines list navigation'=>'Liste de navigation des disciplines','Document type'=>'Type de document','Document(s)'=>'Document(s)','Edit Contributor'=>'Modifier le contributeur','Edit discipline'=>'Modifier la discipline','Edit Event'=>'Modifier l\'événement','Edit Location'=>'Modifier l\'emplacement','Edit Membership'=>'Modifier l\'adhésion','Edit Project'=>'Modifier le projet','Edit project-category'=>'Modifier la catégorie du projet','Edit Representation'=>'Représentation modifiée','Edit Resource'=>'Modifier la ressource','Edit resource-category'=>'Modifier la catégorie de ressources','Edit Template'=>'Modifier le modèle','Email'=>'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 Locations list'=>'Filtrer la liste des emplacements','Filter Memberships list'=>'Filtrer la liste des adhésions','Filter Projects list'=>'Filtrer la liste des projets','Filter Representations list'=>'Liste des représentations de filtres','Filter Resources list'=>'Filtrer la liste des ressources','Filter Templates list'=>'Liste des modèles de filtres','Form'=>'Formulaire','Free'=>'Gratuit','Gallery'=>'Galerie','H:i'=>'H:i','https://websimple.com/'=>'https://websimple.com/','Hybrid'=>'Hybride','Identifier(s)'=>'Identifiant(s)','Image'=>'Image','In-person'=>'En personne','Individual day(s)'=>'Journée(s) individuelle(s)','Insert into Contributor'=>'Insérer dans le contributeur','Insert into Event'=>'Insérer dans l\'événement','Insert into Location'=>'Insérer dans l\'emplacement','Insert into Membership'=>'Insérer dans l\'adhésion','Insert into Project'=>'Insérer dans le projet','Insert into Representation'=>'Insérer dans la représentation','Insert into Resource'=>'Insérer dans la ressource','Insert into Template'=>'Insérer dans le modèle','Interprète'=>'Interprète','Language(s)'=>'Langue(s)','Locality'=>'Emplacement','Location'=>'Emplacement','Location Archives'=>'Archives de localisation','Location Attributes'=>'Attributs de localisation','Location published privately.'=>'Emplacement publié de manière privée.','Location published.'=>'Emplacement publié.','Location restored to revision from %s'=>'L\'emplacement a été restauré à la révision de %s','Location reverted to draft.'=>'L\'emplacement a été remis en brouillon.','Location saved.'=>'Emplacement enregistré.','Location scheduled.'=>'Emplacement prévu.','Location submitted.'=>'Emplacement soumis.','Location type'=>'Type d\'emplacement','Location updated.'=>'Emplacement mis à jour.','Locations'=>'Emplacements','Locations list'=>'Liste des emplacements','Locations list navigation'=>'Navigation de la liste des emplacements','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?','Managed contributor(s)'=>'Contributeur(s) associé(s)','Media type'=>'Type de média','Media(s)'=>'Média(s)','Membership'=>'Adhésion','Membership Archives'=>'Archives de adhésions','Membership Attributes'=>'Attributs de l\'adhésion','Membership profile'=>'Profil d\'adhésion','Membership published privately.'=>'Adhésion publiée en privé.','Membership published.'=>'Adhésion publiée.','Membership restored to revision from %s'=>'Adhésion restaurée à la révision de %s','Membership reverted to draft.'=>'L\'adhésion a été ramenée à l\'état de brouillon.','Membership saved.'=>'Adhésion enregistrée.','Membership scheduled.'=>'Adhésion planifiée.','Membership submitted.'=>'Adhésion soumise.','Membership type'=>'Type d\'adhésion','Membership updated.'=>'Adhésion mise à jour.','Memberships'=>'Adhésions','Memberships list'=>'Liste des adhésions','Memberships list navigation'=>'Liste de navigation des adhésions','Message'=>'Message','Minimum price'=>'Prix à partir de','Moral entity'=>'Entité morale','Most used'=>'Le plus utilisé','Name'=>'Nom','New Contributor'=>'Nouveau contributeur','New discipline'=>'Nouvelle discipline','New Event'=>'Nouvel événement','New Location'=>'Nouvel emplacement','New Membership'=>'Nouvelle adhésion','New Project'=>'Nouveau projet','New project-category'=>'Nouvelle catégorie de projet','New Representation'=>'Nouvelle représentation','New Resource'=>'Nouvelle ressource','New resource-category'=>'Nouvelle catégorie de ressources','New Template'=>'Nouveau modèle','No Contributors found'=>'Aucun contributeur trouvé','No Contributors found in trash'=>'Aucun contributeur trouvé dans la corbeille','No disciplines'=>'Aucune discipline','No disciplines found.'=>'Aucune discipline trouvée.','No Events found'=>'Aucun événement trouvé','No Events found in trash'=>'Aucun événement trouvé dans la corbeille','No Locations found'=>'Aucun emplacement trouvé','No Locations found in trash'=>'Aucun emplacement trouvé dans la corbeille','No Memberships found'=>'Aucune adhésion trouvée','No Memberships found in trash'=>'Aucune adhésion trouvée dans la corbeille','No project-categories'=>'Aucune catégorie de projet','No project-categories found.'=>'Aucune catégorie de projet trouvée.','No Projects found'=>'Aucun projet trouvé','No Projects found in trash'=>'Aucun projet trouvé dans la corbeille','No Representations found'=>'Aucune représentation trouvée','No Representations found in trash'=>'Aucune représentation trouvée dans la corbeille','No resource-categories'=>'Aucune catégorie de ressources','No resource-categories found.'=>'Aucune catégorie de ressources trouvée.','No Resources found'=>'Aucune ressource trouvée','No Resources found in trash'=>'Aucune ressource trouvée dans la corbeille','No Templates found'=>'Aucun modèle trouvé','No Templates found in trash'=>'Aucun modèle trouvé dans la corbeille','Notification(s)'=>'Notification(s)','Offer'=>'Offre','Offer status'=>'État de l\'offre','Online'=>'En ligne','Parent Contributor:'=>'Parent Contributor: Contributeur parent','Parent discipline'=>'Discipline parentale','Parent discipline:'=>'Discipline parentale','Parent Event:'=>'Événement pour les parents :','Parent Location:'=>'Emplacement des parents :','Parent Membership:'=>'Adhésion parent :','Parent project-category'=>'Catégorie de projet parent','Parent project-category:'=>'Catégorie de projet parent :','Parent Project:'=>'Projet parent :','Parent Representation:'=>'Représentation des parents :','Parent resource-category'=>'Catégorie de ressources pour les parents','Parent resource-category:'=>'Catégorie de ressources parent :','Parent Resource:'=>'Ressource pour les parents :','Parent Template:'=>'Modèle parent :','Period'=>'Période','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 – Emplacement','Post – Membership'=>'Contenu - Adhésion','Post – Page'=>'Contenu – Page','Post – Project'=>'Contenu – Projet','Post – Representation'=>'Contenu – Représentation','Post – Resource'=>'Contenu – Ressource','Post – Template'=>'Contenu – Modèle','Postponed'=>'Reporté','Preview Contributor'=>'Prévisualiser le contributeur','Preview Event'=>'Prévisualiser l\'événement','Preview Location'=>'Prévisualiser l\'emplacement','Preview Membership'=>'Prévisualiser l\'adhésion','Preview Project'=>'Prévisualiser le projet','Preview Representation'=>'Prévisualiser la représentation','Preview Resource'=>'Prévisualiser la ressource','Preview Template'=>'Prévisualiser le modèle','Pricing'=>'Tarification','Profile(s)'=>'Profil(s)','Project'=>'Projet','Project Archives'=>'Archives du projet','Project Attributes'=>'Attributs du projet','Project 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','Schedule type'=>'Type d\'horaire','Search Contributors'=>'Recherche de contributeurs','Search disciplines'=>'Recherche de disciplines','Search Events'=>'Recherche d\'événements','Search for address...'=>'Rechercher une adresse...','Search Locations'=>'Recherche de lieux','Search Memberships'=>'Recherche d\'adhésions','Search project-categories'=>'Recherche de catégories de projet','Search Projects'=>'Recherche de projets','Search Representations'=>'Représentations de recherche','Search resource-categories'=>'Recherche de catégories de ressources','Search Resources'=>'Recherche de ressources','Search Templates'=>'Modèles de recherche','Section(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 free'=>'Cet événement est gratuit','This event is wordless'=>'Cet événement est sans paroles','Title'=>'Titre','Tout public'=>'Tout public','Universal access'=>'Accès universel','Upcoming'=>'À venir','Update discipline'=>'Mettre à jour la discipline','Update project-category'=>'Mettre à jour la catégorie du projet','Update resource-category'=>'Mettre à jour la catégorie de ressources','Uploaded to this Contributor'=>'Téléchargé par ce contributeur','Uploaded to this Event'=>'Téléchargé à cet événement','Uploaded to this Location'=>'Téléchargé à cet endroit','Uploaded to this Membership'=>'Téléchargé sur cette adhésion','Uploaded to this Project'=>'Téléchargé dans ce projet','Uploaded to this Representation'=>'Téléchargé sur cette représentation','Uploaded to this Resource'=>'Téléchargé dans cette ressource','Uploaded to this Template'=>'Téléchargé dans ce modèle','URI'=>'URI','URL'=>'URL','Use as featured image'=>'Utiliser comme image en vedette','View Contributor'=>'Voir le contributeur','View Contributors'=>'Voir les contributeurs','View discipline'=>'Voir la discipline','View Event'=>'Voir l\'événement','View Events'=>'Voir les événements','View Location'=>'Voir l\'emplacement','View Locations'=>'Voir les emplacements','View Membership'=>'Afficher l\'adhésion','View Memberships'=>'Voir les adhésions','View Project'=>'Voir le projet','View project-category'=>'Voir la catégorie de projet','View Projects'=>'Voir les projets','View Representation'=>'Voir la représentation','View Representations'=>'Voir les représentations','View Resource'=>'Voir la ressource','View resource-category'=>'Voir la catégorie de ressources','View Resources'=>'Voir les ressources','View Template'=>'Voir le modèle','View Templates'=>'Voir les modèles','Virtual location'=>'Emplacement 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 new file mode 100644 index 0000000000000000000000000000000000000000..ce8ab9b424e1338c7cd51187e1686b4f625613b5 GIT binary patch literal 26509 zcmbW93!Gh5eeVy3R|14rA|MJoyh0>1d6^I%ZRr^*lT$9sQuql;GakKD->Q0pE^vTLg9|%JzvGoI|;9X55be*6YyC0 zZZ-`1l|VKo;%_G@I7!Td_Pou4?yYV6Yx~{S-2Md zBkY5RooM2>!9xh|fa=#Ml%C!SRo-=Q1H2KczK=t->(fx}egZ20H>~_QsD8WzBX|`5 zQFs$P9i9(qLZJm!&)rb*ziau&Q2Klls-Eva_2(z>NO&NF!B7>Bg=)`cxDuXiIS$pH z3e(Qz-p^!^(dErI!OSPL;a?s$CIOJ2yj2wXhQ^ z-6T}HSsQ;7R6Fjp@$ZAu+ee`K^%Yr7yzea2l%Jb5Qf|oi_YCkg5uQ05#8^hHBpnHvXrUhn-^ja{^R( zYoO}c3f1p(pvLn8sD4k{_!?Au+fey_#fI;I`xAZ-RK4$qvWq`}>h~9+#^V_%y}t;h z@1+>E;!m~Q2KOg?vE?ODdU!Kj0!vWsoQ4{wIy?a01f{>XL)pU}Q1yMthCc&U@1H~U z>zh#H^&*u14nEDqpKQ4mN)IEJmqYbCwyZ;NsByg-s=V0BJ5cFvhU)JfQ00FBs@)IT_|IB?2`b%FP~-V+sQ&za%jK^% ze(4mbdIq8FaU80=D%5z~43+-_Q2l=xs{dbsvWI_!%J&k)bre>dVe)T*%0Fzwu?_Em zYS%qb?YZCbQ7Aw6S5V{jJXC#4)|&RMf(H=Z0HudB;el`ml)f*3(&trB`mRCs<84s= zy9=t^`)vFlT0RcdpKm~=e;#T+ybRT^WBLr&L)q6bRJ|pr_FMy1{w&nE-U8L0-+QV=UR?KwZ9CP!Kw{kZ{u%5}pr_hHtT)h0?>XLAC!rsCIl7D*dxo z{(UIDEPb6xe+tz8Vmp-lYAF5Q2#Lvf{+%{_AJlmKFQ{~1fU4(7D0}<1jsFkJL$;W7uZAm$Uk6ps5L7>| zg0jOKpyt~Gggaehf;le*>l0m!R?=v(=Ls=gtpeq939?ir}|wP0c&Q2o3UN-y_9 z<@*@aJp3F~x+kFY`*pYiK5ymwZ8P}~he~&X4X=eNZyS`|TmaRdB2@W%pxSdAl-}-v z(#!jy^mf0MKM2*{k6S(pRnMP6mG>n4=zjP!sB!#b+y*tS_d(g)r>y*sq0&8N`8{|7;a8kv^t%ckPk0kle=mY6Cx-Hqdtg8O zAlwN50;>F%q55;s8;xF9Le=wHsB*SjUTRr`(%-F6_1y!N?qR5L{vuTVufqtw09F4H z+l_oPRJvVI^YyJz`i`N-y8<lKW5_}hq9M%LAB%m!B@ebLD~0lgGPUwp!z!r&xCs*Q>ySV zRJwnGvd<+u43C9M-v<>x2-U7Dq1tsVlz+Gt%Kqk|#`Tjhf?tJd&kvyH$;(jvTRvp? zDkwWX4XWM^Q2O5qWoK7HjnkYB-wjp&N1@7j)XM)1s-4fmli`a{<9zH+lWq-Ed7Gii zztA#28J6-@Bm3=|L#H{Rvciz6H;K{|?u{lip<7zYD58vE^Q z38m))hK=1G0S_j843wTC8{Pm9B0K<3g6G0jFt&UrJdyA`l%IVZo(i9{@u@Oy3e6Hx8?COi%P0LosE8#8|MEU5g~!ZYAIp!DZh_M8?NIvu zT_`{HC8&Czhq8~QmzeM>sQTVuc?CS0@ElwLZ-=jhzYV3A&p_$-X{d6(57nN7FE#x? z5~`l{mLpK@xdzHk-T~FF4?)%Y1*r0#ftpYM4%Lq(ml;2H7?d7YK(%W%TnV>9+4IFP zf^E1Fz6Yw^e-1Ss-?Z^Rg-ZXL%Z=T<5h^?lRsZc!>dYN&FrgGzS~JPzIuHC~^CuY!+5)%P7JJ-i5|w6y@ z@LKqKcrTP){2e?N{@C(}w;1^vsCJwORnKKm{;mb3*L&eB;YXnIe-5gir=j}&eW>;I zm@CbE+6I-b2Gy@$hq9-6sPtcf@=rgq;pnYq9-RlJpBhyBufi?xWAGUGZK!d432Jz1{`YzYjyT?~iQ!Q&9c;E|eYo488^)eYGin15~}k zQ2DNc>i-_7dhUkm*QcS{@eDi+eiv$-e*~r9|Ag`{%ZsL81Mn=u*TLiAN8y3+OHg|M z3RJtl4%Pqf+VIOzer5TjvHulN^{j&G{~D-%oDJ3AF{t`$P=4oaa1HzjRJy;0%J)xD z_Vp7hUs^Kr^aLn>u^OHT&w|qHfDyb2D%}UI{IfRv3{<~<0#AagVl#d_pxQeL)z7y>jq`h< z+W-4dRBXr7jb^1gMKf+SI?YlXCfPpOYB!6ec68dw zTQ_dlKuw)WwH!AKT@i!LxLj$sx+8|_?Mi!ZxBR?fwHh~jL|imA)vJQ>MyXP)7Pgnm z(auUWPJUb%U!O7>Y}DJ$%4DbApmii7E*hGP>und>)u8j0M%@WU;@V`~Y|T_=ooLjk z$%V(_S@c3F*_>lmS1#Q|T$`<;+C<_X~)f|Q;!zrs|)kBq|?=Es1ouZNc3TTrphoOuL%>jYA}JU4pNyh z786Q)Z$hCJs@7gzMclK4bgNlM*XRzjsm7{M?V%%+^ctk z4U8nlNc5x8swCaOZl@~Kou)CcOem@sYf4OlW=-8{)LU_-8kOUyT8v8AK&Od~5n8={ zveK?hR{ACwew;wDR;f>SlDz1yt(<0ZVE$2i?`)#iP?#txO~edxaaip3W@&~2X=R0N zQ(#U!+nKCZS~KW$wpp2D7^-{wGx=PCtQd7Mamj`kYsPbxmKvIj)T!BeiHw_Vld#+@ zPPMb;w2E_aIVUR7oDOD@6L%(S6)Y=C5KX1-wvvc)-esRf#i3ySfAF`tPzz~D z^$fAZM1g4lg4^$;x+Ix$h9NjKUxL@`>^%ch@iSOZE7#sgx+qla%(?XVb+fF zadwq7F2c4WwW~C3qggBLY{qdR-4eZNpi+3#-pOXATo^861{M58Q}%CqJzVdbW!r*! zhU?|ZT&3J8vL+a}Fw6?kY)6$kel$=7DZM<=Lq?LSAtUr!$cWQP6qcCPK_>ZFx>E|% zry3w7BR1Pyc!-&?3-{JxRMk;6sH$zFYgzikPYEyav%<-GPK@r@epi9EBa5#3}11Y|6N;5DN_1XyZiti6|?Q;-<+&zXNh_wR|O8iiS zQa>1hG#QQ{>;}ZkT0xubpahZK!@{0j?rNk`uhcp<`RWp(Mw5A~>5ZL_qkl*fl^Q^j%vYQQ)9I;nxoK%cc7;>GO+y8O^-V#BG(0cvO$ujtGDk$D88_34 zrW&1kxwjOj6mghr%_!RXVwXG&XA-7;4T{c*GReI*f(%{4OctxLAbnPnNt{(_kf&!v zE^E3NxL&8u(Uy}*o(@h>M^2PU?uV}>{RTlZCjFA;233~;J*7dG{E*u`J;Xkf7A$kr zmUA)Z`Q*P*i*t0RRk*0GJBq?+v8hc?VCVy>EU^a{N=MuY{D?Y{9W)ot4oDz2qu>Oo zQk}r7E^UmLxI{Tk?oE^Cfhz0RI! zv@zS^_9q-^C(E@$W0oe*S7+i{t;%FI)>7fmq8htVxux{(XM3|S5oVW> zNt+I1HlZKOtb9~1Gn3yAaaNce=X{*?c9~+*5l_<2qGOcFf>OcjWqM;}wj(y=`(OoO z^R39W(}wd+bmFviR^S`P0>J^EW+m%tG7|P;%9iaHXD9G0b1GsErgweaB7ZpR5tp23 z7m6ZT?h%v?xLr3a`=a)8QNW;W<;EHC$_mWy#Z4bP*CrBMsR+tqzJ!Vr5`f*4)?34pQ|nDqDgx zr!*WIQYs5g$jZ7}FS9Xm&S1h|I2z;nM#9KOty#X^6t(z{+iJ}TZagkB^}}VWRj{&T z*>a(D*>VEEY&lWtXwnjLhU~?*xv3yswp>AezvM(y+#_=#$uP9!nrs_qvxf}rMQjWS zGbarbRnm2*R>N_wPD^dT-M0RdZY;;+*&+@v^Wi1BzS5pyYg4NgRlH5mU3KqtJsOfr z*p6~e)qbfO_hZ&Bawn5q|Bbt!>D8{0m@C2Y&ZG`qg^6NwI_6%sQ?A5((jwY*((zS(&nMx~S<;GU{F{SIatmyhivs~53wF!N9DopTAElTuP zD(oH`=HFd~-E}^LG+XS&i=~p1?w-Z0v{Bogd?X0=;;AHOW_we4-mDZ+Z4|k&*B6ks z8XN9KyCTh|v`d^$^X}68eD9946Tdqm>j8Sjn_1c&la5tkH(%U}C_KCGxFo;X&I?+F zL}I$>e_FBYW)hQzY-G^WB-)2(*VLme`M3uS>U~eZ%FxOE7y}??9vvt;^6zquK5o zX-!wkedl(jTYVFafoR$2MH78I14vrer!Q6m(Z=-~H}|dI+_!N{wBdCFuRHUM_54G^ zzA^iaFO%-fzV%z94VwlwZ7}I}6VM)ex6;A-Vklrwrpg0WXSh( zL;w0^nt=F=z6m}F4n%Ey$vVFASL)lM(oC`0irZ)Jp4i#9)u&TSdArazR4+BkxP^ge zE1zYTUDkJAT#s3n)CG*S5v2;(Sh6*X`zI?mtRtNweH%9RZ|z^dExLZTZwtS8d@(yS z+qboUWB!W@>RuRX@%Hp?ap$DY6!xwjxeESVPO%{vh7FA^hc_b4To z4zo-x-Mj$ddt7=wfVwzsbV|ur?e5s-!hG;RB*-_U8_Z@)tTiAxyFgF z%p(x*PJ3eqM6dFlsR8%U|RP3QH&}H!Tcx&H9>(7v`O+18Jb?M5=c# zD#R%`NNc*0NtV-ZF3wr6YlKyACS9me5~eNat;59=1X^QH(bR{nsF*%*nbJ0Pgy$?~ z`Xwg8PA_=dl9^A*1DEafdWZKtdeLGhuL>b#Zh7>;g@+T(h%GLUKoYG5T}i_DyjIj{ z^EI`#Fwb^7lf?{{D_r02t!FTW{nDAe26|U+-oq3Ye-3jYk0oe?Ub}=>ljKO=#7Gza z%{MWfg50`>gz_oeJ&#d|E|BOq4JV$$zJ(!I-mcS+^T}f5N>rv@K@EhXqS;t3%&YEN zv0hnth<7}CFvFMxuT+#a*@7<2^P#eeVFb7NPW!I@%h)?T02wcgTe>q3*>^oY(hDtUaf zE}B6PTu4{BmR6T^oNE=%r`c#R`DpzMJjs!JPR4kLJEZugF!X`A&I71ouk?z@w$GP^ zJoei3rOA$cDEmmqsUl{;ylTs?R6h`bdXr%Z)1*UPwy$?G4|i~M$s-2bfS+vWQy$Pp zV1sTs2*tsA5Q^P$5C~ImmE6k(i>#gvQVWU?5;IfWa_d`>JTXkxTQ4gHOKhe9zaVJ; zY1h;+Uzi|R-t~N}(`0K?H4nS6rm0GuqP3AVzuzQdO9Pn)LioIe+q|aI$9YjXR3PiL zy`xP^tcG!6_SC&Fzpel2?-iXDqPO-wJx*8~&Mx&+GFs{hTujiBtcM9BQU?>tvi>Ek zFVpvxM{OUe7d9ZejvZ0GDfK$EK-D@%GXr?}xRC$$B5&B!#gVJIcoey43@xOg^X8e2nu*xg2sn*>gaT1nFTQ z7v)`4*XyaI%R_pJZjUPAZ|^CvY;*857YSKc5yk}Bou^=4bZ=RDBxEgF9s8yPe&FYM zkKVbuy+>GSW`7b!q~0Tx<-A8wAFnl?^0JF;5E0sSkawTnBa`lYF7!L{^{i11HuP(w zYdA^DHfwwjtCw5s;4#)>)T&I^-CGJxypzHgUMKZOqdI=x&^MaWe6)0XVhfRVgFJ<^Y5I@mW+ABm0gR!w^*3h97fod+0uEbu`d!D&H1{6oY|e4%NyEOF;%Y@<~LwLk`Z<@$%~0* zWskOi90J=|1Ai}JFId*uPg8_6{)JEp#26<expCv$9G5Se4cSFBADua5bVUZvzN_G1ACb@JoJ>BV z`=HS)McUVVoIh&tBEfA$HEVh9FB`Dh^+yYL4H9hqoUEr+_O{jFRxEQXRqAQj?%FEw zyg9>{pDG61r=VItv3m-GTR7hVpC@Q3_m{4DL4xc}-l9peJHnpHvPq2c)9rG&Th7MV z_l<48Oq>fGkoNz#Lt&7>opyZSYdh zngpL1Udk^1B$A`F`>RR5hT?7%MCvTU-kRQJx_)sd;8-xKCl-sggIH*ckt#3h&SM zIUnp8|57s{&C@D!ES@elxv5D^J(WAxmXQXgpC(+S(}7KUW%^ajf5ozPZj0mnV)u(s zd&w}v=^lTE)8IZ@@4=~kqo_nV)~#w2Ys!jdv3 zY&TNY&_9>yc{ml@pV})cK#Nm=9AN&62O4(wdd0AE|6`yu#5s|)-nFlMu zonS4Mgu%RRkPCHJ_6L53r| zQbGk0txG!1@Zw3zVL(TDO-<3lH%q#5`{0o8-bRe7nMI3L|{K;wz-x zqG|u^ExbphH|g+mXjd6wvW!D8=U%<7o8}8W4Uh2gp$98uQ_!wbRwca?aHHOA@Np@d zyTyrs?A(t#_m)eMd@`a5)`u*Xy_wtdWz*S0RF9jii_~K+rLa4Bp2NyV-4balN^ksp8aES7ii|a 1;\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Loco https://localise.biz/\n" +"X-Loco-Version: 2.8.0; wp-6.8.1; php-8.2.28\n" +"X-Domain: ccat\n" + +#: includes/taxonomies/discipline.php:32 +msgid "← Back to disciplines" +msgstr "← Retour aux disciplines" + +#: includes/taxonomies/project-category.php:32 +msgid "← Back to project-categories" +msgstr "← Retour aux catégories de projet" + +#: includes/taxonomies/resource-category.php:32 +msgid "← Back to resource-categories" +msgstr "← Retour aux catégories de ressources" + +#: acf-json/acf-translations.php:2 +msgid "Abstract – Builder" +msgstr "Abstrait – Constructeur" + +#: acf-json/acf-translations.php:3 +msgid "Abstract – Credits" +msgstr "Abstrait – Crédits" + +#: acf-json/acf-translations.php:4 +msgid "Abstract – Entity" +msgstr "Abstrait – Entité" + +#: acf-json/acf-translations.php:5 +msgid "Abstract – Gallery" +msgstr "Abstrait – Galerie" + +#: acf-json/acf-translations.php:6 +msgid "Abstract – Offer" +msgstr "Abstrait – Offre" + +#: acf-json/acf-translations.php:7 +msgid "Abstract – Social" +msgstr "Abstrait – Social" + +#: acf-json/acf-translations.php:8 +msgid "Add File" +msgstr "Ajouter un fichier" + +#: includes/cpt/representation.php:13 includes/cpt/contributor.php:13 +#: includes/cpt/membership.php:13 includes/cpt/project.php:13 +#: includes/cpt/location.php:13 includes/cpt/template.php:13 +#: includes/cpt/event.php:13 includes/cpt/resource.php:13 +msgid "Add New" +msgstr "Ajouter" + +#: includes/cpt/contributor.php:14 +msgid "Add New Contributor" +msgstr "Ajouter un contributeur" + +#: includes/cpt/event.php:14 +msgid "Add New Event" +msgstr "Ajouter un événement" + +#: includes/cpt/location.php:14 +msgid "Add New Location" +msgstr "Ajouter un emplacement" + +#: includes/cpt/membership.php:14 +msgid "Add New Membership" +msgstr "Ajouter une nouvelle adhésion" + +#: includes/cpt/project.php:14 +msgid "Add New Project" +msgstr "Ajouter un projet" + +#: includes/cpt/representation.php:14 +msgid "Add New Representation" +msgstr "Ajouter une représentation" + +#: includes/cpt/resource.php:14 +msgid "Add New Resource" +msgstr "Ajouter une ressource" + +#: includes/cpt/template.php:14 +msgid "Add New Template" +msgstr "Ajouter un modèle" + +#: includes/taxonomies/discipline.php:24 +msgid "Add or remove disciplines" +msgstr "Ajouter ou supprimer des disciplines" + +#: includes/taxonomies/project-category.php:24 +msgid "Add or remove project-categories" +msgstr "Ajouter ou supprimer des catégories de projet" + +#: includes/taxonomies/resource-category.php:24 +msgid "Add or remove resource-categories" +msgstr "Ajouter ou supprimer des catégories de ressources" + +#: acf-json/acf-translations.php:9 +msgid "Address" +msgstr "Adresse" + +#: acf-json/acf-translations.php:10 +msgid "Adultes (18+)" +msgstr "Adultes (18+)" + +#: acf-json/acf-translations.php:11 +msgid "Ajouter un élément" +msgstr "Ajouter un élément" + +#: includes/cpt/contributor.php:23 +msgid "All Contributors" +msgstr "Tous les contributeurs" + +#: includes/taxonomies/discipline.php:15 +msgid "All disciplines" +msgstr "Toutes les disciplines" + +#: includes/cpt/event.php:23 +msgid "All Events" +msgstr "Tous les événements" + +#: includes/cpt/location.php:23 +msgid "All Locations" +msgstr "Tous les emplacements" + +#: includes/cpt/membership.php:23 +msgid "All Memberships" +msgstr "Toutes les adhésions" + +#: includes/taxonomies/project-category.php:15 +msgid "All project-categories" +msgstr "Toutes les catégories de projet" + +#: includes/cpt/project.php:23 +msgid "All Projects" +msgstr "Tous les projets" + +#: includes/cpt/representation.php:23 +msgid "All Representations" +msgstr "Toutes les représentations" + +#: includes/taxonomies/resource-category.php:15 +msgid "All resource-categories" +msgstr "Toutes les catégories de ressources" + +#: includes/cpt/resource.php:23 +msgid "All Resources" +msgstr "Toutes les ressources" + +#: includes/cpt/template.php:23 +msgid "All Templates" +msgstr "Tous les modèles" + +#: acf-json/acf-translations.php:12 +msgid "Alternative title(s)" +msgstr "Titre(s) alternatif(s)" + +#: acf-json/acf-translations.php:13 +msgid "Attendance mode" +msgstr "Mode de présence" + +#: acf-json/acf-translations.php:14 +msgid "Auteur" +msgstr "Auteur" + +#: acf-json/acf-translations.php:15 +msgid "Bar" +msgstr "Bar" + +#: acf-json/acf-translations.php:16 +msgid "Builder" +msgstr "Constructeur" + +#: acf-json/acf-translations.php:17 +msgid "Cancelled" +msgstr "Annulé" + +#: acf-json/acf-translations.php:18 +msgid "Categorie(s)" +msgstr "Catégorie(s)" + +#: acf-json/acf-translations.php:19 +msgid "Category" +msgstr "Categorie" + +#. Name of the theme +msgid "CCAT" +msgstr "CCAT" + +#: includes/taxonomies/discipline.php:25 +msgid "Choose from the most used disciplines" +msgstr "Choisir parmis les disciplines 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" + +#: includes/taxonomies/resource-category.php:25 +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:20 +msgid "Complete" +msgstr "Complet" + +#: acf-json/acf-translations.php:21 +msgid "Compositeur" +msgstr "Compositeur" + +#: acf-json/acf-translations.php:22 +msgid "Configuration" +msgstr "Configuration" + +#: acf-json/acf-translations.php:23 +msgid "Configuration name" +msgstr "Nom de la configuration" + +#: acf-json/acf-translations.php:24 +msgid "Confirmed" +msgstr "Confirmé" + +#. Description of the theme +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:25 +msgid "Content" +msgstr "Contenu" + +#: acf-json/acf-translations.php:26 +msgid "Contribution type(s)" +msgstr "Type(s) de contribution" + +#: acf-json/acf-translations.php:27 +msgid "Contribution(s)" +msgstr "Contribution(s)" + +#: acf-json/acf-translations.php:28 includes/cpt/contributor.php:12 +msgid "Contributor" +msgstr "Contributeur" + +#: includes/cpt/contributor.php:24 +msgid "Contributor Archives" +msgstr "Archives des contributeurs" + +#: includes/cpt/contributor.php:25 +msgid "Contributor Attributes" +msgstr "Attributs du contributeur" + +#: includes/cpt/contributor.php:36 +msgid "Contributor published privately." +msgstr "Le contributeur a publié de manière privée." + +#: includes/cpt/contributor.php:35 includes/cpt/contributor.php:80 +msgid "Contributor published." +msgstr "Contributeur publié." + +#: includes/cpt/contributor.php:79 +#, php-format +msgid "Contributor restored to revision from %s" +msgstr "Le contributeur a été restauré à la révision de %s" + +#: includes/cpt/contributor.php:37 +msgid "Contributor reverted to draft." +msgstr "Le contributeur a été ramené à l'état de brouillon." + +#: includes/cpt/contributor.php:81 +msgid "Contributor saved." +msgstr "Contributeur enregistré." + +#: includes/cpt/contributor.php:38 +msgid "Contributor scheduled." +msgstr "Contributeur prévu." + +#: includes/cpt/contributor.php:82 +msgid "Contributor submitted." +msgstr "Contributeur soumis." + +#: acf-json/acf-translations.php:29 +msgid "Contributor type" +msgstr "Type de configuration" + +#: includes/cpt/contributor.php:39 includes/cpt/contributor.php:75 +#: includes/cpt/contributor.php:78 +msgid "Contributor updated." +msgstr "Contributeur mis à jour." + +#: includes/cpt/contributor.php:10 includes/cpt/contributor.php:11 +msgid "Contributors" +msgstr "Contributeurs" + +#: includes/cpt/contributor.php:34 +msgid "Contributors list" +msgstr "Liste des contributeurs" + +#: includes/cpt/contributor.php:33 +msgid "Contributors list navigation" +msgstr "Liste des contributeurs et navigation" + +#: acf-json/acf-translations.php:30 +msgid "Credits" +msgstr "Crédits" + +#: includes/cpt/representation.php:74 includes/cpt/contributor.php:77 +#: includes/cpt/membership.php:77 includes/cpt/project.php:77 +#: includes/cpt/location.php:78 includes/cpt/template.php:74 +#: includes/cpt/event.php:77 includes/cpt/resource.php:77 +msgid "Custom field deleted." +msgstr "Champ personnalisé supprimé." + +#: includes/cpt/representation.php:73 includes/cpt/contributor.php:76 +#: includes/cpt/membership.php:76 includes/cpt/project.php:76 +#: includes/cpt/location.php:77 includes/cpt/template.php:73 +#: includes/cpt/event.php:76 includes/cpt/resource.php:76 +msgid "Custom field updated." +msgstr "Champ personnalisé mis à jour." + +#: acf-json/acf-translations.php:31 +msgid "Date / time" +msgstr "Date / heure" + +#: acf-json/acf-translations.php:32 +msgid "Date range" +msgstr "Plage de dates" + +#: acf-json/acf-translations.php:33 +msgid "Day(s)" +msgstr "Journée(s)" + +#: acf-json/acf-translations.php:34 +msgid "Description" +msgstr "Description" + +#: includes/taxonomies/discipline.php:12 +msgid "Discipline" +msgstr "Discipline" + +#: includes/taxonomies/discipline.php:59 +msgid "Discipline added." +msgstr "Discipline ajoutée." + +#: includes/taxonomies/discipline.php:60 +msgid "Discipline deleted." +msgstr "Discipline supprimée." + +#: includes/taxonomies/discipline.php:62 +msgid "Discipline not added." +msgstr "Discipline non ajoutée." + +#: includes/taxonomies/discipline.php:63 +msgid "Discipline not updated." +msgstr "Discipline non mis à jour." + +#: includes/taxonomies/discipline.php:61 +msgid "Discipline updated." +msgstr "Discipline mise à jour." + +#: acf-json/acf-translations.php:35 +msgid "Discipline(s)" +msgstr "Discipline(s)" + +#: includes/taxonomies/discipline.php:11 includes/taxonomies/discipline.php:28 +msgid "Disciplines" +msgstr "Disciplines" + +#: includes/taxonomies/discipline.php:64 +msgid "Disciplines deleted." +msgstr "Disciplines supprimées." + +#: includes/taxonomies/discipline.php:30 +msgid "Disciplines list" +msgstr "Liste des disciplines" + +#: includes/taxonomies/discipline.php:29 +msgid "Disciplines list navigation" +msgstr "Liste de navigation des disciplines" + +#: acf-json/acf-translations.php:36 +msgid "Document type" +msgstr "Type de document" + +#: acf-json/acf-translations.php:37 +msgid "Document(s)" +msgstr "Document(s)" + +#: includes/cpt/contributor.php:16 +msgid "Edit Contributor" +msgstr "Modifier le contributeur" + +#: includes/taxonomies/discipline.php:18 +msgid "Edit discipline" +msgstr "Modifier la discipline" + +#: includes/cpt/event.php:16 +msgid "Edit Event" +msgstr "Modifier l'événement" + +#: includes/cpt/location.php:16 +msgid "Edit Location" +msgstr "Modifier l'emplacement" + +#: includes/cpt/membership.php:16 +msgid "Edit Membership" +msgstr "Modifier l'adhésion" + +#: includes/cpt/project.php:16 +msgid "Edit Project" +msgstr "Modifier le projet" + +#: includes/taxonomies/project-category.php:18 +msgid "Edit project-category" +msgstr "Modifier la catégorie du projet" + +#: includes/cpt/representation.php:16 +msgid "Edit Representation" +msgstr "Représentation modifiée" + +#: includes/cpt/resource.php:16 +msgid "Edit Resource" +msgstr "Modifier la ressource" + +#: includes/taxonomies/resource-category.php:18 +msgid "Edit resource-category" +msgstr "Modifier la catégorie de ressources" + +#: includes/cpt/template.php:16 +msgid "Edit Template" +msgstr "Modifier le modèle" + +#: acf-json/acf-translations.php:38 +msgid "Email" +msgstr "Courriel" + +#: acf-json/acf-translations.php:39 +msgid "End date" +msgstr "Date de fin" + +#: acf-json/acf-translations.php:40 +msgid "End month" +msgstr "Mois de fin" + +#: acf-json/acf-translations.php:41 +msgid "End time" +msgstr "Heure de fin" + +#: acf-json/acf-translations.php:42 +msgid "Enfants" +msgstr "Enfants" + +#: acf-json/acf-translations.php:43 +msgid "Entity" +msgstr "Entité" + +#: acf-json/acf-translations.php:44 includes/cpt/event.php:12 +msgid "Event" +msgstr "Événement" + +#: includes/cpt/event.php:24 +msgid "Event Archives" +msgstr "Archives d'événements" + +#: includes/cpt/event.php:25 +msgid "Event Attributes" +msgstr "Attributs de l'événement" + +#: includes/cpt/event.php:36 +msgid "Event published privately." +msgstr "Événement publié en privé." + +#: includes/cpt/event.php:35 includes/cpt/event.php:80 +msgid "Event published." +msgstr "Événement publié." + +#: includes/cpt/event.php:79 +#, php-format +msgid "Event restored to revision from %s" +msgstr "Événement restauré à la révision de %s" + +#: includes/cpt/event.php:37 +msgid "Event reverted to draft." +msgstr "L'événement a été remis en brouillon." + +#: includes/cpt/event.php:81 +msgid "Event saved." +msgstr "Événement enregistré." + +#: includes/cpt/event.php:38 +msgid "Event scheduled." +msgstr "Événement prévu." + +#: includes/cpt/event.php:82 +msgid "Event submitted." +msgstr "Événement soumis." + +#: acf-json/acf-translations.php:45 +msgid "Event type" +msgstr "Type d'événement" + +#: includes/cpt/event.php:39 includes/cpt/event.php:75 +#: includes/cpt/event.php:78 +msgid "Event updated." +msgstr "Événement mis à jour." + +#: includes/cpt/event.php:10 includes/cpt/event.php:11 +msgid "Events" +msgstr "Événements" + +#: includes/cpt/event.php:34 +msgid "Events list" +msgstr "Liste des événements" + +#: includes/cpt/event.php:33 +msgid "Events list navigation" +msgstr "Navigation de la liste des événements" + +#: acf-json/acf-translations.php:46 +msgid "Exposition" +msgstr "Exposition" + +#: acf-json/acf-translations.php:47 +msgid "Failed" +msgstr "Échec" + +#: acf-json/acf-translations.php:48 +msgid "Familial" +msgstr "Familial" + +#: includes/cpt/representation.php:28 includes/cpt/contributor.php:28 +#: includes/cpt/membership.php:28 includes/cpt/project.php:28 +#: includes/cpt/location.php:28 includes/cpt/template.php:28 +#: includes/cpt/event.php:28 includes/cpt/resource.php:28 +msgid "Featured Image" +msgstr "Image en vedette" + +#: acf-json/acf-translations.php:49 +msgid "Festival" +msgstr "Festival" + +#: acf-json/acf-translations.php:50 +msgid "File" +msgstr "Fichier" + +#: includes/cpt/contributor.php:32 +msgid "Filter Contributors list" +msgstr "Filtrer la liste des contributeurs" + +#: includes/cpt/event.php:32 +msgid "Filter Events list" +msgstr "Filtrer la liste des événements" + +#: includes/cpt/location.php:32 +msgid "Filter Locations list" +msgstr "Filtrer la liste des emplacements" + +#: includes/cpt/membership.php:32 +msgid "Filter Memberships list" +msgstr "Filtrer la liste des adhésions" + +#: includes/cpt/project.php:32 +msgid "Filter Projects list" +msgstr "Filtrer la liste des projets" + +#: includes/cpt/representation.php:32 +msgid "Filter Representations list" +msgstr "Liste des représentations de filtres" + +#: includes/cpt/resource.php:32 +msgid "Filter Resources list" +msgstr "Filtrer la liste des ressources" + +#: includes/cpt/template.php:32 +msgid "Filter Templates list" +msgstr "Liste des modèles de filtres" + +#: acf-json/acf-translations.php:51 +msgid "Form" +msgstr "Formulaire" + +#: acf-json/acf-translations.php:52 +msgid "Free" +msgstr "Gratuit" + +#: acf-json/acf-translations.php:53 +msgid "Gallery" +msgstr "Galerie" + +#: acf-json/acf-translations.php:54 +msgid "H:i" +msgstr "H:i" + +#. Author URI of the theme +msgid "https://websimple.com/" +msgstr "https://websimple.com/" + +#: acf-json/acf-translations.php:55 +msgid "Hybrid" +msgstr "Hybride" + +#: acf-json/acf-translations.php:56 +msgid "Identifier(s)" +msgstr "Identifiant(s)" + +#: acf-json/acf-translations.php:57 +msgid "Image" +msgstr "Image" + +#: acf-json/acf-translations.php:58 +msgid "In-person" +msgstr "En personne" + +#: acf-json/acf-translations.php:59 +msgid "Individual day(s)" +msgstr "Journée(s) individuelle(s)" + +#: includes/cpt/contributor.php:26 +msgid "Insert into Contributor" +msgstr "Insérer dans le contributeur" + +#: includes/cpt/event.php:26 +msgid "Insert into Event" +msgstr "Insérer dans l'événement" + +#: includes/cpt/location.php:26 +msgid "Insert into Location" +msgstr "Insérer dans l'emplacement" + +#: includes/cpt/membership.php:26 +msgid "Insert into Membership" +msgstr "Insérer dans l'adhésion" + +#: includes/cpt/project.php:26 +msgid "Insert into Project" +msgstr "Insérer dans le projet" + +#: includes/cpt/representation.php:26 +msgid "Insert into Representation" +msgstr "Insérer dans la représentation" + +#: includes/cpt/resource.php:26 +msgid "Insert into Resource" +msgstr "Insérer dans la ressource" + +#: includes/cpt/template.php:26 +msgid "Insert into Template" +msgstr "Insérer dans le modèle" + +#: acf-json/acf-translations.php:60 +msgid "Interprète" +msgstr "Interprète" + +#: acf-json/acf-translations.php:61 +msgid "Language(s)" +msgstr "Langue(s)" + +#: acf-json/acf-translations.php:62 +msgid "Locality" +msgstr "Emplacement" + +#: acf-json/acf-translations.php:63 includes/cpt/location.php:12 +msgid "Location" +msgstr "Emplacement" + +#: includes/cpt/location.php:24 +msgid "Location Archives" +msgstr "Archives de localisation" + +#: includes/cpt/location.php:25 +msgid "Location Attributes" +msgstr "Attributs de localisation" + +#: includes/cpt/location.php:36 +msgid "Location published privately." +msgstr "Emplacement publié de manière privée." + +#: includes/cpt/location.php:35 includes/cpt/location.php:81 +msgid "Location published." +msgstr "Emplacement publié." + +#: includes/cpt/location.php:80 +#, php-format +msgid "Location restored to revision from %s" +msgstr "L'emplacement a été restauré à la révision de %s" + +#: includes/cpt/location.php:37 +msgid "Location reverted to draft." +msgstr "L'emplacement a été remis en brouillon." + +#: includes/cpt/location.php:82 +msgid "Location saved." +msgstr "Emplacement enregistré." + +#: includes/cpt/location.php:38 +msgid "Location scheduled." +msgstr "Emplacement prévu." + +#: includes/cpt/location.php:83 +msgid "Location submitted." +msgstr "Emplacement soumis." + +#: acf-json/acf-translations.php:64 +msgid "Location type" +msgstr "Type d'emplacement" + +#: includes/cpt/location.php:39 includes/cpt/location.php:76 +#: includes/cpt/location.php:79 +msgid "Location updated." +msgstr "Emplacement mis à jour." + +#: includes/cpt/location.php:10 includes/cpt/location.php:11 +msgid "Locations" +msgstr "Emplacements" + +#: includes/cpt/location.php:34 +msgid "Locations list" +msgstr "Liste des emplacements" + +#: includes/cpt/location.php:33 +msgid "Locations list navigation" +msgstr "Navigation de la liste des emplacements" + +#: includes/cpt/representation.php:68 includes/cpt/contributor.php:71 +#: includes/cpt/membership.php:71 includes/cpt/project.php:71 +#: includes/cpt/location.php:72 includes/cpt/template.php:68 +#: includes/cpt/event.php:71 includes/cpt/resource.php:71 +msgid "M j, Y @ H:i" +msgstr "" +"Je suis désolé, je ne comprends pas la signification de \"M j, Y @ H:i\". " +"Pouvez-vous fournir plus de contexte ou une explication supplémentaire?" + +#: acf-json/acf-translations.php:65 +msgid "Managed contributor(s)" +msgstr "Contributeur(s) associé(s)" + +#: acf-json/acf-translations.php:66 +msgid "Media type" +msgstr "Type de média" + +#: acf-json/acf-translations.php:67 +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" + +#: acf-json/acf-translations.php:68 +msgid "Membership profile" +msgstr "Profil d'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:80 +msgid "Membership published." +msgstr "Adhésion publiée." + +#: includes/cpt/membership.php:79 +#, 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:81 +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:82 +msgid "Membership submitted." +msgstr "Adhésion soumise." + +#: acf-json/acf-translations.php:69 +msgid "Membership type" +msgstr "Type d'adhésion" + +#: includes/cpt/membership.php:39 includes/cpt/membership.php:75 +#: includes/cpt/membership.php:78 +msgid "Membership updated." +msgstr "Adhésion mise à jour." + +#: 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:70 +msgid "Message" +msgstr "Message" + +#: acf-json/acf-translations.php:71 +msgid "Minimum price" +msgstr "Prix à partir de" + +#: acf-json/acf-translations.php:72 +msgid "Moral entity" +msgstr "Entité morale" + +#: includes/taxonomies/resource-category.php:31 +#: includes/taxonomies/discipline.php:31 +#: includes/taxonomies/project-category.php:31 +msgid "Most used" +msgstr "Le plus utilisé" + +#: acf-json/acf-translations.php:73 +msgid "Name" +msgstr "Nom" + +#: includes/cpt/contributor.php:15 +msgid "New Contributor" +msgstr "Nouveau contributeur" + +#: includes/taxonomies/discipline.php:21 includes/taxonomies/discipline.php:22 +msgid "New discipline" +msgstr "Nouvelle discipline" + +#: includes/cpt/event.php:15 +msgid "New Event" +msgstr "Nouvel événement" + +#: includes/cpt/location.php:15 +msgid "New Location" +msgstr "Nouvel emplacement" + +#: includes/cpt/membership.php:15 +msgid "New Membership" +msgstr "Nouvelle adhésion" + +#: includes/cpt/project.php:15 +msgid "New Project" +msgstr "Nouveau projet" + +#: includes/taxonomies/project-category.php:21 +#: includes/taxonomies/project-category.php:22 +msgid "New project-category" +msgstr "Nouvelle catégorie de projet" + +#: includes/cpt/representation.php:15 +msgid "New Representation" +msgstr "Nouvelle représentation" + +#: includes/cpt/resource.php:15 +msgid "New Resource" +msgstr "Nouvelle ressource" + +#: includes/taxonomies/resource-category.php:21 +#: includes/taxonomies/resource-category.php:22 +msgid "New resource-category" +msgstr "Nouvelle catégorie de ressources" + +#: includes/cpt/template.php:15 +msgid "New Template" +msgstr "Nouveau modèle" + +#: includes/cpt/contributor.php:20 +msgid "No Contributors found" +msgstr "Aucun contributeur trouvé" + +#: includes/cpt/contributor.php:21 +msgid "No Contributors found in trash" +msgstr "Aucun contributeur trouvé dans la corbeille" + +#: includes/taxonomies/discipline.php:27 +msgid "No disciplines" +msgstr "Aucune discipline" + +#: includes/taxonomies/discipline.php:26 +msgid "No disciplines found." +msgstr "Aucune discipline trouvée." + +#: includes/cpt/event.php:20 +msgid "No Events found" +msgstr "Aucun événement trouvé" + +#: includes/cpt/event.php:21 +msgid "No Events found in trash" +msgstr "Aucun événement trouvé dans la corbeille" + +#: includes/cpt/location.php:20 +msgid "No Locations found" +msgstr "Aucun emplacement trouvé" + +#: includes/cpt/location.php:21 +msgid "No Locations found in trash" +msgstr "Aucun emplacement trouvé dans la corbeille" + +#: includes/cpt/membership.php:20 +msgid "No Memberships found" +msgstr "Aucune adhésion trouvée" + +#: includes/cpt/membership.php:21 +msgid "No Memberships found in trash" +msgstr "Aucune adhésion trouvée dans la corbeille" + +#: includes/taxonomies/project-category.php:27 +msgid "No project-categories" +msgstr "Aucune catégorie de projet" + +#: includes/taxonomies/project-category.php:26 +msgid "No project-categories found." +msgstr "Aucune catégorie de projet trouvée." + +#: includes/cpt/project.php:20 +msgid "No Projects found" +msgstr "Aucun projet trouvé" + +#: includes/cpt/project.php:21 +msgid "No Projects found in trash" +msgstr "Aucun projet trouvé dans la corbeille" + +#: includes/cpt/representation.php:20 +msgid "No Representations found" +msgstr "Aucune représentation trouvée" + +#: includes/cpt/representation.php:21 +msgid "No Representations found in trash" +msgstr "Aucune représentation trouvée dans la corbeille" + +#: includes/taxonomies/resource-category.php:27 +msgid "No resource-categories" +msgstr "Aucune catégorie de ressources" + +#: includes/taxonomies/resource-category.php:26 +msgid "No resource-categories found." +msgstr "Aucune catégorie de ressources trouvée." + +#: includes/cpt/resource.php:20 +msgid "No Resources found" +msgstr "Aucune ressource trouvée" + +#: includes/cpt/resource.php:21 +msgid "No Resources found in trash" +msgstr "Aucune ressource trouvée dans la corbeille" + +#: includes/cpt/template.php:20 +msgid "No Templates found" +msgstr "Aucun modèle trouvé" + +#: includes/cpt/template.php:21 +msgid "No Templates found in trash" +msgstr "Aucun modèle trouvé dans la corbeille" + +#: acf-json/acf-translations.php:74 +msgid "Notification(s)" +msgstr "Notification(s)" + +#: acf-json/acf-translations.php:75 +msgid "Offer" +msgstr "Offre" + +#: acf-json/acf-translations.php:76 +msgid "Offer status" +msgstr "État de l'offre" + +#: acf-json/acf-translations.php:77 +msgid "Online" +msgstr "En ligne" + +#: includes/cpt/contributor.php:22 +msgid "Parent Contributor:" +msgstr "Parent Contributor: Contributeur parent" + +#: includes/taxonomies/discipline.php:16 +msgid "Parent discipline" +msgstr "Discipline parentale" + +#: includes/taxonomies/discipline.php:17 +msgid "Parent discipline:" +msgstr "Discipline parentale" + +#: includes/cpt/event.php:22 +msgid "Parent Event:" +msgstr "Événement pour les parents :" + +#: includes/cpt/location.php:22 +msgid "Parent Location:" +msgstr "Emplacement des parents :" + +#: includes/cpt/membership.php:22 +msgid "Parent Membership:" +msgstr "Adhésion parent :" + +#: includes/taxonomies/project-category.php:16 +msgid "Parent project-category" +msgstr "Catégorie de projet parent" + +#: includes/taxonomies/project-category.php:17 +msgid "Parent project-category:" +msgstr "Catégorie de projet parent :" + +#: includes/cpt/project.php:22 +msgid "Parent Project:" +msgstr "Projet parent :" + +#: includes/cpt/representation.php:22 +msgid "Parent Representation:" +msgstr "Représentation des parents :" + +#: includes/taxonomies/resource-category.php:16 +msgid "Parent resource-category" +msgstr "Catégorie de ressources pour les parents" + +#: includes/taxonomies/resource-category.php:17 +msgid "Parent resource-category:" +msgstr "Catégorie de ressources parent :" + +#: includes/cpt/resource.php:22 +msgid "Parent Resource:" +msgstr "Ressource pour les parents :" + +#: includes/cpt/template.php:22 +msgid "Parent Template:" +msgstr "Modèle parent :" + +#: acf-json/acf-translations.php:78 +msgid "Period" +msgstr "Période" + +#: acf-json/acf-translations.php:79 +msgid "Phone" +msgstr "Téléphone" + +#: acf-json/acf-translations.php:80 +msgid "Physical person" +msgstr "Personne physique" + +#: acf-json/acf-translations.php:81 +msgid "Planned" +msgstr "Planifié" + +#: includes/taxonomies/discipline.php:14 +msgid "Popular disciplines" +msgstr "Les disciplines populaires" + +#: includes/taxonomies/project-category.php:14 +msgid "Popular project-categories" +msgstr "Catégories de projets populaires" + +#: includes/taxonomies/resource-category.php:14 +msgid "Popular resource-categories" +msgstr "Catégories de ressources populaires" + +#: acf-json/acf-translations.php:82 +msgid "Possible configuration(s)" +msgstr "Configuration(s) possible(s)" + +#: acf-json/acf-translations.php:83 +msgid "Post – Article" +msgstr "Contenu – Article" + +#: acf-json/acf-translations.php:84 +msgid "Post – Contributor" +msgstr "Contenu – Contributeur" + +#: acf-json/acf-translations.php:85 +msgid "Post – Event" +msgstr "Contenu – Événement" + +#: acf-json/acf-translations.php:86 +msgid "Post – Location" +msgstr "Contenu – Emplacement" + +#: acf-json/acf-translations.php:87 +msgid "Post – Membership" +msgstr "Contenu - Adhésion" + +#: acf-json/acf-translations.php:88 +msgid "Post – Page" +msgstr "Contenu – Page" + +#: acf-json/acf-translations.php:89 +msgid "Post – Project" +msgstr "Contenu – Projet" + +#: acf-json/acf-translations.php:90 +msgid "Post – Representation" +msgstr "Contenu – Représentation" + +#: acf-json/acf-translations.php:91 +msgid "Post – Resource" +msgstr "Contenu – Ressource" + +#: acf-json/acf-translations.php:92 +msgid "Post – Template" +msgstr "Contenu – Modèle" + +#: acf-json/acf-translations.php:93 +msgid "Postponed" +msgstr "Reporté" + +#: includes/cpt/contributor.php:69 includes/cpt/contributor.php:70 +msgid "Preview Contributor" +msgstr "Prévisualiser le contributeur" + +#: includes/cpt/event.php:69 includes/cpt/event.php:70 +msgid "Preview Event" +msgstr "Prévisualiser l'événement" + +#: includes/cpt/location.php:70 includes/cpt/location.php:71 +msgid "Preview Location" +msgstr "Prévisualiser l'emplacement" + +#: includes/cpt/membership.php:69 includes/cpt/membership.php:70 +msgid "Preview Membership" +msgstr "Prévisualiser l'adhésion" + +#: includes/cpt/project.php:69 includes/cpt/project.php:70 +msgid "Preview Project" +msgstr "Prévisualiser le projet" + +#: includes/cpt/representation.php:66 includes/cpt/representation.php:67 +msgid "Preview Representation" +msgstr "Prévisualiser la représentation" + +#: includes/cpt/resource.php:69 includes/cpt/resource.php:70 +msgid "Preview Resource" +msgstr "Prévisualiser la ressource" + +#: includes/cpt/template.php:66 includes/cpt/template.php:67 +msgid "Preview Template" +msgstr "Prévisualiser le modèle" + +#: acf-json/acf-translations.php:94 +msgid "Pricing" +msgstr "Tarification" + +#: acf-json/acf-translations.php:95 +msgid "Profile(s)" +msgstr "Profil(s)" + +#: includes/cpt/project.php:12 +msgid "Project" +msgstr "Projet" + +#: includes/cpt/project.php:24 +msgid "Project Archives" +msgstr "Archives du projet" + +#: includes/cpt/project.php:25 +msgid "Project Attributes" +msgstr "Attributs du projet" + +#: includes/taxonomies/project-category.php:11 +#: includes/taxonomies/project-category.php:28 +msgid "Project categories" +msgstr "Catégories de projet" + +#: includes/taxonomies/project-category.php:64 +msgid "Project categories deleted." +msgstr "Catégories de projet supprimées." + +#: includes/taxonomies/project-category.php:30 +msgid "Project categories list" +msgstr "Liste des catégories de projets" + +#: includes/taxonomies/project-category.php:29 +msgid "Project categories list navigation" +msgstr "Liste de catégories de projets pour la navigation" + +#: includes/taxonomies/project-category.php:12 +msgid "Project category" +msgstr "Catégorie de projet" + +#: includes/taxonomies/project-category.php:59 +msgid "Project category added." +msgstr "Catégorie de projet ajoutée." + +#: includes/taxonomies/project-category.php:60 +msgid "Project category deleted." +msgstr "Catégorie de projet supprimée." + +#: includes/taxonomies/project-category.php:62 +msgid "Project category not added." +msgstr "Catégorie de projet non ajoutée." + +#: includes/taxonomies/project-category.php:63 +msgid "Project category not updated." +msgstr "Catégorie de projet non mise à jour." + +#: includes/taxonomies/project-category.php:61 +msgid "Project category updated." +msgstr "Catégorie de projet mise à jour." + +#: includes/cpt/project.php:36 +msgid "Project published privately." +msgstr "Projet publié en privé." + +#: includes/cpt/project.php:35 includes/cpt/project.php:80 +msgid "Project published." +msgstr "Projet publié." + +#: includes/cpt/project.php:79 +#, php-format +msgid "Project restored to revision from %s" +msgstr "Projet restauré à la révision de %s" + +#: includes/cpt/project.php:37 +msgid "Project reverted to draft." +msgstr "Le projet a été ramené à l'étape de brouillon." + +#: includes/cpt/project.php:81 +msgid "Project saved." +msgstr "Projet enregistré." + +#: includes/cpt/project.php:38 +msgid "Project scheduled." +msgstr "Projet planifié." + +#: includes/cpt/project.php:82 +msgid "Project submitted." +msgstr "Projet soumis." + +#: includes/cpt/project.php:39 includes/cpt/project.php:75 +#: includes/cpt/project.php:78 +msgid "Project updated." +msgstr "Projet mis à jour." + +#: includes/cpt/project.php:10 includes/cpt/project.php:11 +msgid "Projects" +msgstr "Projets" + +#: includes/cpt/project.php:34 +msgid "Projects list" +msgstr "Liste de projets" + +#: includes/cpt/project.php:33 +msgid "Projects list navigation" +msgstr "Navigation de la liste des projets" + +#: acf-json/acf-translations.php:96 +msgid "Range" +msgstr "Plage de dates" + +#: acf-json/acf-translations.php:97 +msgid "Rechercher une adresse..." +msgstr "Rechercher une adresse..." + +#: acf-json/acf-translations.php:98 +msgid "Registration" +msgstr "Inscription" + +#: includes/cpt/representation.php:30 includes/cpt/contributor.php:30 +#: includes/cpt/membership.php:30 includes/cpt/project.php:30 +#: includes/cpt/location.php:30 includes/cpt/template.php:30 +#: includes/cpt/event.php:30 includes/cpt/resource.php:30 +msgid "Remove featured image" +msgstr "Retirer l'image en vedette" + +#: includes/cpt/representation.php:12 +msgid "Representation" +msgstr "Représentation" + +#: includes/cpt/representation.php:24 +msgid "Representation Archives" +msgstr "Archives de représentation" + +#: includes/cpt/representation.php:25 +msgid "Representation Attributes" +msgstr "Attributs de représentation" + +#: includes/cpt/representation.php:36 +msgid "Representation published privately." +msgstr "Représentation publiée en privé." + +#: includes/cpt/representation.php:35 includes/cpt/representation.php:77 +msgid "Representation published." +msgstr "Représentation publiée." + +#: includes/cpt/representation.php:76 +#, php-format +msgid "Representation restored to revision from %s" +msgstr "Représentation restaurée à la révision de %s" + +#: includes/cpt/representation.php:37 +msgid "Representation reverted to draft." +msgstr "La représentation a été ramenée à l'état de brouillon." + +#: includes/cpt/representation.php:78 +msgid "Representation saved." +msgstr "Représentation enregistrée." + +#: includes/cpt/representation.php:38 +msgid "Representation scheduled." +msgstr "Représentation prévue." + +#: includes/cpt/representation.php:79 +msgid "Representation submitted." +msgstr "Représentation soumise." + +#: includes/cpt/representation.php:39 includes/cpt/representation.php:72 +#: includes/cpt/representation.php:75 +msgid "Representation updated." +msgstr "Représentation mise à jour." + +#: includes/cpt/representation.php:10 includes/cpt/representation.php:11 +msgid "Representations" +msgstr "Représentations" + +#: includes/cpt/representation.php:34 +msgid "Representations list" +msgstr "Liste des représentations" + +#: includes/cpt/representation.php:33 +msgid "Representations list navigation" +msgstr "Liste de navigation des représentations" + +#: includes/cpt/resource.php:12 +msgid "Resource" +msgstr "Ressource" + +#: includes/cpt/resource.php:24 +msgid "Resource Archives" +msgstr "Archives de ressources" + +#: includes/cpt/resource.php:25 +msgid "Resource Attributes" +msgstr "Attributs des ressources" + +#: includes/taxonomies/resource-category.php:11 +#: includes/taxonomies/resource-category.php:28 +msgid "Resource categories" +msgstr "Catégories de ressources" + +#: includes/taxonomies/resource-category.php:64 +msgid "Resource categories deleted." +msgstr "Catégories de ressources supprimées." + +#: includes/taxonomies/resource-category.php:30 +msgid "Resource categories list" +msgstr "Liste des catégories de ressources" + +#: includes/taxonomies/resource-category.php:29 +msgid "Resource categories list navigation" +msgstr "Liste de navigation des catégories de ressources" + +#: includes/taxonomies/resource-category.php:12 +msgid "Resource category" +msgstr "Catégorie de ressources" + +#: includes/taxonomies/resource-category.php:59 +msgid "Resource category added." +msgstr "Catégorie de ressources ajoutée." + +#: includes/taxonomies/resource-category.php:60 +msgid "Resource category deleted." +msgstr "Catégorie de ressources supprimée." + +#: includes/taxonomies/resource-category.php:62 +msgid "Resource category not added." +msgstr "Catégorie de ressources non ajoutée." + +#: includes/taxonomies/resource-category.php:63 +msgid "Resource category not updated." +msgstr "Catégorie de ressources non mise à jour." + +#: includes/taxonomies/resource-category.php:61 +msgid "Resource category updated." +msgstr "Catégorie de ressources mise à jour." + +#: includes/cpt/resource.php:36 +msgid "Resource published privately." +msgstr "Ressource publiée de façon privée." + +#: includes/cpt/resource.php:35 includes/cpt/resource.php:80 +msgid "Resource published." +msgstr "Ressource publiée." + +#: includes/cpt/resource.php:79 +#, php-format +msgid "Resource restored to revision from %s" +msgstr "Ressource restaurée à la révision de %s" + +#: includes/cpt/resource.php:37 +msgid "Resource reverted to draft." +msgstr "La ressource a été ramenée à l'état de brouillon." + +#: includes/cpt/resource.php:81 +msgid "Resource saved." +msgstr "Ressource sauvegardée." + +#: includes/cpt/resource.php:38 +msgid "Resource scheduled." +msgstr "Ressource planifiée." + +#: includes/cpt/resource.php:82 +msgid "Resource submitted." +msgstr "Ressource soumise." + +#: includes/cpt/resource.php:39 includes/cpt/resource.php:75 +#: includes/cpt/resource.php:78 +msgid "Resource updated." +msgstr "Ressource mise à jour." + +#: includes/cpt/resource.php:10 includes/cpt/resource.php:11 +msgid "Resources" +msgstr "Ressources" + +#: includes/cpt/resource.php:34 +msgid "Resources list" +msgstr "Liste de ressources" + +#: includes/cpt/resource.php:33 +msgid "Resources list navigation" +msgstr "Liste de navigation des ressources" + +#: acf-json/acf-translations.php:99 +msgid "Salle de spectacle" +msgstr "Salle de spectacle" + +#: acf-json/acf-translations.php:100 +msgid "Schedule type" +msgstr "Type d'horaire" + +#: includes/cpt/contributor.php:19 +msgid "Search Contributors" +msgstr "Recherche de contributeurs" + +#: includes/taxonomies/discipline.php:13 +msgid "Search disciplines" +msgstr "Recherche de disciplines" + +#: includes/cpt/event.php:19 +msgid "Search Events" +msgstr "Recherche d'événements" + +#: acf-json/acf-translations.php:101 +msgid "Search for address..." +msgstr "Rechercher une adresse..." + +#: includes/cpt/location.php:19 +msgid "Search Locations" +msgstr "Recherche de lieux" + +#: includes/cpt/membership.php:19 +msgid "Search Memberships" +msgstr "Recherche d'adhésions" + +#: includes/taxonomies/project-category.php:13 +msgid "Search project-categories" +msgstr "Recherche de catégories de projet" + +#: includes/cpt/project.php:19 +msgid "Search Projects" +msgstr "Recherche de projets" + +#: includes/cpt/representation.php:19 +msgid "Search Representations" +msgstr "Représentations de recherche" + +#: includes/taxonomies/resource-category.php:13 +msgid "Search resource-categories" +msgstr "Recherche de catégories de ressources" + +#: includes/cpt/resource.php:19 +msgid "Search Resources" +msgstr "Recherche de ressources" + +#: includes/cpt/template.php:19 +msgid "Search Templates" +msgstr "Modèles de recherche" + +#: acf-json/acf-translations.php:102 +msgid "Section(s)" +msgstr "Section(s)" + +#: acf-json/acf-translations.php:103 +msgid "Select" +msgstr "Sélectionner" + +#: acf-json/acf-translations.php:104 +msgid "Sent" +msgstr "Envoyé" + +#: acf-json/acf-translations.php:105 +msgid "Sent status" +msgstr "État de l'envoi" + +#: includes/taxonomies/discipline.php:23 +msgid "Separate disciplines with commas" +msgstr "Séparez les disciplines avec 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." + +#: includes/taxonomies/resource-category.php:23 +msgid "Separate resource-categories with commas" +msgstr "Séparez les catégories de ressources avec des virgules." + +#: includes/cpt/representation.php:29 includes/cpt/contributor.php:29 +#: includes/cpt/membership.php:29 includes/cpt/project.php:29 +#: includes/cpt/location.php:29 includes/cpt/template.php:29 +#: includes/cpt/event.php:29 includes/cpt/resource.php:29 +msgid "Set featured image" +msgstr "Définir l'image en vedette" + +#: acf-json/acf-translations.php:106 +msgid "Social" +msgstr "Social" + +#: acf-json/acf-translations.php:107 +msgid "Spectacle" +msgstr "Spectacle" + +#: acf-json/acf-translations.php:108 +msgid "Start date" +msgstr "Date de début" + +#: acf-json/acf-translations.php:109 +msgid "Start date / time" +msgstr "Date et heure de début" + +#: acf-json/acf-translations.php:110 +msgid "Start month" +msgstr "Mois de début" + +#: acf-json/acf-translations.php:111 +msgid "Subject" +msgstr "Sujet" + +#: acf-json/acf-translations.php:112 +msgid "Target audience" +msgstr "Public cible" + +#: includes/cpt/template.php:12 +msgid "Template" +msgstr "Modèle" + +#: includes/cpt/template.php:24 +msgid "Template Archives" +msgstr "Archives de modèle" + +#: includes/cpt/template.php:25 +msgid "Template Attributes" +msgstr "Attributs de modèle" + +#: includes/cpt/template.php:36 +msgid "Template published privately." +msgstr "Modèle publié en privé." + +#: includes/cpt/template.php:35 includes/cpt/template.php:77 +msgid "Template published." +msgstr "Modèle publié." + +#: includes/cpt/template.php:76 +#, php-format +msgid "Template restored to revision from %s" +msgstr "Modèle restauré à la révision du %s" + +#: includes/cpt/template.php:37 +msgid "Template reverted to draft." +msgstr "Le modèle a été rétabli en brouillon." + +#: includes/cpt/template.php:78 +msgid "Template saved." +msgstr "Modèle enregistré." + +#: includes/cpt/template.php:38 +msgid "Template scheduled." +msgstr "Modèle programmé." + +#: includes/cpt/template.php:79 +msgid "Template submitted." +msgstr "Modèle soumis." + +#: includes/cpt/template.php:39 includes/cpt/template.php:72 +#: includes/cpt/template.php:75 +msgid "Template updated." +msgstr "Modèle mis à jour." + +#: includes/cpt/template.php:10 includes/cpt/template.php:11 +msgid "Templates" +msgstr "Modèles" + +#: includes/cpt/template.php:34 +msgid "Templates list" +msgstr "Liste de modèles" + +#: includes/cpt/template.php:33 +msgid "Templates list navigation" +msgstr "Liste de modèles de navigation" + +#: acf-json/acf-translations.php:113 +msgid "Term – Discipline" +msgstr "Terme - Discipline" + +#: acf-json/acf-translations.php:114 +msgid "Text block" +msgstr "Bloc de texte" + +#: acf-json/acf-translations.php:115 +msgid "This event is free" +msgstr "Cet événement est gratuit" + +#: acf-json/acf-translations.php:116 +msgid "This event is wordless" +msgstr "Cet événement est sans paroles" + +#: acf-json/acf-translations.php:117 +msgid "Title" +msgstr "Titre" + +#: acf-json/acf-translations.php:118 +msgid "Tout public" +msgstr "Tout public" + +#: acf-json/acf-translations.php:121 +msgid "Universal access" +msgstr "Accès universel" + +#: acf-json/acf-translations.php:122 +msgid "Upcoming" +msgstr "À venir" + +#: includes/taxonomies/discipline.php:19 +msgid "Update discipline" +msgstr "Mettre à jour la discipline" + +#: includes/taxonomies/project-category.php:19 +msgid "Update project-category" +msgstr "Mettre à jour la catégorie du projet" + +#: includes/taxonomies/resource-category.php:19 +msgid "Update resource-category" +msgstr "Mettre à jour la catégorie de ressources" + +#: includes/cpt/contributor.php:27 +msgid "Uploaded to this Contributor" +msgstr "Téléchargé par ce contributeur" + +#: includes/cpt/event.php:27 +msgid "Uploaded to this Event" +msgstr "Téléchargé à cet événement" + +#: includes/cpt/location.php:27 +msgid "Uploaded to this Location" +msgstr "Téléchargé à cet endroit" + +#: includes/cpt/membership.php:27 +msgid "Uploaded to this Membership" +msgstr "Téléchargé sur cette adhésion" + +#: includes/cpt/project.php:27 +msgid "Uploaded to this Project" +msgstr "Téléchargé dans ce projet" + +#: includes/cpt/representation.php:27 +msgid "Uploaded to this Representation" +msgstr "Téléchargé sur cette représentation" + +#: includes/cpt/resource.php:27 +msgid "Uploaded to this Resource" +msgstr "Téléchargé dans cette ressource" + +#: includes/cpt/template.php:27 +msgid "Uploaded to this Template" +msgstr "Téléchargé dans ce modèle" + +#: acf-json/acf-translations.php:119 +msgid "URI" +msgstr "URI" + +#: acf-json/acf-translations.php:120 +msgid "URL" +msgstr "URL" + +#: includes/cpt/representation.php:31 includes/cpt/contributor.php:31 +#: includes/cpt/membership.php:31 includes/cpt/project.php:31 +#: includes/cpt/location.php:31 includes/cpt/template.php:31 +#: includes/cpt/event.php:31 includes/cpt/resource.php:31 +msgid "Use as featured image" +msgstr "Utiliser comme image en vedette" + +#: includes/cpt/contributor.php:17 includes/cpt/contributor.php:72 +msgid "View Contributor" +msgstr "Voir le contributeur" + +#: includes/cpt/contributor.php:18 +msgid "View Contributors" +msgstr "Voir les contributeurs" + +#: includes/taxonomies/discipline.php:20 +msgid "View discipline" +msgstr "Voir la discipline" + +#: includes/cpt/event.php:17 includes/cpt/event.php:72 +msgid "View Event" +msgstr "Voir l'événement" + +#: includes/cpt/event.php:18 +msgid "View Events" +msgstr "Voir les événements" + +#: includes/cpt/location.php:17 includes/cpt/location.php:73 +msgid "View Location" +msgstr "Voir l'emplacement" + +#: includes/cpt/location.php:18 +msgid "View Locations" +msgstr "Voir les emplacements" + +#: includes/cpt/membership.php:17 includes/cpt/membership.php:72 +msgid "View Membership" +msgstr "Afficher l'adhésion" + +#: includes/cpt/membership.php:18 +msgid "View Memberships" +msgstr "Voir les adhésions" + +#: includes/cpt/project.php:17 includes/cpt/project.php:72 +msgid "View Project" +msgstr "Voir le projet" + +#: includes/taxonomies/project-category.php:20 +msgid "View project-category" +msgstr "Voir la catégorie de projet" + +#: includes/cpt/project.php:18 +msgid "View Projects" +msgstr "Voir les projets" + +#: includes/cpt/representation.php:17 includes/cpt/representation.php:69 +msgid "View Representation" +msgstr "Voir la représentation" + +#: includes/cpt/representation.php:18 +msgid "View Representations" +msgstr "Voir les représentations" + +#: includes/cpt/resource.php:17 includes/cpt/resource.php:72 +msgid "View Resource" +msgstr "Voir la ressource" + +#: includes/taxonomies/resource-category.php:20 +msgid "View resource-category" +msgstr "Voir la catégorie de ressources" + +#: includes/cpt/resource.php:18 +msgid "View Resources" +msgstr "Voir les ressources" + +#: includes/cpt/template.php:17 includes/cpt/template.php:69 +msgid "View Template" +msgstr "Voir le modèle" + +#: includes/cpt/template.php:18 +msgid "View Templates" +msgstr "Voir les modèles" + +#: acf-json/acf-translations.php:123 +msgid "Virtual location" +msgstr "Emplacement virtuel" + +#. Author of the theme +msgid "Websimple " +msgstr "Websimple " + +#: acf-json/acf-translations.php:124 +msgid "Where" +msgstr "Lieu" + +#: acf-json/acf-translations.php:125 +msgid "Wordless" +msgstr "Sans paroles" + +#: acf-json/acf-translations.php:126 +msgid "Y-m" +msgstr "Y-m" + +#: acf-json/acf-translations.php:127 +msgid "Y-m-d" +msgstr "Y-m-d" + +#: acf-json/acf-translations.php:128 +msgid "Y-m-d H:i:s" +msgstr "Y-m-d H:i:s" + +#: acf-json/acf-translations.php:129 +msgid "YouTube URL" +msgstr "URL YouTube" + +#: acf-json/acf-translations.php:130 +msgid "YouTube video" +msgstr "Vidéo YouTube" diff --git a/wp-content/themes/ccat/languages/systemprompt.txt b/wp-content/themes/ccat/languages/systemprompt.txt new file mode 100644 index 0000000..84534c2 --- /dev/null +++ b/wp-content/themes/ccat/languages/systemprompt.txt @@ -0,0 +1 @@ +You are a machine translating English to French Canadian text. diff --git a/wp-content/themes/ccat/style.css b/wp-content/themes/ccat/style.css new file mode 100644 index 0000000..ede69b6 --- /dev/null +++ b/wp-content/themes/ccat/style.css @@ -0,0 +1,9 @@ +/* +Theme Name: CCAT +Author: Websimple +Author URI: https://websimple.com/ +Description: Conseil de la culture de l'Abitibi-Témiscamingue +Version: 0.1.0 +Text Domain: ccat +Template: kaliroots +*/