diff --git a/.github/workflows/asset-lint.yml b/.github/workflows/asset-lint.yml index 719ff27d0..07f7f7a89 100644 --- a/.github/workflows/asset-lint.yml +++ b/.github/workflows/asset-lint.yml @@ -36,7 +36,7 @@ jobs: - uses: actions/setup-node@v3 if: steps.git-diff.outputs.diff with: - node-version: "16" + node-version-file: ".nvmrc" - name: Cache node modules if: steps.git-diff.outputs.diff uses: actions/cache@v3 diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml deleted file mode 100644 index a27c00414..000000000 --- a/.github/workflows/deploy-dev.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Deploy dev - -on: - workflow_dispatch: - push: - branches: - - dev - -jobs: - deploy: - if: github.repository == 'accessibility-exchange/platform' - - concurrency: deploy-dev - - runs-on: ubuntu-latest - - steps: - - name: Start deployment - uses: bobheadxi/deployments@v0.6.2 - id: deployment - with: - step: start - token: ${{ secrets.GITHUB_TOKEN }} - env: dev - - name: Deploy stack - uses: appleboy/ssh-action@v0.1.10 - with: - host: ${{ secrets.SSH_HOSTNAME }} - username: ${{ secrets.SSH_USERNAME }} - key: ${{ secrets.SSH_PRIVATE_KEY }} - port: ${{ secrets.SSH_PORT }} - proxy_host: ${{ secrets.SSH_PROXY_HOSTNAME }} - proxy_username: ${{ secrets.SSH_PROXY_USERNAME }} - proxy_key: ${{ secrets.SSH_PROXY_PRIVATE_KEY }} - proxy_port: ${{ secrets.SSH_PROXY_PORT }} - script: | - cd /srv/tae-dev && \ - git checkout -f && \ - git checkout dev && \ - git pull && \ - ./bin/deploy-dev.sh - - - name: Wait - run: sleep 15 - - - name: Smoke test - run: curl --location --no-buffer --retry 120 --retry-delay 1 https://tae-dev.inclusivedesign.ca - - - name: Update deployment status - uses: bobheadxi/deployments@v0.6.2 - if: always() - with: - step: finish - token: ${{ secrets.GITHUB_TOKEN }} - status: ${{ job.status }} - deployment_id: ${{ steps.deployment.outputs.deployment_id }} - env_url: https://tae-dev.inclusivedesign.ca diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 3bcb1c7d7..dfeec813e 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -39,7 +39,7 @@ jobs: - uses: actions/setup-node@v3 if: steps.git-diff.outputs.diff with: - node-version: "16" + node-version-file: ".nvmrc" - name: Cache node modules if: steps.git-diff.outputs.diff uses: actions/cache@v3 diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 4cfcfdf00..802b3eaf9 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -42,7 +42,7 @@ jobs: - uses: actions/setup-node@v3 if: steps.git-diff.outputs.diff with: - node-version: "16" + node-version-file: ".nvmrc" - name: Cache node modules if: steps.git-diff.outputs.diff uses: actions/cache@v3 diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml index e65166427..98e16e818 100644 --- a/.github/workflows/lighthouse.yml +++ b/.github/workflows/lighthouse.yml @@ -42,7 +42,7 @@ jobs: - uses: actions/setup-node@v3 if: steps.git-diff.outputs.diff with: - node-version: "16" + node-version-file: ".nvmrc" - name: Cache node modules if: steps.git-diff.outputs.diff uses: actions/cache@v3 @@ -76,11 +76,11 @@ jobs: env: DB_PASSWORD: root DB_HOST: localhost - - name: Use Node 16.x + - name: Use Node from .nvmrc file if: steps.git-diff.outputs.diff uses: actions/setup-node@v3 with: - node-version: 16 + node-version-file: ".nvmrc" - name: Run Lighthouse CI if: steps.git-diff.outputs.diff run: | diff --git a/.github/workflows/mirror-dev.yml b/.github/workflows/mirror-dev.yml index 16f2dbdeb..263198285 100644 --- a/.github/workflows/mirror-dev.yml +++ b/.github/workflows/mirror-dev.yml @@ -1,6 +1,7 @@ name: Mirror dev to GitLab on: + workflow_dispatch: push: branches: - dev @@ -23,7 +24,7 @@ jobs: git remote add gitlab ${{ vars.GITLAB_URL }} - name: Setup SSH - uses: webfactory/ssh-agent@v0.7.0 + uses: webfactory/ssh-agent@v0.8.0 with: ssh-private-key: ${{ secrets.GITLAB_SSH_KEY }} diff --git a/.github/workflows/mirror-production.yml b/.github/workflows/mirror-production.yml index 363d8d3f4..35dd90eac 100644 --- a/.github/workflows/mirror-production.yml +++ b/.github/workflows/mirror-production.yml @@ -1,6 +1,7 @@ name: Mirror production to GitLab on: + workflow_dispatch: push: branches: - production @@ -23,7 +24,7 @@ jobs: git remote add gitlab ${{ vars.GITLAB_URL }} - name: Setup SSH - uses: webfactory/ssh-agent@v0.7.0 + uses: webfactory/ssh-agent@v0.8.0 with: ssh-private-key: ${{ secrets.GITLAB_SSH_KEY }} diff --git a/.github/workflows/mirror-staging.yml b/.github/workflows/mirror-staging.yml index 601ba3a9b..bc5ce31ec 100644 --- a/.github/workflows/mirror-staging.yml +++ b/.github/workflows/mirror-staging.yml @@ -1,6 +1,7 @@ name: Mirror staging to GitLab on: + workflow_dispatch: push: branches: - staging @@ -23,7 +24,7 @@ jobs: git remote add gitlab ${{ vars.GITLAB_URL }} - name: Setup SSH - uses: webfactory/ssh-agent@v0.7.0 + uses: webfactory/ssh-agent@v0.8.0 with: ssh-private-key: ${{ secrets.GITLAB_SSH_KEY }} diff --git a/.github/workflows/mirror-tags.yml b/.github/workflows/mirror-tags.yml index f9728870c..3c8dfcfb8 100644 --- a/.github/workflows/mirror-tags.yml +++ b/.github/workflows/mirror-tags.yml @@ -1,6 +1,7 @@ name: Mirror tags to GitLab on: + workflow_dispatch: push: tags: - '*' @@ -23,7 +24,7 @@ jobs: git remote add gitlab ${{ vars.GITLAB_URL }} - name: Setup SSH - uses: webfactory/ssh-agent@v0.7.0 + uses: webfactory/ssh-agent@v0.8.0 with: ssh-private-key: ${{ secrets.GITLAB_SSH_KEY }} diff --git a/.github/workflows/refresh-dev.yml b/.github/workflows/refresh-dev.yml deleted file mode 100644 index 1bcfccdef..000000000 --- a/.github/workflows/refresh-dev.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Refresh - -on: - workflow_dispatch: - schedule: - - cron: "0 0 * * *" - -jobs: - refresh: - if: github.repository == 'accessibility-exchange/platform' - - runs-on: ubuntu-latest - - steps: - - name: Refresh database - uses: appleboy/ssh-action@v0.1.10 - with: - host: ${{ secrets.SSH_HOSTNAME }} - username: ${{ secrets.SSH_USERNAME }} - key: ${{ secrets.SSH_PRIVATE_KEY }} - port: ${{ secrets.SSH_PORT }} - proxy_host: ${{ secrets.SSH_PROXY_HOSTNAME }} - proxy_username: ${{ secrets.SSH_PROXY_USERNAME }} - proxy_key: ${{ secrets.SSH_PROXY_PRIVATE_KEY }} - proxy_port: ${{ secrets.SSH_PROXY_PORT }} - script: | - cd /srv/tae-dev && \ - git checkout -f && \ - git checkout dev && \ - git pull && \ - ./bin/refresh-dev.sh - - - name: Wait - run: sleep 15 - - - name: Smoke test - run: curl --location --no-buffer --retry 120 --retry-delay 1 https://tae-dev.inclusivedesign.ca diff --git a/.kube/app/Dockerfile b/.kube/app/Dockerfile index 599ad8fc8..db13e0129 100644 --- a/.kube/app/Dockerfile +++ b/.kube/app/Dockerfile @@ -1,7 +1,7 @@ FROM php:8.1-fpm ENV PHP_VERSION 8.1 -ENV NODE_VERSION 16 +ENV NODE_VERSION 18 ENV NVM_VERSION 0.39.3 ENV NVM_DIR /root/.nvm diff --git a/.nvmrc b/.nvmrc index b6a7d89c6..3c032078a 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -16 +18 diff --git a/Dockerfile.cloud b/Dockerfile.cloud index 90cd73ce7..dd292ee8e 100644 --- a/Dockerfile.cloud +++ b/Dockerfile.cloud @@ -2,7 +2,7 @@ FROM ubuntu:22.04 LABEL maintainer="Taylor Otwell" -ARG NODE_VERSION=16 +ARG NODE_VERSION=18 WORKDIR /var/www/html diff --git a/README.md b/README.md index 30d4a4f1e..16288c95e 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,9 @@ The platform requires the following: - [PHP](https://www.php.net/supported-versions.php) >= 8.1 with [required extensions](https://laravel.com/docs/9.x/deployment#server-requirements) - [MySQL](https://dev.mysql.com/downloads/) >= 5.7 - [Composer](https://getcomposer.org) >= 2.0 +- [Node](https://nodejs.org) >= 18 + +Optionally you may wish to install [NVM](https://github.com/nvm-sh/nvm) to make node version management easier. The deployment process should follow all the recommended [optimization processes](https://laravel.com/docs/9.x/deployment#optimization). @@ -124,8 +127,8 @@ For comprehensive instructions, consult the [Laravel documentation](https://lara of how some key tasks can be carried out using Sail: - [Composer](https://getcomposer.org) commands may be executed by using `sail composer `. -- [NPM](https://docs.npmjs.com/cli/v7) commands may be executed by using `sail npm `. -- [Artisan](https://laravel.com/docs/8.x/artisan) commands may be executed by using `sail artisan `. +- [NPM](https://docs.npmjs.com/cli) commands may be executed by using `sail npm `. +- [Artisan](https://laravel.com/docs/9.x/artisan) commands may be executed by using `sail artisan `. ### Local development setup using Laravel Valet @@ -178,8 +181,15 @@ of how some key tasks can be carried out using Sail: 9. Install Composer and NPM dependencies: ```bash + # install composer dependencies composer install - npm install + + # To use the version of npm specified in .nvmrc. + # requires https://github.com/nvm-sh/nvm + nvm use + + # install node dependencies + npm ci ``` 10. Generate an application key: @@ -233,8 +243,9 @@ For comprehensive instructions, consult the [Laravel documentation](https://lara of how some key tasks can be carried out using Valet: - [Composer](https://getcomposer.org) commands may be executed by using `composer `. -- [NPM](https://docs.npmjs.com/cli/v7) commands may be executed by using `npm `. -- [Artisan](https://laravel.com/docs/8.x/artisan) commands may be executed by using `php artisan `. +- [NVM](https://github.com/nvm-sh/nvm) commands may be executed by using `nvm `. +- [NPM](https://docs.npmjs.com/cli) commands may be executed by using `npm `. +- [Artisan](https://laravel.com/docs/9.x/artisan) commands may be executed by using `php artisan `. ### Running tests diff --git a/app/Models/Course.php b/app/Models/Course.php index 6a1f93158..f5c81ded2 100644 --- a/app/Models/Course.php +++ b/app/Models/Course.php @@ -24,18 +24,21 @@ class Course extends Model 'title', 'introduction', 'video', + 'author', ]; protected $casts = [ 'title' => 'array', 'introduction' => 'array', 'video' => 'array', + 'author' => 'array', ]; public array $translatable = [ 'title', 'introduction', 'video', + 'author', 'slug', ]; @@ -45,7 +48,8 @@ public function getSlugOptions(): SlugOptions ->generateSlugsFrom(function (Course $model, $locale): string { return $this->generateSlugs($model, $locale, 'title'); }) - ->saveSlugsTo('slug'); + ->saveSlugsTo('slug') + ->slugsShouldBeNoLongerThan(250); } public function getRouteKeyName(): string diff --git a/app/Models/Module.php b/app/Models/Module.php index aa3de18c8..0786bbd8c 100644 --- a/app/Models/Module.php +++ b/app/Models/Module.php @@ -57,7 +57,7 @@ public function getRouteKeyName(): string public function users(): BelongsToMany { return $this->belongsToMany(User::class) - ->withPivot('started_content_at', 'finished_content_at', 'completed_at') + ->withPivot('started_content_at', 'finished_content_at') ->withTimestamps(); } diff --git a/app/Models/User.php b/app/Models/User.php index 530a9b668..b4b2b12a0 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -247,7 +247,7 @@ public function courses(): BelongsToMany public function modules(): BelongsToMany { return $this->belongsToMany(Module::class) - ->withPivot('started_content_at', 'finished_content_at', 'completed_at') + ->withPivot('started_content_at', 'finished_content_at') ->withTimestamps(); } diff --git a/app/strings.php b/app/strings.php deleted file mode 100644 index 38493261c..000000000 --- a/app/strings.php +++ /dev/null @@ -1,830 +0,0 @@ - [ - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1125%3A3399 - 'HomePage' => [ - __('Contrast'), - __('Available :start to :end :timeZone'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1125%3A3283 - 'HomePage/FRO’s' => [ - __('Frequently asked questions'), - __('What services does The Accessibility Exchange offer?'), - __('What are the different roles that are played in The Accessibility Exchange?'), - __('Who can play these roles?'), - __('How does The Accessibility Exchange define disability?'), - __('How will my privacy be protected on this website?'), - __('Can I learn more about participating in a consultation?'), - __('How does The Accessibility Exchange assist Regulated Organizations interested in recruiting and engaging people with disabilities, Deaf people, and supporters in consultations?'), - __('Is there training on how to design and facilitate and effective consultation?'), - __('How will my access needs be met during a consultation?'), - __('Does it cost Regulated Organizations to use The Accessibility Exchange services?'), - __('Request an introductory phone call'), - __('Request a call'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2336%3A64484 - 'HomePage/participants' => [ - __('What are the different roles that are played in The Accessibility Exchange'), - ], - ], - - '1.0 Registration + My dashboard + translations' => [ - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1125%3A4220 - 'All/Registration/Password' => [ - __('I agree with the [terms of service](:url) or using The Accessibility Exchange'), - __('I agree with the [privacy policy](:url) or using The Accessibility Exchange'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3706%3A98663 - 'Dashboard/Ind-CP/Onboarding start' => [ - __('Role|Roles'), - __('Watch introduction video again'), - __('Customize this website’s accessibility'), - __('Change colour contrast, turn on text to speech, and turn on Sign Language videos.'), - __('Customize'), - __('Enter your collaboration preferences'), - __('Please complete this section so that you can be set up to participate in consultations.'), - __('Not started yet'), - __('Attend an orientation session'), - __('Please attend an orientation session for your roles as :role.|Please attend an orientation session for each of your roles as :firstRole and :lastRole.'), - __('Projects I’m participating in as a Consultation Participant.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1780%3A48437 - 'Dashboard/Ind-CP/Enter personal info-1' => [ - __('Please enter your collaboration preferences'), - __('Matching information'), - __('Optional'), - __('Back to dashboard'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1790%3A50075 - 'Dashboard/Ind-CP/Onboarding done' => [ - __('Projects I’m participating in as a :role.'), - __('Project invitation'), - __('You’ve been invited to participate in :organization project, :project. They would like you to join for the :engagement engagement.'), - __('Please respond by :date.'), - __('Update your matching information'), - __('It’s been at least a year since you’ve updated your matching information. Please update this so you are matched to the appropriate projects.'), - __('Update matching information'), - __('Update your communication and consultation preferences'), - __('It’s been at least a year since you’ve updated your communication and consultation preferences. Please update this so you are matched to the appropriate projects.'), - __('Update preferences'), - ], - - // AC CC - https://github.com/accessibility-exchange/platform/issues/926 - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1784%3A51410 - 'Dashboard/Ind-AC+CC/Onboarding start' => [ - __('Create a public page'), - __('Please create your page to share more about who you are, your experiences, and your interests.'), - __('This will help people know what to expect when working with you.'), - __('Review and publish your public page'), - __('Before you can use your account, you must have completed all the previous steps.'), - __('Public page'), - __('Projects I’m working on as an Accessibility Consultant or Community Connector.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1784%3A51670 - 'Dashboard/Ind-AC+CC/Enter collab preferences' => [ - __('These details will help people know what to expect when working with you.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3706%3A98442 - 'Dashboard/Ind-AC+CC/Onboarding in progress-3' => [ - __('Done'), - __('Ready'), - ], - - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3706%3A99635 - 'Dashboard/Ind - all/Onboarding start' => [ - __('General'), - __('Enter your personal information'), - __('Please complete this section so that you can be set up to participate in consultations and work on projects.'), - __('Create a public profile'), - __('Please create your profile to share more about who you are, your experiences, and your interests.'), - ], - - // Community Org - https://github.com/accessibility-exchange/platform/issues/927 - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2456%3A64126 - 'Dashboard/CommOrg/create your org - 5' => [ - __('Error'), - __('There is already an organization with the name “:name” registered on this platform. If this is the organization you work for, please contact your colleagues to get an invitation to the organization. If this isn’t the organization you work for, please use a different name.'), - __('Location: :location'), - __('Community they serve: :community'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2118%3A56197 - 'Dashboard/CommOrg/org admin empty' => [ - __('My organization’s role: :roles'), - __('Invite others to your organization'), - __('Please invite others so you can work on projects together.'), - __('Create your organization’s page'), - __('Please create your organization’s page so that other members of this website can find you.'), - __('Projects my organization is participating in as a Consultation Participant.'), - __('Projects my organization is contracted for as an Accessibility Consultant or Community Connector.'), - __('Projects my organization is running.'), - __('My trainings'), - __('All the training I am doing or have done.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2118%3A56436 - 'Dashboard/CommOrg/org admin filled' => [ - __(':numRSVPs new RSVPs to your engagement, :engagement'), - __('Go to engagement dashboard'), - ], - - // FRO - https://github.com/accessibility-exchange/platform/issues/928 - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2102%3A55056 - 'Dashboard/FRO/create new org - 2' => [ - __('(required)*'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2456%3A63929 - 'Dashboard/FRO/create new org - 4' => [ - __('Sector: :sector'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1491%3A35377 - 'Dashboard/FRO/org admin-empty' => [ - __('Create your first project'), - __('Plan and share your project with others on this website.'), - ], - - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2934%3A77739 - 'Dashboard/Trainee/empty' => [ - __('Browse trainings'), - __('Browse all the trainings on this website.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1378%3A22421 - 'Dashboard/Trainings' => [ - __('Training by :name'), - __('Language: :language'), - __('Completed on :date'), - __('Download certificate of completion'), - ], - ], - - // https://github.com/accessibility-exchange/platform/issues/923 - '2.0 Projects' => [ - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2478%3A64920 - 'Projects/Individual/Participating' => [ - __('You have been invited to participate in :organization project, :project. They would like you to join for the :engagement engagement.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2478%3A65288 - 'Projects/Browse all projects' => [ - __('Search...'), - __('Cancelled'), - __('Seeking Consultation Participants'), - __('Seeking Accessibility Consultants'), - __('Other disability'), - __('Service location'), - __('Payment method'), - __('Matching service'), - __('Previous engagement'), - __('Apply filter'), - __('Project by :organization'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1125%3A5877 - 'create new project - 3' => [ - __('Not started'), - __('Preview'), - __('Publish project'), - __('Once you publish your project, others can find it.'), - __('Unsaved content'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1229%3A13916 - 'create new project - 4' => [ - __('Add training'), - __('Year'), - __('Month'), - __('Day'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3326%3A100463 - 'Manage project/empty' => [ - __('Surveys'), - __('Workshops'), - __('Focus groups'), - __('more'), - __('Cancel project'), - __('You have not determined the selection criteria for the people you seek for this project.'), - __('Create selection criteria'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3326%3A100939 - 'Manage project/filled' => [ - __('Success'), - __('You have successfully added a new engagement.'), - __('Create another engagement'), - __('Disability'), - __('Cross disability (including people with disabilities, Deaf people, and supporters)'), - __('Co-design'), - __('Meeting date :date'), - __('Location :location'), - __('Virtual on :tool'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2492%3A63667 - 'Manage project/completed project' => [ - __('Warning'), - __('It looks like your project is complete, based on your project dates. If this is not accurate, please update your project duration dates.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3291%3A103325 - 'Manage project/Quotes and agreements' => [ - __('You have not requested an estimate before.'), - __('Please sign this agreement and send to :email'), - __('Download agreement'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3291%3A104365 - 'Manage project/Quotes and agreements/approved' => [ - __('Something changed?'), - __('If anything about your projects or engagements have changed, please send a new estimate request.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2477%3A67582 - 'Manage project/Suggested steps - learn' => [ - __('Your inclusive and accessible consultation'), - __('With disability and Deaf communities and hold meaningful consultations'), - __('About the systemic barriers (laws, policies, practices, and culture) underlying the experiences that consultation participants report'), - __('Learn how to plan an inclusive and accessible consultation'), - __('One of the key parts of preparing for your consultation with the disability and Deaf communities is making sure that your consultations are done in an accessible and inclusive way.'), - __('Ways to do this'), - __('Here are a few tips on planning your consultation:'), - __('Define the objectives of your consultation. That is, clearly state what information you are hoping to get out of this consultation.'), - __('Decide the scope of your consultation, e.g., local, regional, provincial, territorial or national'), - __('Determine the consultation method, e.g., focus group, online survey, one-to-one interviews, etc.'), - __('Determine who you would like to participate in your consultation, e.g., people with a similar type of disability, a range of people with different disabilities, Deaf people, Indigenous representation, and/or other identities, etc.'), - __('Develop a safe and accessible format and process, by addressing questions like:'), - __('What access supports will be needed?'), - __('What cultural practices and protocols do we need to be sensitive to?'), - __('How will conflict be managed?'), - __('What safety protocol should be used if a participant becomes upset?'), - __('Who will be the best person to facilitate your consultation?'), - __('Please see the resource [Planning a Safe, Accessible Consultation](:url).'), - __('You can address these questions with your accessibility or equity, diversity and inclusion team, or work with an accessibility consultant or the Accessibility Exchange support service.'), - __('Create an engagement'), - __('Talk to an Accessibility Consultant'), - __('If you would like more support in planning your consultation, consider hiring an Accessibility Consultant. An Accessibility Consultant can help you with:'), - __('Designing the consultation format and process'), - __('Booking access supports'), - __('Delivering and facilitating the consultation'), - __('Note-taking and analysis'), - __('Writing your consultation report'), - __('If you are thinking of working with a specific group, for example, Indigenous people with disabilities, it would be a good idea to hire an Accessibility Consultant from that community.'), - __('If you would like assistance in arranging for an accessibility consultant, you can [contact the Accessibility Exchange Support team](:url)'), - __('Browse Accessibility Consultants'), - __('Browse our resources'), - __('Please browse our Resources page, to help you plan an accessible and inclusive consultation.'), - __('Visit our Resource page'), - __('Resources for this phase'), - __('Access more resources'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2826%3A74227 - 'Manage project/Suggested steps - engage' => [ - __('Engage with the disability and Deaf community and hold meaningful consultations'), - __('Create and implement inclusive and accessible consultations for your organization'), - __('Access needs and accommodations'), - __('Ask participants ahead of time about their access needs for the consultation. You can use an Access Form to get information on what people need to participate. Please see the resource, [Access Form Template](:url). If you need assistance in providing accommodation support, please contact us at [info@accessibilityexchange.ca](:email).'), - __('Consult people more than once'), - __('It is a good idea to hold more than one consultation with participants to ensure that you are capturing the information correctly and to provide an opportunity for additional feedback. This will demonstrate to participants that they are being heard, and that their feedback matters.'), - __('Offer transparency around what is out of scope'), - __('It is useful to share the objectives with your participants and be clear about the limits of the consultation. This will avoid participants feeling that their feedback is missing from your report. Being clear from the outset will help build trust and foster a good working relationship with your participants.'), - __('Follow up to build your relationship'), - __('After the consultation follow up with participants to share next steps and your organization’s plan for implementing their feedback. This can help foster confidence in your commitment, and an ongoing relationship with your participants, who can be involved in future updates of your accessibility plan.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2826%3A74465 - 'Manage project/Suggested steps - Deepen understanding' => [ - __('Deepen understanding of what was learned in consultation through systemic analysis'), - __('Analyze the outcomes of your consultation with people who are in the context of disability and Deaf groups.'), - __('Engage a Community Organization to help with analysis'), - __('Community organizations with expertise in disability and Deaf issues, as well as issues effecting other systemically marginalized populations can help you make sense of your consultation findings. They can help to identify the structural barriers (in law, policy, practice, and culture) that underlay people’s lived/living experience. As well, they can point to strategies for addressing those barriers. Because of their service provision, longstanding engagement with and leadership by people with disabilities and Deaf persons and/or other systemically marginalized groups, community organizations can provide the broader context for interpreting your results. Many also have access to complementary research resources – both quantitative sources, and secondary qualitative information to help you understand how widespread the issues are that participants raise.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2602%3A66737 - 'Manage project/Participant selection criteria/cross-disability' => [ - __('You can define who you are looking for here. What you choose here will be applied to all your engagements under this project, unless you want to get more specific in your engagements.'), - __('Select your criteria'), - __('Across the country'), - __('In a specific region'), - __('In a specific province or territory or city or town'), - __('Add another location'), - __('Disability and Deaf groups'), - __('Yes, I’m interested in a specific disability or Deaf group'), - __('Other experiences or identities'), - __('Disability or Deaf groups'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2602%3A65596 - 'Manage project/Participant selection criteria/specific disability' => [ - __('Select specific provinces or territories'), - __('Select specific cities or towns'), - __('Please note that if you want to reach a specific identity group, you will not be able to use our matching service. You can reach them through an open call project, or go through a Community Connector or community organization.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3003%3A78979 - 'Cancel engagement - recruitment' => [ - __('Email: :email'), - __('Phone: :phone'), - __('Hours: :start to :end :timeZone'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2727%3A74124 - 'Engagement/algorithm/invitation/accept' => [ - __('Change language'), - __('Address:'), - __('Further directions:'), - __('Software:'), - __('Link to join:'), - __('Additional information to join:'), - __('Zoom ID:'), - __('Zoom password:'), - __('Payment amount'), - __('Each participant will be paid :pay.'), - __('Documents'), - __('Participant consent forms'), - __('Please fill this out and email it back to us for our first meeting together.'), - __('Participant non-disclosure agreement'), - __('Service organization'), - __('Do you have concerns about the engagement or the organization running it? We can help solve problems and mediate.'), - __('Hours: :start - :end :timeZone'), - __('Other engagements for this project'), - __('Go to project page'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2759%3A81269 - 'Engagement/algorithm/invitation/declined' => [ - __('This engagement is a volunteer engagement. There will be no monetary payment.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3326%3A101223 - 'Manage engagement/open call/empty' => [ - __('Cancel engagement'), - __(':count access needs'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2613%3A70683 - 'Manage engagement/open call/create invitation' => [ - __('Please sign up for this engagement by:'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2723%3A71437 - 'Engagement/open call' => [ - __('This survey will be provided in the following formats:'), - __('Printed documents'), - __('Digital'), - __('Please sign up for this engagement by :date.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3973%3A95155 - 'Engagement/public/CC-6' => [ - __('Accept invitation'), - __('You have successfully accepted your invitation.'), - __('Your name and your contact information have been shared with :name.'), - __('Your access needs'), - __('What’s been shared anonymously'), - __('The following access needs have been shared with :name anonymously. They will not know it is you who requested them.'), - __('Sign language translation - ASL'), - __('Record responses at my own pace'), - __('What needs your permission to share'), - __('In order for :name to meet the following access needs, they will need to know who requested them. Do you give permission to share it is you who requested the following access needs?'), - __('Follow up call or email'), - __('Please [update your access needs](:url) if they have changed.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2727%3A73024 - 'Engagement/open call/sign up-5' => [ - __('This survey will be provided in the following digital formats:'), - __('Editable PDF document'), - __('Online form, such as survey monkey or google forms'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2697%3A69398 - 'Manage engagement/open call/participants-confirmed' => [ - __('Demographic breakdown'), - __('Note'), - __('(Support person, :name)'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2697%3A69981 - 'Manage engagement/open call/participants-access needs' => [ - __('Sign language translation - :language'), - __('Written language translation - :language'), - __('Need someone to call and walk through information'), - __('Reminders (for events or for submitting engagement documents)'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3973%3A93375 - 'Manage engagement/open call/demographic breakdown' => [ - __('The group of participants who have accepted your invitation include:'), - __('Locations'), - __('Your participants are from the following locations in Canada.'), - __('Groups'), - __(':percentage of your participants fall into more than one of these groups.'), - __('Temporary'), - __('Other identities included'), - __(':percentage of your participants identify with more than one of the following.'), - __('Your participants are from the following age groups.'), - __('Your participants use the following languages.'), - __('Other languages'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3973%3A93818 - 'Manage engagement/open call/demographic breakdown __ b' => [ - __('The demographic breakdown of your confirmed participants will show when your sign up deadline has passed. Please come back and check again at that time.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2730%3A73293 - 'Engagement/private/CC' => [ - __('Interviews will take place between :start - :end'), - __('Interview at their own pace'), - __('The Regulated Organization sends out a list of questions, and you can respond to them at your own pace.'), - __('Participants taking part in **real time interviews** will be paid :pay.'), - __('Participants taking part in **interviewing at their own pace** will be paid :pay.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3948%3A94318 - 'CC accepting invitation' => [ - __('Start adding participants to this engagement'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3948%3A94591 - 'Manage engagement/CC view' => [ - __('Engagement details'), - __('Last updated on :date.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2745%3A77160 - 'Manage engagement/CC/participants/add-1' => [ - __('This is the email that the invitation will be sent to.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2745%3A78454 - 'Manage engagement/CC/participants/add-4' => [ - __('You have successfully invited :name to participate in this engagement.'), - __('N/A'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2732%3A73670 - 'Manage engagement/CC/participants/add-4 __ b' => [ - __('You have been invited to participate in this engagement. Please respond by :date.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2745%3A76657 - 'Engagement/public/CC-6 __ b' => [ - __('Your consultation preferences'), - __('The following preferences have been shared with :name.'), - __('Please [update your communication and consultation preferences](:url) if they have changed.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2733%3A74754 - 'Engagement/public/CC-7' => [ - __('You have successfully accepted your invitation. You are now a Consultation Participant for this engagement.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2782%3A75350 - 'Manage engagement/CO/Successfully added' => [ - __('You have successfully added :organization as the Community Organization you are consulting with for this engagement.'), - __('Representative community organization'), - ], - ], - - // https://github.com/accessibility-exchange/platform/issues/929 - '3.0 People and organizations' => [ - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2221%3A58998 - 'Explore' => [ - __('Browse by services'), - __('Professional consultants who can help Regulated Organizations plan and run the consultation, analyze collected information, write accessibility reports, and book accessibility service providers.'), - __('Individuals or Community Organizations that can help find Consultation Participants for projects.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1125%3A10473 - 'Explore/individuals' => [ - __('People with lived experience of disability or being Deaf.'), - __('Search by name...'), - __('Apply filters'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1309%3A18647 - 'Explore/individuals/search results' => [ - __(':count results for'), - __('Search term'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1301%3A17738 - 'Explore/CommOrgs' => [ - __('Disability and Deaf organizations, and civil society organizations.'), - __('Type of community organization'), - __('Read more about these types of organizations'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2221%3A61802 - 'Explore/AC' => [ - __('Search name or lived experience...'), - __('Individual or organization'), - __('Organizations'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2733%3A77694 - 'Explore/CC' => [ - __('Ethnoracial group they can connect to'), - __('Other identity groups they can connect to'), - __('Language groups they can connect to'), - __('Age groups they can connect to'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1125%3A10580 - 'Explore/FRO' => [ - __('Government, businesses, and nonprofit organizations, which are regulated by the federal government, here to work on accessibility.'), - ], - ], - - //https://github.com/accessibility-exchange/platform/issues/930 - '4.0 Resources' => [ - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3117%3A94550 - 'Resources Hub/Landing page with CCRW' => [ - __('Resources by role'), - __('Here you may find resources helpful for participating in a consultation.'), - __('Browse resources for Consultation Participants'), - __('Community Connectors and Accessibility Consultants'), - __('Here you may find resources of benefit to Accessibility Consultants and Community Connectors.'), - __('Browse resources for Community Connectors and Accessibility Consultants'), - __('Here you may find resources to help support your members in participating in consultations.'), - __('Browse resources for community organizations'), - __('Here you may find resources to assist in running inclusive and accessible consultations.'), - __('Browse resources for Regulated Organizations'), - __('Here you may find resources for employees of the Regulated Organizations.'), - __('Browse resources by :creator'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3117%3A94816 - 'Resources Hub/CCRW collections' => [ - __('Formats'), - __('Format: :format'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1125%3A13370 - 'Resources Hub/Search results' => [ - __(':count results for “:search” found'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2838%3A76275 - 'Resources Hub/Resource view/Text' => [ - __('Authored by :author'), - __('Added on :date'), - __('Change resource format and language'), - __('Table of contents'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2838%3A76528 - 'Resources Hub/Resource view/switch' => [ - __('Switch to:'), - __('Download:'), - __('(current format)'), - __('Microsoft Word'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2858%3A75935 - 'Resources/video' => [ - __('Author'), - __('Guide'), - __('Published on'), - __('Transcript'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2860%3A79451 - 'Resources/word document' => [ - __('Download :language document'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2925%3A77648 - 'Resources/word document __ b' => [ - __('Visit :language website'), - __('Access :language version'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1368%3A19472 - 'Resources/CHHA - 1' => [ - __('About this course'), - __('Walkthrough'), - __('Webinars'), - __('Resource type by :author'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1368%3A19857 - 'Resources/CHHA - 2' => [ - __('Other webinars'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1368%3A20334 - 'Resources/CHHA - 3' => [ - __('Have you completed the webinar?'), - __('Please take this quick quiz to confirm your understanding. Once you pass the quiz, you will receive credit for finishing the webinar.'), - __('Take the quiz'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1368%3A21199 - 'Resources/CHHA - 4' => [ - __('Quiz'), - __('Question :current of :total'), - __('Submit'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1368%3A21518 - 'Resources/CHHA - 5' => [ - __('Correct answer!'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1378%3A22163 - 'Resources/CHHA - 6' => [ - __('Please try again.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1378%3A22265 - 'Resources/CHHA - 7' => [ - __('Quiz results'), - __('Congratulations! You have passed the quiz.'), - __(':correct out of :total questions were answered correctly. You have now completed this webinar. You have :unfinished more webinars to finish in order to complete this training.'), - __('Back to training home page'), - __('Next webinar'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1474%3A32256 - 'Resources/CHHA - 8' => [ - __(':correct out of :total questions were answered correctly. You have now completed all the webinars in this course.'), - __('Download your certificate'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1368%3A20602 - 'Resources/CHHA - 9' => [ - __('For the :sector sector'), - __('Quiz completed'), - __('Watched'), - __('Please take the quiz to complete'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1368%3A21765 - 'Resources/CHHA - 10' => [ - __('Congratulations! You have now completed this course.'), - ], - ], - - //https://github.com/accessibility-exchange/platform/issues/931 - '5.0 Settings' => [ - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1790%3A51698 - 'Settings/Access needs' => [ - __('Gender neutral washroom'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1252%3A14249 - 'Settings/Comm preferences - 1' => [ - __('* means that a field is required.'), - __('Are you able to attend consultations in real-time, or do you prefer to receive the materials (ex. questions, discussion topics) and record your responses at your own pace?'), - __('Real-time consultations'), - __('Virtual - web conference'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2327%3A63742 - 'Sing language player - HomePage' => [ - __('Accessibility preferences'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2265%3A74852 - 'Settings/Website access' => [ - __('Reset'), - __('Sign Language translations'), - __('If a Sign Language video translation is available, you will see a button in line with the website content. Pressing that button will load the Sign Language video.'), - __('American Sign Language (ASL)'), - __('Langue des signes québécoise (LSQ)'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1282%3A15836 - 'Modal/Unblock' => [ - __('Unblock :organization'), - __('When you unblock someone, they will be able to:'), - __('communicate with you'), - __('Are you sure you want to unblock them?'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2308%3A62225 - 'Settings/Individual/Delete your account' => [ - __('Once you delete your account, you will not be able to recover it'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3993%3A97308 - 'Settings/CommOrg/Delete your account' => [ - __('you will no longer be able to access information about the :count projects you are contracted for'), - __('you will no longer be able to access information about the :count projects you are participating in'), - __('you will no longer be able to manage the :count projects you are running'), - __('you will no longer be able to access your :count training certificates'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2221%3A62865 - 'Settings/FRO' => [ - __('Delete your organization'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1796%3A52675 - 'Settings/Roles and permissions' => [ - __('Your role: :role'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2448%3A64859 - 'Remove member modal' => [ - __('Remove :name from your organization'), - __('Are you sure you want to remove :name from :organization? You cannot undo this.'), - __('Yes, remove'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=3439%3A98257 - 'Settings/CommOrg/notifications/manage-EXPANDED' => [ - __('Would you like to be notified directly when you are assigned a new role by your organization admin?'), - __('Notify me on this website'), - __('Directly contact me or my support person'), - __('Please indicate how you would like to be notified of new participants being added to your engagements.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2221%3A63137 - 'Settings/FRO/Delete your org' => [ - __('Are you sure you want to delete your organization, :organization?'), - __('Everything in your organization will be deleted as well:'), - __(':count projects'), - __(':count engagements'), - __(':count members of your organization'), - __('your public profile will be removed from the website'), - __('This is not the same as deleting your individual account for yourself. If you would like to delete your individual account, please go to [Delete my account](:url).'), - __('Once you delete your organization profile, there will be a grace period of 30 days, during which you could recover it. After 30 days, it will be deleted forever — this cannot be reversed.'), - __('Delete my organization'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2448%3A64877 - 'Settings/CommOrg/Delete your org' => [ - __(':projects projects and :engagements engagements you are running'), - __('you will no longer be able to access information about the :count engagements you are participating in'), - ], - ], - - '5.1 Member pages' => [ - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=4074%3A95828 - 'Comm org - create your page - 4' => [ - __('Create your :role page'), - __('Please select the languages that you can translate your page into.'), - __('Add translation'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1725%3A47435 - 'Consultant Community Connector / create profile - 6' => [ - __('Steps for creating your page'), - __('(current page)'), - __('You must attend an [orientation session](:url) before you can publish your page.'), - __('Upload a file'), - __('You can upload videos, images, audio, or other files.'), - __('Browse file'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2613%3A68551 - 'Consultant Community Connector / create profile - 9' => [ - __('Please select the disability groups that you can connect to.'), - __('(such as broken limb, gestational diabetes)'), - __('Which groups can you connect to?'), - __('People who identify with one or more of the 2SLGBTQIA+ identities'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1125%3A16052 - 'Consultant Community Connector / preview profile' => [ - __(':name shares **some** of this lived experience.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1125%3A16498 - 'Consultant/Page/Unpublish modal' => [ - __('Would you like to unpublish your consultant page? (You can republish it later.)'), - __('When you select this option, your profile page will be hidden from everyone except yourself until you publish it again.'), - __('Unpublish my page'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1297%3A18839 - 'Entity/My projects/Create new project - 22' => [ - __('It is most likely that you will have Consultation Participants who will request English, French, ASL, and LSQ.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1295%3A15858 - 'Comm org - create your page - 1' => [ - __('Communities your organization serves'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2560%3A65260 - 'Rep orgs' => [ - __('Please select disability groups that your organization specifically represents'), - __('Which Indigenous groups does your organization specifically represent?'), - __('Which groups marginalized based on gender or sexual identity does your organization specifically represent?'), - __('Which age groups does your organization specifically represent?'), - __('Which ethno-racial identity or identities are the people your organization specifically represents?'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1297%3A19556 - 'Comm org page - about - private' => [ - __('Communities we represent'), - __('Areas where the organization serves'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1125%3A17922 - 'FCO/Create profile/languages-warning' => [ - __('Please be aware that it is highly likely that people will request English, French, American Sign Language (ASL), and Langue des signes québécoise (LSQ)'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1125%3A17632 - 'FCO/Create profile/info' => [ - __('Once you publish your profile, other users on this website can access your page.'), - __('Step :current of :total'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2233%3A60033 - 'FRO/View own profile/success unpublished' => [ - __('You have successfully unpublished your Regulated Organization profile.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=1334%3A24329 - 'FRO/View public profile/about - success add to list' => [ - __('You have successfully added :organization to your list.'), - __('Accessibility and Inclusion'), - __(':organization Accessibility Principles'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2096%3A54801 - 'FRO/View public profile/about - success blocked' => [ - __('You have successfully blocked :organization.'), - ], - // https://www.figma.com/file/AXufBnFAVHvGdsxnQMVhNF/The-Accessibility-Exchange-Wireframes?node-id=2472%3A62981 - 'FRO/View public profile/blocked page' => [ - __('You’ve blocked :name'), - __('If you want to visit their page, you can unblock them and return to this page.'), - ], - ], - 'Platform admin' => [ - - // https://docs.google.com/spreadsheets/d/1KzK9oeyQNGx5zVR_f0aCJ5mBkJ8KNtE-9jRZEp4Fbpk/edit#gid=1670408139 - 'Notifications' => [ - __('You have been invited to participate in :projectable’s project, :project. They would like you to join them for their :engagement_type, :engagement'), - __('You have been invited to participate in :projectable’s project, :project. They would like to interview you for their engagement, :engagement'), - __('You have been invited to participate in :projectable’s project, :project. They would like you to do their survey for their engagement, :engagement'), - __('You have been invited to participate in :projectable’s project, :project. They would like you to consult with them for their engagement, :engagement'), - __('Please review and update your matching information'), - __('It’s been at least a year since you’ve updated your matching information. Please update this information so that we can be sure to match you with the appropriate projects.'), - __('Please review and update your communication and consultation preferences'), - __('Please review and update your public page'), - __('It’s been at least a year since you’ve updated your public page. Please review and update any changes.'), - __('Review my page'), - __('Review my organization’s page'), - __('New project by :projectable'), - __(':projectable has created a new project, :project.'), - __('New engagement by :projectable'), - __(':projectable has created a new engagement, :engagement. This is a part of :project.'), - __(':engagement run by :projectable is seeking participants'), - __(':engagement is now having an open call for participants.'), - __(':engagement time confirmed'), - __(':engagement has been confirmed for :date at :time. They are meeting :location.'), - __(':engagement time changed'), - __(':engagement has been changed to :date at :time. They are meeting :location.'), - __(':access_support added for :engagement'), - __(':projectable has added :access_support for :engagement.'), - __('You have been added to :project'), - __('You have been listed as the Accessibility Consultant in :projectable’s project, :project.'), - __(':project by :projectable seeking Accessibility Consultant'), - __(':project is looking for an Accessibility Consultant.'), - __(':project by :projectable seeking Community connector'), - __(':project is looking for a Community Connector to for their engagement, :engagement.'), - __(':name has joined your organization'), - __(':name has accepted your invitation to join your organization.'), - __('1 new person accepted your invitation for :engagement'), - __('1 new person signed up for :engagement'), - __('Your role has been updated to :role'), - __('You now have administrative privileges for :organization. You can now create and manage projects.'), - __('You can now view :organization’s projects and engagements.'), - __('Orientation completed'), - __('You have completed your orientation session.'), - __('You can now sign up for projects.'), - __('You are now able to publish your page and new projects'), - __('Unfortunately you will not be able to continue using The Accessibility Exchange at this time. You will no longer be able to log in through your account. If you have any questions, please reach out to us at :email or :phone.'), - ], - ], -]; diff --git a/composer.json b/composer.json index 3eb8469e8..cf1d4d34f 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "framework", "laravel" ], - "version": "1.0.0", + "version": "1.1.0", "license": "MIT", "require": { "php": "^8.1", @@ -49,7 +49,7 @@ "worksome/request-factories": "^2.0" }, "require-dev": { - "amirami/localizator": "^0.11.0-alpha@alpha", + "amirami/localizator": "^0.12.1-alpha@alpha", "barryvdh/laravel-debugbar": "^3.6", "barryvdh/laravel-ide-helper": "^2.12", "fakerphp/faker": "^1.19", diff --git a/composer.lock b/composer.lock index 780dc6509..daf5cc1b0 100644 --- a/composer.lock +++ b/composer.lock @@ -4,32 +4,33 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "39982df0271629f34e5e8a0dd30bd5a6", + "content-hash": "1ec00fbeeb4ddca0cced5fbd4a770d89", "packages": [ { "name": "akaunting/laravel-money", - "version": "3.1.2", + "version": "4.0.1", "source": { "type": "git", "url": "https://github.com/akaunting/laravel-money.git", - "reference": "cbc66d1dc457c169f6081e0ae6c661b499dad301" + "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/cbc66d1dc457c169f6081e0ae6c661b499dad301", - "reference": "cbc66d1dc457c169f6081e0ae6c661b499dad301", + "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/df99d0f5d415490ef7e79362c3b694e8cc8af903", + "reference": "df99d0f5d415490ef7e79362c3b694e8cc8af903", "shasum": "" }, "require": { - "illuminate/contracts": "^8.67|^9.0", - "illuminate/support": "^8.67|^9.0", - "illuminate/view": "^8.67|^9.0", + "illuminate/contracts": "^9.0|^10.0", + "illuminate/support": "^9.0|^10.0", + "illuminate/validation": "^9.0|^10.0", + "illuminate/view": "^9.0|^10.0", "php": "^8.0", "vlucas/phpdotenv": "^5.4.1" }, "require-dev": { - "orchestra/testbench": "^6.23|^7.4", - "phpunit/phpunit": "^9.5", + "orchestra/testbench": "^7.4|^8.0", + "phpunit/phpunit": "^9.5|^10.0", "vimeo/psalm": "^4.23" }, "type": "library", @@ -70,9 +71,9 @@ ], "support": { "issues": "https://github.com/akaunting/laravel-money/issues", - "source": "https://github.com/akaunting/laravel-money/tree/3.1.2" + "source": "https://github.com/akaunting/laravel-money/tree/4.0.1" }, - "time": "2022-07-27T08:16:36+00:00" + "time": "2023-03-16T14:39:27+00:00" }, { "name": "aws/aws-crt-php", @@ -415,16 +416,16 @@ }, { "name": "blade-ui-kit/blade-icons", - "version": "1.5.1", + "version": "1.5.2", "source": { "type": "git", "url": "https://github.com/blade-ui-kit/blade-icons.git", - "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228" + "reference": "4d6b6b2548b1994a777211a985e18691701891e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/b2a80ff2a26641f64bfee48ad0d2a922ce781228", - "reference": "b2a80ff2a26641f64bfee48ad0d2a922ce781228", + "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/4d6b6b2548b1994a777211a985e18691701891e4", + "reference": "4d6b6b2548b1994a777211a985e18691701891e4", "shasum": "" }, "require": { @@ -484,15 +485,11 @@ }, "funding": [ { - "url": "https://github.com/caneco", - "type": "github" - }, - { - "url": "https://github.com/driesvints", + "url": "https://github.com/sponsors/driesvints", "type": "github" } ], - "time": "2023-02-15T16:30:12+00:00" + "time": "2023-06-09T15:47:26+00:00" }, { "name": "brick/math", @@ -1056,27 +1053,26 @@ }, { "name": "danharrin/livewire-rate-limiting", - "version": "v1.0.0", + "version": "v1.1.0", "source": { "type": "git", "url": "https://github.com/danharrin/livewire-rate-limiting.git", - "reference": "b99facf5b607fb0cde92a6f254f437295339f7de" + "reference": "a55996683cabf2e93893280d602191243b3b80b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/b99facf5b607fb0cde92a6f254f437295339f7de", - "reference": "b99facf5b607fb0cde92a6f254f437295339f7de", + "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/a55996683cabf2e93893280d602191243b3b80b8", + "reference": "a55996683cabf2e93893280d602191243b3b80b8", "shasum": "" }, "require": { - "illuminate/support": "^8.0|^9.0", + "illuminate/support": "^9.0|^10.0", "php": "^8.0" }, "require-dev": { "livewire/livewire": "^2.3", - "orchestra/testbench": "^6.2|^7.0", - "phpunit/phpunit": "^9.4", - "symplify/monorepo-builder": "^9.0" + "orchestra/testbench": "^7.0|^8.0", + "phpunit/phpunit": "^9.0|^10.0" }, "type": "library", "autoload": { @@ -1106,7 +1102,7 @@ "type": "github" } ], - "time": "2022-01-21T11:26:58+00:00" + "time": "2023-03-12T12:17:29+00:00" }, { "name": "dasprid/enum", @@ -1395,16 +1391,16 @@ }, { "name": "doctrine/dbal", - "version": "3.5.2", + "version": "3.6.4", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "63e513cebbbaf96a6795e5c5ee34d205831bfc85" + "reference": "19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/63e513cebbbaf96a6795e5c5ee34d205831bfc85", - "reference": "63e513cebbbaf96a6795e5c5ee34d205831bfc85", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f", + "reference": "19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f", "shasum": "" }, "require": { @@ -1417,13 +1413,14 @@ "psr/log": "^1|^2|^3" }, "require-dev": { - "doctrine/coding-standard": "11.0.0", + "doctrine/coding-standard": "12.0.0", + "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2022.3", - "phpstan/phpstan": "1.9.2", - "phpstan/phpstan-strict-rules": "^1.4", - "phpunit/phpunit": "9.5.27", + "phpstan/phpstan": "1.10.14", + "phpstan/phpstan-strict-rules": "^1.5", + "phpunit/phpunit": "9.6.7", "psalm/plugin-phpunit": "0.18.4", - "squizlabs/php_codesniffer": "3.7.1", + "squizlabs/php_codesniffer": "3.7.2", "symfony/cache": "^5.4|^6.0", "symfony/console": "^4.4|^5.4|^6.0", "vimeo/psalm": "4.30.0" @@ -1486,7 +1483,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.5.2" + "source": "https://github.com/doctrine/dbal/tree/3.6.4" }, "funding": [ { @@ -1502,7 +1499,7 @@ "type": "tidelift" } ], - "time": "2022-12-19T08:17:34+00:00" + "time": "2023-06-15T07:40:12+00:00" }, { "name": "doctrine/deprecations", @@ -1644,28 +1641,28 @@ }, { "name": "doctrine/inflector", - "version": "2.0.6", + "version": "2.0.8", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024" + "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", - "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff", + "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff", "shasum": "" }, "require": { "php": "^7.2 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^10", + "doctrine/coding-standard": "^11.0", "phpstan/phpstan": "^1.8", "phpstan/phpstan-phpunit": "^1.1", "phpstan/phpstan-strict-rules": "^1.3", "phpunit/phpunit": "^8.5 || ^9.5", - "vimeo/psalm": "^4.25" + "vimeo/psalm": "^4.25 || ^5.4" }, "type": "library", "autoload": { @@ -1715,7 +1712,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/2.0.6" + "source": "https://github.com/doctrine/inflector/tree/2.0.8" }, "funding": [ { @@ -1731,7 +1728,7 @@ "type": "tidelift" } ], - "time": "2022-10-20T09:10:12+00:00" + "time": "2023-06-16T13:40:37+00:00" }, { "name": "doctrine/lexer", @@ -2000,16 +1997,16 @@ }, { "name": "filament/filament", - "version": "v2.16.52", + "version": "v2.17.50", "source": { "type": "git", - "url": "https://github.com/filamentphp/admin.git", - "reference": "39db7f016d5a35963c44533998557ba0508001f3" + "url": "https://github.com/filamentphp/panels.git", + "reference": "90514ebb0dcb6d2c9fe5608410bdb727ae272aed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/admin/zipball/39db7f016d5a35963c44533998557ba0508001f3", - "reference": "39db7f016d5a35963c44533998557ba0508001f3", + "url": "https://api.github.com/repos/filamentphp/panels/zipball/90514ebb0dcb6d2c9fe5608410bdb727ae272aed", + "reference": "90514ebb0dcb6d2c9fe5608410bdb727ae272aed", "shasum": "" }, "require": { @@ -2018,19 +2015,18 @@ "filament/notifications": "self.version", "filament/support": "self.version", "filament/tables": "self.version", - "illuminate/auth": "^8.6|^9.0", - "illuminate/console": "^8.6|^9.0", - "illuminate/contracts": "^8.6|^9.0", - "illuminate/cookie": "^8.6|^9.0", - "illuminate/database": "^8.6|^9.0", - "illuminate/http": "^8.6|^9.0", - "illuminate/routing": "^8.6|^9.0", - "illuminate/session": "^8.6|^9.0", - "illuminate/support": "^8.6|^9.0", - "illuminate/view": "^8.6|^9.0", + "illuminate/auth": "^8.6|^9.0|^10.0", + "illuminate/console": "^8.6|^9.0|^10.0", + "illuminate/contracts": "^8.6|^9.0|^10.0", + "illuminate/cookie": "^8.6|^9.0|^10.0", + "illuminate/database": "^8.6|^9.0|^10.0", + "illuminate/http": "^8.6|^9.0|^10.0", + "illuminate/routing": "^8.6|^9.0|^10.0", + "illuminate/session": "^8.6|^9.0|^10.0", + "illuminate/support": "^8.6|^9.0|^10.0", + "illuminate/view": "^8.6|^9.0|^10.0", "livewire/livewire": "^2.10.7", "php": "^8.0", - "ryangjchandler/blade-capture-directive": "^0.2", "spatie/laravel-package-tools": "^1.9" }, "type": "library", @@ -2059,20 +2055,20 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2022-11-22T10:29:01+00:00" + "time": "2023-07-03T09:23:07+00:00" }, { "name": "filament/forms", - "version": "v2.16.52", + "version": "v2.17.50", "source": { "type": "git", "url": "https://github.com/filamentphp/forms.git", - "reference": "9d79d2d56304c04da3210683ddebb2fd53aaed02" + "reference": "02a22e34909dbc93ebfe8a79499c1695727be68c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/forms/zipball/9d79d2d56304c04da3210683ddebb2fd53aaed02", - "reference": "9d79d2d56304c04da3210683ddebb2fd53aaed02", + "url": "https://api.github.com/repos/filamentphp/forms/zipball/02a22e34909dbc93ebfe8a79499c1695727be68c", + "reference": "02a22e34909dbc93ebfe8a79499c1695727be68c", "shasum": "" }, "require": { @@ -2080,13 +2076,13 @@ "danharrin/date-format-converter": "^0.3", "filament/notifications": "self.version", "filament/support": "self.version", - "illuminate/console": "^8.6|^9.0", - "illuminate/contracts": "^8.6|^9.0", - "illuminate/database": "^8.6|^9.0", - "illuminate/filesystem": "^8.6|^9.0", - "illuminate/support": "^8.6|^9.0", - "illuminate/validation": "^8.6|^9.0", - "illuminate/view": "^8.6|^9.0", + "illuminate/console": "^8.6|^9.0|^10.0", + "illuminate/contracts": "^8.6|^9.0|^10.0", + "illuminate/database": "^8.6|^9.0|^10.0", + "illuminate/filesystem": "^8.6|^9.0|^10.0", + "illuminate/support": "^8.6|^9.0|^10.0", + "illuminate/validation": "^8.6|^9.0|^10.0", + "illuminate/view": "^8.6|^9.0|^10.0", "livewire/livewire": "^2.10.7", "php": "^8.0", "spatie/laravel-package-tools": "^1.9" @@ -2117,29 +2113,29 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2022-11-22T10:29:07+00:00" + "time": "2023-07-03T09:23:02+00:00" }, { "name": "filament/notifications", - "version": "v2.16.52", + "version": "v2.17.50", "source": { "type": "git", "url": "https://github.com/filamentphp/notifications.git", - "reference": "ad4cc6e1140649c3c2d193b6b8d7fdd7d2a6d02e" + "reference": "d28fd12dbb4602f24f94d88730128d28f0f565db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/notifications/zipball/ad4cc6e1140649c3c2d193b6b8d7fdd7d2a6d02e", - "reference": "ad4cc6e1140649c3c2d193b6b8d7fdd7d2a6d02e", + "url": "https://api.github.com/repos/filamentphp/notifications/zipball/d28fd12dbb4602f24f94d88730128d28f0f565db", + "reference": "d28fd12dbb4602f24f94d88730128d28f0f565db", "shasum": "" }, "require": { "blade-ui-kit/blade-heroicons": "^1.2", "filament/support": "self.version", - "illuminate/contracts": "^8.6|^9.0", - "illuminate/filesystem": "^8.6|^9.0", - "illuminate/notifications": "^8.6|^9.0", - "illuminate/support": "^8.6|^9.0", + "illuminate/contracts": "^8.6|^9.0|^10.0", + "illuminate/filesystem": "^8.6|^9.0|^10.0", + "illuminate/notifications": "^8.6|^9.0|^10.0", + "illuminate/support": "^8.6|^9.0|^10.0", "livewire/livewire": "^2.10.7", "php": "^8.0", "spatie/laravel-package-tools": "^1.9" @@ -2170,29 +2166,29 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2022-11-22T10:28:58+00:00" + "time": "2023-07-03T09:23:01+00:00" }, { "name": "filament/spatie-laravel-settings-plugin", - "version": "v2.16.52", + "version": "v2.17.50", "source": { "type": "git", "url": "https://github.com/filamentphp/spatie-laravel-settings-plugin.git", - "reference": "adf64290449967ed4d5f700e2a5d0bc4947aac8d" + "reference": "11c944db9ebd9b47d32040be709dcf1cb587bde8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/spatie-laravel-settings-plugin/zipball/adf64290449967ed4d5f700e2a5d0bc4947aac8d", - "reference": "adf64290449967ed4d5f700e2a5d0bc4947aac8d", + "url": "https://api.github.com/repos/filamentphp/spatie-laravel-settings-plugin/zipball/11c944db9ebd9b47d32040be709dcf1cb587bde8", + "reference": "11c944db9ebd9b47d32040be709dcf1cb587bde8", "shasum": "" }, "require": { "filament/filament": "self.version", - "illuminate/console": "^8.6|^9.0", - "illuminate/filesystem": "^8.6|^9.0", - "illuminate/support": "^8.6|^9.0", + "illuminate/console": "^8.6|^9.0|^10.0", + "illuminate/filesystem": "^8.6|^9.0|^10.0", + "illuminate/support": "^8.6|^9.0|^10.0", "php": "^8.0", - "spatie/laravel-settings": "^2.2" + "spatie/laravel-settings": "^2.2|^3.0" }, "type": "library", "extra": { @@ -2217,27 +2213,28 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2022-10-30T20:32:36+00:00" + "time": "2023-05-30T10:44:48+00:00" }, { "name": "filament/support", - "version": "v2.16.52", + "version": "v2.17.50", "source": { "type": "git", "url": "https://github.com/filamentphp/support.git", - "reference": "f21b589a19f4ae3c245175eccb793524891550a3" + "reference": "9982a88704efc58b710c4e6b5000d85a6f4daf56" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/support/zipball/f21b589a19f4ae3c245175eccb793524891550a3", - "reference": "f21b589a19f4ae3c245175eccb793524891550a3", + "url": "https://api.github.com/repos/filamentphp/support/zipball/9982a88704efc58b710c4e6b5000d85a6f4daf56", + "reference": "9982a88704efc58b710c4e6b5000d85a6f4daf56", "shasum": "" }, "require": { - "illuminate/contracts": "^8.6|^9.0", - "illuminate/support": "^8.6|^9.0", - "illuminate/view": "^8.6|^9.0", + "illuminate/contracts": "^8.6|^9.0|^10.0", + "illuminate/support": "^8.6|^9.0|^10.0", + "illuminate/view": "^8.6|^9.0|^10.0", "php": "^8.0", + "ryangjchandler/blade-capture-directive": "^0.2|^0.3", "spatie/laravel-package-tools": "^1.9", "tgalopin/html-sanitizer": "^1.5" }, @@ -2267,34 +2264,34 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2022-11-22T10:28:55+00:00" + "time": "2023-07-03T09:23:04+00:00" }, { "name": "filament/tables", - "version": "v2.16.52", + "version": "v2.17.50", "source": { "type": "git", "url": "https://github.com/filamentphp/tables.git", - "reference": "cb052310850f3de465e8fd3891fe2ba081aeef78" + "reference": "1395ddf6c1e356f7e427e9cb20f6bbb9bf6803e0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filamentphp/tables/zipball/cb052310850f3de465e8fd3891fe2ba081aeef78", - "reference": "cb052310850f3de465e8fd3891fe2ba081aeef78", + "url": "https://api.github.com/repos/filamentphp/tables/zipball/1395ddf6c1e356f7e427e9cb20f6bbb9bf6803e0", + "reference": "1395ddf6c1e356f7e427e9cb20f6bbb9bf6803e0", "shasum": "" }, "require": { - "akaunting/laravel-money": "^1.2|^2.0|^3.0", + "akaunting/laravel-money": "^1.2|^2.0|^3.0|^4.0", "blade-ui-kit/blade-heroicons": "^1.2", "filament/forms": "self.version", "filament/notifications": "self.version", "filament/support": "self.version", - "illuminate/console": "^8.6|^9.0", - "illuminate/contracts": "^8.6|^9.0", - "illuminate/database": "^8.6|^9.0", - "illuminate/filesystem": "^8.6|^9.0", - "illuminate/support": "^8.6|^9.0", - "illuminate/view": "^8.6|^9.0", + "illuminate/console": "^8.6|^9.0|^10.0", + "illuminate/contracts": "^8.6|^9.0|^10.0", + "illuminate/database": "^8.6|^9.0|^10.0", + "illuminate/filesystem": "^8.6|^9.0|^10.0", + "illuminate/support": "^8.6|^9.0|^10.0", + "illuminate/view": "^8.6|^9.0|^10.0", "livewire/livewire": "^2.10.7", "php": "^8.0", "spatie/invade": "^1.0", @@ -2323,7 +2320,7 @@ "issues": "https://github.com/filamentphp/filament/issues", "source": "https://github.com/filamentphp/filament" }, - "time": "2022-11-22T10:28:55+00:00" + "time": "2023-07-03T09:23:02+00:00" }, { "name": "fluid-project/hearth", @@ -3371,16 +3368,16 @@ }, { "name": "laravel/framework", - "version": "v9.52.8", + "version": "v9.52.10", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "d4c62cc12544b8acc8d89fcb510f4aefb12e6dea" + "reference": "858add225ce88a76c43aec0e7866288321ee0ee9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/d4c62cc12544b8acc8d89fcb510f4aefb12e6dea", - "reference": "d4c62cc12544b8acc8d89fcb510f4aefb12e6dea", + "url": "https://api.github.com/repos/laravel/framework/zipball/858add225ce88a76c43aec0e7866288321ee0ee9", + "reference": "858add225ce88a76c43aec0e7866288321ee0ee9", "shasum": "" }, "require": { @@ -3565,7 +3562,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2023-05-30T14:45:57+00:00" + "time": "2023-06-27T13:25:54+00:00" }, { "name": "laravel/serializable-closure", @@ -4422,6 +4419,7 @@ "issues": "https://github.com/thephpleague/uri-parser/issues", "source": "https://github.com/thephpleague/uri-parser/tree/master" }, + "abandoned": true, "time": "2018-11-22T07:55:51+00:00" }, { @@ -4583,26 +4581,24 @@ }, { "name": "masterminds/html5", - "version": "2.7.6", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/Masterminds/html5-php.git", - "reference": "897eb517a343a2281f11bc5556d6548db7d93947" + "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947", - "reference": "897eb517a343a2281f11bc5556d6548db7d93947", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", + "reference": "3c5d5a56d56f48a1ca08a0670f0f80c1dad368f3", "shasum": "" }, "require": { - "ext-ctype": "*", "ext-dom": "*", - "ext-libxml": "*", "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7" + "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" }, "type": "library", "extra": { @@ -4646,9 +4642,9 @@ ], "support": { "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.7.6" + "source": "https://github.com/Masterminds/html5-php/tree/2.8.0" }, - "time": "2022-08-18T16:18:26+00:00" + "time": "2023-04-26T07:27:39+00:00" }, { "name": "monolog/monolog", @@ -4815,16 +4811,16 @@ }, { "name": "nesbot/carbon", - "version": "2.67.0", + "version": "2.68.1", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "c1001b3bc75039b07f38a79db5237c4c529e04c8" + "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c1001b3bc75039b07f38a79db5237c4c529e04c8", - "reference": "c1001b3bc75039b07f38a79db5237c4c529e04c8", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da", + "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da", "shasum": "" }, "require": { @@ -4913,7 +4909,7 @@ "type": "tidelift" } ], - "time": "2023-05-25T22:09:47+00:00" + "time": "2023-06-20T18:29:04+00:00" }, { "name": "nette/schema", @@ -5655,16 +5651,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.22.0", + "version": "1.22.1", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "ec58baf7b3c7f1c81b3b00617c953249fb8cf30c" + "reference": "65c39594fbd8c67abfc68bb323f86447bab79cc0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/ec58baf7b3c7f1c81b3b00617c953249fb8cf30c", - "reference": "ec58baf7b3c7f1c81b3b00617c953249fb8cf30c", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/65c39594fbd8c67abfc68bb323f86447bab79cc0", + "reference": "65c39594fbd8c67abfc68bb323f86447bab79cc0", "shasum": "" }, "require": { @@ -5696,9 +5692,9 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.22.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.22.1" }, - "time": "2023-06-01T12:35:21+00:00" + "time": "2023-06-29T20:46:06+00:00" }, { "name": "pragmarx/google2fa", @@ -6609,27 +6605,27 @@ }, { "name": "ryangjchandler/blade-capture-directive", - "version": "v0.2.2", + "version": "v0.3.0", "source": { "type": "git", "url": "https://github.com/ryangjchandler/blade-capture-directive.git", - "reference": "be41afbd86057989d84f1aaea8d00f3b1e5c50e1" + "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/be41afbd86057989d84f1aaea8d00f3b1e5c50e1", - "reference": "be41afbd86057989d84f1aaea8d00f3b1e5c50e1", + "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/62fd2ecb50b938a46025093bcb64fcaddd531f89", + "reference": "62fd2ecb50b938a46025093bcb64fcaddd531f89", "shasum": "" }, "require": { - "illuminate/contracts": "^8.0|^9.0", + "illuminate/contracts": "^9.0|^10.0", "php": "^8.0", "spatie/laravel-package-tools": "^1.9.2" }, "require-dev": { - "nunomaduro/collision": "^5.0|^6.0", - "nunomaduro/larastan": "^1.0", - "orchestra/testbench": "^6.23|^7.0", + "nunomaduro/collision": "^6.0|^7.0", + "nunomaduro/larastan": "^2.0", + "orchestra/testbench": "^7.22|^8.0", "pestphp/pest": "^1.21", "pestphp/pest-plugin-laravel": "^1.1", "phpstan/extension-installer": "^1.1", @@ -6675,7 +6671,7 @@ ], "support": { "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues", - "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v0.2.2" + "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v0.3.0" }, "funding": [ { @@ -6683,7 +6679,7 @@ "type": "github" } ], - "time": "2022-09-02T11:04:28+00:00" + "time": "2023-02-14T16:54:54+00:00" }, { "name": "shiftonelabs/laravel-cascade-deletes", @@ -6744,16 +6740,16 @@ }, { "name": "spatie/backtrace", - "version": "1.2.1", + "version": "1.5.3", "source": { "type": "git", "url": "https://github.com/spatie/backtrace.git", - "reference": "4ee7d41aa5268107906ea8a4d9ceccde136dbd5b" + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/backtrace/zipball/4ee7d41aa5268107906ea8a4d9ceccde136dbd5b", - "reference": "4ee7d41aa5268107906ea8a4d9ceccde136dbd5b", + "url": "https://api.github.com/repos/spatie/backtrace/zipball/483f76a82964a0431aa836b6ed0edde0c248e3ab", + "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab", "shasum": "" }, "require": { @@ -6762,6 +6758,7 @@ "require-dev": { "ext-json": "*", "phpunit/phpunit": "^9.3", + "spatie/phpunit-snapshot-assertions": "^4.2", "symfony/var-dumper": "^5.1" }, "type": "library", @@ -6789,8 +6786,7 @@ "spatie" ], "support": { - "issues": "https://github.com/spatie/backtrace/issues", - "source": "https://github.com/spatie/backtrace/tree/1.2.1" + "source": "https://github.com/spatie/backtrace/tree/1.5.3" }, "funding": [ { @@ -6802,7 +6798,7 @@ "type": "other" } ], - "time": "2021-11-09T10:57:15+00:00" + "time": "2023-06-28T12:59:17+00:00" }, { "name": "spatie/db-dumper", @@ -6869,22 +6865,23 @@ }, { "name": "spatie/flare-client-php", - "version": "1.3.2", + "version": "1.4.1", "source": { "type": "git", "url": "https://github.com/spatie/flare-client-php.git", - "reference": "609903bd154ba3d71f5e23a91c3b431fa8f71868" + "reference": "943894c6a6b00501365ac0b91ae0dce56f2226fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/609903bd154ba3d71f5e23a91c3b431fa8f71868", - "reference": "609903bd154ba3d71f5e23a91c3b431fa8f71868", + "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/943894c6a6b00501365ac0b91ae0dce56f2226fa", + "reference": "943894c6a6b00501365ac0b91ae0dce56f2226fa", "shasum": "" }, "require": { - "illuminate/pipeline": "^8.0|^9.0", + "illuminate/pipeline": "^8.0|^9.0|^10.0", + "nesbot/carbon": "^2.62.1", "php": "^8.0", - "spatie/backtrace": "^1.2", + "spatie/backtrace": "^1.5.2", "symfony/http-foundation": "^5.0|^6.0", "symfony/mime": "^5.2|^6.0", "symfony/process": "^5.2|^6.0", @@ -6901,7 +6898,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.1.x-dev" + "dev-main": "1.3.x-dev" } }, "autoload": { @@ -6926,7 +6923,7 @@ ], "support": { "issues": "https://github.com/spatie/flare-client-php/issues", - "source": "https://github.com/spatie/flare-client-php/tree/1.3.2" + "source": "https://github.com/spatie/flare-client-php/tree/1.4.1" }, "funding": [ { @@ -6934,43 +6931,51 @@ "type": "github" } ], - "time": "2022-12-26T14:36:46+00:00" + "time": "2023-07-06T09:29:49+00:00" }, { "name": "spatie/ignition", - "version": "1.4.1", + "version": "1.9.0", "source": { "type": "git", "url": "https://github.com/spatie/ignition.git", - "reference": "dd3d456779108d7078baf4e43f8c2b937d9794a1" + "reference": "de24ff1e01814d5043bd6eb4ab36a5a852a04973" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/ignition/zipball/dd3d456779108d7078baf4e43f8c2b937d9794a1", - "reference": "dd3d456779108d7078baf4e43f8c2b937d9794a1", + "url": "https://api.github.com/repos/spatie/ignition/zipball/de24ff1e01814d5043bd6eb4ab36a5a852a04973", + "reference": "de24ff1e01814d5043bd6eb4ab36a5a852a04973", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", - "monolog/monolog": "^2.0", "php": "^8.0", - "spatie/flare-client-php": "^1.1", + "spatie/backtrace": "^1.5.3", + "spatie/flare-client-php": "^1.4.0", "symfony/console": "^5.4|^6.0", "symfony/var-dumper": "^5.4|^6.0" }, "require-dev": { + "illuminate/cache": "^9.52", "mockery/mockery": "^1.4", "pestphp/pest": "^1.20", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-phpunit": "^1.0", - "symfony/process": "^5.4|^6.0" + "psr/simple-cache-implementation": "*", + "symfony/cache": "^6.0", + "symfony/process": "^5.4|^6.0", + "vlucas/phpdotenv": "^5.5" + }, + "suggest": { + "openai-php/client": "Require get solutions from OpenAI", + "simple-cache-implementation": "To cache solutions from OpenAI" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.2.x-dev" + "dev-main": "1.5.x-dev" } }, "autoload": { @@ -7009,7 +7014,7 @@ "type": "github" } ], - "time": "2022-08-26T11:51:15+00:00" + "time": "2023-06-28T13:24:59+00:00" }, { "name": "spatie/invade", @@ -7622,16 +7627,16 @@ }, { "name": "spatie/laravel-ignition", - "version": "1.6.3", + "version": "1.6.4", "source": { "type": "git", "url": "https://github.com/spatie/laravel-ignition.git", - "reference": "2db918babd96f87b73fc26e4195f5a19328dd123" + "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/2db918babd96f87b73fc26e4195f5a19328dd123", - "reference": "2db918babd96f87b73fc26e4195f5a19328dd123", + "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", + "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc", "shasum": "" }, "require": { @@ -7708,31 +7713,31 @@ "type": "github" } ], - "time": "2022-12-26T15:13:03+00:00" + "time": "2023-01-03T19:28:04+00:00" }, { "name": "spatie/laravel-login-link", - "version": "1.1.1", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/spatie/laravel-login-link.git", - "reference": "440f7efc147cc70d25016840aa124956af6a66c1" + "reference": "3f9a5cf6026abf62084d918efd142df0810abf41" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-login-link/zipball/440f7efc147cc70d25016840aa124956af6a66c1", - "reference": "440f7efc147cc70d25016840aa124956af6a66c1", + "url": "https://api.github.com/repos/spatie/laravel-login-link/zipball/3f9a5cf6026abf62084d918efd142df0810abf41", + "reference": "3f9a5cf6026abf62084d918efd142df0810abf41", "shasum": "" }, "require": { - "illuminate/contracts": "^9.0", + "illuminate/contracts": "^9.0|^10.0", "php": "^8.0", "spatie/laravel-package-tools": "^1.9.2" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.8", "nunomaduro/collision": "^6.0", - "orchestra/testbench": "^7.0", + "orchestra/testbench": "^7.0|^8.0", "pestphp/pest": "^1.21", "pestphp/pest-plugin-laravel": "^1.1", "phpunit/phpunit": "^9.5", @@ -7772,9 +7777,9 @@ "spatie" ], "support": { - "source": "https://github.com/spatie/laravel-login-link/tree/1.1.1" + "source": "https://github.com/spatie/laravel-login-link/tree/1.1.3" }, - "time": "2022-07-14T21:00:31+00:00" + "time": "2023-02-15T08:10:21+00:00" }, { "name": "spatie/laravel-options", @@ -7986,16 +7991,16 @@ }, { "name": "spatie/laravel-settings", - "version": "2.8.3", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/spatie/laravel-settings.git", - "reference": "9193603a3e02d19af9f2fd0d309ac2469b25d680" + "reference": "4ac597ffbb599a46032498309251b7a24346cb66" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-settings/zipball/9193603a3e02d19af9f2fd0d309ac2469b25d680", - "reference": "9193603a3e02d19af9f2fd0d309ac2469b25d680", + "url": "https://api.github.com/repos/spatie/laravel-settings/zipball/4ac597ffbb599a46032498309251b7a24346cb66", + "reference": "4ac597ffbb599a46032498309251b7a24346cb66", "shasum": "" }, "require": { @@ -8057,7 +8062,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-settings/issues", - "source": "https://github.com/spatie/laravel-settings/tree/2.8.3" + "source": "https://github.com/spatie/laravel-settings/tree/3.2.0" }, "funding": [ { @@ -8069,7 +8074,7 @@ "type": "github" } ], - "time": "2023-03-30T12:47:39+00:00" + "time": "2023-07-05T12:22:20+00:00" }, { "name": "spatie/laravel-signal-aware-command", @@ -8287,16 +8292,16 @@ }, { "name": "spatie/temporary-directory", - "version": "2.1.1", + "version": "2.1.2", "source": { "type": "git", "url": "https://github.com/spatie/temporary-directory.git", - "reference": "e2818d871783d520b319c2d38dc37c10ecdcde20" + "reference": "0c804873f6b4042aa8836839dca683c7d0f71831" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/e2818d871783d520b319c2d38dc37c10ecdcde20", - "reference": "e2818d871783d520b319c2d38dc37c10ecdcde20", + "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/0c804873f6b4042aa8836839dca683c7d0f71831", + "reference": "0c804873f6b4042aa8836839dca683c7d0f71831", "shasum": "" }, "require": { @@ -8332,7 +8337,7 @@ ], "support": { "issues": "https://github.com/spatie/temporary-directory/issues", - "source": "https://github.com/spatie/temporary-directory/tree/2.1.1" + "source": "https://github.com/spatie/temporary-directory/tree/2.1.2" }, "funding": [ { @@ -8344,7 +8349,7 @@ "type": "github" } ], - "time": "2022-08-23T07:15:15+00:00" + "time": "2023-04-28T07:47:42+00:00" }, { "name": "staudenmeir/eloquent-has-many-deep", @@ -9106,16 +9111,16 @@ }, { "name": "symfony/http-foundation", - "version": "v6.2.11", + "version": "v6.2.12", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "df27f4191a4292d01fd062296e09cbc8b657cb57" + "reference": "94e3bc563fb92444588b3e2480fc47bb251ef295" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/df27f4191a4292d01fd062296e09cbc8b657cb57", - "reference": "df27f4191a4292d01fd062296e09cbc8b657cb57", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/94e3bc563fb92444588b3e2480fc47bb251ef295", + "reference": "94e3bc563fb92444588b3e2480fc47bb251ef295", "shasum": "" }, "require": { @@ -9164,7 +9169,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.2.11" + "source": "https://github.com/symfony/http-foundation/tree/v6.2.12" }, "funding": [ { @@ -9180,20 +9185,20 @@ "type": "tidelift" } ], - "time": "2023-05-19T12:39:53+00:00" + "time": "2023-06-24T11:48:11+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.3.0", + "version": "v6.3.1", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "241973f3dd900620b1ca052fe409144f11aea748" + "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/241973f3dd900620b1ca052fe409144f11aea748", - "reference": "241973f3dd900620b1ca052fe409144f11aea748", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/161e16fd2e35fb4881a43bc8b383dfd5be4ac374", + "reference": "161e16fd2e35fb4881a43bc8b383dfd5be4ac374", "shasum": "" }, "require": { @@ -9277,7 +9282,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.3.0" + "source": "https://github.com/symfony/http-kernel/tree/v6.3.1" }, "funding": [ { @@ -9293,7 +9298,7 @@ "type": "tidelift" } ], - "time": "2023-05-30T19:03:32+00:00" + "time": "2023-06-26T06:07:32+00:00" }, { "name": "symfony/mailer", @@ -10179,16 +10184,16 @@ }, { "name": "symfony/routing", - "version": "v6.3.0", + "version": "v6.3.1", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "827f59fdc67eecfc4dfff81f9c93bf4d98f0c89b" + "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/827f59fdc67eecfc4dfff81f9c93bf4d98f0c89b", - "reference": "827f59fdc67eecfc4dfff81f9c93bf4d98f0c89b", + "url": "https://api.github.com/repos/symfony/routing/zipball/d37ad1779c38b8eb71996d17dc13030dcb7f9cf5", + "reference": "d37ad1779c38b8eb71996d17dc13030dcb7f9cf5", "shasum": "" }, "require": { @@ -10241,7 +10246,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.3.0" + "source": "https://github.com/symfony/routing/tree/v6.3.1" }, "funding": [ { @@ -10257,7 +10262,7 @@ "type": "tidelift" } ], - "time": "2023-04-28T15:57:00+00:00" + "time": "2023-06-05T15:30:22+00:00" }, { "name": "symfony/service-contracts", @@ -10675,16 +10680,16 @@ }, { "name": "symfony/var-dumper", - "version": "v6.3.0", + "version": "v6.3.1", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "6acdcd5c122074ee9f7b051e4fb177025c277a0e" + "reference": "c81268d6960ddb47af17391a27d222bd58cf0515" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6acdcd5c122074ee9f7b051e4fb177025c277a0e", - "reference": "6acdcd5c122074ee9f7b051e4fb177025c277a0e", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c81268d6960ddb47af17391a27d222bd58cf0515", + "reference": "c81268d6960ddb47af17391a27d222bd58cf0515", "shasum": "" }, "require": { @@ -10737,7 +10742,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.3.0" + "source": "https://github.com/symfony/var-dumper/tree/v6.3.1" }, "funding": [ { @@ -10753,7 +10758,7 @@ "type": "tidelift" } ], - "time": "2023-05-25T13:09:35+00:00" + "time": "2023-06-21T12:08:28+00:00" }, { "name": "tgalopin/html-sanitizer", @@ -11358,30 +11363,30 @@ "packages-dev": [ { "name": "amirami/localizator", - "version": "v0.11.0-alpha", + "version": "v0.12.1-alpha", "source": { "type": "git", "url": "https://github.com/amiranagram/localizator.git", - "reference": "7b79a0512d6cb73b7821cc48f409961280dcde4a" + "reference": "4bfa8cd15b21c264c981b039ac27b479050f84f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/amiranagram/localizator/zipball/7b79a0512d6cb73b7821cc48f409961280dcde4a", - "reference": "7b79a0512d6cb73b7821cc48f409961280dcde4a", + "url": "https://api.github.com/repos/amiranagram/localizator/zipball/4bfa8cd15b21c264c981b039ac27b479050f84f4", + "reference": "4bfa8cd15b21c264c981b039ac27b479050f84f4", "shasum": "" }, "require": { "ext-json": "*", - "illuminate/config": "^6.0|^8.0|^9.0", - "illuminate/console": "^6.0|^8.0|^9.0", - "illuminate/filesystem": "^6.0|^8.0|^9.0", - "illuminate/support": "^6.0|^8.0|^9.0", + "illuminate/config": "^6.0|^8.0|^9.0|^10.0", + "illuminate/console": "^6.0|^8.0|^9.0|^10.0", + "illuminate/filesystem": "^6.0|^8.0|^9.0|^10.0", + "illuminate/support": "^6.0|^8.0|^9.0|^10.0", "php": "^7.2.5|^8.0", "symfony/finder": "^4.4|^5.1|^6.0" }, "require-dev": { "mockery/mockery": "^1.3.3", - "orchestra/testbench": "^4.0|^6.6|^7.0", + "orchestra/testbench": "^4.0|^6.6|^7.0|^8.0", "phpunit/phpunit": "^8.5|^9.5" }, "type": "library", @@ -11416,7 +11421,7 @@ "homepage": "https://github.com/amiranagram/localizator", "support": { "issues": "https://github.com/amiranagram/localizator/issues", - "source": "https://github.com/amiranagram/localizator/tree/v0.11.0-alpha" + "source": "https://github.com/amiranagram/localizator/tree/v0.12.1-alpha" }, "funding": [ { @@ -11432,7 +11437,7 @@ "type": "github" } ], - "time": "2022-11-08T10:13:20+00:00" + "time": "2023-04-24T05:41:34+00:00" }, { "name": "barryvdh/laravel-debugbar", @@ -12479,16 +12484,16 @@ }, { "name": "mockery/mockery", - "version": "1.6.1", + "version": "1.6.2", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "a8dd186f07ea667c1e3abd2176bfab0ab161ea94" + "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/a8dd186f07ea667c1e3abd2176bfab0ab161ea94", - "reference": "a8dd186f07ea667c1e3abd2176bfab0ab161ea94", + "url": "https://api.github.com/repos/mockery/mockery/zipball/13a7fa2642c76c58fa2806ef7f565344c817a191", + "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191", "shasum": "" }, "require": { @@ -12507,7 +12512,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-main": "1.6.x-dev" } }, "autoload": { @@ -12551,9 +12556,9 @@ ], "support": { "issues": "https://github.com/mockery/mockery/issues", - "source": "https://github.com/mockery/mockery/tree/1.6.1" + "source": "https://github.com/mockery/mockery/tree/1.6.2" }, - "time": "2023-06-05T13:59:03+00:00" + "time": "2023-06-07T09:07:52+00:00" }, { "name": "myclabs/deep-copy", @@ -15034,37 +15039,38 @@ }, { "name": "spatie/laravel-ray", - "version": "1.31.0", + "version": "1.32.5", "source": { "type": "git", "url": "https://github.com/spatie/laravel-ray.git", - "reference": "7394694afd89d05879e7a69c54abab73c1199acd" + "reference": "288f30c94c9725dfd78d8a1b82b230521f4d697e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/7394694afd89d05879e7a69c54abab73c1199acd", - "reference": "7394694afd89d05879e7a69c54abab73c1199acd", + "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/288f30c94c9725dfd78d8a1b82b230521f4d697e", + "reference": "288f30c94c9725dfd78d8a1b82b230521f4d697e", "shasum": "" }, "require": { "ext-json": "*", - "illuminate/contracts": "^7.20|^8.19|^9.0", - "illuminate/database": "^7.20|^8.19|^9.0", - "illuminate/queue": "^7.20|^8.19|^9.0", - "illuminate/support": "^7.20|^8.19|^9.0", - "php": "^7.3|^8.0", + "illuminate/contracts": "^7.20|^8.19|^9.0|^10.0", + "illuminate/database": "^7.20|^8.19|^9.0|^10.0", + "illuminate/queue": "^7.20|^8.19|^9.0|^10.0", + "illuminate/support": "^7.20|^8.19|^9.0|^10.0", + "php": "^7.4|^8.0", "spatie/backtrace": "^1.0", - "spatie/ray": "^1.33", + "spatie/ray": "^1.37", "symfony/stopwatch": "4.2|^5.1|^6.0", "zbateson/mail-mime-parser": "^1.3.1|^2.0" }, "require-dev": { "guzzlehttp/guzzle": "^7.3", - "laravel/framework": "^7.20|^8.19|^9.0", - "orchestra/testbench-core": "^5.0|^6.0|^7.0", + "laravel/framework": "^7.20|^8.19|^9.0|^10.0", + "orchestra/testbench-core": "^5.0|^6.0|^7.0|^8.0", + "pestphp/pest": "^1.22", "phpstan/phpstan": "^0.12.93", "phpunit/phpunit": "^9.3", - "spatie/phpunit-snapshot-assertions": "^4.2" + "spatie/pest-plugin-snapshots": "^1.1" }, "type": "library", "extra": { @@ -15102,7 +15108,7 @@ ], "support": { "issues": "https://github.com/spatie/laravel-ray/issues", - "source": "https://github.com/spatie/laravel-ray/tree/1.31.0" + "source": "https://github.com/spatie/laravel-ray/tree/1.32.5" }, "funding": [ { @@ -15114,7 +15120,7 @@ "type": "other" } ], - "time": "2022-09-20T13:13:22+00:00" + "time": "2023-06-23T07:04:32+00:00" }, { "name": "spatie/macroable", @@ -15168,16 +15174,16 @@ }, { "name": "spatie/ray", - "version": "1.36.0", + "version": "1.37.2", "source": { "type": "git", "url": "https://github.com/spatie/ray.git", - "reference": "4a4def8cda4806218341b8204c98375aa8c34323" + "reference": "dea16182d4bc9d9833adec7e39fbb3d7b553425d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/spatie/ray/zipball/4a4def8cda4806218341b8204c98375aa8c34323", - "reference": "4a4def8cda4806218341b8204c98375aa8c34323", + "url": "https://api.github.com/repos/spatie/ray/zipball/dea16182d4bc9d9833adec7e39fbb3d7b553425d", + "reference": "dea16182d4bc9d9833adec7e39fbb3d7b553425d", "shasum": "" }, "require": { @@ -15192,8 +15198,9 @@ }, "require-dev": { "illuminate/support": "6.x|^8.18|^9.0", - "nesbot/carbon": "^2.43", - "phpstan/phpstan": "^0.12.92", + "nesbot/carbon": "^2.63", + "pestphp/pest": "^1.22", + "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.5", "spatie/phpunit-snapshot-assertions": "^4.2", "spatie/test-time": "^1.2" @@ -15227,7 +15234,7 @@ ], "support": { "issues": "https://github.com/spatie/ray/issues", - "source": "https://github.com/spatie/ray/tree/1.36.0" + "source": "https://github.com/spatie/ray/tree/1.37.2" }, "funding": [ { @@ -15239,7 +15246,7 @@ "type": "other" } ], - "time": "2022-08-11T14:04:18+00:00" + "time": "2023-05-17T06:35:47+00:00" }, { "name": "symfony/polyfill-iconv", @@ -15326,21 +15333,21 @@ }, { "name": "symfony/stopwatch", - "version": "v6.1.5", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/symfony/stopwatch.git", - "reference": "266636bb8f3fbdccc302491df7b3a1b9a8c238a7" + "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/stopwatch/zipball/266636bb8f3fbdccc302491df7b3a1b9a8c238a7", - "reference": "266636bb8f3fbdccc302491df7b3a1b9a8c238a7", + "url": "https://api.github.com/repos/symfony/stopwatch/zipball/fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2", + "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2", "shasum": "" }, "require": { "php": ">=8.1", - "symfony/service-contracts": "^1|^2|^3" + "symfony/service-contracts": "^2.5|^3" }, "type": "library", "autoload": { @@ -15368,7 +15375,7 @@ "description": "Provides a way to profile code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/stopwatch/tree/v6.1.5" + "source": "https://github.com/symfony/stopwatch/tree/v6.3.0" }, "funding": [ { @@ -15384,7 +15391,7 @@ "type": "tidelift" } ], - "time": "2022-09-28T16:00:52+00:00" + "time": "2023-02-16T10:14:28+00:00" }, { "name": "symfony/yaml", @@ -15509,28 +15516,30 @@ }, { "name": "zbateson/mail-mime-parser", - "version": "2.2.2", + "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/zbateson/mail-mime-parser.git", - "reference": "318cd809afebe48e8fb41625b05b25470fb3fa86" + "reference": "20b3e48eb799537683780bc8782fbbe9bc25934a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/318cd809afebe48e8fb41625b05b25470fb3fa86", - "reference": "318cd809afebe48e8fb41625b05b25470fb3fa86", + "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/20b3e48eb799537683780bc8782fbbe9bc25934a", + "reference": "20b3e48eb799537683780bc8782fbbe9bc25934a", "shasum": "" }, "require": { "guzzlehttp/psr7": "^1.7.0|^2.0", - "php": ">=5.4", + "php": ">=7.1", "pimple/pimple": "^3.0", "zbateson/mb-wrapper": "^1.0.1", "zbateson/stream-decorators": "^1.0.6" }, "require-dev": { + "friendsofphp/php-cs-fixer": "*", "mikey179/vfsstream": "^1.6.0", - "sanmai/phpunit-legacy-adapter": "^6.3 || ^8.2" + "phpstan/phpstan": "*", + "phpunit/phpunit": "<10" }, "suggest": { "ext-iconv": "For best support/performance", @@ -15578,29 +15587,31 @@ "type": "github" } ], - "time": "2022-09-01T15:59:13+00:00" + "time": "2023-02-14T22:58:03+00:00" }, { "name": "zbateson/mb-wrapper", - "version": "1.1.2", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/zbateson/mb-wrapper.git", - "reference": "5d9d190ef18ce6d424e3ac6f5ebe13901f92b74a" + "reference": "faf35dddfacfc5d4d5f9210143eafd7a7fe74334" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/5d9d190ef18ce6d424e3ac6f5ebe13901f92b74a", - "reference": "5d9d190ef18ce6d424e3ac6f5ebe13901f92b74a", + "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/faf35dddfacfc5d4d5f9210143eafd7a7fe74334", + "reference": "faf35dddfacfc5d4d5f9210143eafd7a7fe74334", "shasum": "" }, "require": { - "php": ">=5.4", + "php": ">=7.1", "symfony/polyfill-iconv": "^1.9", "symfony/polyfill-mbstring": "^1.9" }, "require-dev": { - "sanmai/phpunit-legacy-adapter": "^6.3 || ^8" + "friendsofphp/php-cs-fixer": "*", + "phpstan/phpstan": "*", + "phpunit/phpunit": "<=9.0" }, "suggest": { "ext-iconv": "For best support/performance", @@ -15637,7 +15648,7 @@ ], "support": { "issues": "https://github.com/zbateson/mb-wrapper/issues", - "source": "https://github.com/zbateson/mb-wrapper/tree/1.1.2" + "source": "https://github.com/zbateson/mb-wrapper/tree/1.2.0" }, "funding": [ { @@ -15645,29 +15656,31 @@ "type": "github" } ], - "time": "2022-05-26T15:55:05+00:00" + "time": "2023-01-11T23:05:44+00:00" }, { "name": "zbateson/stream-decorators", - "version": "1.0.7", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/zbateson/stream-decorators.git", - "reference": "8f8ca208572963258b7e6d91106181706deacd10" + "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/8f8ca208572963258b7e6d91106181706deacd10", - "reference": "8f8ca208572963258b7e6d91106181706deacd10", + "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/783b034024fda8eafa19675fb2552f8654d3a3e9", + "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9", "shasum": "" }, "require": { - "guzzlehttp/psr7": "^1.7.0|^2.0", - "php": ">=5.4", + "guzzlehttp/psr7": "^1.9 | ^2.0", + "php": ">=7.2", "zbateson/mb-wrapper": "^1.0.0" }, "require-dev": { - "sanmai/phpunit-legacy-adapter": "^6.3 || ^8" + "friendsofphp/php-cs-fixer": "*", + "phpstan/phpstan": "*", + "phpunit/phpunit": "<10.0" }, "type": "library", "autoload": { @@ -15698,7 +15711,7 @@ ], "support": { "issues": "https://github.com/zbateson/stream-decorators/issues", - "source": "https://github.com/zbateson/stream-decorators/tree/1.0.7" + "source": "https://github.com/zbateson/stream-decorators/tree/1.2.1" }, "funding": [ { @@ -15706,7 +15719,7 @@ "type": "github" } ], - "time": "2022-09-08T15:44:55+00:00" + "time": "2023-05-30T22:51:52+00:00" } ], "aliases": [], @@ -15720,5 +15733,5 @@ "php": "^8.1" }, "platform-dev": [], - "plugin-api-version": "2.1.0" + "plugin-api-version": "2.3.0" } diff --git a/database/migrations/2023_07_11_220402_migrate_slug_column_to_json_courses_table.php b/database/migrations/2023_07_11_220402_migrate_slug_column_to_json_courses_table.php new file mode 100644 index 000000000..9c87c3fbe --- /dev/null +++ b/database/migrations/2023_07_11_220402_migrate_slug_column_to_json_courses_table.php @@ -0,0 +1,32 @@ +json('slug')->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('courses', function (Blueprint $table) { + $table->string('slug')->change(); + }); + } +}; diff --git a/database/migrations/2023_07_11_220419_migrate_slug_column_to_json_modules_table.php b/database/migrations/2023_07_11_220419_migrate_slug_column_to_json_modules_table.php new file mode 100644 index 000000000..10b3dcd0e --- /dev/null +++ b/database/migrations/2023_07_11_220419_migrate_slug_column_to_json_modules_table.php @@ -0,0 +1,32 @@ +json('slug')->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('modules', function (Blueprint $table) { + $table->string('slug')->change(); + }); + } +}; diff --git a/database/migrations/2023_07_12_140339_migrate_to_json_author_column_courses_table.php b/database/migrations/2023_07_12_140339_migrate_to_json_author_column_courses_table.php new file mode 100644 index 000000000..9c1c541c7 --- /dev/null +++ b/database/migrations/2023_07_12_140339_migrate_to_json_author_column_courses_table.php @@ -0,0 +1,52 @@ +get(); + + $courses->each(function ($course) { + $author = '{"en": "'.($course->author ?? '').'"}'; + DB::table('courses') + ->where('id', $course->id) + ->update(['author' => $author]); + }); + + Schema::table('courses', function (Blueprint $table) { + $table->json('author')->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('courses', function (Blueprint $table) { + $table->string('author')->change(); + }); + + $courses = DB::table('courses')->get(); + + $courses->each(function ($course) { + $author = json_decode($course->author, false); + $authorName = $author->en ?? $author->fr ?? ''; + DB::table('courses') + ->where('id', $course->id) + ->update(['author' => $authorName]); + }); + } +}; diff --git a/database/migrations/2023_07_19_145806_remove_completed_at_column_module_user_table.php b/database/migrations/2023_07_19_145806_remove_completed_at_column_module_user_table.php new file mode 100644 index 000000000..d159bd95f --- /dev/null +++ b/database/migrations/2023_07_19_145806_remove_completed_at_column_module_user_table.php @@ -0,0 +1,32 @@ +dropColumn('completed_at'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('module_user', function (Blueprint $table) { + $table->dateTime('completed_at')->nullable(); + }); + } +}; diff --git a/database/seeders/CourseSeeder.php b/database/seeders/CourseSeeder.php index 2f76ac067..68e62828f 100644 --- a/database/seeders/CourseSeeder.php +++ b/database/seeders/CourseSeeder.php @@ -3,6 +3,7 @@ namespace Database\Seeders; use App\Models\Course; +use App\Models\Module; use App\Models\Question; use App\Models\Quiz; use Faker\Generator; @@ -20,19 +21,449 @@ public function run() $faker = app(Generator::class); Course::factory() - ->hasModules(3) + ->has(Module::factory() + ->state([ + 'title' => [ + 'en' => 'Overview on Communication', + 'fr' => 'Aperçu de la communication', + ], + 'description' => null, + 'introduction' => [ + 'en' => 'This webinar will share various communication methods and "best practices" in communications. Incorporating the recommendations will benefit everyone to understand how to communicate effectively and promote the full inclusion of people with disabilities.', + 'fr' => 'Ce webinaire permettra de présenter diverses méthodes de communication et « pratiques exemplaires » en matière de communication. L’intégration des recommandations se révélera profitable à tous afin de comprendre comment communiquer efficacement et promouvoir la pleine inclusion des personnes handicapées.', + ], + 'video' => [ + 'en' => 'https://vimeo.com/824854573', + 'fr' => 'https://vimeo.com/824849288', + 'asl' => 'https://vimeo.com/824856580', + 'lsq' => 'https://vimeo.com/824851477', + ], + ]) + ) + ->has(Module::factory() + ->state([ + 'title' => [ + 'en' => 'Customer Service', + 'fr' => 'Service à la clientèle', + ], + 'description' => null, + 'introduction' => [ + 'en' => 'Customer service is vital in every business; good customer service and engagement matter. In this webinar, you will learn how to communicate with customers with diverse communication needs effectively.', + 'fr' => 'Le service à la clientèle est essentiel dans toutes les entreprises; il est important d’assurer un bon service à la clientèle et une bonne mobilisation. Dans le cadre de ce webinaire, vous apprendrez comment communiquer efficacement avec les clients ayant des besoins divers en matière de communication.', + ], + 'video' => [ + 'en' => 'https://vimeo.com/825100128', + 'fr' => 'https://vimeo.com/825103452', + ], + ]) + ) + ->has(Module::factory() + ->state([ + 'title' => [ + 'en' => 'The Built Environment & Technology', + 'fr' => 'L’environnement bâti et la technologie', + ], + 'description' => null, + 'introduction' => [ + 'en' => 'This webinar will provide an overview of various assistive devices and the use of technology which can facilitate and support communication in areas such as customer service, built environment and the workplace.', + 'fr' => 'Ce webinaire donnera un aperçu des divers appareils fonctionnels et de l’utilisation de la technologie pouvant faciliter et appuyer la communication dans des domaines tels que le service à la clientèle, l’environnement bâti et le milieu de travail.', + ], + 'video' => [ + 'en' => 'https://vimeo.com/824820321', + 'fr' => 'https://vimeo.com/824831128', + ], + ]) + ) + ->has(Module::factory() + ->state([ + 'title' => [ + 'en' => 'The Workplace', + 'fr' => 'Le milieu de travail', + ], + 'description' => null, + 'introduction' => [ + 'en' => 'In this webinar, we focus on communication and removing barriers to communication in the workplace. We will review communication strategies in the following areas attitudes, not assumptions, hiring process, etiquette and facilitating communication.', + 'fr' => 'Nous examinerons les stratégies de communication dans les domaines suivants : les attitudes, et non les suppositions, le processus d’embauche, l’étiquette et la facilitation de la communication. Dans le cadre de ce webinaire, nous mettons l’accent sur la communication et l’élimination des obstacles à la communication en milieu de travail.', + ], + 'video' => [ + 'en' => 'https://vimeo.com/824866934', + 'fr' => 'https://vimeo.com/824884050', + 'asl' => 'https://vimeo.com/824862933', + 'lsq' => 'https://vimeo.com/824871878', + ], + ]) + ) ->has(Quiz::factory() - ->has(Question::factory(5)) - ->state(function (array $attributes, Course $course) { - return [ - 'title' => "{$course->title} quiz", - 'minimum_score' => '0.75', - ]; - }) + ->has(Question::factory() + ->state([ + 'question' => [ + 'en' => 'Accessible meetings have the following in place:', + 'fr' => 'Les réunions accessibles ont les éléments suivants en place :', + ], + 'choices' => [ + 'en' => [ + [ + 'label' => 'Designated chair to monitor speakers list', + 'value' => 0, + ], + [ + 'label' => 'Accessible devices', + 'value' => 1, + ], + [ + 'label' => 'Access to the content and proceedings of the meeting', + 'value' => 2, + ], + [ + 'label' => 'Captioning or ASL interpreter', + 'value' => 3, + ], + [ + 'label' => 'All the above', + 'value' => 4, + ], + ], + 'fr' => [ + [ + 'label' => 'Chaise désignée pour surveiller la liste des conférenciers', + 'value' => 0, + ], + [ + 'label' => 'Dispositifs accessibles', + 'value' => 1, + ], + [ + 'label' => 'Accès au contenu et aux délibérations de la réunion', + 'value' => 2, + ], + [ + 'label' => 'Sous-titrage ou interprète en American Sign Language', + 'value' => 3, + ], + [ + 'label' => 'Toutes ces réponses', + 'value' => 4, + ], + ], + ], + 'correct_choices' => [4], + ]) + ) + ->has(Question::factory() + ->state([ + 'question' => [ + 'en' => 'American Sign Language is a universal language.', + 'fr' => 'La American Sign Language est une langue universelle.', + ], + 'choices' => [ + 'en' => [ + [ + 'label' => 'True', + 'value' => 0, + ], + [ + 'label' => 'False', + 'value' => 1, + ], + ], + 'fr' => [ + [ + 'label' => 'Vrai', + 'value' => 0, + ], + [ + 'label' => 'Faux', + 'value' => 1, + ], + ], + ], + 'correct_choices' => [1], + ]) + ) + ->has(Question::factory() + ->state([ + 'question' => [ + 'en' => 'What does a respectful accommodation look like?', + 'fr' => 'En quoi consiste une mesure d’adaptation respectueuse?', + ], + 'choices' => [ + 'en' => [ + [ + 'label' => 'Not everyone communicates in the same way', + 'value' => 0, + ], + [ + 'label' => 'Everyone receives information differently', + 'value' => 1, + ], + [ + 'label' => 'Everyone processes at different speeds, and using different senses', + 'value' => 2, + ], + [ + 'label' => 'Vocalizations are not the only way to communicate. Not everyone uses them consistently or well.', + 'value' => 3, + ], + [ + 'label' => 'Respectful communication is inclusive and requires offering supports, respecting a person’s choice of alternative methods.', + 'value' => 4, + ], + [ + 'label' => 'All the above', + 'value' => 5, + ], + ], + 'fr' => [ + [ + 'label' => 'Tout le monde ne communique pas de la même façon.', + 'value' => 0, + ], + [ + 'label' => 'Tout le monde reçoit l’information différemment.', + 'value' => 1, + ], + [ + 'label' => 'Tout le monde analyse l’information à un rythme différent et utilise des sens différents pour ce faire.', + 'value' => 2, + ], + [ + 'label' => 'Les vocalisations ne sont pas la seule façon de communiquer. Tout le monde ne les utilise pas invariablement ou efficacement.', + 'value' => 3, + ], + [ + 'label' => 'La communication respectueuse est inclusive et exige d’offrir du soutien, tout en respectant le choix d’une personne d’utiliser d’autres méthodes.', + 'value' => 4, + ], + [ + 'label' => 'Toutes ces réponses', + 'value' => 5, + ], + ], + ], + 'correct_choices' => [5], + ]) + ) + ->has(Question::factory() + ->state([ + 'question' => [ + 'en' => 'Select tips when writing in plain language.', + 'fr' => 'Sélectionnez conseils lorsqu’il s’agit d’écrire en langage simple.', + ], + 'choices' => [ + 'en' => [ + [ + 'label' => 'Write for your reader', + 'value' => 0, + ], + [ + 'label' => 'Organize your document', + 'value' => 1, + ], + [ + 'label' => 'Use headings and subheadings', + 'value' => 2, + ], + [ + 'label' => 'Word choices', + 'value' => 3, + ], + [ + 'label' => 'Write short sentences ', + 'value' => 4, + ], + [ + 'label' => 'Write short paragraphs', + 'value' => 5, + ], + [ + 'label' => 'Write in the active voice', + 'value' => 6, + ], + [ + 'label' => 'Choose your verbs carefully', + 'value' => 7, + ], + [ + 'label' => 'Use personal pronouns', + 'value' => 8, + ], + [ + 'label' => 'Write in a positive tone', + 'value' => 9, + ], + [ + 'label' => 'All the above', + 'value' => 10, + ], + ], + 'fr' => [ + [ + 'label' => 'Rédiger pour son lecteur', + 'value' => 0, + ], + [ + 'label' => 'Organiser son document', + 'value' => 1, + ], + [ + 'label' => 'Utiliser des en-têtes et des sous-titres', + 'value' => 2, + ], + [ + 'label' => 'Choix de mots', + 'value' => 3, + ], + [ + 'label' => 'Formuler des phrases courtes', + 'value' => 4, + ], + [ + 'label' => 'Rédiger de courts paragraphes', + 'value' => 5, + ], + [ + 'label' => 'Écrire à la voix active', + 'value' => 6, + ], + [ + 'label' => 'Choisir soigneusement ses verbes', + 'value' => 7, + ], + [ + 'label' => 'Utiliser des pronoms personnels', + 'value' => 8, + ], + [ + 'label' => 'Employer un ton positif', + 'value' => 9, + ], + [ + 'label' => 'Toutes ces réponses', + 'value' => 10, + ], + ], + ], + 'correct_choices' => [10], + ]) + ) + ->has( + Question::factory() + ->state([ + 'question' => [ + 'en' => 'When communication with a blind person or someone with a vision loss it is important to do the following:', + 'fr' => '5. Lorsqu’il s’agit de communiquer avec une personne aveugle ou une personne ayant une perte de la vue, il est important de faire ce qui suit.', + ], + 'choices' => [ + 'en' => [ + [ + 'label' => 'Speak first', + 'value' => 0, + ], + [ + 'label' => 'Introduce yourself', + 'value' => 1, + ], + [ + 'label' => 'Describe the situation', + 'value' => 2, + ], + [ + 'label' => 'Offer to help but don’t impose it', + 'value' => 3, + ], + [ + 'label' => 'Be specific', + 'value' => 4, + ], + [ + 'label' => 'All the above', + 'value' => 5, + ], + ], + 'fr' => [ + [ + 'label' => 'Parler en premier', + 'value' => 0, + ], + [ + 'label' => 'Se présenter', + 'value' => 1, + ], + [ + 'label' => 'Décrire la situation', + 'value' => 2, + ], + [ + 'label' => 'Offrir de l’aide, mais ne pas l’imposer', + 'value' => 3, + ], + [ + 'label' => 'Être précis', + 'value' => 4, + ], + [ + 'label' => 'Toutes ces réponses', + 'value' => 5, + ], + ], + ], + 'correct_choices' => [5], + ]) + ) + ->has( + Question::factory() + ->state([ + 'question' => [ + 'en' => 'For individuals who are hard of hearing make sure to speak in a loud voice.', + 'fr' => 'Pour les personnes malentendantes, il faut vous assurer de parler fort.', + ], + 'choices' => [ + 'en' => [ + [ + 'label' => 'True', + 'value' => 0, + ], + [ + 'label' => 'False', + 'value' => 1, + ], + ], + 'fr' => [ + [ + 'label' => 'Vrai', + 'value' => 0, + ], + [ + 'label' => 'Faux', + 'value' => 1, + ], + ], + ], + 'correct_choices' => [1], + ]) + ) + ->state([ + 'title' => [ + 'en' => 'Disability Connect, linking communication to transportation: Quiz', + 'fr' => 'Connexion personnes handicapées, Pour un lien entre les communications et le transport: Questionnaire', + ], + 'minimum_score' => '0.75', + ]) ) ->create([ - 'title' => 'Sample course', - 'author' => $faker->company(), + 'title' => [ + 'en' => 'Disability Connect, linking communication to transportation', + 'fr' => 'Connexion personnes handicapées, Pour un lien entre les communications et le transport', + ], + 'author' => [ + 'en' => 'Canadian Hard of Hearing Association', + 'fr' => 'Association des malentendants canadiens', + ], + 'introduction' => [ + 'en' => 'Welcome to Disability Connect, linking communication to transportation. In this introduction video, you will learn and meet Canadians who share the importance of understanding the various communication needs of individuals with communication disabilities and accessing services in the transportation sector.', + 'fr' => 'Bienvenue à Connexion personnes handicapées, Pour un lien entre les communications et le transport. Dans cette vidéo de présentation, vous rencontrerez des Canadiens qui partagent l’importance de comprendre les divers besoins en matière de communication des personnes ayant des troubles de communication et d’accéder aux services dans le secteur des transports, en plus de prendre connaissance de l’information à cet égard.', + ], + 'video' => null, ]); } } diff --git a/package-lock.json b/package-lock.json index 637b4b9bb..d6eb9b593 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,19 +9,19 @@ "dependencies": { "@alpinejs/mask": "^3.12.0", "@vimeo/player": "^2.18.0", - "alpinejs": "^3.12.0", + "alpinejs": "^3.12.3", "axios": "^1.2.2", "infusion": "^4.6.0", "luxon": "^3.0.4", "wicg-inert": "^3.1.2" }, "devDependencies": { - "@commitlint/cli": "^17.3.0", + "@commitlint/cli": "^17.6.6", "@commitlint/config-conventional": "^17.6.1", - "@shufo/prettier-plugin-blade": "^1.8.12", + "@shufo/prettier-plugin-blade": "^1.8.13", "@tailwindcss/typography": "^0.5.9", "autoprefixer": "^10.4.14", - "eslint": "^8.37.0", + "eslint": "^8.44.0", "eslint-config-fluid": "^2.1.1", "eslint-config-prettier": "^8.8.0", "husky": "^8.0.3", @@ -40,7 +40,7 @@ "stylelint-config-standard": "^29.0.0", "stylelint-order": "^5.0.0", "stylelint-use-logical-spec": "^4.1.0", - "tailwindcss": "^3.2.4", + "tailwindcss": "^3.3.2", "tippy.js": "^6.3.7", "vite": "^3.2.2", "vite-plugin-full-reload": "^1.0.5", @@ -48,6 +48,27 @@ "vite-plugin-static-copy": "^0.12.0" } }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/@alpinejs/mask": { "version": "3.12.0", "resolved": "https://registry.npmjs.org/@alpinejs/mask/-/mask-3.12.0.tgz", @@ -147,9 +168,9 @@ } }, "node_modules/@babel/runtime-corejs3": { - "version": "7.22.3", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.22.3.tgz", - "integrity": "sha512-6bdmknScYKmt8I9VjsJuKKGr+TwUb555FTf6tT1P/ANlCjTHCiYLhiQ4X/O7J731w5NOqu8c1aYHEVuOwPz7jA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.22.5.tgz", + "integrity": "sha512-TNPDN6aBFaUox2Lu+H/Y1dKKQgr4ucz/FGyCz67RVYLsBpVpUFf1dDngzg+Od8aqbrqwyztkaZjtWCZEUOT8zA==", "dev": true, "dependencies": { "core-js-pure": "^3.30.2", @@ -160,16 +181,16 @@ } }, "node_modules/@commitlint/cli": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-17.3.0.tgz", - "integrity": "sha512-/H0md7TsKflKzVPz226VfXzVafJFO1f9+r2KcFvmBu08V0T56lZU1s8WL7/xlxqLMqBTVaBf7Ixtc4bskdEEZg==", + "version": "17.6.6", + "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-17.6.6.tgz", + "integrity": "sha512-sTKpr2i/Fjs9OmhU+beBxjPavpnLSqZaO6CzwKVq2Tc4UYVTMFgpKOslDhUBVlfAUBfjVO8ParxC/MXkIOevEA==", "dev": true, "dependencies": { - "@commitlint/format": "^17.0.0", - "@commitlint/lint": "^17.3.0", - "@commitlint/load": "^17.3.0", - "@commitlint/read": "^17.2.0", - "@commitlint/types": "^17.0.0", + "@commitlint/format": "^17.4.4", + "@commitlint/lint": "^17.6.6", + "@commitlint/load": "^17.5.0", + "@commitlint/read": "^17.5.1", + "@commitlint/types": "^17.4.4", "execa": "^5.0.0", "lodash.isfunction": "^3.0.9", "resolve-from": "5.0.0", @@ -196,12 +217,12 @@ } }, "node_modules/@commitlint/config-validator": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.1.0.tgz", - "integrity": "sha512-Q1rRRSU09ngrTgeTXHq6ePJs2KrI+axPTgkNYDWSJIuS1Op4w3J30vUfSXjwn5YEJHklK3fSqWNHmBhmTR7Vdg==", + "version": "17.4.4", + "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.4.4.tgz", + "integrity": "sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==", "dev": true, "dependencies": { - "@commitlint/types": "^17.0.0", + "@commitlint/types": "^17.4.4", "ajv": "^8.11.0" }, "engines": { @@ -209,9 +230,9 @@ } }, "node_modules/@commitlint/config-validator/node_modules/ajv": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", - "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", @@ -231,12 +252,12 @@ "dev": true }, "node_modules/@commitlint/ensure": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.3.0.tgz", - "integrity": "sha512-kWbrQHDoW5veIUQx30gXoLOCjWvwC6OOEofhPCLl5ytRPBDAQObMbxTha1Bt2aSyNE/IrJ0s0xkdZ1Gi3wJwQg==", + "version": "17.4.4", + "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.4.4.tgz", + "integrity": "sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==", "dev": true, "dependencies": { - "@commitlint/types": "^17.0.0", + "@commitlint/types": "^17.4.4", "lodash.camelcase": "^4.3.0", "lodash.kebabcase": "^4.1.1", "lodash.snakecase": "^4.1.1", @@ -248,21 +269,21 @@ } }, "node_modules/@commitlint/execute-rule": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-17.0.0.tgz", - "integrity": "sha512-nVjL/w/zuqjCqSJm8UfpNaw66V9WzuJtQvEnCrK4jDw6qKTmZB+1JQ8m6BQVZbNBcwfYdDNKnhIhqI0Rk7lgpQ==", + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz", + "integrity": "sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==", "dev": true, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/format": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-17.0.0.tgz", - "integrity": "sha512-MZzJv7rBp/r6ZQJDEodoZvdRM0vXu1PfQvMTNWFb8jFraxnISMTnPBWMMjr2G/puoMashwaNM//fl7j8gGV5lA==", + "version": "17.4.4", + "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-17.4.4.tgz", + "integrity": "sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==", "dev": true, "dependencies": { - "@commitlint/types": "^17.0.0", + "@commitlint/types": "^17.4.4", "chalk": "^4.1.0" }, "engines": { @@ -270,74 +291,92 @@ } }, "node_modules/@commitlint/is-ignored": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.2.0.tgz", - "integrity": "sha512-rgUPUQraHxoMLxiE8GK430HA7/R2vXyLcOT4fQooNrZq9ERutNrP6dw3gdKLkq22Nede3+gEHQYUzL4Wu75ndg==", + "version": "17.6.6", + "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.6.6.tgz", + "integrity": "sha512-4Fw875faAKO+2nILC04yW/2Vy/wlV3BOYCSQ4CEFzriPEprc1Td2LILmqmft6PDEK5Sr14dT9tEzeaZj0V56Gg==", "dev": true, "dependencies": { - "@commitlint/types": "^17.0.0", - "semver": "7.3.7" + "@commitlint/types": "^17.4.4", + "semver": "7.5.2" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/lint": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-17.3.0.tgz", - "integrity": "sha512-VilOTPg0i9A7CCWM49E9bl5jytfTvfTxf9iwbWAWNjxJ/A5mhPKbm3sHuAdwJ87tDk1k4j8vomYfH23iaY+1Rw==", + "version": "17.6.6", + "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-17.6.6.tgz", + "integrity": "sha512-5bN+dnHcRLkTvwCHYMS7Xpbr+9uNi0Kq5NR3v4+oPNx6pYXt8ACuw9luhM/yMgHYwW0ajIR20wkPAFkZLEMGmg==", "dev": true, "dependencies": { - "@commitlint/is-ignored": "^17.2.0", - "@commitlint/parse": "^17.2.0", - "@commitlint/rules": "^17.3.0", - "@commitlint/types": "^17.0.0" + "@commitlint/is-ignored": "^17.6.6", + "@commitlint/parse": "^17.6.5", + "@commitlint/rules": "^17.6.5", + "@commitlint/types": "^17.4.4" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/load": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-17.3.0.tgz", - "integrity": "sha512-u/pV6rCAJrCUN+HylBHLzZ4qj1Ew3+eN9GBPhNi9otGxtOfA8b+8nJSxaNbcC23Ins/kcpjGf9zPSVW7628Umw==", + "version": "17.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-17.5.0.tgz", + "integrity": "sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==", "dev": true, "dependencies": { - "@commitlint/config-validator": "^17.1.0", - "@commitlint/execute-rule": "^17.0.0", - "@commitlint/resolve-extends": "^17.3.0", - "@commitlint/types": "^17.0.0", - "@types/node": "^14.0.0", + "@commitlint/config-validator": "^17.4.4", + "@commitlint/execute-rule": "^17.4.0", + "@commitlint/resolve-extends": "^17.4.4", + "@commitlint/types": "^17.4.4", + "@types/node": "*", "chalk": "^4.1.0", - "cosmiconfig": "^7.0.0", + "cosmiconfig": "^8.0.0", "cosmiconfig-typescript-loader": "^4.0.0", "lodash.isplainobject": "^4.0.6", "lodash.merge": "^4.6.2", "lodash.uniq": "^4.5.0", "resolve-from": "^5.0.0", "ts-node": "^10.8.1", - "typescript": "^4.6.4" + "typescript": "^4.6.4 || ^5.0.0" }, "engines": { "node": ">=v14" } }, + "node_modules/@commitlint/load/node_modules/cosmiconfig": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", + "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", + "dev": true, + "dependencies": { + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + } + }, "node_modules/@commitlint/message": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-17.2.0.tgz", - "integrity": "sha512-/4l2KFKxBOuoEn1YAuuNNlAU05Zt7sNsC9H0mPdPm3chOrT4rcX0pOqrQcLtdMrMkJz0gC7b3SF80q2+LtdL9Q==", + "version": "17.4.2", + "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-17.4.2.tgz", + "integrity": "sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==", "dev": true, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/parse": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-17.2.0.tgz", - "integrity": "sha512-vLzLznK9Y21zQ6F9hf8D6kcIJRb2haAK5T/Vt1uW2CbHYOIfNsR/hJs0XnF/J9ctM20Tfsqv4zBitbYvVw7F6Q==", + "version": "17.6.5", + "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-17.6.5.tgz", + "integrity": "sha512-0zle3bcn1Hevw5Jqpz/FzEWNo2KIzUbc1XyGg6WrWEoa6GH3A1pbqNF6MvE6rjuy6OY23c8stWnb4ETRZyN+Yw==", "dev": true, "dependencies": { - "@commitlint/types": "^17.0.0", + "@commitlint/types": "^17.4.4", "conventional-changelog-angular": "^5.0.11", "conventional-commits-parser": "^3.2.2" }, @@ -346,29 +385,43 @@ } }, "node_modules/@commitlint/read": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-17.2.0.tgz", - "integrity": "sha512-bbblBhrHkjxra3ptJNm0abxu7yeAaxumQ8ZtD6GIVqzURCETCP7Dm0tlVvGRDyXBuqX6lIJxh3W7oyKqllDsHQ==", + "version": "17.5.1", + "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-17.5.1.tgz", + "integrity": "sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==", "dev": true, "dependencies": { - "@commitlint/top-level": "^17.0.0", - "@commitlint/types": "^17.0.0", - "fs-extra": "^10.0.0", - "git-raw-commits": "^2.0.0", + "@commitlint/top-level": "^17.4.0", + "@commitlint/types": "^17.4.4", + "fs-extra": "^11.0.0", + "git-raw-commits": "^2.0.11", "minimist": "^1.2.6" }, "engines": { "node": ">=v14" } }, + "node_modules/@commitlint/read/node_modules/fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, "node_modules/@commitlint/resolve-extends": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.3.0.tgz", - "integrity": "sha512-Lf3JufJlc5yVEtJWC8o4IAZaB8FQAUaVlhlAHRACd0TTFizV2Lk2VH70et23KgvbQNf7kQzHs/2B4QZalBv6Cg==", + "version": "17.4.4", + "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.4.4.tgz", + "integrity": "sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==", "dev": true, "dependencies": { - "@commitlint/config-validator": "^17.1.0", - "@commitlint/types": "^17.0.0", + "@commitlint/config-validator": "^17.4.4", + "@commitlint/types": "^17.4.4", "import-fresh": "^3.0.0", "lodash.mergewith": "^4.6.2", "resolve-from": "^5.0.0", @@ -379,15 +432,15 @@ } }, "node_modules/@commitlint/rules": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-17.3.0.tgz", - "integrity": "sha512-s2UhDjC5yP2utx3WWqsnZRzjgzAX8BMwr1nltC0u0p8T/nzpkx4TojEfhlsOUj1t7efxzZRjUAV0NxNwdJyk+g==", + "version": "17.6.5", + "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-17.6.5.tgz", + "integrity": "sha512-uTB3zSmnPyW2qQQH+Dbq2rekjlWRtyrjDo4aLFe63uteandgkI+cc0NhhbBAzcXShzVk0qqp8SlkQMu0mgHg/A==", "dev": true, "dependencies": { - "@commitlint/ensure": "^17.3.0", - "@commitlint/message": "^17.2.0", - "@commitlint/to-lines": "^17.0.0", - "@commitlint/types": "^17.0.0", + "@commitlint/ensure": "^17.4.4", + "@commitlint/message": "^17.4.2", + "@commitlint/to-lines": "^17.4.0", + "@commitlint/types": "^17.4.4", "execa": "^5.0.0" }, "engines": { @@ -395,18 +448,18 @@ } }, "node_modules/@commitlint/to-lines": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-17.0.0.tgz", - "integrity": "sha512-nEi4YEz04Rf2upFbpnEorG8iymyH7o9jYIVFBG1QdzebbIFET3ir+8kQvCZuBE5pKCtViE4XBUsRZz139uFrRQ==", + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-17.4.0.tgz", + "integrity": "sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==", "dev": true, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/top-level": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-17.0.0.tgz", - "integrity": "sha512-dZrEP1PBJvodNWYPOYiLWf6XZergdksKQaT6i1KSROLdjf5Ai0brLOv5/P+CPxBeoj3vBxK4Ax8H1Pg9t7sHIQ==", + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-17.4.0.tgz", + "integrity": "sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==", "dev": true, "dependencies": { "find-up": "^5.0.0" @@ -416,9 +469,9 @@ } }, "node_modules/@commitlint/types": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-17.0.0.tgz", - "integrity": "sha512-hBAw6U+SkAT5h47zDMeOu3HSiD0SODw4Aq7rRNh1ceUmL7GyLKYhPbUvlRWqZ65XjBLPHZhFyQlRaPNz8qvUyQ==", + "version": "17.4.4", + "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-17.4.4.tgz", + "integrity": "sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==", "dev": true, "dependencies": { "chalk": "^4.1.0" @@ -590,14 +643,14 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz", - "integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.0.tgz", + "integrity": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.5.1", + "espree": "^9.6.0", "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", @@ -613,18 +666,18 @@ } }, "node_modules/@eslint/js": { - "version": "8.37.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.37.0.tgz", - "integrity": "sha512-x5vzdtOOGgFVDCUs81QRB2+liax8rFg3+7hqM+QhBG0/G3F1ZsoYl97UrqgHgQ9KKT7G6c4V+aTUCgu/n22v1A==", + "version": "8.44.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.44.0.tgz", + "integrity": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/@humanwhocodes/config-array": { - "version": "0.11.8", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", - "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", "dev": true, "dependencies": { "@humanwhocodes/object-schema": "^1.2.1", @@ -654,6 +707,20 @@ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", @@ -663,6 +730,15 @@ "node": ">=6.0.0" } }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.4.14", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", @@ -742,26 +818,26 @@ } }, "node_modules/@prettier/plugin-php": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@prettier/plugin-php/-/plugin-php-0.19.5.tgz", - "integrity": "sha512-AnmiB76G7qX2d7FbvGgABc3l4dVshOlBqxajiHe8nfMVTzmge7xDhiC28aP8OZafhIRksLKNRB1ZEemfN+j5pg==", + "version": "0.19.6", + "resolved": "https://registry.npmjs.org/@prettier/plugin-php/-/plugin-php-0.19.6.tgz", + "integrity": "sha512-MFaBfdxfTbGNwClJ/EZd2ROTa/Bd7EV+ff2KG769I9RsmNcVWcHARIYlSlJqFGgSbumOm+Ylm6RIXdxb5kG+OA==", "dev": true, "dependencies": { "linguist-languages": "^7.21.0", "mem": "^8.0.0", - "php-parser": "^3.1.3" + "php-parser": "^3.1.5" }, "peerDependencies": { "prettier": "^1.15.0 || ^2.0.0" } }, "node_modules/@shufo/prettier-plugin-blade": { - "version": "1.8.12", - "resolved": "https://registry.npmjs.org/@shufo/prettier-plugin-blade/-/prettier-plugin-blade-1.8.12.tgz", - "integrity": "sha512-Ec74bhLCsfs5HNdqajWDzepFFrmEFeI/Bh4HiFY9snqUbMIbzHbXZY2SgHZpm0SaiyCFri/xznpmc8WShF7uIA==", + "version": "1.8.13", + "resolved": "https://registry.npmjs.org/@shufo/prettier-plugin-blade/-/prettier-plugin-blade-1.8.13.tgz", + "integrity": "sha512-J2+fV1Q/xP74oOF6R3BquzUovM213bQe/3L6pIvzPDolPZ22WrHEKi8edvjrOuEpbmNvD/NB8UYSmrn4UNlPLA==", "dev": true, "dependencies": { - "blade-formatter": "^1.32.12", + "blade-formatter": "^1.32.13", "prettier": "^2.6.2", "synckit": "^0.8.5" }, @@ -870,9 +946,10 @@ "dev": true }, "node_modules/acorn": { - "version": "7.4.1", + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", "dev": true, - "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -889,26 +966,6 @@ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/acorn-node": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", - "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "dev": true, - "dependencies": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" - } - }, - "node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/aggregate-error": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", @@ -954,9 +1011,9 @@ } }, "node_modules/alpinejs": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.12.0.tgz", - "integrity": "sha512-YENcRBA9dlwR8PsZNFMTHbmdlTNwd1BkCeivPvOzzCKHas6AfwNRsDK9UEFmE5dXTMEZjnnpCTxV8vkdpWiOCw==", + "version": "3.12.3", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.12.3.tgz", + "integrity": "sha512-fLz2dfYQ3xCk7Ip8LiIpV2W+9brUyex2TAE7Z0BCvZdUDklJE+n+a8gCgLWzfZ0GzZNZu7HUP8Z0z6Xbm6fsSA==", "dependencies": { "@vue/reactivity": "~3.1.1" } @@ -1010,6 +1067,12 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, "node_modules/anymatch": { "version": "3.1.2", "dev": true, @@ -1133,9 +1196,9 @@ } }, "node_modules/blade-formatter": { - "version": "1.32.12", - "resolved": "https://registry.npmjs.org/blade-formatter/-/blade-formatter-1.32.12.tgz", - "integrity": "sha512-Xc1eEy/Adi6DnnUuh9IprD7Kyg2tq/ix3DFnr8AgN3wFg1Ews6vWpA44tuyoigqNHq59ss4JX2cgPkqbMLiurg==", + "version": "1.32.13", + "resolved": "https://registry.npmjs.org/blade-formatter/-/blade-formatter-1.32.13.tgz", + "integrity": "sha512-CQOY2Zt6l+yUN7MmWGdxaZl320oSaJnf9Snrwi1JAoYL83jqwhpR4MCceVKBkUiM9YnPyRP7dTyQeorzOc+yUg==", "dev": true, "dependencies": { "@prettier/plugin-php": "^0.19.0", @@ -1151,7 +1214,7 @@ "ignore": "^5.1.8", "js-beautify": "^1.14.0", "lodash": "^4.17.19", - "php-parser": "3.1.4", + "php-parser": "3.1.5", "prettier": "^2.2.0", "tailwindcss": "^3.1.8", "vscode-oniguruma": "1.7.0", @@ -1657,9 +1720,9 @@ } }, "node_modules/core-js-pure": { - "version": "3.30.2", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.30.2.tgz", - "integrity": "sha512-p/npFUJXXBkCCTIlEGBdghofn00jWG6ZOtdoIXSJmAu2QBvN0IqpZXWweOytcwE6cfx8ZvVUy1vw8zxhe4Y2vg==", + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.31.0.tgz", + "integrity": "sha512-/AnE9Y4OsJZicCzIe97JP5XoPKQJfTuEG43aEVLFJGOJpyqELod+pE6LEl63DfG1Mp8wX97LDaDpy1GmLEUxlg==", "dev": true, "hasInstallScript": true, "funding": { @@ -1793,8 +1856,9 @@ }, "node_modules/deep-is": { "version": "0.1.4", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true }, "node_modules/default-browser": { "version": "4.0.0", @@ -1963,12 +2027,6 @@ "node": ">= 0.4" } }, - "node_modules/defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==", - "dev": true - }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -1986,23 +2044,6 @@ "node": ">=8" } }, - "node_modules/detective": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", - "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", - "dev": true, - "dependencies": { - "acorn-node": "^1.8.2", - "defined": "^1.0.0", - "minimist": "^1.2.6" - }, - "bin": { - "detective": "bin/detective.js" - }, - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/didyoumean": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", @@ -2540,16 +2581,16 @@ } }, "node_modules/eslint": { - "version": "8.37.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.37.0.tgz", - "integrity": "sha512-NU3Ps9nI05GUoVMxcZx1J8CNR6xOvUT4jAUMH5+z8lpp3aEdPVCImKw6PWG4PY+Vfkpr+jvMpxs/qoE7wq0sPw==", + "version": "8.44.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.44.0.tgz", + "integrity": "sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.4.0", - "@eslint/eslintrc": "^2.0.2", - "@eslint/js": "8.37.0", - "@humanwhocodes/config-array": "^0.11.8", + "@eslint/eslintrc": "^2.1.0", + "@eslint/js": "8.44.0", + "@humanwhocodes/config-array": "^0.11.10", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "ajv": "^6.10.0", @@ -2558,9 +2599,9 @@ "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-visitor-keys": "^3.4.0", - "espree": "^9.5.1", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.6.0", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -2568,20 +2609,19 @@ "find-up": "^5.0.0", "glob-parent": "^6.0.2", "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", + "graphemer": "^1.4.0", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", - "optionator": "^0.9.1", + "optionator": "^0.9.3", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", "text-table": "^0.2.0" @@ -2641,25 +2681,10 @@ "eslint": "^7.0.0 || ^8.0.0" } }, - "node_modules/eslint-plugin-jsdoc/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", @@ -2667,12 +2692,15 @@ }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-visitor-keys": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", - "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -2694,14 +2722,14 @@ } }, "node_modules/espree": { - "version": "9.5.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz", - "integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==", + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.0.tgz", + "integrity": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==", "dev": true, "dependencies": { - "acorn": "^8.8.0", + "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.0" + "eslint-visitor-keys": "^3.4.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -2710,18 +2738,6 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/espree/node_modules/acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/esquery": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", @@ -2815,8 +2831,9 @@ }, "node_modules/fast-levenshtein": { "version": "2.0.6", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true }, "node_modules/fast-sort": { "version": "3.2.0", @@ -3184,10 +3201,10 @@ "dev": true, "license": "ISC" }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, "node_modules/hard-rejection": { @@ -3459,9 +3476,9 @@ } }, "node_modules/is-core-module": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", - "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", "dev": true, "dependencies": { "has": "^1.0.3" @@ -3731,6 +3748,15 @@ "dev": true, "license": "ISC" }, + "node_modules/jiti": { + "version": "1.18.2", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", + "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } + }, "node_modules/js-beautify": { "version": "1.14.8", "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.8.tgz", @@ -3791,12 +3817,6 @@ "node": ">=10" } }, - "node_modules/js-sdsl": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.4.tgz", - "integrity": "sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw==", - "dev": true - }, "node_modules/js-tokens": { "version": "4.0.0", "dev": true, @@ -3913,8 +3933,9 @@ }, "node_modules/levn": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, - "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" @@ -4551,10 +4572,13 @@ } }, "node_modules/minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", - "dev": true + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/minimist-options": { "version": "4.1.0", @@ -4581,6 +4605,17 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, "node_modules/nanoid": { "version": "3.3.6", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", @@ -4827,6 +4862,15 @@ "node": ">=8" } }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/object-hash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", @@ -4911,16 +4955,17 @@ } }, "node_modules/optionator": { - "version": "0.9.1", + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dev": true, - "license": "MIT", "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "type-check": "^0.4.0" }, "engines": { "node": ">= 0.8.0" @@ -5063,9 +5108,9 @@ } }, "node_modules/php-parser": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.4.tgz", - "integrity": "sha512-WUEfH4FWsVItqgOknM67msDdcUAfgPJsHhPNl6EPXzWtX+PfdY282m4i8YIJ9ALUEhf+qGDajdmW+VYqSd7Deg==", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.5.tgz", + "integrity": "sha512-jEY2DcbgCm5aclzBdfW86GM6VEIWcSlhTBSHN1qhJguVePlYe28GhwS0yoeLYXpM2K8y6wzLwrbq814n2PHSoQ==", "dev": true }, "node_modules/picocolors": { @@ -5104,6 +5149,15 @@ "node": ">=4" } }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, "node_modules/postcss": { "version": "8.4.24", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", @@ -5186,9 +5240,9 @@ } }, "node_modules/postcss-js": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", - "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", "dev": true, "dependencies": { "camelcase-css": "^2.0.1" @@ -5201,20 +5255,20 @@ "url": "https://opencollective.com/postcss/" }, "peerDependencies": { - "postcss": "^8.3.3" + "postcss": "^8.4.21" } }, "node_modules/postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", "dev": true, "dependencies": { "lilconfig": "^2.0.5", - "yaml": "^1.10.2" + "yaml": "^2.1.1" }, "engines": { - "node": ">= 10" + "node": ">= 14" }, "funding": { "type": "opencollective", @@ -5233,6 +5287,15 @@ } } }, + "node_modules/postcss-load-config/node_modules/yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, "node_modules/postcss-logical": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-6.1.0.tgz", @@ -5258,12 +5321,12 @@ "license": "MIT" }, "node_modules/postcss-nested": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz", - "integrity": "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.10" + "postcss-selector-parser": "^6.0.11" }, "engines": { "node": ">=12.0" @@ -5276,6 +5339,19 @@ "postcss": "^8.2.14" } }, + "node_modules/postcss-nested/node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/postcss-resolve-nested-selector": { "version": "0.1.1", "dev": true, @@ -5316,8 +5392,9 @@ }, "node_modules/prelude-ls": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.8.0" } @@ -5634,12 +5711,12 @@ } }, "node_modules/resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", "dev": true, "dependencies": { - "is-core-module": "^2.9.0", + "is-core-module": "^2.11.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -5774,9 +5851,9 @@ } }, "node_modules/semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.2.tgz", + "integrity": "sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -6248,6 +6325,57 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/sucrase": { + "version": "3.32.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", + "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/supports-color": { "version": "7.2.0", "dev": true, @@ -6369,44 +6497,41 @@ } }, "node_modules/tailwindcss": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz", - "integrity": "sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", + "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", "dev": true, "dependencies": { + "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", "chokidar": "^3.5.3", - "color-name": "^1.1.4", - "detective": "^5.2.1", "didyoumean": "^1.2.2", "dlv": "^1.1.3", "fast-glob": "^3.2.12", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", - "lilconfig": "^2.0.6", + "jiti": "^1.18.2", + "lilconfig": "^2.1.0", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "object-hash": "^3.0.0", "picocolors": "^1.0.0", - "postcss": "^8.4.18", - "postcss-import": "^14.1.0", - "postcss-js": "^4.0.0", - "postcss-load-config": "^3.1.4", - "postcss-nested": "6.0.0", - "postcss-selector-parser": "^6.0.10", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", "postcss-value-parser": "^4.2.0", - "quick-lru": "^5.1.1", - "resolve": "^1.22.1" + "resolve": "^1.22.2", + "sucrase": "^3.32.0" }, "bin": { "tailwind": "lib/cli.js", "tailwindcss": "lib/cli.js" }, "engines": { - "node": ">=12.13.0" - }, - "peerDependencies": { - "postcss": "^8.0.9" + "node": ">=14.0.0" } }, "node_modules/tailwindcss/node_modules/arg": { @@ -6427,33 +6552,26 @@ "node": ">=10.13.0" } }, - "node_modules/tailwindcss/node_modules/postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "node_modules/tailwindcss/node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", "dev": true, - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" + "node": ">=10" } }, - "node_modules/tailwindcss/node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "node_modules/tailwindcss/node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=4" } }, "node_modules/text-extensions": { @@ -6470,6 +6588,27 @@ "dev": true, "license": "MIT" }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, "node_modules/through": { "version": "2.3.8", "dev": true, @@ -6524,6 +6663,12 @@ "node": ">=8" } }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, "node_modules/ts-node": { "version": "10.9.1", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", @@ -6567,18 +6712,6 @@ } } }, - "node_modules/ts-node/node_modules/acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/ts-node/node_modules/acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", @@ -6596,8 +6729,9 @@ }, "node_modules/type-check": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, - "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" }, @@ -6883,14 +7017,6 @@ "resolved": "https://registry.npmjs.org/wicg-inert/-/wicg-inert-3.1.2.tgz", "integrity": "sha512-Ba9tGNYxXwaqKEi9sJJvPMKuo063umUPsHN0JJsjrs2j8KDSzkWLMZGZ+MH1Jf1Fq4OWZ5HsESJID6nRza2ang==" }, - "node_modules/word-wrap": { - "version": "1.2.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/wrap-ansi": { "version": "7.0.0", "dev": true, @@ -6934,14 +7060,6 @@ "@babel/runtime-corejs3": "^7.16.5" } }, - "node_modules/xtend": { - "version": "4.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4" - } - }, "node_modules/y18n": { "version": "5.0.8", "dev": true, @@ -7020,6 +7138,18 @@ } }, "dependencies": { + "@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true + }, + "@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "dev": true + }, "@alpinejs/mask": { "version": "3.12.0", "resolved": "https://registry.npmjs.org/@alpinejs/mask/-/mask-3.12.0.tgz", @@ -7090,9 +7220,9 @@ } }, "@babel/runtime-corejs3": { - "version": "7.22.3", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.22.3.tgz", - "integrity": "sha512-6bdmknScYKmt8I9VjsJuKKGr+TwUb555FTf6tT1P/ANlCjTHCiYLhiQ4X/O7J731w5NOqu8c1aYHEVuOwPz7jA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.22.5.tgz", + "integrity": "sha512-TNPDN6aBFaUox2Lu+H/Y1dKKQgr4ucz/FGyCz67RVYLsBpVpUFf1dDngzg+Od8aqbrqwyztkaZjtWCZEUOT8zA==", "dev": true, "requires": { "core-js-pure": "^3.30.2", @@ -7100,16 +7230,16 @@ } }, "@commitlint/cli": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-17.3.0.tgz", - "integrity": "sha512-/H0md7TsKflKzVPz226VfXzVafJFO1f9+r2KcFvmBu08V0T56lZU1s8WL7/xlxqLMqBTVaBf7Ixtc4bskdEEZg==", + "version": "17.6.6", + "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-17.6.6.tgz", + "integrity": "sha512-sTKpr2i/Fjs9OmhU+beBxjPavpnLSqZaO6CzwKVq2Tc4UYVTMFgpKOslDhUBVlfAUBfjVO8ParxC/MXkIOevEA==", "dev": true, "requires": { - "@commitlint/format": "^17.0.0", - "@commitlint/lint": "^17.3.0", - "@commitlint/load": "^17.3.0", - "@commitlint/read": "^17.2.0", - "@commitlint/types": "^17.0.0", + "@commitlint/format": "^17.4.4", + "@commitlint/lint": "^17.6.6", + "@commitlint/load": "^17.5.0", + "@commitlint/read": "^17.5.1", + "@commitlint/types": "^17.4.4", "execa": "^5.0.0", "lodash.isfunction": "^3.0.9", "resolve-from": "5.0.0", @@ -7127,19 +7257,19 @@ } }, "@commitlint/config-validator": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.1.0.tgz", - "integrity": "sha512-Q1rRRSU09ngrTgeTXHq6ePJs2KrI+axPTgkNYDWSJIuS1Op4w3J30vUfSXjwn5YEJHklK3fSqWNHmBhmTR7Vdg==", + "version": "17.4.4", + "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.4.4.tgz", + "integrity": "sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==", "dev": true, "requires": { - "@commitlint/types": "^17.0.0", + "@commitlint/types": "^17.4.4", "ajv": "^8.11.0" }, "dependencies": { "ajv": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz", - "integrity": "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", @@ -7157,12 +7287,12 @@ } }, "@commitlint/ensure": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.3.0.tgz", - "integrity": "sha512-kWbrQHDoW5veIUQx30gXoLOCjWvwC6OOEofhPCLl5ytRPBDAQObMbxTha1Bt2aSyNE/IrJ0s0xkdZ1Gi3wJwQg==", + "version": "17.4.4", + "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.4.4.tgz", + "integrity": "sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==", "dev": true, "requires": { - "@commitlint/types": "^17.0.0", + "@commitlint/types": "^17.4.4", "lodash.camelcase": "^4.3.0", "lodash.kebabcase": "^4.1.1", "lodash.snakecase": "^4.1.1", @@ -7171,103 +7301,130 @@ } }, "@commitlint/execute-rule": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-17.0.0.tgz", - "integrity": "sha512-nVjL/w/zuqjCqSJm8UfpNaw66V9WzuJtQvEnCrK4jDw6qKTmZB+1JQ8m6BQVZbNBcwfYdDNKnhIhqI0Rk7lgpQ==", + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz", + "integrity": "sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==", "dev": true }, "@commitlint/format": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-17.0.0.tgz", - "integrity": "sha512-MZzJv7rBp/r6ZQJDEodoZvdRM0vXu1PfQvMTNWFb8jFraxnISMTnPBWMMjr2G/puoMashwaNM//fl7j8gGV5lA==", + "version": "17.4.4", + "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-17.4.4.tgz", + "integrity": "sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==", "dev": true, "requires": { - "@commitlint/types": "^17.0.0", + "@commitlint/types": "^17.4.4", "chalk": "^4.1.0" } }, "@commitlint/is-ignored": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.2.0.tgz", - "integrity": "sha512-rgUPUQraHxoMLxiE8GK430HA7/R2vXyLcOT4fQooNrZq9ERutNrP6dw3gdKLkq22Nede3+gEHQYUzL4Wu75ndg==", + "version": "17.6.6", + "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.6.6.tgz", + "integrity": "sha512-4Fw875faAKO+2nILC04yW/2Vy/wlV3BOYCSQ4CEFzriPEprc1Td2LILmqmft6PDEK5Sr14dT9tEzeaZj0V56Gg==", "dev": true, "requires": { - "@commitlint/types": "^17.0.0", - "semver": "7.3.7" + "@commitlint/types": "^17.4.4", + "semver": "7.5.2" } }, "@commitlint/lint": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-17.3.0.tgz", - "integrity": "sha512-VilOTPg0i9A7CCWM49E9bl5jytfTvfTxf9iwbWAWNjxJ/A5mhPKbm3sHuAdwJ87tDk1k4j8vomYfH23iaY+1Rw==", + "version": "17.6.6", + "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-17.6.6.tgz", + "integrity": "sha512-5bN+dnHcRLkTvwCHYMS7Xpbr+9uNi0Kq5NR3v4+oPNx6pYXt8ACuw9luhM/yMgHYwW0ajIR20wkPAFkZLEMGmg==", "dev": true, "requires": { - "@commitlint/is-ignored": "^17.2.0", - "@commitlint/parse": "^17.2.0", - "@commitlint/rules": "^17.3.0", - "@commitlint/types": "^17.0.0" + "@commitlint/is-ignored": "^17.6.6", + "@commitlint/parse": "^17.6.5", + "@commitlint/rules": "^17.6.5", + "@commitlint/types": "^17.4.4" } }, "@commitlint/load": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-17.3.0.tgz", - "integrity": "sha512-u/pV6rCAJrCUN+HylBHLzZ4qj1Ew3+eN9GBPhNi9otGxtOfA8b+8nJSxaNbcC23Ins/kcpjGf9zPSVW7628Umw==", + "version": "17.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-17.5.0.tgz", + "integrity": "sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==", "dev": true, "requires": { - "@commitlint/config-validator": "^17.1.0", - "@commitlint/execute-rule": "^17.0.0", - "@commitlint/resolve-extends": "^17.3.0", - "@commitlint/types": "^17.0.0", - "@types/node": "^14.0.0", + "@commitlint/config-validator": "^17.4.4", + "@commitlint/execute-rule": "^17.4.0", + "@commitlint/resolve-extends": "^17.4.4", + "@commitlint/types": "^17.4.4", + "@types/node": "*", "chalk": "^4.1.0", - "cosmiconfig": "^7.0.0", + "cosmiconfig": "^8.0.0", "cosmiconfig-typescript-loader": "^4.0.0", "lodash.isplainobject": "^4.0.6", "lodash.merge": "^4.6.2", "lodash.uniq": "^4.5.0", "resolve-from": "^5.0.0", "ts-node": "^10.8.1", - "typescript": "^4.6.4" + "typescript": "^4.6.4 || ^5.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz", + "integrity": "sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ==", + "dev": true, + "requires": { + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0" + } + } } }, "@commitlint/message": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-17.2.0.tgz", - "integrity": "sha512-/4l2KFKxBOuoEn1YAuuNNlAU05Zt7sNsC9H0mPdPm3chOrT4rcX0pOqrQcLtdMrMkJz0gC7b3SF80q2+LtdL9Q==", + "version": "17.4.2", + "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-17.4.2.tgz", + "integrity": "sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==", "dev": true }, "@commitlint/parse": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-17.2.0.tgz", - "integrity": "sha512-vLzLznK9Y21zQ6F9hf8D6kcIJRb2haAK5T/Vt1uW2CbHYOIfNsR/hJs0XnF/J9ctM20Tfsqv4zBitbYvVw7F6Q==", + "version": "17.6.5", + "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-17.6.5.tgz", + "integrity": "sha512-0zle3bcn1Hevw5Jqpz/FzEWNo2KIzUbc1XyGg6WrWEoa6GH3A1pbqNF6MvE6rjuy6OY23c8stWnb4ETRZyN+Yw==", "dev": true, "requires": { - "@commitlint/types": "^17.0.0", + "@commitlint/types": "^17.4.4", "conventional-changelog-angular": "^5.0.11", "conventional-commits-parser": "^3.2.2" } }, "@commitlint/read": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-17.2.0.tgz", - "integrity": "sha512-bbblBhrHkjxra3ptJNm0abxu7yeAaxumQ8ZtD6GIVqzURCETCP7Dm0tlVvGRDyXBuqX6lIJxh3W7oyKqllDsHQ==", + "version": "17.5.1", + "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-17.5.1.tgz", + "integrity": "sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==", "dev": true, "requires": { - "@commitlint/top-level": "^17.0.0", - "@commitlint/types": "^17.0.0", - "fs-extra": "^10.0.0", - "git-raw-commits": "^2.0.0", + "@commitlint/top-level": "^17.4.0", + "@commitlint/types": "^17.4.4", + "fs-extra": "^11.0.0", + "git-raw-commits": "^2.0.11", "minimist": "^1.2.6" + }, + "dependencies": { + "fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + } } }, "@commitlint/resolve-extends": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.3.0.tgz", - "integrity": "sha512-Lf3JufJlc5yVEtJWC8o4IAZaB8FQAUaVlhlAHRACd0TTFizV2Lk2VH70et23KgvbQNf7kQzHs/2B4QZalBv6Cg==", + "version": "17.4.4", + "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.4.4.tgz", + "integrity": "sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==", "dev": true, "requires": { - "@commitlint/config-validator": "^17.1.0", - "@commitlint/types": "^17.0.0", + "@commitlint/config-validator": "^17.4.4", + "@commitlint/types": "^17.4.4", "import-fresh": "^3.0.0", "lodash.mergewith": "^4.6.2", "resolve-from": "^5.0.0", @@ -7275,37 +7432,37 @@ } }, "@commitlint/rules": { - "version": "17.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-17.3.0.tgz", - "integrity": "sha512-s2UhDjC5yP2utx3WWqsnZRzjgzAX8BMwr1nltC0u0p8T/nzpkx4TojEfhlsOUj1t7efxzZRjUAV0NxNwdJyk+g==", + "version": "17.6.5", + "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-17.6.5.tgz", + "integrity": "sha512-uTB3zSmnPyW2qQQH+Dbq2rekjlWRtyrjDo4aLFe63uteandgkI+cc0NhhbBAzcXShzVk0qqp8SlkQMu0mgHg/A==", "dev": true, "requires": { - "@commitlint/ensure": "^17.3.0", - "@commitlint/message": "^17.2.0", - "@commitlint/to-lines": "^17.0.0", - "@commitlint/types": "^17.0.0", + "@commitlint/ensure": "^17.4.4", + "@commitlint/message": "^17.4.2", + "@commitlint/to-lines": "^17.4.0", + "@commitlint/types": "^17.4.4", "execa": "^5.0.0" } }, "@commitlint/to-lines": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-17.0.0.tgz", - "integrity": "sha512-nEi4YEz04Rf2upFbpnEorG8iymyH7o9jYIVFBG1QdzebbIFET3ir+8kQvCZuBE5pKCtViE4XBUsRZz139uFrRQ==", + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-17.4.0.tgz", + "integrity": "sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==", "dev": true }, "@commitlint/top-level": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-17.0.0.tgz", - "integrity": "sha512-dZrEP1PBJvodNWYPOYiLWf6XZergdksKQaT6i1KSROLdjf5Ai0brLOv5/P+CPxBeoj3vBxK4Ax8H1Pg9t7sHIQ==", + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-17.4.0.tgz", + "integrity": "sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==", "dev": true, "requires": { "find-up": "^5.0.0" } }, "@commitlint/types": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-17.0.0.tgz", - "integrity": "sha512-hBAw6U+SkAT5h47zDMeOu3HSiD0SODw4Aq7rRNh1ceUmL7GyLKYhPbUvlRWqZ65XjBLPHZhFyQlRaPNz8qvUyQ==", + "version": "17.4.4", + "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-17.4.4.tgz", + "integrity": "sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==", "dev": true, "requires": { "chalk": "^4.1.0" @@ -7395,14 +7552,14 @@ "dev": true }, "@eslint/eslintrc": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz", - "integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.0.tgz", + "integrity": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==", "dev": true, "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.5.1", + "espree": "^9.6.0", "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", @@ -7412,15 +7569,15 @@ } }, "@eslint/js": { - "version": "8.37.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.37.0.tgz", - "integrity": "sha512-x5vzdtOOGgFVDCUs81QRB2+liax8rFg3+7hqM+QhBG0/G3F1ZsoYl97UrqgHgQ9KKT7G6c4V+aTUCgu/n22v1A==", + "version": "8.44.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.44.0.tgz", + "integrity": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==", "dev": true }, "@humanwhocodes/config-array": { - "version": "0.11.8", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", - "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", + "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", "dev": true, "requires": { "@humanwhocodes/object-schema": "^1.2.1", @@ -7440,12 +7597,29 @@ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, "@jridgewell/resolve-uri": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", "dev": true }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, "@jridgewell/sourcemap-codec": { "version": "1.4.14", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", @@ -7503,23 +7677,23 @@ "dev": true }, "@prettier/plugin-php": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@prettier/plugin-php/-/plugin-php-0.19.5.tgz", - "integrity": "sha512-AnmiB76G7qX2d7FbvGgABc3l4dVshOlBqxajiHe8nfMVTzmge7xDhiC28aP8OZafhIRksLKNRB1ZEemfN+j5pg==", + "version": "0.19.6", + "resolved": "https://registry.npmjs.org/@prettier/plugin-php/-/plugin-php-0.19.6.tgz", + "integrity": "sha512-MFaBfdxfTbGNwClJ/EZd2ROTa/Bd7EV+ff2KG769I9RsmNcVWcHARIYlSlJqFGgSbumOm+Ylm6RIXdxb5kG+OA==", "dev": true, "requires": { "linguist-languages": "^7.21.0", "mem": "^8.0.0", - "php-parser": "^3.1.3" + "php-parser": "^3.1.5" } }, "@shufo/prettier-plugin-blade": { - "version": "1.8.12", - "resolved": "https://registry.npmjs.org/@shufo/prettier-plugin-blade/-/prettier-plugin-blade-1.8.12.tgz", - "integrity": "sha512-Ec74bhLCsfs5HNdqajWDzepFFrmEFeI/Bh4HiFY9snqUbMIbzHbXZY2SgHZpm0SaiyCFri/xznpmc8WShF7uIA==", + "version": "1.8.13", + "resolved": "https://registry.npmjs.org/@shufo/prettier-plugin-blade/-/prettier-plugin-blade-1.8.13.tgz", + "integrity": "sha512-J2+fV1Q/xP74oOF6R3BquzUovM213bQe/3L6pIvzPDolPZ22WrHEKi8edvjrOuEpbmNvD/NB8UYSmrn4UNlPLA==", "dev": true, "requires": { - "blade-formatter": "^1.32.12", + "blade-formatter": "^1.32.13", "prettier": "^2.6.2", "synckit": "^0.8.5" } @@ -7614,7 +7788,9 @@ "dev": true }, "acorn": { - "version": "7.4.1", + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", "dev": true }, "acorn-jsx": { @@ -7624,23 +7800,6 @@ "dev": true, "requires": {} }, - "acorn-node": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", - "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "dev": true, - "requires": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" - } - }, - "acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", - "dev": true - }, "aggregate-error": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", @@ -7679,9 +7838,9 @@ } }, "alpinejs": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.12.0.tgz", - "integrity": "sha512-YENcRBA9dlwR8PsZNFMTHbmdlTNwd1BkCeivPvOzzCKHas6AfwNRsDK9UEFmE5dXTMEZjnnpCTxV8vkdpWiOCw==", + "version": "3.12.3", + "resolved": "https://registry.npmjs.org/alpinejs/-/alpinejs-3.12.3.tgz", + "integrity": "sha512-fLz2dfYQ3xCk7Ip8LiIpV2W+9brUyex2TAE7Z0BCvZdUDklJE+n+a8gCgLWzfZ0GzZNZu7HUP8Z0z6Xbm6fsSA==", "requires": { "@vue/reactivity": "~3.1.1" } @@ -7714,6 +7873,12 @@ "color-convert": "^2.0.1" } }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true + }, "anymatch": { "version": "3.1.2", "dev": true, @@ -7792,9 +7957,9 @@ "dev": true }, "blade-formatter": { - "version": "1.32.12", - "resolved": "https://registry.npmjs.org/blade-formatter/-/blade-formatter-1.32.12.tgz", - "integrity": "sha512-Xc1eEy/Adi6DnnUuh9IprD7Kyg2tq/ix3DFnr8AgN3wFg1Ews6vWpA44tuyoigqNHq59ss4JX2cgPkqbMLiurg==", + "version": "1.32.13", + "resolved": "https://registry.npmjs.org/blade-formatter/-/blade-formatter-1.32.13.tgz", + "integrity": "sha512-CQOY2Zt6l+yUN7MmWGdxaZl320oSaJnf9Snrwi1JAoYL83jqwhpR4MCceVKBkUiM9YnPyRP7dTyQeorzOc+yUg==", "dev": true, "requires": { "@prettier/plugin-php": "^0.19.0", @@ -7810,7 +7975,7 @@ "ignore": "^5.1.8", "js-beautify": "^1.14.0", "lodash": "^4.17.19", - "php-parser": "3.1.4", + "php-parser": "3.1.5", "prettier": "^2.2.0", "tailwindcss": "^3.1.8", "vscode-oniguruma": "1.7.0", @@ -8153,9 +8318,9 @@ } }, "core-js-pure": { - "version": "3.30.2", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.30.2.tgz", - "integrity": "sha512-p/npFUJXXBkCCTIlEGBdghofn00jWG6ZOtdoIXSJmAu2QBvN0IqpZXWweOytcwE6cfx8ZvVUy1vw8zxhe4Y2vg==", + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.31.0.tgz", + "integrity": "sha512-/AnE9Y4OsJZicCzIe97JP5XoPKQJfTuEG43aEVLFJGOJpyqELod+pE6LEl63DfG1Mp8wX97LDaDpy1GmLEUxlg==", "dev": true }, "cosmiconfig": { @@ -8236,6 +8401,8 @@ }, "deep-is": { "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true }, "default-browser": { @@ -8340,12 +8507,6 @@ "object-keys": "^1.0.12" } }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==", - "dev": true - }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -8357,17 +8518,6 @@ "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", "dev": true }, - "detective": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", - "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", - "dev": true, - "requires": { - "acorn-node": "^1.8.2", - "defined": "^1.0.0", - "minimist": "^1.2.6" - } - }, "didyoumean": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", @@ -8670,16 +8820,16 @@ "dev": true }, "eslint": { - "version": "8.37.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.37.0.tgz", - "integrity": "sha512-NU3Ps9nI05GUoVMxcZx1J8CNR6xOvUT4jAUMH5+z8lpp3aEdPVCImKw6PWG4PY+Vfkpr+jvMpxs/qoE7wq0sPw==", + "version": "8.44.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.44.0.tgz", + "integrity": "sha512-0wpHoUbDUHgNCyvFB5aXLiQVfK9B0at6gUvzy83k4kAsQ/u769TQDX6iKC+aO4upIHO9WSaA3QoXYQDHbNwf1A==", "dev": true, "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.4.0", - "@eslint/eslintrc": "^2.0.2", - "@eslint/js": "8.37.0", - "@humanwhocodes/config-array": "^0.11.8", + "@eslint/eslintrc": "^2.1.0", + "@eslint/js": "8.44.0", + "@humanwhocodes/config-array": "^0.11.10", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "ajv": "^6.10.0", @@ -8688,9 +8838,9 @@ "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-visitor-keys": "^3.4.0", - "espree": "^9.5.1", + "eslint-scope": "^7.2.0", + "eslint-visitor-keys": "^3.4.1", + "espree": "^9.6.0", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -8698,20 +8848,19 @@ "find-up": "^5.0.0", "glob-parent": "^6.0.2", "globals": "^13.19.0", - "grapheme-splitter": "^1.0.4", + "graphemer": "^1.4.0", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", - "optionator": "^0.9.1", + "optionator": "^0.9.3", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", "text-table": "^0.2.0" @@ -8757,23 +8906,12 @@ "esquery": "^1.4.0", "semver": "^7.3.8", "spdx-expression-parse": "^3.0.1" - }, - "dependencies": { - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } } }, "eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", + "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", "dev": true, "requires": { "esrecurse": "^4.3.0", @@ -8781,28 +8919,20 @@ } }, "eslint-visitor-keys": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", - "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", + "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", "dev": true }, "espree": { - "version": "9.5.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz", - "integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==", + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.0.tgz", + "integrity": "sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==", "dev": true, "requires": { - "acorn": "^8.8.0", + "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.0" - }, - "dependencies": { - "acorn": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", - "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", - "dev": true - } + "eslint-visitor-keys": "^3.4.1" } }, "esquery": { @@ -8875,6 +9005,8 @@ }, "fast-levenshtein": { "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, "fast-sort": { @@ -9115,10 +9247,10 @@ "version": "4.2.8", "dev": true }, - "grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, "hard-rejection": { @@ -9278,9 +9410,9 @@ "dev": true }, "is-core-module": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", - "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", + "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", "dev": true, "requires": { "has": "^1.0.3" @@ -9425,6 +9557,12 @@ "version": "2.0.0", "dev": true }, + "jiti": { + "version": "1.18.2", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", + "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", + "dev": true + }, "js-beautify": { "version": "1.14.8", "resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.14.8.tgz", @@ -9470,12 +9608,6 @@ } } }, - "js-sdsl": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.4.tgz", - "integrity": "sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw==", - "dev": true - }, "js-tokens": { "version": "4.0.0", "dev": true @@ -9561,6 +9693,8 @@ }, "levn": { "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "requires": { "prelude-ls": "^1.2.1", @@ -10006,9 +10140,9 @@ } }, "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true }, "minimist-options": { @@ -10032,6 +10166,17 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, "nanoid": { "version": "3.3.6", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", @@ -10191,6 +10336,12 @@ "path-key": "^3.0.0" } }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, "object-hash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", @@ -10244,15 +10395,17 @@ } }, "optionator": { - "version": "0.9.1", + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dev": true, "requires": { + "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "type-check": "^0.4.0" } }, "os-homedir": { @@ -10336,9 +10489,9 @@ "dev": true }, "php-parser": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.4.tgz", - "integrity": "sha512-WUEfH4FWsVItqgOknM67msDdcUAfgPJsHhPNl6EPXzWtX+PfdY282m4i8YIJ9ALUEhf+qGDajdmW+VYqSd7Deg==", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.5.tgz", + "integrity": "sha512-jEY2DcbgCm5aclzBdfW86GM6VEIWcSlhTBSHN1qhJguVePlYe28GhwS0yoeLYXpM2K8y6wzLwrbq814n2PHSoQ==", "dev": true }, "picocolors": { @@ -10359,6 +10512,12 @@ "version": "3.0.0", "dev": true }, + "pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true + }, "postcss": { "version": "8.4.24", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", @@ -10405,22 +10564,30 @@ } }, "postcss-js": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", - "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", "dev": true, "requires": { "camelcase-css": "^2.0.1" } }, "postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", "dev": true, "requires": { "lilconfig": "^2.0.5", - "yaml": "^1.10.2" + "yaml": "^2.1.1" + }, + "dependencies": { + "yaml": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", + "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", + "dev": true + } } }, "postcss-logical": { @@ -10437,12 +10604,24 @@ "dev": true }, "postcss-nested": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz", - "integrity": "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", + "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", "dev": true, "requires": { - "postcss-selector-parser": "^6.0.10" + "postcss-selector-parser": "^6.0.11" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + } } }, "postcss-resolve-nested-selector": { @@ -10470,6 +10649,8 @@ }, "prelude-ls": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true }, "prettier": { @@ -10679,12 +10860,12 @@ "dev": true }, "resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", + "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", "dev": true, "requires": { - "is-core-module": "^2.9.0", + "is-core-module": "^2.11.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } @@ -10764,9 +10945,9 @@ } }, "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.2.tgz", + "integrity": "sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -11085,6 +11266,43 @@ "dev": true, "requires": {} }, + "sucrase": { + "version": "3.32.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", + "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "dependencies": { + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, "supports-color": { "version": "7.2.0", "dev": true, @@ -11173,34 +11391,34 @@ } }, "tailwindcss": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz", - "integrity": "sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", + "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", "dev": true, "requires": { + "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", "chokidar": "^3.5.3", - "color-name": "^1.1.4", - "detective": "^5.2.1", "didyoumean": "^1.2.2", "dlv": "^1.1.3", "fast-glob": "^3.2.12", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", - "lilconfig": "^2.0.6", + "jiti": "^1.18.2", + "lilconfig": "^2.1.0", "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "object-hash": "^3.0.0", "picocolors": "^1.0.0", - "postcss": "^8.4.18", - "postcss-import": "^14.1.0", - "postcss-js": "^4.0.0", - "postcss-load-config": "^3.1.4", - "postcss-nested": "6.0.0", - "postcss-selector-parser": "^6.0.10", + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", "postcss-value-parser": "^4.2.0", - "quick-lru": "^5.1.1", - "resolve": "^1.22.1" + "resolve": "^1.22.2", + "sucrase": "^3.32.0" }, "dependencies": { "arg": { @@ -11218,22 +11436,21 @@ "is-glob": "^4.0.3" } }, - "postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true + }, + "postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", "dev": true, "requires": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" } - }, - "quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "dev": true } } }, @@ -11247,6 +11464,24 @@ "version": "0.2.0", "dev": true }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, "through": { "version": "2.3.8", "dev": true @@ -11286,6 +11521,12 @@ "version": "3.0.1", "dev": true }, + "ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true + }, "ts-node": { "version": "10.9.1", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", @@ -11307,12 +11548,6 @@ "yn": "3.1.1" }, "dependencies": { - "acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", - "dev": true - }, "acorn-walk": { "version": "8.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", @@ -11329,6 +11564,8 @@ }, "type-check": { "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "requires": { "prelude-ls": "^1.2.1" @@ -11509,10 +11746,6 @@ "resolved": "https://registry.npmjs.org/wicg-inert/-/wicg-inert-3.1.2.tgz", "integrity": "sha512-Ba9tGNYxXwaqKEi9sJJvPMKuo063umUPsHN0JJsjrs2j8KDSzkWLMZGZ+MH1Jf1Fq4OWZ5HsESJID6nRza2ang==" }, - "word-wrap": { - "version": "1.2.3", - "dev": true - }, "wrap-ansi": { "version": "7.0.0", "dev": true, @@ -11545,10 +11778,6 @@ "@babel/runtime-corejs3": "^7.16.5" } }, - "xtend": { - "version": "4.0.2", - "dev": true - }, "y18n": { "version": "5.0.8", "dev": true diff --git a/package.json b/package.json index f10ef5bf3..17afcdde0 100644 --- a/package.json +++ b/package.json @@ -28,12 +28,12 @@ ] }, "devDependencies": { - "@commitlint/cli": "^17.3.0", + "@commitlint/cli": "^17.6.6", "@commitlint/config-conventional": "^17.6.1", - "@shufo/prettier-plugin-blade": "^1.8.12", + "@shufo/prettier-plugin-blade": "^1.8.13", "@tailwindcss/typography": "^0.5.9", "autoprefixer": "^10.4.14", - "eslint": "^8.37.0", + "eslint": "^8.44.0", "eslint-config-fluid": "^2.1.1", "eslint-config-prettier": "^8.8.0", "husky": "^8.0.3", @@ -52,7 +52,7 @@ "stylelint-config-standard": "^29.0.0", "stylelint-order": "^5.0.0", "stylelint-use-logical-spec": "^4.1.0", - "tailwindcss": "^3.2.4", + "tailwindcss": "^3.3.2", "tippy.js": "^6.3.7", "vite": "^3.2.2", "vite-plugin-full-reload": "^1.0.5", @@ -62,7 +62,7 @@ "dependencies": { "@alpinejs/mask": "^3.12.0", "@vimeo/player": "^2.18.0", - "alpinejs": "^3.12.0", + "alpinejs": "^3.12.3", "axios": "^1.2.2", "infusion": "^4.6.0", "luxon": "^3.0.4", diff --git a/resources/css/_tokens.css b/resources/css/_tokens.css index 74e916453..8e7c41c2b 100644 --- a/resources/css/_tokens.css +++ b/resources/css/_tokens.css @@ -1,4 +1,4 @@ -/* VARIABLES GENERATED WITH TAILWIND CONFIG ON 6/21/2023. +/* VARIABLES GENERATED WITH TAILWIND CONFIG ON 7/25/2023. Tokens location: ./tailwind.config.js */ :root { --space-0: 0; @@ -33,6 +33,7 @@ --space-72: 18rem; --space-80: 20rem; --space-96: 24rem; + --space-100: 25rem; --space-192: 48rem; --space-240: 60rem; --space-px: 1px; diff --git a/resources/css/components/_navigation.css b/resources/css/components/_navigation.css index ae3eed57a..4327faa9f 100644 --- a/resources/css/components/_navigation.css +++ b/resources/css/components/_navigation.css @@ -205,6 +205,10 @@ button.nav-button .indicator { z-index: 1; } +.secondary .nav-link { + display: inline-block; +} + @media (min-width: 48rem) { .primary ul, .languages ul ul, diff --git a/resources/css/components/_quiz.css b/resources/css/components/_quiz.css index 49f3c040c..83ff28fd5 100644 --- a/resources/css/components/_quiz.css +++ b/resources/css/components/_quiz.css @@ -8,6 +8,11 @@ color: var(--theme-color-error, var(--color-red-8)); } +.questions { + list-style-type: none; + padding-inline-start: 0; +} + .question > .banner p { justify-content: flex-start; } diff --git a/resources/css/routes/courses/_course.css b/resources/css/routes/courses/_course.css new file mode 100644 index 000000000..eacd8d3a9 --- /dev/null +++ b/resources/css/routes/courses/_course.css @@ -0,0 +1,5 @@ +@supports (width: min(var(--space-100), 100%)) { + .course .grid { + --grid-cell-min-width: var(--space-100); + } +} diff --git a/resources/lang/en.json b/resources/lang/en.json index e926f61ec..def438ebb 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -3,13 +3,8 @@ "\"About your organization\" (French)": "\"About your organization\" (French)", "\"stalk\" or otherwise harass another person;": "\"stalk\" or otherwise harass another person;", "(a)\tYou agree to release, indemnify and hold IRIS and its affiliates and their officers, employees, directors and agents (collectively, “**Indemnitees**”) harmless from any and all losses, damages, expenses, liability, or costs, including reasonable attorneys’ fees, rights, claims, actions of any kind and injury (including death) arising out of or relating to (i) your access, use and\/or misuse of the Platform; (ii) any of your User Content, including any claim by a third party that the display or other use of User Content infringes the intellectual property or other rights of a third party; (iii) your violation of these Terms or your violation of any rights of another; (iv) access and use of your Registration Information by any third parties; (v) any use of your Registration Information by an Underaged Person; or (vi) claims asserted against the Indemnitees by another User or third party arising as a consequence of User’s act, omission or conduct in relation to the use of the Platform and Services, or a Third Party Service, or any activities ancillary thereto.": "(a)\tYou agree to release, indemnify and hold IRIS and its affiliates and their officers, employees, directors and agents (collectively, “**Indemnitees**”) harmless from any and all losses, damages, expenses, liability, or costs, including reasonable attorneys’ fees, rights, claims, actions of any kind and injury (including death) arising out of or relating to (i) your access, use and\/or misuse of the Platform; (ii) any of your User Content, including any claim by a third party that the display or other use of User Content infringes the intellectual property or other rights of a third party; (iii) your violation of these Terms or your violation of any rights of another; (iv) access and use of your Registration Information by any third parties; (v) any use of your Registration Information by an Underaged Person; or (vi) claims asserted against the Indemnitees by another User or third party arising as a consequence of User’s act, omission or conduct in relation to the use of the Platform and Services, or a Third Party Service, or any activities ancillary thereto.", - "(current format)": "(current format)", - "(current page)": "(current page)", "(optional)": "(optional)", "(required)": "(required)", - "(required)*": "(required)*", - "(such as broken limb, gestational diabetes)": "(such as broken limb, gestational diabetes)", - "(Support person, :name)": "(Support person, :name)", "**A community organization** who represents or supports the disability or Deaf community": "**A community organization** who represents or supports the disability or Deaf community", "**Applicable Laws.** You agree that you are responsible for, and agree to abide by, all laws, rules, and regulations applicable to your use of the Platform, your use of any tool, service or product offered on the Platform and any transaction or agreement you enter into on the Platform or in connection with your use of the Platform. You further agree that you are responsible for and agree to abide by all laws, rules and regulations applicable to the Project, including any and all laws, rules, regulations or other requirements relating to taxes, credit cards, data and privacy, accessibility, and compliance with all anti-discrimination laws, as applicable.": "**Applicable Laws.** You agree that you are responsible for, and agree to abide by, all laws, rules, and regulations applicable to your use of the Platform, your use of any tool, service or product offered on the Platform and any transaction or agreement you enter into on the Platform or in connection with your use of the Platform. You further agree that you are responsible for and agree to abide by all laws, rules and regulations applicable to the Project, including any and all laws, rules, regulations or other requirements relating to taxes, credit cards, data and privacy, accessibility, and compliance with all anti-discrimination laws, as applicable.", "**Assignment.** You may not assign these Terms without the prior written consent of IRIS, but IRIS may assign or transfer these Terms, in whole or in part, without restriction.": "**Assignment.** You may not assign these Terms without the prior written consent of IRIS, but IRIS may assign or transfer these Terms, in whole or in part, without restriction.", @@ -53,7 +48,6 @@ "**Use of the Platform.** IRIS authorizes You to access and use the Platform solely for the purpose of searching, accessing, downloading and reviewing Platform content (in print, audio, video or other provided format) for informational purposes only and solely for your own use.": "**Use of the Platform.** IRIS authorizes You to access and use the Platform solely for the purpose of searching, accessing, downloading and reviewing Platform content (in print, audio, video or other provided format) for informational purposes only and solely for your own use.", "**User Content.** IRIS does not claim ownership of any User Content you provide to IRIS (including feedback and suggestions) via the Platform. Unless otherwise specified, you retain copyright and any other rights you already hold over User Content that you create and submit, post, or display on or through the Platform. However, by submitting, posting, or displaying User Content, you give IRIS and its affiliates and their successors and assigns a perpetual, irrevocable, worldwide, royalty-free, fully paid up, sublicensable and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display, distribute, Upload, store, edit, reformat, otherwise use and create derivative works from any User Content that you submit, post, or display on or through the Platform.": "**User Content.** IRIS does not claim ownership of any User Content you provide to IRIS (including feedback and suggestions) via the Platform. Unless otherwise specified, you retain copyright and any other rights you already hold over User Content that you create and submit, post, or display on or through the Platform. However, by submitting, posting, or displaying User Content, you give IRIS and its affiliates and their successors and assigns a perpetual, irrevocable, worldwide, royalty-free, fully paid up, sublicensable and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display, distribute, Upload, store, edit, reformat, otherwise use and create derivative works from any User Content that you submit, post, or display on or through the Platform.", "**Waiver.** No failure or delay by IRIS in exercising any right hereunder will waive any further exercise of that right.": "**Waiver.** No failure or delay by IRIS in exercising any right hereunder will waive any further exercise of that right.", - "* means that a field is required.": "* means that a field is required.", "*Yukon and parts of British Columbia observe Mountain Standard Time all year.": "*Yukon and parts of British Columbia observe Mountain Standard Time all year.", "1 new person accepted their invitation for :engagement": "1 new person accepted their invitation for :engagement", "1 new person accepted your invitation for :engagement": "1 new person accepted your invitation for :engagement", @@ -76,57 +70,27 @@ "3. Work directly with governments and businesses": "3. Work directly with governments and businesses", "3. Work directly with people on your accessibility project": "3. Work directly with people on your accessibility project", "8 characters or more": "8 characters or more", - ":access_support added for :engagement": ":access_support added for :engagement", ":account and its users have been suspended.": ":account and its users have been suspended.", ":account has been approved.": ":account has been approved.", ":account has been suspended.": ":account has been suspended.", ":blockable could not be unblocked because it was not on your block list.": ":blockable could not be unblocked because it was not on your block list.", ":blockable is already on your block list.": ":blockable is already on your block list.", - ":correct out of :total questions were answered correctly. You have now completed all the webinars in this course.": ":correct out of :total questions were answered correctly. You have now completed all the webinars in this course.", - ":correct out of :total questions were answered correctly. You have now completed this webinar. You have :unfinished more webinars to finish in order to complete this training.": ":correct out of :total questions were answered correctly. You have now completed this webinar. You have :unfinished more webinars to finish in order to complete this training.", - ":count access needs": ":count access needs", ":count access needs listed": ":count access needs listed", - ":count engagements": ":count engagements", - ":count members of your organization": ":count members of your organization", ":count more unread": ":count more unread", - ":count projects": ":count projects", ":count projects match your applied filters.": ":count projects match your applied filters.", - ":count results for": ":count results for", ":count results for “:searchQuery": ":count results for “:searchQuery", ":count results for “:searchQuery”.": ":count results for “:searchQuery”.", - ":count results for “:search” found": ":count results for “:search” found", - ":engagement has been changed to :date at :time. They are meeting :location.": ":engagement has been changed to :date at :time. They are meeting :location.", - ":engagement has been confirmed for :date at :time. They are meeting :location.": ":engagement has been confirmed for :date at :time. They are meeting :location.", - ":engagement is now having an open call for participants.": ":engagement is now having an open call for participants.", - ":engagement run by :projectable is seeking participants": ":engagement run by :projectable is seeking participants", - ":engagement time changed": ":engagement time changed", - ":engagement time confirmed": ":engagement time confirmed", ":label (:locale)": ":label (:locale)", ":locality, :region": ":locality, :region", ":model is already translatable into :language.": ":model is already translatable into :language.", ":model was not translatable into :language.": ":model was not translatable into :language.", - ":name has accepted your invitation to join your organization.": ":name has accepted your invitation to join your organization.", - ":name has joined your organization": ":name has joined your organization", ":name navigation": ":name navigation", ":name participants navigation": ":name participants navigation", ":name requires access needs facilitation": ":name requires access needs facilitation", - ":name shares **some** of this lived experience.": ":name shares **some** of this lived experience.", ":notificationable could not be removed because it was not on your notification list.": ":notificationable could not be removed because it was not on your notification list.", ":notificationable is already on your notification list.": ":notificationable is already on your notification list.", - ":numRSVPs new RSVPs to your engagement, :engagement": ":numRSVPs new RSVPs to your engagement, :engagement", - ":organization Accessibility Principles": ":organization Accessibility Principles", - ":percentage of your participants fall into more than one of these groups.": ":percentage of your participants fall into more than one of these groups.", - ":percentage of your participants identify with more than one of the following.": ":percentage of your participants identify with more than one of the following.", - ":projectable has added :access_support for :engagement.": ":projectable has added :access_support for :engagement.", ":projectable has approved an estimate for their project **:project**.": ":projectable has approved an estimate for their project **:project**.", - ":projectable has created a new engagement, :engagement. This is a part of :project.": ":projectable has created a new engagement, :engagement. This is a part of :project.", - ":projectable has created a new project, :project.": ":projectable has created a new project, :project.", ":projectable has requested an estimate for their project **:project**.": ":projectable has requested an estimate for their project **:project**.", - ":project by :projectable seeking Accessibility Consultant": ":project by :projectable seeking Accessibility Consultant", - ":project by :projectable seeking Community connector": ":project by :projectable seeking Community connector", - ":project is looking for a Community Connector to for their engagement, :engagement.": ":project is looking for a Community Connector to for their engagement, :engagement.", - ":project is looking for an Accessibility Consultant.": ":project is looking for an Accessibility Consultant.", - ":projects projects and :engagements engagements you are running": ":projects projects and :engagements engagements you are running", ":role Invitation": ":role Invitation", ":service": ":service", ":signLanguage (with :locale)": ":signLanguage (with :locale)", @@ -137,7 +101,6 @@ "About the Accessibility Exchange": "About the Accessibility Exchange", "About the organization": "About the organization", "About the project team": "About the project team", - "About the systemic barriers (laws, policies, practices, and culture) underlying the experiences that consultation participants report": "About the systemic barriers (laws, policies, practices, and culture) underlying the experiences that consultation participants report", "About this course": "About this course", "About you": "About you", "About your organization": "About your organization", @@ -147,14 +110,11 @@ "Accepted formats": "Accepted formats", "accepted formats": "accepted formats", "Accept Invitation": "Accept Invitation", - "Accept invitation": "Accept invitation", "Accept your invitation by clicking the button below.": "Accept your invitation by clicking the button below.", - "Access :language version": "Access :language version", "ACCESS AND USE OF THE PLATFORM": "ACCESS AND USE OF THE PLATFORM", "Access governments and businesses who are looking for a Community Connector to help with a project.": "Access governments and businesses who are looking for a Community Connector to help with a project.", "Access governments and businesses who are looking for an accessibility consultant to help with a project.": "Access governments and businesses who are looking for an accessibility consultant to help with a project.", "Accessibility and inclusion": "Accessibility and inclusion", - "Accessibility and Inclusion": "Accessibility and Inclusion", "accessibility and inclusion link": "accessibility and inclusion link", "Accessibility and inclusion links": "Accessibility and inclusion links", "accessibility and inclusion link title": "accessibility and inclusion link title", @@ -163,14 +123,11 @@ "Accessibility Consultants": "Accessibility Consultants", "Accessibility Consultants could help you design consultations that are inclusive and accessible.": "Accessibility Consultants could help you design consultations that are inclusive and accessible.", "Accessibility Consultants — Individual": "Accessibility Consultants — Individual", - "Accessibility preferences": "Accessibility preferences", "Accessibility project by [:projectable](:url)": "Accessibility project by [:projectable](:url)", "Accessible consultation": "Accessible consultation", - "Access more resources": "Access more resources", "Access need": "Access need", "Access needs": "Access needs", "Access Needs": "Access Needs", - "Access needs and accommodations": "Access needs and accommodations", "Access needs for any materials you may be sent.": "Access needs for any materials you may be sent.", "Access needs for consultations": "Access needs for consultations", "Access needs for when you agree to attend a meeting in real-time, either in-person or virtually.": "Access needs for when you agree to attend a meeting in real-time, either in-person or virtually.", @@ -189,21 +146,18 @@ "Account suspended": "Account suspended", "Account suspension lifted": "Account suspension lifted", "Account type": "Account type", - "Across the country": "Across the country", "Active": "Active", "Add :locale translation of :label": "Add :locale translation of :label", "Add a language": "Add a language", "Add a location": "Add a location", "Add another language": "Add another language", "Add another link": "Add another link", - "Add another location": "Add another location", "Add a training": "Add a training", "Add Community Connector": "Add Community Connector", "Added on :date": "Added on :date", "Add experience": "Add experience", "Additional information to join": "Additional information to join", "additional information to join": "additional information to join", - "Additional information to join:": "Additional information to join:", "Additional needs or concerns": "Additional needs or concerns", "Add language": "Add language", "Add link": "Add link", @@ -211,22 +165,17 @@ "Add new meeting": "Add new meeting", "Add participant": "Add participant", "Address": "Address", - "Address:": "Address:", "Add to my notification list": "Add to my notification list", - "Add training": "Add training", - "Add translation": "Add translation", "add your own headers, forge headers, or otherwise manipulate identifiers in a manner not permitted by the Platform, in order to disguise the origin of any User Content transmitted through the Platform;": "add your own headers, forge headers, or otherwise manipulate identifiers in a manner not permitted by the Platform, in order to disguise the origin of any User Content transmitted through the Platform;", "Adjust settings that will help you use this website.": "Adjust settings that will help you use this website.", "Administrator": "Administrator", "advertise or offer to sell or buy any goods or services for any business purpose that is not specifically authorized;": "advertise or offer to sell or buy any goods or services for any business purpose that is not specifically authorized;", "A follow-up to a previous project (such as a progress report)": "A follow-up to a previous project (such as a progress report)", "African": "African", - "After the consultation follow up with participants to share next steps and your organization’s plan for implementing their feedback. This can help foster confidence in your commitment, and an ongoing relationship with your participants, who can be involved in future updates of your accessibility plan.": "After the consultation follow up with participants to share next steps and your organization’s plan for implementing their feedback. This can help foster confidence in your commitment, and an ongoing relationship with your participants, who can be involved in future updates of your accessibility plan.", "Age": "Age", "Age group": "Age group", "age group": "age group", "Age groups": "Age groups", - "Age groups they can connect to": "Age groups they can connect to", "Agreement pending": "Agreement pending", "Agreement received": "Agreement received", "Agreements": "Agreements", @@ -238,13 +187,10 @@ "All participant spots have been filled.": "All participant spots have been filled.", "All provinces and territories": "All provinces and territories", "All rights reserved.": "All rights reserved.", - "All the training I am doing or have done.": "All the training I am doing or have done.", "Alternative text for images": "Alternative text for images", "Although it is not compulsory, we highly recommend that you include English and French translations of your content.": "Although it is not compulsory, we highly recommend that you include English and French translations of your content.", "A meeting title must be provided in at least English or French.": "A meeting title must be provided in at least English or French.", - "American Sign Language (ASL)": "American Sign Language (ASL)", "Analysis of collected information": "Analysis of collected information", - "Analyze the outcomes of your consultation with people who are in the context of disability and Deaf groups.": "Analyze the outcomes of your consultation with people who are in the context of disability and Deaf groups.", "An approximate response time must be provided in at least one language.": "An approximate response time must be provided in at least one language.", "An engagement description must be provided in at least English or French.": "An engagement description must be provided in at least English or French.", "An engagement involves a group of people participating in one set way (for example, a focus group or a survey). An engagement like a focus group can have multiple meetings.": "An engagement involves a group of people participating in one set way (for example, a focus group or a survey). An engagement like a focus group can have multiple meetings.", @@ -261,8 +207,6 @@ "ANY SERVICE CONTENT DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PLATFORM IS DONE AT YOUR OWN DISCRETION AND RISK AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OF ANY SUCH MATERIAL.": "ANY SERVICE CONTENT DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PLATFORM IS DONE AT YOUR OWN DISCRETION AND RISK AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OF ANY SUCH MATERIAL.", "Application for Accessibility Consultant": "Application for Accessibility Consultant", "Application for Community Connector": "Application for Community Connector", - "Apply filter": "Apply filter", - "Apply filters": "Apply filters", "Approval status": "Approval status", "Approve": "Approve", "Approved": "Approved", @@ -279,19 +223,14 @@ "areas of impact": "areas of impact", "Areas of interest": "Areas of interest", "Areas of your organization this project will impact": "Areas of your organization this project will impact", - "Areas where the organization serves": "Areas where the organization serves", "area type": "area type", - "Are you able to attend consultations in real-time, or do you prefer to receive the materials (ex. questions, discussion topics) and record your responses at your own pace?": "Are you able to attend consultations in real-time, or do you prefer to receive the materials (ex. questions, discussion topics) and record your responses at your own pace?", "Are you looking for individuals in specific provinces or territories or specific cities or towns?": "Are you looking for individuals in specific provinces or territories or specific cities or towns?", "Are you sure you want to block :blockable?": "Are you sure you want to block :blockable?", "Are you sure you want to delete your account?": "Are you sure you want to delete your account?", - "Are you sure you want to delete your organization, :organization?": "Are you sure you want to delete your organization, :organization?", "Are you sure you want to leave :organization?": "Are you sure you want to leave :organization?", "Are you sure you want to leave this engagement? You’ll still be able to sign up for this engagement again before the sign up deadline.": "Are you sure you want to leave this engagement? You’ll still be able to sign up for this engagement again before the sign up deadline.", "Are you sure you want to remove :language? Any translations that you’ve entered will be lost.": "Are you sure you want to remove :language? Any translations that you’ve entered will be lost.", "Are you sure you want to remove :member from :organization? You cannot undo this.": "Are you sure you want to remove :member from :organization? You cannot undo this.", - "Are you sure you want to remove :name from :organization? You cannot undo this.": "Are you sure you want to remove :name from :organization? You cannot undo this.", - "Are you sure you want to unblock them?": "Are you sure you want to unblock them?", "As a :organizationType, you can engage with individuals to get input for your projects.": "As a :organizationType, you can engage with individuals to get input for your projects.", "As a Community Connector": "As a Community Connector", "As a Community Connector, :name can connect to:": "As a Community Connector, :name can connect to:", @@ -301,7 +240,6 @@ "As an Accessibility Consultant, we can help with:": "As an Accessibility Consultant, we can help with:", "As an individual with a disability, Deaf person, or a supporter, you can participate in consultations by organizations and businesses who are working on accessibility projects and get paid for this. You can also gain access to resources and training on how to do this.": "As an individual with a disability, Deaf person, or a supporter, you can participate in consultations by organizations and businesses who are working on accessibility projects and get paid for this. You can also gain access to resources and training on how to do this.", "Asian": "Asian", - "Ask participants ahead of time about their access needs for the consultation. You can use an Access Form to get information on what people need to participate. Please see the resource, [Access Form Template](:url). If you need assistance in providing accommodation support, please contact us at [info@accessibilityexchange.ca](:email).": "Ask participants ahead of time about their access needs for the consultation. You can use an Access Form to get information on what people need to participate. Please see the resource, [Access Form Template](:url). If you need assistance in providing accommodation support, please contact us at [info@accessibilityexchange.ca](:email).", "Atlantic Standard or Daylight Time": "Atlantic Standard or Daylight Time", "At least 1 number": "At least 1 number", "At least 1 special character (!@#$%^&*()-)": "At least 1 special character (!@#$%^&*()-)", @@ -309,15 +247,12 @@ "At least 1 upper case letter": "At least 1 upper case letter", "At present, you have no unread notifications.": "At present, you have no unread notifications.", "Attend an interview in real time.": "Attend an interview in real time.", - "Attend an orientation session": "Attend an orientation session", "Attended": "Attended", "Audio": "Audio", "Audio description for visuals": "Audio description for visuals", "Audio versions of engagement documents": "Audio versions of engagement documents", "A user with this email already exists.": "A user with this email already exists.", - "Author": "Author", "Author: :author": "Author: :author", - "Authored by :author": "Authored by :author", "Author name": "Author name", "author organization": "author organization", "availability for Friday": "availability for Friday", @@ -329,19 +264,16 @@ "availability for Wednesday": "availability for Wednesday", "available": "available", "Available": "Available", - "Available :start to :end :timeZone": "Available :start to :end :timeZone", "Available courses": "Available courses", "Back": "Back", - "Back to dashboard": "Back to dashboard", + "Back to course page": "Back to course page", "Back to top": "Back to top", - "Back to training home page": "Back to training home page", "Banks, federal transportation network (airlines, rail, road and marine transportation providers that cross provincial or international borders), atomic energy, postal and courier services, the broadcasting and telecommunications sectors": "Banks, federal transportation network (airlines, rail, road and marine transportation providers that cross provincial or international borders), atomic energy, postal and courier services, the broadcasting and telecommunications sectors", "Baseline access needs": "Baseline access needs", "Basic information about you": "Basic information about you", "Be a Community Connector": "Be a Community Connector", "Be a Consultation Participant": "Be a Consultation Participant", "Be an Accessibility Consultant": "Be an Accessibility Consultant", - "Before you can use your account, you must have completed all the previous steps.": "Before you can use your account, you must have completed all the previous steps.", "Be invited by a Community Connector (someone with lived experience of disability or is Deaf that organizations hire to help recruit)": "Be invited by a Community Connector (someone with lived experience of disability or is Deaf that organizations hire to help recruit)", "Be matched based on what your lived experiences are": "Be matched based on what your lived experiences are", "Between which times during the day will the interviews take place?": "Between which times during the day will the interviews take place?", @@ -355,29 +287,17 @@ "Blocked individuals and organizations": "Blocked individuals and organizations", "Body differences": "Body differences", "Booking accessibility service providers": "Booking accessibility service providers", - "Booking access supports": "Booking access supports", "Braille version of engagement documents": "Braille version of engagement documents", "Bring my service or therapy animal": "Bring my service or therapy animal", "Bring my support person": "Bring my support person", "British Columbia": "British Columbia", - "Browse Accessibility Consultants": "Browse Accessibility Consultants", "Browse all projects": "Browse all projects", "Browse all resources": "Browse all resources", - "Browse all the trainings on this website.": "Browse all the trainings on this website.", - "Browse by services": "Browse by services", "Browse Community Connectors": "Browse Community Connectors", "Browse community organizations": "Browse community organizations", - "Browse file": "Browse file", "Browse for an Community Connector": "Browse for an Community Connector", "Browse individuals": "Browse individuals", - "Browse our resources": "Browse our resources", "Browse regulated organizations": "Browse regulated organizations", - "Browse resources by :creator": "Browse resources by :creator", - "Browse resources for Community Connectors and Accessibility Consultants": "Browse resources for Community Connectors and Accessibility Consultants", - "Browse resources for community organizations": "Browse resources for community organizations", - "Browse resources for Consultation Participants": "Browse resources for Consultation Participants", - "Browse resources for Regulated Organizations": "Browse resources for Regulated Organizations", - "Browse trainings": "Browse trainings", "Built environment": "Built environment", "Business": "Business", "Businesses and government can find Community Organizations on this website, and use the contact information to directly reach out. From there, they can hire you consult with them.": "Businesses and government can find Community Organizations on this website, and use the contact information to directly reach out. From there, they can hire you consult with them.", @@ -390,10 +310,8 @@ "Cancel engagement": "Cancel engagement", "Cancel invitation": "Cancel invitation", "Cancel invitation for :email": "Cancel invitation for :email", - "Cancelled": "Cancelled", "Cancel project": "Cancel project", "Can create and edit the organization page, projects, and engagements.": "Can create and edit the organization page, projects, and engagements.", - "Can I learn more about participating in a consultation?": "Can I learn more about participating in a consultation?", "Can only view the organization page, projects, and engagements.": "Can only view the organization page, projects, and engagements.", "Can you connect to a specific age bracket or brackets?": "Can you connect to a specific age bracket or brackets?", "Can you connect to a specific ethnoracial identity or identities?": "Can you connect to a specific ethnoracial identity or identities?", @@ -407,16 +325,14 @@ "Cash": "Cash", "Central Standard or Daylight Time": "Central Standard or Daylight Time", "Central Standard Time**": "Central Standard Time**", - "Change colour contrast, turn on text to speech, and turn on Sign Language videos.": "Change colour contrast, turn on text to speech, and turn on Sign Language videos.", "Change colour contrast and turn on text to speech.": "Change colour contrast and turn on text to speech.", "Change email": "Change email", - "Change language": "Change language", "Change login email": "Change login email", "Change password": "Change password", - "Change resource format and language": "Change resource format and language", "Change the colour of the text and background.": "Change the colour of the text and background.", "Cheque": "Cheque", "Children (under 15)": "Children (under 15)", + "Choices for: :question": "Choices for: :question", "Choose a community organization…": "Choose a community organization…", "Choose a language…": "Choose a language…", "Choose a month…": "Choose a month…", @@ -434,27 +350,22 @@ "Clear filters": "Clear filters", "Click the link above to sign up for an orientation session. (This will lead you to an external site, and when you’re done it will bring you back automatically.)": "Click the link above to sign up for an orientation session. (This will lead you to an external site, and when you’re done it will bring you back automatically.)", "Cluster": "Cluster", - "Co-design": "Co-design", "Cognitive disabilities": "Cognitive disabilities", "Collaboration Preferences": "Collaboration Preferences", "collect, aggregate, copy, scrape, duplicate, display or derivatively use the Platform;": "collect, aggregate, copy, scrape, duplicate, display or derivatively use the Platform;", "Collection": "Collection", "Collections this resource appears in": "Collections this resource appears in", - "communicate with you": "communicate with you", "Communication": "Communication", "Communication and consultation preferences": "Communication and consultation preferences", "Communication disabilities": "Communication disabilities", "Communications": "Communications", "Communities served": "Communities served", "Communities we :represent_or_serve_and_support": "Communities we :represent_or_serve_and_support", - "Communities we represent": "Communities we represent", "Communities you can connect to": "Communities you can connect to", "Communities your organization :represents_or_serves_and_supports": "Communities your organization :represents_or_serves_and_supports", - "Communities your organization serves": "Communities your organization serves", "Community Connector": "Community Connector", "Community connector application": "Community connector application", "Community Connectors": "Community Connectors", - "Community Connectors and Accessibility Consultants": "Community Connectors and Accessibility Consultants", "Community Connectors could help you connect with groups that may be hard to reach otherwise.": "Community Connectors could help you connect with groups that may be hard to reach otherwise.", "Community Connectors — Individual": "Community Connectors — Individual", "Community organization": "Community organization", @@ -463,15 +374,12 @@ "Community organizations": "Community organizations", "Community Organizations": "Community Organizations", "Community organizations could provide research, recommendations, and also support the interpretation of your consultation results to deepen your understanding of Deaf and disability access.": "Community organizations could provide research, recommendations, and also support the interpretation of your consultation results to deepen your understanding of Deaf and disability access.", - "Community organizations with expertise in disability and Deaf issues, as well as issues effecting other systemically marginalized populations can help you make sense of your consultation findings. They can help to identify the structural barriers (in law, policy, practice, and culture) that underlay people’s lived\/living experience. As well, they can point to strategies for addressing those barriers. Because of their service provision, longstanding engagement with and leadership by people with disabilities and Deaf persons and\/or other systemically marginalized groups, community organizations can provide the broader context for interpreting your results. Many also have access to complementary research resources – both quantitative sources, and secondary qualitative information to help you understand how widespread the issues are that participants raise.": "Community organizations with expertise in disability and Deaf issues, as well as issues effecting other systemically marginalized populations can help you make sense of your consultation findings. They can help to identify the structural barriers (in law, policy, practice, and culture) that underlay people’s lived\/living experience. As well, they can point to strategies for addressing those barriers. Because of their service provision, longstanding engagement with and leadership by people with disabilities and Deaf persons and\/or other systemically marginalized groups, community organizations can provide the broader context for interpreting your results. Many also have access to complementary research resources – both quantitative sources, and secondary qualitative information to help you understand how widespread the issues are that participants raise.", - "Community they serve: :community": "Community they serve: :community", "Compensation": "Compensation", "Complete": "Complete", "Completed": "Completed", "completed": "completed", "Completed documents are due by:": "Completed documents are due by:", "Completed materials are due by": "Completed materials are due by", - "Completed on :date": "Completed on :date", "CONDITIONS OF USE.": "CONDITIONS OF USE.", "Confirm": "Confirm", "Confirm and sign up": "Confirm and sign up", @@ -482,7 +390,6 @@ "Confirm your access needs": "Confirm your access needs", "Confirm your participant selection criteria": "Confirm your participant selection criteria", "Confirm your password": "Confirm your password", - "Congratulations! You have now completed this course.": "Congratulations! You have now completed this course.", "Congratulations! You have passed the quiz.": "Congratulations! You have passed the quiz.", "Congratulations! You have passed the quiz with :score%.": "Congratulations! You have passed the quiz with :score%.", "Congratulations! Your have successfully published your :model page.": "Congratulations! Your have successfully published your :model page.", @@ -500,7 +407,6 @@ "Consultations": "Consultations", "Consulting services": "Consulting services", "Consulting with a Community Organization": "Consulting with a Community Organization", - "Consult people more than once": "Consult people more than once", "Contact": "Contact", "Contact :contact_person_name from :projectable at:": "Contact :contact_person_name from :projectable at:", "Contact :name": "Contact :name", @@ -520,7 +426,6 @@ "Continue": "Continue", "Contracted": "Contracted", "Contracts": "Contracts", - "Contrast": "Contrast", "Contrast adjustment": "Contrast adjustment", "Cookies are pieces of information saved about you. This helps us remember your access settings, like your language or colour contrast mode.": "Cookies are pieces of information saved about you. This helps us remember your access settings, like your language or colour contrast mode.", "Coordinate directly with governments and businesses on what help they need and whom they are seeking.": "Coordinate directly with governments and businesses on what help they need and whom they are seeking.", @@ -533,14 +438,10 @@ "Create Account": "Create Account", "Create an account": "Create an account", "Create an account, if you don’t already have one.": "Create an account, if you don’t already have one.", - "Create and implement inclusive and accessible consultations for your organization": "Create and implement inclusive and accessible consultations for your organization", - "Create an engagement": "Create an engagement", "Create a new engagement": "Create a new engagement", "Create a new project": "Create a new project", - "Create another engagement": "Create another engagement", "Create a project": "Create a project", "Create a public page": "Create a public page", - "Create a public profile": "Create a public profile", "Create engagement": "Create engagement", "Create new :type": "Create new :type", "Create new community organization": "Create new community organization", @@ -550,15 +451,12 @@ "Create organization profile": "Create organization profile", "Create regulated organization": "Create regulated organization", "Create regulated organization profile": "Create regulated organization profile", - "Create selection criteria": "Create selection criteria", - "Create your :role page": "Create your :role page", "Create your first project": "Create your first project", "Create your organization page": "Create your organization page", "Create your organization’s page": "Create your organization’s page", "Create your project page": "Create your project page", "creating an open project, where anyone who matches their criteria can sign up. ": "creating an open project, where anyone who matches their criteria can sign up. ", "Cross disability (includes people with disabilities, Deaf people, and supporters)": "Cross disability (includes people with disabilities, Deaf people, and supporters)", - "Cross disability (including people with disabilities, Deaf people, and supporters)": "Cross disability (including people with disabilities, Deaf people, and supporters)", "Current password": "Current password", "Customize": "Customize", "Customize this website’s accessibility": "Customize this website’s accessibility", @@ -571,77 +469,50 @@ "Date of training": "Date of training", "Date range": "Date range", "Dates": "Dates", - "Day": "Day", "Days of the week interviews will be happening": "Days of the week interviews will be happening", "Deaf": "Deaf", "DeafBlind": "DeafBlind", - "Decide the scope of your consultation, e.g., local, regional, provincial, territorial or national": "Decide the scope of your consultation, e.g., local, regional, provincial, territorial or national", "Decline": "Decline", "Deepen understanding": "Deepen understanding", "Deepen understanding about the systemic barriers (laws, policies, practices, and culture) underlying the experiences that consultation participants report": "Deepen understanding about the systemic barriers (laws, policies, practices, and culture) underlying the experiences that consultation participants report", - "Deepen understanding of what was learned in consultation through systemic analysis": "Deepen understanding of what was learned in consultation through systemic analysis", - "Define the objectives of your consultation. That is, clearly state what information you are hoping to get out of this consultation.": "Define the objectives of your consultation. That is, clearly state what information you are hoping to get out of this consultation.", "Definitions": "Definitions", "Delete account": "Delete account", - "Delete my organization": "Delete my organization", "Delete my page": "Delete my page", "Delete regulated organization": "Delete regulated organization", "Delete your account": "Delete your account", "Delete your individual page": "Delete your individual page", - "Delete your organization": "Delete your organization", - "Delivering and facilitating the consultation": "Delivering and facilitating the consultation", - "Demographic breakdown": "Demographic breakdown", "Description": "Description", "Description (English)": "Description (English)", "Description (French)": "Description (French)", "Design": "Design", "Designing a consultation": "Designing a consultation", - "Designing the consultation format and process": "Designing the consultation format and process", "Design your inclusive and accessible consultation": "Design your inclusive and accessible consultation", - "Determine the consultation method, e.g., focus group, online survey, one-to-one interviews, etc.": "Determine the consultation method, e.g., focus group, online survey, one-to-one interviews, etc.", - "Determine who you would like to participate in your consultation, e.g., people with a similar type of disability, a range of people with different disabilities, Deaf people, Indigenous representation, and\/or other identities, etc.": "Determine who you would like to participate in your consultation, e.g., people with a similar type of disability, a range of people with different disabilities, Deaf people, Indigenous representation, and\/or other identities, etc.", - "Develop a safe and accessible format and process, by addressing questions like:": "Develop a safe and accessible format and process, by addressing questions like:", "Developed in partnership": "Developed in partnership", "Developing an accessibility plan": "Developing an accessibility plan", "Developmental disabilities": "Developmental disabilities", "Did you know…": "Did you know…", - "Digital": "Digital", - "Directly contact me or my support person": "Directly contact me or my support person", - "Disability": "Disability", "Disability and\/or Deaf identity": "Disability and\/or Deaf identity", - "Disability and Deaf groups": "Disability and Deaf groups", "Disability and Deaf groups they are looking for": "Disability and Deaf groups they are looking for", - "Disability and Deaf organizations, and civil society organizations.": "Disability and Deaf organizations, and civil society organizations.", "Disability and Deaf representative organizations": "Disability and Deaf representative organizations", "Disability and Deaf support organizations": "Disability and Deaf support organizations", "Disability is not in the person. It results when a person’s long-term physical, mental health, developmental, or sensory characteristics differ from society’s norms. When buildings, services, and workplaces are designed for the norm, they often present barriers to a person’s full and equal participation in society. That’s what we mean by disability. ": "Disability is not in the person. It results when a person’s long-term physical, mental health, developmental, or sensory characteristics differ from society’s norms. When buildings, services, and workplaces are designed for the norm, they often present barriers to a person’s full and equal participation in society. That’s what we mean by disability. ", "Disability knowledge": "Disability knowledge", "Disability or Deaf group": "Disability or Deaf group", - "Disability or Deaf groups": "Disability or Deaf groups", "Disability type": "Disability type", "disability type": "disability type", "DISCLAIMER OF WARRANTIES.": "DISCLAIMER OF WARRANTIES.", "Disconnected rooms for down-time": "Disconnected rooms for down-time", "Dismiss": "Dismiss", - "Documents": "Documents", "Documents will be sent to participants by:": "Documents will be sent to participants by:", "Does :name have lived experience of the people they can connect to?": "Does :name have lived experience of the people they can connect to?", - "Does it cost Regulated Organizations to use The Accessibility Exchange services?": "Does it cost Regulated Organizations to use The Accessibility Exchange services?", "Does your organization :represent_or_serve_and_support a specific age bracket or brackets?": "Does your organization :represent_or_serve_and_support a specific age bracket or brackets?", "Does your organization :represent_or_serve_and_support a specific ethnoracial identity or identities?": "Does your organization :represent_or_serve_and_support a specific ethnoracial identity or identities?", "Does your organization specifically :represent_or_serve_and_support people who are First Nations, Inuit, or Métis?": "Does your organization specifically :represent_or_serve_and_support people who are First Nations, Inuit, or Métis?", "Does your organization specifically :represent_or_serve_and_support people who are marginalized based on gender or sexual identity?": "Does your organization specifically :represent_or_serve_and_support people who are marginalized based on gender or sexual identity?", "Does your organization specifically :represent_or_serve_and_support people with disabilities and Deaf people, their supporters, or both?": "Does your organization specifically :represent_or_serve_and_support people with disabilities and Deaf people, their supporters, or both?", "Does your organization specifically :represent_or_serve_and_support refugees and\/or immigrants?": "Does your organization specifically :represent_or_serve_and_support refugees and\/or immigrants?", - "Done": "Done", "Don’t have an account yet? Please": "Don’t have an account yet? Please", - "Download:": "Download:", - "Download :language document": "Download :language document", - "Download agreement": "Download agreement", "download any file posted by another user of the Platform that you know, or reasonably should know, cannot legally be distributed in such manner;": "download any file posted by another user of the Platform that you know, or reasonably should know, cannot legally be distributed in such manner;", - "Download certificate of completion": "Download certificate of completion", - "Download your certificate": "Download your certificate", - "Do you have concerns about the engagement or the organization running it? We can help solve problems and mediate.": "Do you have concerns about the engagement or the organization running it? We can help solve problems and mediate.", "Do you have lived experience of the people you can connect to?": "Do you have lived experience of the people you can connect to?", "Do you have questions about how the engagement works?": "Do you have questions about how the engagement works?", "Do you have questions about this project?": "Do you have questions about this project?", @@ -652,13 +523,11 @@ "due date": "due date", "E-transfer": "E-transfer", "E.g. Microsoft Teams, Webex, Zoom.": "E.g. Microsoft Teams, Webex, Zoom.", - "Each participant will be paid :pay.": "Each participant will be paid :pay.", "East Asian": "East Asian", "Eastern Standard or Daylight Time": "Eastern Standard or Daylight Time", "Edit": "Edit", "Edit :!section": "Edit :!section", "Edit :user’s role": "Edit :user’s role", - "Editable PDF document": "Editable PDF document", "Edit engagement": "Edit engagement", "Edit engagement details": "Edit engagement details", "Edit meeting": "Edit meeting", @@ -677,7 +546,6 @@ "Edit your project page": "Edit your project page", "Edit your role": "Edit your role", "Email": "Email", - "Email: :email": "Email: :email", "Email address": "Email address", "email address": "email address", "Email your certificate again": "Email your certificate again", @@ -690,13 +558,11 @@ "End year": "End year", "End Year": "End Year", "Engage": "Engage", - "Engage a Community Organization to help with analysis": "Engage a Community Organization to help with analysis", "engage in or use any data mining, robots, scraping or similar data gathering or extraction methods;": "engage in or use any data mining, robots, scraping or similar data gathering or extraction methods;", "Engage in the commercial use of the Platform except for the purposes set out in these Terms;": "Engage in the commercial use of the Platform except for the purposes set out in these Terms;", "Engagement": "Engagement", "engagement": "engagement", "engagement description": "engagement description", - "Engagement details": "Engagement details", "Engagement materials": "Engagement materials", "Engagement meetings": "Engagement meetings", "engagement name": "engagement name", @@ -706,12 +572,9 @@ "Engagements that are looking for someone with my lived experience": "Engagements that are looking for someone with my lived experience", "Engagement translations": "Engagement translations", "Engage with disability and Deaf communities and hold meaningful consultations": "Engage with disability and Deaf communities and hold meaningful consultations", - "Engage with the disability and Deaf community and hold meaningful consultations": "Engage with the disability and Deaf community and hold meaningful consultations", "English author name": "English author name", "Enter your collaboration preferences": "Enter your collaboration preferences", - "Enter your personal information": "Enter your personal information", "Episodic and invisible disabilities": "Episodic and invisible disabilities", - "Error": "Error", "Estimate approved": "Estimate approved", "Estimate requested": "Estimate requested", "Estimate returned": "Estimate returned", @@ -720,10 +583,8 @@ "Estimate status": "Estimate status", "Ethno-racial groups": "Ethno-racial groups", "ethnoracial group": "ethnoracial group", - "Ethnoracial group they can connect to": "Ethnoracial group they can connect to", "Ethnoracial identity": "Ethnoracial identity", "ethnoracial identity": "ethnoracial identity", - "Everything in your organization will be deleted as well:": "Everything in your organization will be deleted as well:", "Experiences": "Experiences", "experience working with organizations to create inclusive consultations, identify barriers, and create accessibility plans.": "experience working with organizations to create inclusive consultations, identify barriers, and create accessibility plans.", "External team": "External team", @@ -755,10 +616,7 @@ "First Nations": "First Nations", "flexible, please contact us if you need to use another software": "flexible, please contact us if you need to use another software", "Focus group": "Focus group", - "Focus groups": "Focus groups", "Follow-up calls or emails": "Follow-up calls or emails", - "Follow up call or email": "Follow up call or email", - "Follow up to build your relationship": "Follow up to build your relationship", "for": "for", "for :project": "for :project", "For Community Organizations": "For Community Organizations", @@ -776,10 +634,7 @@ "for lack of use;": "for lack of use;", "Format": "Format", "Format:": "Format:", - "Format: :format": "Format: :format", - "Formats": "Formats", "For meeting in real time": "For meeting in real time", - "For the :sector sector": "For the :sector sector", "For the best results, please use Google Chrome, Safari, or Microsoft Edge.": "For the best results, please use Google Chrome, Safari, or Microsoft Edge.", "For this website": "For this website", "for using The Accessibility Exchange": "for using The Accessibility Exchange", @@ -795,7 +650,6 @@ "full name": "full name", "Further directions": "Further directions", "further directions": "further directions", - "Further directions:": "Further directions:", "further or promote any criminal activity or enterprise or provide instructional information about illegal or potentially illegal activities;": "further or promote any criminal activity or enterprise or provide instructional information about illegal or potentially illegal activities;", "Gender and sexual identity": "Gender and sexual identity", "Gender and sexuality": "Gender and sexuality", @@ -803,11 +657,9 @@ "Gender fluid people": "Gender fluid people", "Gender identity": "Gender identity", "Gender neutral, barrier-free washrooms": "Gender neutral, barrier-free washrooms", - "Gender neutral washroom": "Gender neutral washroom", "Gender non-conforming people": "Gender non-conforming people", "gender or sexual identity group": "gender or sexual identity group", "GENERAL": "GENERAL", - "General": "General", "General access needs": "General access needs", "Geographical areas this project will impact": "Geographical areas this project will impact", "geographic areas": "geographic areas", @@ -820,40 +672,26 @@ "Google Meet": "Google Meet", "Go through our listings of Community Connectors on this website.": "Go through our listings of Community Connectors on this website.", "Go to all engagements": "Go to all engagements", - "Go to engagement dashboard": "Go to engagement dashboard", "Go to pricing": "Go to pricing", - "Go to project page": "Go to project page", "Go to published page": "Go to published page", "Government": "Government", - "Government, businesses, and nonprofit organizations, which are regulated by the federal government, here to work on accessibility.": "Government, businesses, and nonprofit organizations, which are regulated by the federal government, here to work on accessibility.", "Government of Canada": "Government of Canada", "Governments, businesses, and other public sector organizations": "Governments, businesses, and other public sector organizations", "Grey on dark grey": "Grey on dark grey", "Grey on white": "Grey on white", - "Groups": "Groups", "Groups in the disability and Deaf community": "Groups in the disability and Deaf community", "Groups you can connect to": "Groups you can connect to", "groups you can connect to": "groups you can connect to", - "Guide": "Guide", "Guidelines and best practices": "Guidelines and best practices", "Hard-of-hearing": "Hard-of-hearing", "harvest or collect email addresses or other contact information of other users from the Platform by electronic or other means for the purposes of sending unsolicited emails or other unsolicited communications;": "harvest or collect email addresses or other contact information of other users from the Platform by electronic or other means for the purposes of sending unsolicited emails or other unsolicited communications;", "Have more questions?": "Have more questions?", "Have questions?": "Have questions?", "Have trouble meeting the access needs of your participants?": "Have trouble meeting the access needs of your participants?", - "Have you completed the webinar?": "Have you completed the webinar?", "Help organizations and businesses design their consultations, and potentially help facilitate these consultations.": "Help organizations and businesses design their consultations, and potentially help facilitate these consultations.", "Help regulated organizations design and implement their consultations": "Help regulated organizations design and implement their consultations", - "Here are a few tips on planning your consultation:": "Here are a few tips on planning your consultation:", - "Here you may find resources for employees of the Regulated Organizations.": "Here you may find resources for employees of the Regulated Organizations.", - "Here you may find resources helpful for participating in a consultation.": "Here you may find resources helpful for participating in a consultation.", - "Here you may find resources of benefit to Accessibility Consultants and Community Connectors.": "Here you may find resources of benefit to Accessibility Consultants and Community Connectors.", - "Here you may find resources to assist in running inclusive and accessible consultations.": "Here you may find resources to assist in running inclusive and accessible consultations.", - "Here you may find resources to help support your members in participating in consultations.": "Here you may find resources to help support your members in participating in consultations.", "Hire a Community Connector (who can be an individual or a Community Organization) to recruit people manually from within their networks. This option is best if you are looking for a specific or hard-to-reach group.": "Hire a Community Connector (who can be an individual or a Community Organization) to recruit people manually from within their networks. This option is best if you are looking for a specific or hard-to-reach group.", "Hours": "Hours", - "Hours: :start - :end :timeZone": "Hours: :start - :end :timeZone", - "Hours: :start to :end :timeZone": "Hours: :start to :end :timeZone", "House of Commons, Senate, Library of Parliament, Parliamentary Protective Service": "House of Commons, Senate, Library of Parliament, Parliamentary Protective Service", "How can you help a regulated organization?": "How can you help a regulated organization?", "how communities will be impacted": "how communities will be impacted", @@ -861,8 +699,6 @@ "How does being a :role work?": "How does being a :role work?", "How does being an :role work?": "How does being an :role work?", "How does getting input for your projects work?": "How does getting input for your projects work?", - "How does The Accessibility Exchange assist Regulated Organizations interested in recruiting and engaging people with disabilities, Deaf people, and supporters in consultations?": "How does The Accessibility Exchange assist Regulated Organizations interested in recruiting and engaging people with disabilities, Deaf people, and supporters in consultations?", - "How does The Accessibility Exchange define disability?": "How does The Accessibility Exchange define disability?", "How does this work?": "How does this work?", "How do you want to recruit participants?": "How do you want to recruit participants?", "How many participants would you like to engage? Please enter a number, for example 20.": "How many participants would you like to engage? Please enter a number, for example 20.", @@ -873,12 +709,7 @@ "How this works for individuals": "How this works for individuals", "How this works for Individuals with Disabilities and Deaf Individuals": "How this works for Individuals with Disabilities and Deaf Individuals", "How this works for Regulated Organizations": "How this works for Regulated Organizations", - "How will conflict be managed?": "How will conflict be managed?", - "How will my access needs be met during a consultation?": "How will my access needs be met during a consultation?", - "How will my privacy be protected on this website?": "How will my privacy be protected on this website?", "I agree to the ": "I agree to the ", - "I agree with the [privacy policy](:url) or using The Accessibility Exchange": "I agree with the [privacy policy](:url) or using The Accessibility Exchange", - "I agree with the [terms of service](:url) or using The Accessibility Exchange": "I agree with the [terms of service](:url) or using The Accessibility Exchange", "I am a person with a disability, a Deaf person, or am a family member or supporter.": "I am a person with a disability, a Deaf person, or am a family member or supporter.", "I am currently seeking an Community Connector for this engagement": "I am currently seeking an Community Connector for this engagement", "I am open to other formats suggested by participants": "I am open to other formats suggested by participants", @@ -891,8 +722,6 @@ "Ideal number of participants": "Ideal number of participants", "ideal number of participants": "ideal number of participants", "Identities": "Identities", - "If anything about your projects or engagements have changed, please send a new estimate request.": "If anything about your projects or engagements have changed, please send a new estimate request.", - "If a Sign Language video translation is available, you will see a button in line with the website content. Pressing that button will load the Sign Language video.": "If a Sign Language video translation is available, you will see a button in line with the website content. Pressing that button will load the Sign Language video.", "if IRIS is required to do so by law (for example, where the provision of the Platform to you is, or becomes, unlawful);": "if IRIS is required to do so by law (for example, where the provision of the Platform to you is, or becomes, unlawful);", "if IRIS is transitioning to no longer providing the Platform to users in the region or province in which you reside or from which you use the Platform; or": "if IRIS is transitioning to no longer providing the Platform to users in the region or province in which you reside or from which you use the Platform; or", "If more than one of the following applies to you, you will need to register separate accounts.": "If more than one of the following applies to you, you will need to register separate accounts.", @@ -903,7 +732,6 @@ "If you are looking for a group with a specific experience or identity, you must select which type of experience or identity you are looking for.": "If you are looking for a group with a specific experience or identity, you must select which type of experience or identity you are looking for.", "If you are looking for a specific :attribute, you must select at least one.": "If you are looking for a specific :attribute, you must select at least one.", "If you are seeking a Community Connector for this engagement, there are a few ways to find one:": "If you are seeking a Community Connector for this engagement, there are a few ways to find one:", - "If you are thinking of working with a specific group, for example, Indigenous people with disabilities, it would be a good idea to hire an Accessibility Consultant from that community.": "If you are thinking of working with a specific group, for example, Indigenous people with disabilities, it would be a good idea to hire an Accessibility Consultant from that community.", "If you delete your account:": "If you delete your account:", "If you did not expect to receive an invitation to this :invitationable_type, you may discard this email.": "If you did not expect to receive an invitation to this :invitationable_type, you may discard this email.", "If you have an additional access need you must describe it.": "If you have an additional access need you must describe it.", @@ -912,14 +740,9 @@ " if you need this in another language.": " if you need this in another language.", "If your organization is offering services as a **Community Connector**, regulated organizations may ask you to assist them in connecting to your primary constituencies. If your organization is offering services as a **Consultation Participant**, regulated organizations may ask you to represent this group’s point of view in consultations.": "If your organization is offering services as a **Community Connector**, regulated organizations may ask you to assist them in connecting to your primary constituencies. If your organization is offering services as a **Consultation Participant**, regulated organizations may ask you to represent this group’s point of view in consultations.", "If you select no, our support line will contact you and arrange for a way to have your access needs met.": "If you select no, our support line will contact you and arrange for a way to have your access needs met.", - "If you want to visit their page, you can unblock them and return to this page.": "If you want to visit their page, you can unblock them and return to this page.", - "If you would like assistance in arranging for an accessibility consultant, you can [contact the Accessibility Exchange Support team](:url)": "If you would like assistance in arranging for an accessibility consultant, you can [contact the Accessibility Exchange Support team](:url)", - "If you would like more support in planning your consultation, consider hiring an Accessibility Consultant. An Accessibility Consultant can help you with:": "If you would like more support in planning your consultation, consider hiring an Accessibility Consultant. An Accessibility Consultant can help you with:", "Immigrants": "Immigrants", "impersonate any person or entity, or falsely state or otherwise misrepresent your affiliation with a person or entity;": "impersonate any person or entity, or falsely state or otherwise misrepresent your affiliation with a person or entity;", "implement any measures to circumvent any tools or resources IRIS has used to block you from accessing all or some of the Platform (e.g., by masking your IP address or using a proxy IP address);": "implement any measures to circumvent any tools or resources IRIS has used to block you from accessing all or some of the Platform (e.g., by masking your IP address or using a proxy IP address);", - "In a specific province or territory or city or town": "In a specific province or territory or city or town", - "In a specific region": "In a specific region", "Includes individuals with no spoken or signed language who communicate using gestures, pictures, letter boards, communication devices or assistance from a person who knows them well": "Includes individuals with no spoken or signed language who communicate using gestures, pictures, letter boards, communication devices or assistance from a person who knows them well", "Includes individuals with sight loss, blind individuals, and partially sighted individuals": "Includes individuals with sight loss, blind individuals, and partially sighted individuals", "Includes intellectual disability": "Includes intellectual disability", @@ -934,17 +757,14 @@ "Individual": "Individual", "individual": "individual", "Individual orientation": "Individual orientation", - "Individual or organization": "Individual or organization", "Individuals": "Individuals", "individuals": "individuals", - "Individuals or Community Organizations that can help find Consultation Participants for projects.": "Individuals or Community Organizations that can help find Consultation Participants for projects.", "Information such as your communication and consultation preferences might be out of date if it has not been updated for over a year.": "Information such as your communication and consultation preferences might be out of date if it has not been updated for over a year.", "Information such as your matching information, your communication preferences, and your consultation preferences might be out of date if it has not been updated for over a year.": "Information such as your matching information, your communication preferences, and your consultation preferences might be out of date if it has not been updated for over a year.", "Information technology": "Information technology", "Information that we ask Consultation Participants, Accessibility Consultants, and Community Connectors to share.": "Information that we ask Consultation Participants, Accessibility Consultants, and Community Connectors to share.", "Initiated by": "Initiated by", "IN NO EVENT WILL IRIS’ TOTAL AGGREGATE LIABILITY, FOR ANY AND ALL CLAIMS ARISING OUT OF OR RELATED TO THIS AGREEMENT, THE PLATFORM, PLATFORM CONTENT AND ANY SERVICES, WHETHER IN CONTRACT, TORT OR UNDER ANY OTHER THEORY OF LIABILITY, EXCEED THE LESSER OF (I) ANY FEES PAID BY THE USER TO IRIS FOR THE SERVICES DURING **[THE TWELVE (12) MONTH PERIOD IMMEDIATELY PRECEDING THE DATE ON WHICH THE CAUSE OF ACTION AROSE; AND (II) SIX HUNDRED AND TWENTY-FIVE DOLLARS (CDN$625.00)]**. ": "IN NO EVENT WILL IRIS’ TOTAL AGGREGATE LIABILITY, FOR ANY AND ALL CLAIMS ARISING OUT OF OR RELATED TO THIS AGREEMENT, THE PLATFORM, PLATFORM CONTENT AND ANY SERVICES, WHETHER IN CONTRACT, TORT OR UNDER ANY OTHER THEORY OF LIABILITY, EXCEED THE LESSER OF (I) ANY FEES PAID BY THE USER TO IRIS FOR THE SERVICES DURING **[THE TWELVE (12) MONTH PERIOD IMMEDIATELY PRECEDING THE DATE ON WHICH THE CAUSE OF ACTION AROSE; AND (II) SIX HUNDRED AND TWENTY-FIVE DOLLARS (CDN$625.00)]**. ", - "In order for :name to meet the following access needs, they will need to know who requested them. Do you give permission to share it is you who requested the following access needs?": "In order for :name to meet the following access needs, they will need to know who requested them. Do you give permission to share it is you who requested the following access needs?", "In order to create a successful exchange, we ask Consultation Participants to provide this information so that The Accessibility Exchange can match Consultation Participants with an engagement that is looking for someone with your experiences.": "In order to create a successful exchange, we ask Consultation Participants to provide this information so that The Accessibility Exchange can match Consultation Participants with an engagement that is looking for someone with your experiences.", "In person": "In person", "In progress": "In progress", @@ -957,11 +777,9 @@ "Intersectional - This engagement is looking for people who have all sorts of different identities and lived experiences, such as race, gender, age, sexual orientation, and more.": "Intersectional - This engagement is looking for people who have all sorts of different identities and lived experiences, such as race, gender, age, sexual orientation, and more.", "Intersectional outreach": "Intersectional outreach", "Intervenor": "Intervenor", - "Interview at their own pace": "Interview at their own pace", "Interview at your own pace": "Interview at your own pace", "Interviews": "Interviews", "Interviews can happen between the following dates:": "Interviews can happen between the following dates:", - "Interviews will take place between :start - :end": "Interviews will take place between :start - :end", "Interviews will take place between :start and :end.": "Interviews will take place between :start and :end.", "In the event that IRIS terminates or suspends the User’s access to the Services or this Agreement under this Subsection 16(b), User will receive a pro-rata refund of any prepaid fees paid to IRIS for which Services have not been provided. IRIS shall not be liable to you or to any third party for any suspension or discontinuance of the Services or the Platform, including on account of any expenditures or investments or other commitments made or actions taken in reliance on the expected continuation of the Services or Platform. Any suspected fraudulent, abusive or illegal activity that may be grounds for termination of your use of the Platform and may be referred to appropriate law enforcement authorities.": "In the event that IRIS terminates or suspends the User’s access to the Services or this Agreement under this Subsection 16(b), User will receive a pro-rata refund of any prepaid fees paid to IRIS for which Services have not been provided. IRIS shall not be liable to you or to any third party for any suspension or discontinuance of the Services or the Platform, including on account of any expenditures or investments or other commitments made or actions taken in reliance on the expected continuation of the Services or Platform. Any suspected fraudulent, abusive or illegal activity that may be grounds for termination of your use of the Platform and may be referred to appropriate law enforcement authorities.", "Introduction video": "Introduction video", @@ -982,43 +800,29 @@ "Is there a group with a specific experience of identity you are interested in engaging?": "Is there a group with a specific experience of identity you are interested in engaging?", "Is there a specific disability or Deaf group you are interested in engaging?": "Is there a specific disability or Deaf group you are interested in engaging?", "Is there something you are looking for that isn’t here?": "Is there something you are looking for that isn’t here?", - "Is there training on how to design and facilitate and effective consultation?": "Is there training on how to design and facilitate and effective consultation?", "Is this engagement paid or volunteer?": "Is this engagement paid or volunteer?", - "It is a good idea to hold more than one consultation with participants to ensure that you are capturing the information correctly and to provide an opportunity for additional feedback. This will demonstrate to participants that they are being heard, and that their feedback matters.": "It is a good idea to hold more than one consultation with participants to ensure that you are capturing the information correctly and to provide an opportunity for additional feedback. This will demonstrate to participants that they are being heard, and that their feedback matters.", - "It is most likely that you will have Consultation Participants who will request English, French, ASL, and LSQ.": "It is most likely that you will have Consultation Participants who will request English, French, ASL, and LSQ.", - "It is useful to share the objectives with your participants and be clear about the limits of the consultation. This will avoid participants feeling that their feedback is missing from your report. Being clear from the outset will help build trust and foster a good working relationship with your participants.": "It is useful to share the objectives with your participants and be clear about the limits of the consultation. This will avoid participants feeling that their feedback is missing from your report. Being clear from the outset will help build trust and foster a good working relationship with your participants.", - "It looks like your project is complete, based on your project dates. If this is not accurate, please update your project duration dates.": "It looks like your project is complete, based on your project dates. If this is not accurate, please update your project duration dates.", "It seems as though you have not created any projects yet.": "It seems as though you have not created any projects yet.", - "It’s been at least a year since you’ve updated your communication and consultation preferences. Please update this so you are matched to the appropriate projects.": "It’s been at least a year since you’ve updated your communication and consultation preferences. Please update this so you are matched to the appropriate projects.", - "It’s been at least a year since you’ve updated your matching information. Please update this information so that we can be sure to match you with the appropriate projects.": "It’s been at least a year since you’ve updated your matching information. Please update this information so that we can be sure to match you with the appropriate projects.", - "It’s been at least a year since you’ve updated your matching information. Please update this so you are matched to the appropriate projects.": "It’s been at least a year since you’ve updated your matching information. Please update this so you are matched to the appropriate projects.", - "It’s been at least a year since you’ve updated your public page. Please review and update any changes.": "It’s been at least a year since you’ve updated your public page. Please review and update any changes.", "I work for a private business, the federal government, or a public sector organization regulated under the Accessible Canada Act.": "I work for a private business, the federal government, or a public sector organization regulated under the Accessible Canada Act.", "I would like to speak to someone to discuss additional access needs or concerns": "I would like to speak to someone to discuss additional access needs or concerns", "I’ve gone to orientation, why isn’t this updated?": "I’ve gone to orientation, why isn’t this updated?", "Join our accessibility community": "Join our accessibility community", "Keeping my information up to date": "Keeping my information up to date", "Language": "Language", - "Language: :language": "Language: :language", "Language: :locale": "Language: :locale", "Language :language added.": "Language :language added.", "Language :language removed.": "Language :language removed.", "Language :number": "Language :number", "Language groups": "Language groups", - "Language groups they can connect to": "Language groups they can connect to", "Language preferences": "Language preferences", "Languages": "Languages", "languages": "languages", "Languages :name uses": "Languages :name uses", "Languages available": "Languages available", - "Langue des signes québécoise (LSQ)": "Langue des signes québécoise (LSQ)", "Large text": "Large text", "Last updated: :date": "Last updated: :date", - "Last updated on :date.": "Last updated on :date.", "Later, you will have the chance to choose the language or languages for your consultations.": "Later, you will have the chance to choose the language or languages for your consultations.", "Latin American": "Latin American", "Learn about our pricing": "Learn about our pricing", - "Learn how to plan an inclusive and accessible consultation": "Learn how to plan an inclusive and accessible consultation", "Learning disabilities": "Learning disabilities", "Learn more": "Learn more", "Learn more about being a Community Connector": "Learn more about being a Community Connector", @@ -1040,7 +844,6 @@ "LinkedIn page": "LinkedIn page", "Links to resource": "Links to resource", "Link to join": "Link to join", - "Link to join:": "Link to join:", "link to join the meeting": "link to join the meeting", "Lived and living experiences": "Lived and living experiences", "Lived experience": "Lived experience", @@ -1050,10 +853,7 @@ "Lived or living experience": "Lived or living experience", "Living in urban, rural, or remote areas": "Living in urban, rural, or remote areas", "Location": "Location", - "Location: :location": "Location: :location", - "Location :location": "Location :location", "Location :number": "Location :number", - "Locations": "Locations", "Mailing Address": "Mailing Address", "Mailing address": "Mailing address", "main menu": "main menu", @@ -1074,8 +874,6 @@ "Mark as read": "Mark as read", "Mark estimate as returned": "Mark estimate as returned", "Mark the estimate as \"returned\" by visiting the link below and searching for :projectable.": "Mark the estimate as \"returned\" by visiting the link below and searching for :projectable.", - "Matching information": "Matching information", - "Matching service": "Matching service", "match you to their projects or engagements": "match you to their projects or engagements", "Materials": "Materials", "Materials are sent to participants by": "Materials are sent to participants by", @@ -1084,7 +882,6 @@ "Me": "Me", "means that a field is required.": "means that a field is required.", "meeting date": "meeting date", - "Meeting date :date": "Meeting date :date", "Meeting dates": "Meeting dates", "meeting end time": "meeting end time", "Meetings": "Meetings", @@ -1097,7 +894,6 @@ "Mental health-related disabilities": "Mental health-related disabilities", "Menu": "Menu", "Microsoft Teams": "Microsoft Teams", - "Microsoft Word": "Microsoft Word", "Middle Eastern": "Middle Eastern", "Minimum number of participants": "Minimum number of participants", "minimum number of participants": "minimum number of participants", @@ -1106,8 +902,6 @@ "Module - :title": "Module - :title", "Modules": "Modules", "Monday": "Monday", - "Month": "Month", - "more": "more", "Most of the time, we will not need to tell them who requested the access need. However, for some of the access needs, we will—and we’ll tell you which ones below.": "Most of the time, we will not need to tell them who requested the access need. However, for some of the access needs, we will—and we’ll tell you which ones below.", "Mountain Standard or Daylight Time": "Mountain Standard or Daylight Time", "Mountain Standard Time*": "Mountain Standard Time*", @@ -1115,7 +909,6 @@ "My dashboard": "My dashboard", "My email": "My email", "My organization’s page": "My organization’s page", - "My organization’s role: :roles": "My organization’s role: :roles", "My phone number": "My phone number", "My projects": "My projects", "My public page": "My public page", @@ -1127,7 +920,6 @@ "My support person’s phone number": "My support person’s phone number", "My trainings": "My trainings", "Métis": "Métis", - "N\/A": "N\/A", "Name": "Name", "Name (English)": "Name (English)", "Name (French)": "Name (French)", @@ -1137,11 +929,9 @@ "Name of organization — English": "Name of organization — English", "Name of organization — French": "Name of organization — French", "Name of training": "Name of training", - "Need someone to call and walk through information": "Need someone to call and walk through information", "Needs printed version to be sent to:": "Needs printed version to be sent to:", "Neurodivergence": "Neurodivergence", "New Brunswick": "New Brunswick", - "New engagement by :projectable": "New engagement by :projectable", "New estimate approval": "New estimate approval", "New Estimate Approval from :projectable": "New Estimate Approval from :projectable", "New estimate request": "New estimate request", @@ -1150,10 +940,8 @@ "Newfoundland Standard or Daylight Time": "Newfoundland Standard or Daylight Time", "New password": "New password", "New project": "New project", - "New project by :projectable": "New project by :projectable", "New reports uploaded": "New reports uploaded", "Next": "Next", - "Next webinar": "Next webinar", "No": "No", "No, don’t share my access needs": "No, don’t share my access needs", "No, give me a group with intersectional experiences and\/or identities": "No, give me a group with intersectional experiences and\/or identities", @@ -1185,8 +973,6 @@ "Not available": "Not available", "Not available.": "Not available.", "not available yet": "not available yet", - "Note": "Note", - "Note-taking and analysis": "Note-taking and analysis", "Note-taking services": "Note-taking services", "Notes": "Notes", "Not everyone has had access to paid or volunteer experiences, but there are a lot of experiences that build certain skills and strengths. You can share more about that here. If you have had paid or volunteer experiences, you can also include that.": "Not everyone has had access to paid or volunteer experiences, but there are a lot of experiences that build certain skills and strengths. You can share more about that here. If you have had paid or volunteer experiences, you can also include that.", @@ -1196,7 +982,6 @@ "Notification preferences": "Notification preferences", "Notifications": "Notifications", "notifications navigation": "notifications navigation", - "Notify me on this website": "Notify me on this website", "Notify me or my support person directly": "Notify me or my support person directly", "Notify your organization’s contact person directly": "Notify your organization’s contact person directly", "Notify your organization’s team through the website": "Notify your organization’s team through the website", @@ -1205,7 +990,6 @@ "No trainings found.": "No trainings found.", "Not ready to publish": "Not ready to publish", "Not received": "Not received", - "Not started": "Not started", "Not started yet": "Not started yet", "Notwithstanding the foregoing, you will have no obligation to indemnify or hold harmless any Indemnitee from or against any liability, losses, damages or expenses incurred as a result of any action or inaction of such Indemnitee.": "Notwithstanding the foregoing, you will have no obligation to indemnify or hold harmless any Indemnitee from or against any liability, losses, damages or expenses incurred as a result of any action or inaction of such Indemnitee.", "Not yet approved": "Not yet approved", @@ -1218,7 +1002,6 @@ "Nunavut": "Nunavut", "obtain or attempt to access or otherwise obtain any materials or information through any means not intentionally made available or provided for through the Platform;": "obtain or attempt to access or otherwise obtain any materials or information through any means not intentionally made available or provided for through the Platform;", "Off": "Off", - "Offer transparency around what is out of scope": "Offer transparency around what is out of scope", "Okay": "Okay", "Older people (65+)": "Older people (65+)", "On": "On", @@ -1227,35 +1010,27 @@ "Once you are done watching the videos for all the modules, you can take this quiz. Upon passing this quiz, you can receive your certificate of completion.": "Once you are done watching the videos for all the modules, you can take this quiz. Upon passing this quiz, you can receive your certificate of completion.", "Once you confirm your participation for an engagement, we share your access needs with the government or business that you are working with. This will help them seek out the appropriate service providers to meet your access need(s).": "Once you confirm your participation for an engagement, we share your access needs with the government or business that you are working with. This will help them seek out the appropriate service providers to meet your access need(s).", "Once you confirm your participation for an engagement, we will share your preferred contact method and your contact information with the government or business. This information enables them to contact you to discuss the details of your participation.": "Once you confirm your participation for an engagement, we will share your preferred contact method and your contact information with the government or business. This information enables them to contact you to discuss the details of your participation.", - "Once you delete your account, you will not be able to recover it": "Once you delete your account, you will not be able to recover it", "Once you delete your account, you will not be able to recover it.": "Once you delete your account, you will not be able to recover it.", - "Once you delete your organization profile, there will be a grace period of 30 days, during which you could recover it. After 30 days, it will be deleted forever — this cannot be reversed.": "Once you delete your organization profile, there will be a grace period of 30 days, during which you could recover it. After 30 days, it will be deleted forever — this cannot be reversed.", "Once you have hired a Community Connector, please add their information here.": "Once you have hired a Community Connector, please add their information here.", "Once you have hired a Community Connector, please add them here. This will give them access to your engagement details and allow them to add participants.": "Once you have hired a Community Connector, please add them here. This will give them access to your engagement details and allow them to add participants.", "Once you have hired a Community Organization, please select the organization below.": "Once you have hired a Community Organization, please select the organization below.", "Once you publish your engagement details, anyone on this website will be able to access it.": "Once you publish your engagement details, anyone on this website will be able to access it.", - "Once you publish your profile, other users on this website can access your page.": "Once you publish your profile, other users on this website can access your page.", - "Once you publish your project, others can find it.": "Once you publish your project, others can find it.", "Once your account has been approved, you can review and publish your organization’s page. You must have completed all the previous steps.": "Once your account has been approved, you can review and publish your organization’s page. You must have completed all the previous steps.", "Once your account has been approved, you can review and publish your page. You must have completed all the previous steps.": "Once your account has been approved, you can review and publish your page. You must have completed all the previous steps.", "Once you sign up, you can sign up for an orientation session to learn about what you can do on this website. You can also fill in information about your organization so businesses and government can learn more about what you do and who you represent or serve.": "Once you sign up, you can sign up for an orientation session to learn about what you can do on this website. You can also fill in information about your organization so businesses and government can learn more about what you do and who you represent or serve.", "Once you sign up, you can sign up for an orientation session to learn about what you can do on this website. You can also fill in information to facilitate a smoother collaboration with organizations, such as access needs, communication preferences, and consultation preferences.": "Once you sign up, you can sign up for an orientation session to learn about what you can do on this website. You can also fill in information to facilitate a smoother collaboration with organizations, such as access needs, communication preferences, and consultation preferences.", "Once you’ve reviewed the project details, please:": "Once you’ve reviewed the project details, please:", - "One of the key parts of preparing for your consultation with the disability and Deaf communities is making sure that your consultations are done in an accessible and inclusive way.": "One of the key parts of preparing for your consultation with the disability and Deaf communities is making sure that your consultations are done in an accessible and inclusive way.", - "Online form, such as survey monkey or google forms": "Online form, such as survey monkey or google forms", "Only people with specific disabilities and\/or Deaf people": "Only people with specific disabilities and\/or Deaf people", "Only reachable within cross-disability and Deaf or intersectional groups": "Only reachable within cross-disability and Deaf or intersectional groups", "Ontario": "Ontario", "Open call": "Open call", "Opens in new tab": "Opens in new tab", "optional": "optional", - "Optional": "Optional", "Organization details": "Organization details", "Organization information": "Organization information", "Organization information that will set you up for running consultations.": "Organization information that will set you up for running consultations.", "Organization name": "Organization name", "organization name": "organization name", - "Organizations": "Organizations", "organizations and businesses to work on accessibility projects together.": "organizations and businesses to work on accessibility projects together.", "Organizations can decide which criteria they would like the participants for a project to have. They then have a choice between:": "Organizations can decide which criteria they would like the participants for a project to have. They then have a choice between:", "Organization selection criteria": "Organization selection criteria", @@ -1264,23 +1039,15 @@ "Organizations which have some constituency of persons with disabilities, Deaf persons, or family members, but these groups are not their primary mandate. Groups served, for example, can include: Indigenous organizations, 2SLGBTQ+ organizations, immigrant and refugee groups, and women’s groups.": "Organizations which have some constituency of persons with disabilities, Deaf persons, or family members, but these groups are not their primary mandate. Groups served, for example, can include: Indigenous organizations, 2SLGBTQ+ organizations, immigrant and refugee groups, and women’s groups.", "Organizations “of” disability, Deaf, and family-based organizations. Constituted primarily by people with disabilities.": "Organizations “of” disability, Deaf, and family-based organizations. Constituted primarily by people with disabilities.", "Organization website": "Organization website", - "Orientation completed": "Orientation completed", "Other": "Other", "Other (please describe)": "Other (please describe)", "Other (please specify)": "Other (please specify)", "Other accepted format": "Other accepted format", "other accepted format": "other accepted format", "Other civil society organizations relevant to people with disabilities, Deaf people, and supporters": "Other civil society organizations relevant to people with disabilities, Deaf people, and supporters", - "Other disability": "Other disability", - "Other engagements for this project": "Other engagements for this project", - "Other experiences or identities": "Other experiences or identities", "Other identities": "Other identities", - "Other identities included": "Other identities included", "Other identity groups": "Other identity groups", - "Other identity groups they can connect to": "Other identity groups they can connect to", - "Other languages": "Other languages", "Other public sector organization, which is regulated by the Accessible Canada Act": "Other public sector organization, which is regulated by the Accessible Canada Act", - "Other webinars": "Other webinars", "Other – in-person or virtual meeting": "Other – in-person or virtual meeting", "Other – written or recorded response": "Other – written or recorded response", "Our team does not have people with lived and living experiences of disability or being Deaf.": "Our team does not have people with lived and living experiences of disability or being Deaf.", @@ -1297,18 +1064,14 @@ "Parliamentary entities": "Parliamentary entities", "Participant": "Participant", "Participant access needs": "Participant access needs", - "Participant consent forms": "Participant consent forms", "Participant details": "Participant details", "Participant Invitation": "Participant Invitation", "Participant location": "Participant location", - "Participant non-disclosure agreement": "Participant non-disclosure agreement", "Participants": "Participants", "participants confirmed": "participants confirmed", "Participant selection criteria": "Participant selection criteria", "Participants must respond to their invitation by the following date": "Participants must respond to their invitation by the following date", "Participants must sign up for this engagement by the following date": "Participants must sign up for this engagement by the following date", - "Participants taking part in **interviewing at their own pace** will be paid :pay.": "Participants taking part in **interviewing at their own pace** will be paid :pay.", - "Participants taking part in **real time interviews** will be paid :pay.": "Participants taking part in **real time interviews** will be paid :pay.", "Participants who have additional concerns or needs to be discussed": "Participants who have additional concerns or needs to be discussed", "Participate in consultations": "Participate in consultations", "Participate in consultations for organizations and businesses who are working on accessibility projects, and get paid for your participation.": "Participate in consultations for organizations and businesses who are working on accessibility projects, and get paid for your participation.", @@ -1316,9 +1079,7 @@ "Participating in engagements": "Participating in engagements", "Pause": "Pause", "Payment": "Payment", - "Payment amount": "Payment amount", "Payment information": "Payment information", - "Payment method": "Payment method", "Payment type": "Payment type", "PDF": "PDF", "Pending": "Pending", @@ -1326,13 +1087,10 @@ "Pending invitations": "Pending invitations", "People across any disabilities and Deaf people": "People across any disabilities and Deaf people", "People and organizations": "People and organizations", - "People who identify with one or more of the 2SLGBTQIA+ identities": "People who identify with one or more of the 2SLGBTQIA+ identities", "People with disabilities and\/or Deaf people": "People with disabilities and\/or Deaf people", - "People with lived experience of disability or being Deaf.": "People with lived experience of disability or being Deaf.", "Phase of consultation": "Phase of consultation", "Phases of consultation": "Phases of consultation", "Phone": "Phone", - "Phone: :phone": "Phone: :phone", "Phone call": "Phone call", "Phone calls": "Phone calls", "Phone number": "Phone number", @@ -1345,16 +1103,11 @@ "Plan and share your project with others on this website.": "Plan and share your project with others on this website.", "Play": "Play", "Please:": "Please:", - "Please attend an orientation session for your roles as :role.|Please attend an orientation session for each of your roles as :firstRole and :lastRole.": "Please attend an orientation session for your roles as :role.|Please attend an orientation session for each of your roles as :firstRole and :lastRole.", - "Please be aware that it is highly likely that people will request English, French, American Sign Language (ASL), and Langue des signes québécoise (LSQ)": "Please be aware that it is highly likely that people will request English, French, American Sign Language (ASL), and Langue des signes québécoise (LSQ)", "Please be specific about where you would like the participants to go to participate in this engagement.": "Please be specific about where you would like the participants to go to participate in this engagement.", - "Please browse our Resources page, to help you plan an accessible and inclusive consultation.": "Please browse our Resources page, to help you plan an accessible and inclusive consultation.", "Please check all that apply.": "Please check all that apply.", "Please choose a new password for The Accessibility Exchange": "Please choose a new password for The Accessibility Exchange", "Please choose the language or languages you would like to use on this website.": "Please choose the language or languages you would like to use on this website.", "Please complete this section so that you can be set up to participate.": "Please complete this section so that you can be set up to participate.", - "Please complete this section so that you can be set up to participate in consultations.": "Please complete this section so that you can be set up to participate in consultations.", - "Please complete this section so that you can be set up to participate in consultations and work on projects.": "Please complete this section so that you can be set up to participate in consultations and work on projects.", "Please complete your engagement details.": "Please complete your engagement details.", "Please complete your engagement details so potential participants can know what they are signing up for.": "Please complete your engagement details so potential participants can know what they are signing up for.", "Please confirm new password": "Please confirm new password", @@ -1366,7 +1119,6 @@ "Please create an account to join The Accessibility Exchange.": "Please create an account to join The Accessibility Exchange.", "Please create your organization’s page so that other members of this website can find you.": "Please create your organization’s page so that other members of this website can find you.", "Please create your page to share more about who you are, your experiences, and your interests.": "Please create your page to share more about who you are, your experiences, and your interests.", - "Please create your profile to share more about who you are, your experiences, and your interests.": "Please create your profile to share more about who you are, your experiences, and your interests.", "Please describe how the Disability and Deaf communities will be impacted by the outcomes of your project.": "Please describe how the Disability and Deaf communities will be impacted by the outcomes of your project.", "Please describe this engagement.": "Please describe this engagement.", "Please enter a :attribute that is less than or the same as the ideal number of participants.": "Please enter a :attribute that is less than or the same as the ideal number of participants.", @@ -1375,14 +1127,11 @@ "Please enter a valid date for the :attribute.": "Please enter a valid date for the :attribute.", "Please enter a valid website link under “Accessibility and Inclusion links”.": "Please enter a valid website link under “Accessibility and Inclusion links”.", "Please enter the email address of the individual you have hired as a Community Connector.": "Please enter the email address of the individual you have hired as a Community Connector.", - "Please enter your collaboration preferences": "Please enter your collaboration preferences", "Please enter your own name and email, rather than you organization’s. You will be able to create your organization in a later step.": "Please enter your own name and email, rather than you organization’s. You will be able to create your organization in a later step.", - "Please fill this out and email it back to us for our first meeting together.": "Please fill this out and email it back to us for our first meeting together.", "Please identify the type of Regulated Organization yours is:": "Please identify the type of Regulated Organization yours is:", "Please include any links that describes the accessibility and inclusion initiatives your regulated entity has. This can include reports, case studies, and more.": "Please include any links that describes the accessibility and inclusion initiatives your regulated entity has. This can include reports, case studies, and more.", "Please indicate how you would like to be notified of a new person or people being added to your engagements.": "Please indicate how you would like to be notified of a new person or people being added to your engagements.", "Please indicate how you would like to be notified of a project estimate that has been returned for you to review.": "Please indicate how you would like to be notified of a project estimate that has been returned for you to review.", - "Please indicate how you would like to be notified of new participants being added to your engagements.": "Please indicate how you would like to be notified of new participants being added to your engagements.", "Please indicate how you would like to be notified of new projects. ": "Please indicate how you would like to be notified of new projects. ", "Please indicate how you would like to be notified to review and update your information.": "Please indicate how you would like to be notified to review and update your information.", "Please indicate if the reports will be publicly available.": "Please indicate if the reports will be publicly available.", @@ -1409,40 +1158,26 @@ "Please list any languages that you will be using to describe your regulated organization.": "Please list any languages that you will be using to describe your regulated organization.", "Please list any training related to accessibility or inclusion that your team members have received.": "Please list any training related to accessibility or inclusion that your team members have received.", "Please note that all organizations have been asked to provide gender neutral and accessible washrooms by default.": "Please note that all organizations have been asked to provide gender neutral and accessible washrooms by default.", - "Please note that if you want to reach a specific identity group, you will not be able to use our matching service. You can reach them through an open call project, or go through a Community Connector or community organization.": "Please note that if you want to reach a specific identity group, you will not be able to use our matching service. You can reach them through an open call project, or go through a Community Connector or community organization.", "Please note that selecting some of these options may open up new follow-up questions below them. ": "Please note that selecting some of these options may open up new follow-up questions below them. ", "Please provide personal information that will help us find consultations for you to participate in.": "Please provide personal information that will help us find consultations for you to participate in.", "Please provide the details for a member of your team whom potential participants may contact to ask questions.": "Please provide the details for a member of your team whom potential participants may contact to ask questions.", "Please reach out to us and we can try to help.": "Please reach out to us and we can try to help.", "Please read these terms of service carefully.": "Please read these terms of service carefully.", "Please reset your password for The Accessibility Exchange": "Please reset your password for The Accessibility Exchange", - "Please respond by :date.": "Please respond by :date.", "Please review and publish your engagement details.": "Please review and publish your engagement details.", - "Please review and update your communication and consultation preferences": "Please review and update your communication and consultation preferences", - "Please review and update your matching information": "Please review and update your matching information", - "Please review and update your public page": "Please review and update your public page", "Please review your page. There is some information for your new role that you will have to fill in.": "Please review your page. There is some information for your new role that you will have to fill in.", - "Please see the resource [Planning a Safe, Accessible Consultation](:url).": "Please see the resource [Planning a Safe, Accessible Consultation](:url).", "Please select a language.": "Please select a language.", "Please select a language that the engagement documents will be in.": "Please select a language that the engagement documents will be in.", "Please select a language to remove.": "Please select a language to remove.", "Please select a recruitment method": "Please select a recruitment method", - "Please select disability groups that your organization specifically represents": "Please select disability groups that your organization specifically represents", "Please select the disability and\/or Deaf groups that you can connect to.": "Please select the disability and\/or Deaf groups that you can connect to.", "Please select the disability and\/or Deaf groups that your organization :represents_or_serves_and_supports": "Please select the disability and\/or Deaf groups that your organization :represents_or_serves_and_supports", - "Please select the disability groups that you can connect to.": "Please select the disability groups that you can connect to.", - "Please select the languages that you can translate your page into.": "Please select the languages that you can translate your page into.", "Please select the languages that your engagement information can be translated into by your organization.": "Please select the languages that your engagement information can be translated into by your organization.", "Please select the languages that your project information can be translated into by your organization.": "Please select the languages that your project information can be translated into by your organization.", "Please select the original project for which this is a follow-up:": "Please select the original project for which this is a follow-up:", "Please select the specific disability and\/or Deaf groups that you can connect to.": "Please select the specific disability and\/or Deaf groups that you can connect to.", "Please select the specific disability and\/or Deaf groups that your organization :represents_or_serves_and_supports": "Please select the specific disability and\/or Deaf groups that your organization :represents_or_serves_and_supports", "Please select your time zone…": "Please select your time zone…", - "Please sign this agreement and send to :email": "Please sign this agreement and send to :email", - "Please sign up for this engagement by:": "Please sign up for this engagement by:", - "Please sign up for this engagement by :date.": "Please sign up for this engagement by :date.", - "Please take the quiz to complete": "Please take the quiz to complete", - "Please take this quick quiz to confirm your understanding. Once you pass the quiz, you will receive credit for finishing the webinar.": "Please take this quick quiz to confirm your understanding. Once you pass the quiz, you will receive credit for finishing the webinar.", "Please tell us more about the individuals you’d like participating in your engagement.": "Please tell us more about the individuals you’d like participating in your engagement.", "Please tell us more about the organization you’d like participating in your engagement.": "Please tell us more about the organization you’d like participating in your engagement.", "Please tell us the type of organization you are representing.": "Please tell us the type of organization you are representing.", @@ -1450,12 +1185,9 @@ "Please tell us what you would like to do on this website.": "Please tell us what you would like to do on this website.", "Please tell us which community or communities your organization :represents_or_serves_and_supports.": "Please tell us which community or communities your organization :represents_or_serves_and_supports.", "Please tell us which language you would like to use on The Accessibility Exchange.": "Please tell us which language you would like to use on The Accessibility Exchange.", - "Please try again.": "Please try again.", "Please use the 24 hour clock time. For example, 13:00 is 1pm.": "Please use the 24 hour clock time. For example, 13:00 is 1pm.", "Please verify your email address by clicking on the link we emailed to you. If you didn’t receive the email, we will gladly send you another.": "Please verify your email address by clicking on the link we emailed to you. If you didn’t receive the email, we will gladly send you another.", "Please wait a few moments and try again.": "Please wait a few moments and try again.", - "Please [update your access needs](:url) if they have changed.": "Please [update your access needs](:url) if they have changed.", - "Please [update your communication and consultation preferences](:url) if they have changed.": "Please [update your communication and consultation preferences](:url) if they have changed.", "Policy and programs": "Policy and programs", "Postal code": "Postal code", "Post your engagement as an open call. Anyone who fits your selection criteria can sign up. It is first-come, first-served until the number of participants you are seeking has been reached.": "Post your engagement as an open call. Anyone who fits your selection criteria can sign up. It is first-come, first-served until the number of participants you are seeking has been reached.", @@ -1465,21 +1197,16 @@ "Preferred contact method": "Preferred contact method", "Preferred notification method": "Preferred notification method", "present": "present", - "Preview": "Preview", "Preview page": "Preview page", - "Previous engagement": "Previous engagement", "Pricing": "Pricing", "Prince Edward Island": "Prince Edward Island", - "Printed documents": "Printed documents", "Printed version of engagement documents": "Printed version of engagement documents", "Privacy": "Privacy", "PRIVACY AND CONFIDENTIALITY.": "PRIVACY AND CONFIDENTIALITY.", "privacy policy": "privacy policy", "Privacy Policy": "Privacy Policy", "Procurement": "Procurement", - "Professional consultants who can help Regulated Organizations plan and run the consultation, analyze collected information, write accessibility reports, and book accessibility service providers.": "Professional consultants who can help Regulated Organizations plan and run the consultation, analyze collected information, write accessibility reports, and book accessibility service providers.", "project": "project", - "Project by :organization": "Project by :organization", "Project by :projectable": "Project by :projectable", "Project details": "Project details", "Project duration": "Project duration", @@ -1488,7 +1215,6 @@ "project goals": "project goals", "Project goals must be provided in at least one language.": "Project goals must be provided in at least one language.", "Project impact": "Project impact", - "Project invitation": "Project invitation", "Project name": "Project name", "project name": "project name", "Project outcome": "Project outcome", @@ -1505,13 +1231,7 @@ "Projects I am running": "Projects I am running", "Projects involved in as a Community Connector": "Projects involved in as a Community Connector", "Projects involved in as a Consultation Participant": "Projects involved in as a Consultation Participant", - "Projects I’m participating in as a :role.": "Projects I’m participating in as a :role.", - "Projects I’m participating in as a Consultation Participant.": "Projects I’m participating in as a Consultation Participant.", "Projects I’m running": "Projects I’m running", - "Projects I’m working on as an Accessibility Consultant or Community Connector.": "Projects I’m working on as an Accessibility Consultant or Community Connector.", - "Projects my organization is contracted for as an Accessibility Consultant or Community Connector.": "Projects my organization is contracted for as an Accessibility Consultant or Community Connector.", - "Projects my organization is participating in as a Consultation Participant.": "Projects my organization is participating in as a Consultation Participant.", - "Projects my organization is running.": "Projects my organization is running.", "Project start date": "Project start date", "Projects that are looking for people that my organization represents or supports": "Projects that are looking for people that my organization represents or supports", "Projects that are looking for someone with my lived experience": "Projects that are looking for someone with my lived experience", @@ -1529,37 +1249,28 @@ "Providing this information will help us match you to projects that are working on areas of interest to you.": "Providing this information will help us match you to projects that are working on areas of interest to you.", "Province or territory": "Province or territory", "province or territory": "province or territory", - "Public page": "Public page", "Public profile": "Public profile", "Publish": "Publish", "Published": "Published", - "Published on": "Published on", "Published on: :created_at": "Published on: :created_at", "Published on :date": "Published on :date", "Publish page": "Publish page", - "Publish project": "Publish project", "Quebec": "Quebec", - "Question :current of :total": "Question :current of :total", "QUESTIONS": "QUESTIONS", "Questions are sent to participants by:": "Questions are sent to participants by:", "Quick exit": "Quick exit", "Quick links": "Quick links", "Quiz": "Quiz", - "Quiz completed": "Quiz completed", "Quiz results": "Quiz results", "Quiz Results for :name": "Quiz Results for :name", "Race and ethnicity": "Race and ethnicity", - "Read more about these types of organizations": "Read more about these types of organizations", "Read our privacy policy": "Read our privacy policy", - "Ready": "Ready", "Ready to publish": "Ready to publish", - "Real-time consultations": "Real-time consultations", "Real time interview": "Real time interview", "receive communication from them": "receive communication from them", "Received": "Received", "Recommendation": "Recommendation", "Recommended": "Recommended", - "Record responses at my own pace": "Record responses at my own pace", "Recruit individuals who are Deaf or have disabilities to give input on your own projects.": "Recruit individuals who are Deaf or have disabilities to give input on your own projects.", "Recruitment": "Recruitment", "Recruitment method": "Recruitment method", @@ -1580,11 +1291,9 @@ "Relevant experiences (optional)": "Relevant experiences (optional)", "Relevant work and volunteer experience.": "Relevant work and volunteer experience.", "Reminders": "Reminders", - "Reminders (for events or for submitting engagement documents)": "Reminders (for events or for submitting engagement documents)", "Remote areas": "Remote areas", "Remove": "Remove", "Remove :member from your organization": "Remove :member from your organization", - "Remove :name from your organization": "Remove :name from your organization", "Remove :notificationable": "Remove :notificationable", "Remove :user from :membershipable": "Remove :user from :membershipable", "Remove experience": "Remove experience", @@ -1595,7 +1304,6 @@ "Remove this location": "Remove this location", "Remove this training": "Remove this training", "represent": "represent", - "Representative community organization": "Representative community organization", "Representative organization": "Representative organization", "Representative organizations": "Representative organizations", "represents": "represents", @@ -1606,7 +1314,6 @@ "required without an author organization": "required without an author organization", "requires VRS": "requires VRS", "Resend verification email": "Resend verification email", - "Reset": "Reset", "Reset your password": "Reset your password", "Resource": "Resource", "Resource collections": "Resource collections", @@ -1614,12 +1321,9 @@ "Resource link": "Resource link", "Resources": "Resources", "Resources and training": "Resources and training", - "Resources by role": "Resources by role", - "Resources for this phase": "Resources for this phase", "Resource title": "Resource title", "Resource type": "Resource type", "Resource type: Training": "Resource type: Training", - "Resource type by :author": "Resource type by :author", "Responses are due by:": "Responses are due by:", "Returned": "Returned", "Return to dashboard": "Return to dashboard", @@ -1627,15 +1331,12 @@ "Review and publish your organization’s public page": "Review and publish your organization’s public page", "Review and publish your public page": "Review and publish your public page", "Review engagement details": "Review engagement details", - "Review my organization’s page": "Review my organization’s page", - "Review my page": "Review my page", "Review project": "Review project", "Review project details": "Review project details", "Role": "Role", "Roles": "Roles", "Roles:": "Roles:", "Roles and permissions": "Roles and permissions", - "Role|Roles": "Role|Roles", "Run by": "Run by", "Running": "Running", "Running a consultation": "Running a consultation", @@ -1654,26 +1355,19 @@ "Save selection criteria": "Save selection criteria", "Scheduling": "Scheduling", "Search": "Search", - "Search...": "Search...", "Search by account name": "Search by account name", - "Search by name...": "Search by name...", "Search by organization name": "Search by organization name", "Search for resources": "Search for resources", - "Search name or lived experience...": "Search name or lived experience...", - "Search term": "Search term", "secondary": "secondary", "Sector": "Sector", "Sector:": "Sector:", - "Sector: :sector": "Sector: :sector", "Sectors": "Sectors", "Sectors of interest": "Sectors of interest", "SECURITY.": "SECURITY.", - "Seeking Accessibility Consultants": "Seeking Accessibility Consultants", "Seeking Community Connector": "Seeking Community Connector", "Seeking community connector": "Seeking community connector", "Seeking Community Connectors": "Seeking Community Connectors", "Seeking Community Organizations to consult with": "Seeking Community Organizations to consult with", - "Seeking Consultation Participants": "Seeking Consultation Participants", "Seeking Individual Consultation Participants": "Seeking Individual Consultation Participants", "Seeking Participants": "Seeking Participants", "Seeking participants": "Seeking participants", @@ -1685,9 +1379,6 @@ "Selecting some of these options may open up new follow-up questions below them.": "Selecting some of these options may open up new follow-up questions below them.", "Select language": "Select language", "Select none": "Select none", - "Select specific cities or towns": "Select specific cities or towns", - "Select specific provinces or territories": "Select specific provinces or territories", - "Select your criteria": "Select your criteria", "Send invitation": "Send invitation", "Send request": "Send request", "Send the estimate and agreement to <:contact>.": "Send the estimate and agreement to <:contact>.", @@ -1695,8 +1386,6 @@ "serves and supports": "serves and supports", "Service areas": "Service areas", "Service delivery": "Service delivery", - "Service location": "Service location", - "Service organization": "Service organization", "Settings": "Settings", "Share some information about yourself, including which communities you are connected to, so governments and businesses can get to know you and how you may be able to help them.": "Share some information about yourself, including which communities you are connected to, so governments and businesses can get to know you and how you may be able to help them.", "Share some information about yourself so governments and businesses can get to know you and what you may be able to help them with.": "Share some information about yourself so governments and businesses can get to know you and what you may be able to help them with.", @@ -1711,9 +1400,6 @@ "Sign language interpretation": "Sign language interpretation", "Sign language interpretations": "Sign language interpretations", "Sign language translation": "Sign language translation", - "Sign language translation - :language": "Sign language translation - :language", - "Sign language translation - ASL": "Sign language translation - ASL", - "Sign Language translations": "Sign Language translations", "Sign Language video": "Sign Language video", "Sign out": "Sign out", "Sign up": "Sign up", @@ -1743,13 +1429,11 @@ "Social media and website links": "Social media and website links", "Social media links": "Social media links", "Software": "Software", - "Software:": "Software:", "solicit personal information from any Underaged Person; or harm such persons in any way;": "solicit personal information from any Underaged Person; or harm such persons in any way;", "SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OR EXCLUSION OF CERTAIN WARRANTIES OR THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES. ACCORDINGLY, SOME OF THE ABOVE LIMITATIONS SET FORTH ABOVE MAY NOT APPLY TO YOU OR BE ENFORCEABLE WITH RESPECT TO YOU.": "SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OR EXCLUSION OF CERTAIN WARRANTIES OR THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES. ACCORDINGLY, SOME OF THE ABOVE LIMITATIONS SET FORTH ABOVE MAY NOT APPLY TO YOU OR BE ENFORCEABLE WITH RESPECT TO YOU.", "Some of the access needs you’ve chosen need :projectable to directly contact you to arrange and deliver. Are you okay with us putting your name beside this access need?": "Some of the access needs you’ve chosen need :projectable to directly contact you to arrange and deliver. Are you okay with us putting your name beside this access need?", "Someone to call and walk you through the information": "Someone to call and walk you through the information", "Some participants may not be able to meet in real-time. For them, you can send out a list of questions, and participants can respond to them in formats you accept.": "Some participants may not be able to meet in real-time. For them, you can send out a list of questions, and participants can respond to them in formats you accept.", - "Something changed?": "Something changed?", "Something else": "Something else", "Sometimes, governments and businesses also want to talk to people with specific experiences. For example, people from a certain location. Or, people who speak a certain first language.": "Sometimes, governments and businesses also want to talk to people with specific experiences. For example, people from a certain location. Or, people who speak a certain first language.", "South Asian": "South Asian", @@ -1758,7 +1442,6 @@ "Specific provinces or territories": "Specific provinces or territories", "Spoken language interpretation": "Spoken language interpretation", "Staff lived experience": "Staff lived experience", - "Start adding participants to this engagement": "Start adding participants to this engagement", "Start date": "Start date", "start date": "start date", "Start time": "Start time", @@ -1768,12 +1451,10 @@ "Status": "Status", "Status updated": "Status updated", "Step :current of :total": "Step :current of :total", - "Steps for creating your page": "Steps for creating your page", "Steps for creating your project": "Steps for creating your project", "Stop": "Stop", "Street address": "Street address", "Submit": "Submit", - "Success": "Success", "Such as, federal departments, agencies, and crown corporations, other public sector bodies and businesses.": "Such as, federal departments, agencies, and crown corporations, other public sector bodies and businesses.", "Such as Autism, ADHD": "Such as Autism, ADHD", "Such as broken limbs, gestational diabetes": "Such as broken limbs, gestational diabetes", @@ -1792,16 +1473,11 @@ "Support phone": "Support phone", "Survey": "Survey", "Survey materials": "Survey materials", - "Surveys": "Surveys", "SURVEYS.": "SURVEYS.", "Suspend": "Suspend", "Suspended": "Suspended", - "Switch to:": "Switch to:", "System theme": "System theme", - "Table of contents": "Table of contents", "Take Quiz": "Take Quiz", - "Take the quiz": "Take the quiz", - "Talk to an Accessibility Consultant": "Talk to an Accessibility Consultant", "Tangible outcomes must be provided in at least one language.": "Tangible outcomes must be provided in at least one language.", "tangible outcomes of this project": "tangible outcomes of this project", "Tangible outcomes of this project": "Tangible outcomes of this project", @@ -1813,7 +1489,6 @@ "Tell us your business name": "Tell us your business name", "Tell us your organization’s name": "Tell us your organization’s name", "Templates and forms": "Templates and forms", - "Temporary": "Temporary", "Temporary disabilities": "Temporary disabilities", "TERMINATION.": "TERMINATION.", "terms of service": "terms of service", @@ -1835,11 +1510,7 @@ "The agreement will be sent with your estimate. Please sign this agreement and send it to <:email>.": "The agreement will be sent with your estimate. Please sign this agreement and send it to <:email>.", "The Canadian Forces and the Royal Canadian Mounted Police": "The Canadian Forces and the Royal Canadian Mounted Police", "The Community Organization being consulted with for this engagement.": "The Community Organization being consulted with for this engagement.", - "The demographic breakdown of your confirmed participants will show when your sign up deadline has passed. Please come back and check again at that time.": "The demographic breakdown of your confirmed participants will show when your sign up deadline has passed. Please come back and check again at that time.", "The estimate for “:project” has been marked as returned.": "The estimate for “:project” has been marked as returned.", - "The following access needs have been shared with :name anonymously. They will not know it is you who requested them.": "The following access needs have been shared with :name anonymously. They will not know it is you who requested them.", - "The following preferences have been shared with :name.": "The following preferences have been shared with :name.", - "The group of participants who have accepted your invitation include:": "The group of participants who have accepted your invitation include:", "The individual on this website with the email address you provided is not a community connector.": "The individual on this website with the email address you provided is not a community connector.", "The individual with the email address you provided is already participating in this engagement.": "The individual with the email address you provided is already participating in this engagement.", "The languages you can work in.": "The languages you can work in.", @@ -1862,14 +1533,11 @@ "The other payment type must be specified.": "The other payment type must be specified.", "The person with the email address you provided is not a consultation participant.": "The person with the email address you provided is not a consultation participant.", "The provided password does not match your current password.": "The provided password does not match your current password.", - "The Regulated Organization sends out a list of questions, and you can respond to them at your own pace.": "The Regulated Organization sends out a list of questions, and you can respond to them at your own pace.", "There is already a :type with the name “:name” registered on this platform. If this is the organization you work for, please contact your colleagues to get an invitation to the organization. If this isn’t the organization you work for, please use a different name.": "There is already a :type with the name “:name” registered on this platform. If this is the organization you work for, please contact your colleagues to get an invitation to the organization. If this isn’t the organization you work for, please use a different name.", - "There is already an organization with the name “:name” registered on this platform. If this is the organization you work for, please contact your colleagues to get an invitation to the organization. If this isn’t the organization you work for, please use a different name.": "There is already an organization with the name “:name” registered on this platform. If this is the organization you work for, please contact your colleagues to get an invitation to the organization. If this isn’t the organization you work for, please use a different name.", "There is no disability type filled in under \"something else\". Please fill this in.": "There is no disability type filled in under \"something else\". Please fill this in.", "There is no ethnoracial identity filled in under \"something else\". Please fill this in.": "There is no ethnoracial identity filled in under \"something else\". Please fill this in.", "These are the seven areas listed within the Accessible Canada Act. By law, entities must ensure these areas are accessible.": "These are the seven areas listed within the Accessible Canada Act. By law, entities must ensure these areas are accessible.", "These are the seven areas listed within the Accessible Canada Act. Federally regulated organizations must work to improve their accessibility in all of these areas.": "These are the seven areas listed within the Accessible Canada Act. Federally regulated organizations must work to improve their accessibility in all of these areas.", - "These details will help people know what to expect when working with you.": "These details will help people know what to expect when working with you.", "The selected consulting service is invalid": "The selected consulting service is invalid", "The selected working language is not valid.": "The selected working language is not valid.", "These organizations, coalitions, cross-disability or umbrella groups are made up of, and controlled by, persons with disabilities, Deaf persons, and\/or their family members. These organizations were created to advance and defend the rights of persons with disabilities.": "These organizations, coalitions, cross-disability or umbrella groups are made up of, and controlled by, persons with disabilities, Deaf persons, and\/or their family members. These organizations were created to advance and defend the rights of persons with disabilities.", @@ -1897,7 +1565,6 @@ "This does not have to be your legal name.": "This does not have to be your legal name.", "This engagement is a **paid** opportunity.": "This engagement is a **paid** opportunity.", "This engagement is a **volunteer** opportunity.": "This engagement is a **volunteer** opportunity.", - "This engagement is a volunteer engagement. There will be no monetary payment.": "This engagement is a volunteer engagement. There will be no monetary payment.", "This estimate includes the following engagements:": "This estimate includes the following engagements:", "This estimate was sent to :contact on :date.": "This estimate was sent to :contact on :date.", "This includes disability and Deaf representative organizations, support organizations, and other civil society organizations (not only disability focused).": "This includes disability and Deaf representative organizations, support organizations, and other civil society organizations (not only disability focused).", @@ -1912,9 +1579,7 @@ "This is also the email you use to sign in to this account.": "This is also the email you use to sign in to this account.", "This is a summary of the access needs for your confirmed participants.": "This is a summary of the access needs for your confirmed participants.", "This is for individuals with disabilities or Deaf people and their supporters, and those wishing to offer accessibility consulting and community connection services.": "This is for individuals with disabilities or Deaf people and their supporters, and those wishing to offer accessibility consulting and community connection services.", - "This is not the same as deleting your individual account for yourself. If you would like to delete your individual account, please go to [Delete my account](:url).": "This is not the same as deleting your individual account for yourself. If you would like to delete your individual account, please go to [Delete my account](:url).", "This is the email address you will use to sign in to The Accessibility Exchange.": "This is the email address you will use to sign in to The Accessibility Exchange.", - "This is the email that the invitation will be sent to.": "This is the email that the invitation will be sent to.", "This is the email your invitation will be sent to.": "This is the email your invitation will be sent to.", "This is the email you use to log into the website.": "This is the email you use to log into the website.", "This is the ideal number of participants you would like to have for this engagement. The least you can select is 10 participants.": "This is the ideal number of participants you would like to have for this engagement. The least you can select is 10 participants.", @@ -1927,8 +1592,6 @@ "This organization has people on staff who have lived experience of the communities they :represent_or_serve_and_support.": "This organization has people on staff who have lived experience of the communities they :represent_or_serve_and_support.", "This site is for three kinds of users. Select an option below to learn more.": "This site is for three kinds of users. Select an option below to learn more.", "This site uses cookies to help provide a better experience.": "This site uses cookies to help provide a better experience.", - "This survey will be provided in the following digital formats:": "This survey will be provided in the following digital formats:", - "This survey will be provided in the following formats:": "This survey will be provided in the following formats:", "This website was made in partnership with members and organizations from the disability and Deaf communities, supporters, and members from Federally Regulated Organizations.": "This website was made in partnership with members and organizations from the disability and Deaf communities, supporters, and members from Federally Regulated Organizations.", "This will help governments and businesses communicate and work with you in a format that is accessible to you.": "This will help governments and businesses communicate and work with you in a format that is accessible to you.", "This will help people know what to expect when working with you.": "This will help people know what to expect when working with you.", @@ -1963,7 +1626,6 @@ "Trainer": "Trainer", "Training": "Training", "Training by: :author": "Training by: :author", - "Training by :name": "Training by :name", "training date": "training date", "training name": "training name", "Training organization or trainer": "Training organization or trainer", @@ -1971,39 +1633,28 @@ "training organization or trainer website address": "training organization or trainer website address", "Training Participant": "Training Participant", "Training your team has received": "Training your team has received", - "Transcript": "Transcript", "Translations": "Translations", "transmit any viruses, worms, defects, Trojan horses, or other items of a destructive nature;": "transmit any viruses, worms, defects, Trojan horses, or other items of a destructive nature;", "Trans people": "Trans people", "Tuesday": "Tuesday", "Twitter page": "Twitter page", "Two-factor authentication": "Two-factor authentication", - "Type of community organization": "Type of community organization", "Type of organization": "Type of organization", "Types of experiences or identities": "Types of experiences or identities", "Types of meetings offered": "Types of meetings offered", "Types of regulated organizations": "Types of regulated organizations", "Unblock": "Unblock", "Unblock :blockable": "Unblock :blockable", - "Unblock :organization": "Unblock :organization", "unblock them": "unblock them", - "Unfortunately you will not be able to continue using The Accessibility Exchange at this time. You will no longer be able to log in through your account. If you have any questions, please reach out to us at :email or :phone.": "Unfortunately you will not be able to continue using The Accessibility Exchange at this time. You will no longer be able to log in through your account. If you have any questions, please reach out to us at :email or :phone.", "Unit, apartment, or suite": "Unit, apartment, or suite", "Unit, suite, or floor": "Unit, suite, or floor", "Unpublish": "Unpublish", - "Unpublish my page": "Unpublish my page", "Unpublish page": "Unpublish page", "Unread": "Unread", - "Unsaved content": "Unsaved content", "Unsuspend": "Unsuspend", "Upcoming": "Upcoming", "Update": "Update", "Update estimate status": "Update estimate status", - "Update matching information": "Update matching information", - "Update preferences": "Update preferences", - "Update your communication and consultation preferences": "Update your communication and consultation preferences", - "Update your matching information": "Update your matching information", - "Upload a file": "Upload a file", "upon request": "upon request", "Upon request": "Upon request", "Urban, rural, or remote": "Urban, rural, or remote", @@ -2027,33 +1678,23 @@ "View page": "View page", "violate any of the obligations contained in these Terms, including, but not limited to, those contained in Section 9 hereof pertaining to intellectual property rights.": "violate any of the obligations contained in these Terms, including, but not limited to, those contained in Section 9 hereof pertaining to intellectual property rights.", "violate these Terms, any code of conduct or other guidelines which may be applicable for any particular area of the Platform, including those that have been communicated to you by anyone affiliated with IRIS; or": "violate these Terms, any code of conduct or other guidelines which may be applicable for any particular area of the Platform, including those that have been communicated to you by anyone affiliated with IRIS; or", - "Virtual - web conference": "Virtual - web conference", - "Virtual on :tool": "Virtual on :tool", "Virtual or in-person": "Virtual or in-person", "Virtual – phone call": "Virtual – phone call", "Virtual – web conference": "Virtual – web conference", "Virtual — phone call": "Virtual — phone call", "Virtual — video call": "Virtual — video call", - "Visit :language website": "Visit :language website", "Visit engagement": "Visit engagement", "Visit engagement: :url.": "Visit engagement: :url.", - "Visit our Resource page": "Visit our Resource page", "Visual disabilities": "Visual disabilities", "Voice recording": "Voice recording", "Volunteer": "Volunteer", "VRS": "VRS", - "Walkthrough": "Walkthrough", - "Warning": "Warning", - "Watched": "Watched", - "Watch introduction video again": "Watch introduction video again", "Ways to attend": "Ways to attend", - "Ways to do this": "Ways to do this", "Ways to participate": "Ways to participate", "We ask Accessibility Consultants for the following information:": "We ask Accessibility Consultants for the following information:", "We ask Community Connectors for the following information:": "We ask Community Connectors for the following information:", "We ask Consultation Participants for the following information:": "We ask Consultation Participants for the following information:", "WebEx": "WebEx", - "Webinars": "Webinars", "Website": "Website", "Website accessibility preferences": "Website accessibility preferences", "Website language": "Website language", @@ -2073,15 +1714,11 @@ "We will ask you for your preferred method of payment.": "We will ask you for your preferred method of payment.", "We will ask you to indicate:": "We will ask you to indicate:", "We will notify you about being invited to engagements by directly contacting you or your support person.": "We will notify you about being invited to engagements by directly contacting you or your support person.", - "What access supports will be needed?": "What access supports will be needed?", "What age group are you interested in engaging?": "What age group are you interested in engaging?", "what age groups you can connect to": "what age groups you can connect to", "What areas of accessibility planning and design are you most interested in consulting on?": "What areas of accessibility planning and design are you most interested in consulting on?", - "What are the different roles that are played in The Accessibility Exchange": "What are the different roles that are played in The Accessibility Exchange", - "What are the different roles that are played in The Accessibility Exchange?": "What are the different roles that are played in The Accessibility Exchange?", "What are your lived experiences of disability or other intersectional identities?": "What are your lived experiences of disability or other intersectional identities?", "What are your skills and strengths relevant to The Accessibility Exchange?": "What are your skills and strengths relevant to The Accessibility Exchange?", - "What cultural practices and protocols do we need to be sensitive to?": "What cultural practices and protocols do we need to be sensitive to?", "what disability or Deaf communities you can connect to": "what disability or Deaf communities you can connect to", "What do we mean when we say “Community organizations”?": "What do we mean when we say “Community organizations”?", "What do we mean when we say “disability”?": "What do we mean when we say “disability”?", @@ -2100,11 +1737,8 @@ "What language(s) does your organization work in?": "What language(s) does your organization work in?", "what language groups you can connect to": "what language groups you can connect to", "What languages are used by the people you can connect to?": "What languages are used by the people you can connect to?", - "What needs your permission to share": "What needs your permission to share", "what other intersectional communities you can connect to": "what other intersectional communities you can connect to", "What provinces or territories does your organization serve?": "What provinces or territories does your organization serve?", - "What safety protocol should be used if a participant becomes upset?": "What safety protocol should be used if a participant becomes upset?", - "What services does The Accessibility Exchange offer?": "What services does The Accessibility Exchange offer?", "What specific disability and Deaf group or groups are you interested in engaging?": "What specific disability and Deaf group or groups are you interested in engaging?", "What specific languages do the people your organization :represents_or_serves_and_supports use?": "What specific languages do the people your organization :represents_or_serves_and_supports use?", "What type of regulated organization are you?": "What type of regulated organization are you?", @@ -2112,12 +1746,9 @@ "What types of payment are you able to accept?": "What types of payment are you able to accept?", "What types of Regulated Organization are you interested consulting with on accessibility planning and design?": "What types of Regulated Organization are you interested consulting with on accessibility planning and design?", "What you can do on this website": "What you can do on this website", - "What’s been shared anonymously": "What’s been shared anonymously", "When Federally Regulated Organizations use the matching service to find a group of Consultation Participants, The Accessibility Exchange will create a diverse group of participants in terms of being disabled, Deaf, and other identities. This diversity can maximize the number of perspectives which can be represented.": "When Federally Regulated Organizations use the matching service to find a group of Consultation Participants, The Accessibility Exchange will create a diverse group of participants in terms of being disabled, Deaf, and other identities. This diversity can maximize the number of perspectives which can be represented.", "When you block someone, you will not be able to:": "When you block someone, you will not be able to:", - "When you select this option, your profile page will be hidden from everyone except yourself until you publish it again.": "When you select this option, your profile page will be hidden from everyone except yourself until you publish it again.", "When you sign up to participate in consultations, the access needs you check off below will be shared with the organization you are working with so they can meet them.": "When you sign up to participate in consultations, the access needs you check off below will be shared with the organization you are working with so they can meet them.", - "When you unblock someone, they will be able to:": "When you unblock someone, they will be able to:", "Where are your organization’s service areas?": "Where are your organization’s service areas?", "Where do the people that you :represent_or_serve_and_support come from?": "Where do the people that you :represent_or_serve_and_support come from?", "Where do the people that you can connect to come from?": "Where do the people that you can connect to come from?", @@ -2132,63 +1763,47 @@ "Whether they identify with one or more of the 2SLGBTQIA+ identities": "Whether they identify with one or more of the 2SLGBTQIA+ identities", "Which age groups can you connect to?": "Which age groups can you connect to?", "Which age groups does your organization specifically :represent_or_serve_and_support?": "Which age groups does your organization specifically :represent_or_serve_and_support?", - "Which age groups does your organization specifically represent?": "Which age groups does your organization specifically represent?", "Which days of the week are available for interviews to be scheduled?": "Which days of the week are available for interviews to be scheduled?", "Which ethno-racial identity or identities are the people you can connect to?": "Which ethno-racial identity or identities are the people you can connect to?", - "Which ethno-racial identity or identities are the people your organization specifically represents?": "Which ethno-racial identity or identities are the people your organization specifically represents?", "Which ethnoracial identity or identities are the people your organization specifically :represents_or_serves_and_supports": "Which ethnoracial identity or identities are the people your organization specifically :represents_or_serves_and_supports", - "Which groups can you connect to?": "Which groups can you connect to?", "Which groups marginalized based on gender or sexual identity can you connect to?": "Which groups marginalized based on gender or sexual identity can you connect to?", "Which groups marginalized based on gender or sexual identity does your organization specifically :represent_or_serve_and_support?": "Which groups marginalized based on gender or sexual identity does your organization specifically :represent_or_serve_and_support?", - "Which groups marginalized based on gender or sexual identity does your organization specifically represent?": "Which groups marginalized based on gender or sexual identity does your organization specifically represent?", "Which Indigenous groups can you connect to?": "Which Indigenous groups can you connect to?", "Which Indigenous groups does your organization specifically :represent_or_serve_and_support?": "Which Indigenous groups does your organization specifically :represent_or_serve_and_support?", - "Which Indigenous groups does your organization specifically represent?": "Which Indigenous groups does your organization specifically represent?", "Which of these areas can you help a regulated organization with?": "Which of these areas can you help a regulated organization with?", "White": "White", "White on black": "White on black", "Who can be a :role?": "Who can be a :role?", - "Who can play these roles?": "Who can play these roles?", "Who do you want to engage?": "Who do you want to engage?", "who is going through the results": "who is going through the results", "Who they’re seeking": "Who they’re seeking", "Who we’re looking for": "Who we’re looking for", "Who will be going through the results and producing an outcome?": "Who will be going through the results and producing an outcome?", - "Who will be the best person to facilitate your consultation?": "Who will be the best person to facilitate your consultation?", "Who you’re joining as": "Who you’re joining as", "Who’s responsible for going through results and producing an outcome": "Who’s responsible for going through results and producing an outcome", "Why do we ask for this information?": "Why do we ask for this information?", - "With disability and Deaf communities and hold meaningful consultations": "With disability and Deaf communities and hold meaningful consultations", "Women": "Women", "Word document": "Word document", "Working age adults (15–64)": "Working age adults (15–64)", "Working languages": "Working languages", "Workshop": "Workshop", - "Workshops": "Workshops", "Would you like to be notified directly when a project you have worked on uploads a new report?": "Would you like to be notified directly when a project you have worked on uploads a new report?", "Would you like to be notified directly when you are added as an Accessibility Consultant to a project?": "Would you like to be notified directly when you are added as an Accessibility Consultant to a project?", "Would you like to be notified directly when you are added to an engagement as a Community Connector?": "Would you like to be notified directly when you are added to an engagement as a Community Connector?", - "Would you like to be notified directly when you are assigned a new role by your organization admin?": "Would you like to be notified directly when you are assigned a new role by your organization admin?", - "Would you like to unpublish your consultant page? (You can republish it later.)": "Would you like to unpublish your consultant page? (You can republish it later.)", "Writing": "Writing", "Writing accessibility reports": "Writing accessibility reports", - "Writing your consultation report": "Writing your consultation report", "Written language translation": "Written language translation", - "Written language translation - :language": "Written language translation - :language", "Written or recorded responses": "Written or recorded responses", "Wrong answer": "Wrong answer", "Wrong answer.": "Wrong answer.", - "Year": "Year", "Year of birth": "Year of birth", "Yellow on black": "Yellow on black", "Yes": "Yes", "Yes, all": "Yes, all", - "Yes, I’m interested in a specific disability or Deaf group": "Yes, I’m interested in a specific disability or Deaf group", "Yes, I’m interested in a specific disability or Deaf group or groups": "Yes, I’m interested in a specific disability or Deaf group or groups", "Yes, I’m looking for a group with a specific experience and\/or identity (for example: Indigenous, immigrant, 2SLGBTQIA+)": "Yes, I’m looking for a group with a specific experience and\/or identity (for example: Indigenous, immigrant, 2SLGBTQIA+)", "Yes, leave engagement": "Yes, leave engagement", "Yes, project reports will be publicly available.": "Yes, project reports will be publicly available.", - "Yes, remove": "Yes, remove", "Yes, share my access needs": "Yes, share my access needs", "Yes, some": "Yes, some", "you": "you", @@ -2202,7 +1817,6 @@ "You already belong to an organization, so you cannot create a new one.": "You already belong to an organization, so you cannot create a new one.", "You are now able to publish your page.": "You are now able to publish your page.", "You are now able to publish your page and create projects and engagements.": "You are now able to publish your page and create projects and engagements.", - "You are now able to publish your page and new projects": "You are now able to publish your page and new projects", "You are now able to publish your page and sign up for projects.": "You are now able to publish your page and sign up for projects.", "You are now able to publish your page and take part in consultations.": "You are now able to publish your page and take part in consultations.", "You are now able to sign up for projects.": "You are now able to sign up for projects.", @@ -2213,12 +1827,10 @@ "You are previewing your public page.": "You are previewing your public page.", "You are previewing your regulated organization’s page.": "You are previewing your regulated organization’s page.", "You are solely responsible for all Content that you Upload or make available to IRIS (“**User Content**”).": "You are solely responsible for all Content that you Upload or make available to IRIS (“**User Content**”).", - "You can address these questions with your accessibility or equity, diversity and inclusion team, or work with an accessibility consultant or the Accessibility Exchange support service.": "You can address these questions with your accessibility or equity, diversity and inclusion team, or work with an accessibility consultant or the Accessibility Exchange support service.", "You can always change this by selecting the language menu.": "You can always change this by selecting the language menu.", "You can always change this later.": "You can always change this later.", "You can choose how you would like to take part:": "You can choose how you would like to take part:", "You can communicate directly with the business or government to figure out how to work on their accessibility project. You will be paid for your work.": "You can communicate directly with the business or government to figure out how to work on their accessibility project. You will be paid for your work.", - "You can define who you are looking for here. What you choose here will be applied to all your engagements under this project, unless you want to get more specific in your engagements.": "You can define who you are looking for here. What you choose here will be applied to all your engagements under this project, unless you want to get more specific in your engagements.", "You can join a consultation engagement in a few ways:": "You can join a consultation engagement in a few ways:", "You cannot block individuals or organizations.": "You cannot block individuals or organizations.", "You cannot block yourself.": "You cannot block yourself.", @@ -2239,18 +1851,14 @@ "You cannot unpublish this individual page.": "You cannot unpublish this individual page.", "You cannot unpublish this organization.": "You cannot unpublish this organization.", "You cannot unpublish this regulated organization.": "You cannot unpublish this regulated organization.", - "You can now sign up for projects.": "You can now sign up for projects.", - "You can now view :organization’s projects and engagements.": "You can now view :organization’s projects and engagements.", "You can only choose one of these options for each account. So, if you are a Deaf person who would like to participate in consultations, and you are also the contact for an organization that serves Deaf people, you should create two separate accounts, one as an individual, and as a Community Organization. That way, we can be sure to show you the right information based on who you’ve joined as.": "You can only choose one of these options for each account. So, if you are a Deaf person who would like to participate in consultations, and you are also the contact for an organization that serves Deaf people, you should create two separate accounts, one as an individual, and as a Community Organization. That way, we can be sure to show you the right information based on who you’ve joined as.", "You can play the page in spoken language. You can also highlight parts of this page, and they will be read out.": "You can play the page in spoken language. You can also highlight parts of this page, and they will be read out.", "You can provide either an exact number or a range.": "You can provide either an exact number or a range.", "You can share your lived experience if you feel it is relevant to your work.": "You can share your lived experience if you feel it is relevant to your work.", - "You can upload videos, images, audio, or other files.": "You can upload videos, images, audio, or other files.", "You can work on any projects related to accessibility on this website. This can be your organization’s Accessibility Plan or Report (as required under the Accessible Canada Act), or getting feedback on your customer service or accessibility in your workplace.": "You can work on any projects related to accessibility on this website. This can be your organization’s Accessibility Plan or Report (as required under the Accessible Canada Act), or getting feedback on your customer service or accessibility in your workplace.", "You currently do not have a Community Organization for this engagement.": "You currently do not have a Community Organization for this engagement.", "You don’t need to be a member of these communities yourself.": "You don’t need to be a member of these communities yourself.", "YOU EXPRESSLY UNDERSTAND AND AGREE THAT IRIS WILL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY DAMAGES, OR DAMAGES FOR LOSS OF PROFITS INCLUDING BUT NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, USE, DATA OR OTHER INTANGIBLE LOSSES (EVEN IF IRIS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES), WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, INCLUDING BUT NOT LIMITED TO THOSE DAMAGES RESULTING FROM: (I) THE USE OR THE INABILITY TO USE THE PLATFORM; (II) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS AND SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED OR TRANSACTIONS ENTERED INTO THROUGH OR FROM THE PLATFORM; (III) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (IV) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE PLATFORM; (V) ANY ACTION YOU TAKE BASED ON THE INFORMATION YOU RECEIVE IN THROUGH OR FROM PLATFORM; (VI) YOUR FAILURE TO KEEP YOUR PASSWORD OR ACCOUNT DETAILS SECURE AND CONFIDENTIAL; (VII) THE IMPROPER AUTHORIZATION FOR THE PLATFORM BY SOMEONE CLAIMING SUCH AUTHORITY; OR (VII) ANY OTHER MATTER RELATING TO THE PLATFORM.": "YOU EXPRESSLY UNDERSTAND AND AGREE THAT IRIS WILL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY DAMAGES, OR DAMAGES FOR LOSS OF PROFITS INCLUDING BUT NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, USE, DATA OR OTHER INTANGIBLE LOSSES (EVEN IF IRIS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES), WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, INCLUDING BUT NOT LIMITED TO THOSE DAMAGES RESULTING FROM: (I) THE USE OR THE INABILITY TO USE THE PLATFORM; (II) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS AND SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED OR TRANSACTIONS ENTERED INTO THROUGH OR FROM THE PLATFORM; (III) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (IV) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE PLATFORM; (V) ANY ACTION YOU TAKE BASED ON THE INFORMATION YOU RECEIVE IN THROUGH OR FROM PLATFORM; (VI) YOUR FAILURE TO KEEP YOUR PASSWORD OR ACCOUNT DETAILS SECURE AND CONFIDENTIAL; (VII) THE IMPROPER AUTHORIZATION FOR THE PLATFORM BY SOMEONE CLAIMING SUCH AUTHORITY; OR (VII) ANY OTHER MATTER RELATING TO THE PLATFORM.", - "You have been added to :project": "You have been added to :project", "You have been invited as a :role": "You have been invited as a :role", "You have been invited as a :role to :projectable’s :invitationable_type, :invitationable.": "You have been invited as a :role to :projectable’s :invitationable_type, :invitationable.", "You have been invited as a Consultation Participant": "You have been invited as a Consultation Participant", @@ -2258,36 +1866,20 @@ "You have been invited to join the :invitationable team!": "You have been invited to join the :invitationable team!", "You have been invited to join the :invitationable_type “:invitationable” as a :role.": "You have been invited to join the :invitationable_type “:invitationable” as a :role.", "You have been invited to join the :invitationable_type “:invitationable” as a participant.": "You have been invited to join the :invitationable_type “:invitationable” as a participant.", - "You have been invited to participate in :organization project, :project. They would like you to join for the :engagement engagement.": "You have been invited to participate in :organization project, :project. They would like you to join for the :engagement engagement.", - "You have been invited to participate in :projectable’s project, :project. They would like to interview you for their engagement, :engagement": "You have been invited to participate in :projectable’s project, :project. They would like to interview you for their engagement, :engagement", - "You have been invited to participate in :projectable’s project, :project. They would like you to consult with them for their engagement, :engagement": "You have been invited to participate in :projectable’s project, :project. They would like you to consult with them for their engagement, :engagement", - "You have been invited to participate in :projectable’s project, :project. They would like you to do their survey for their engagement, :engagement": "You have been invited to participate in :projectable’s project, :project. They would like you to do their survey for their engagement, :engagement", - "You have been invited to participate in :projectable’s project, :project. They would like you to join them for their :engagement_type, :engagement": "You have been invited to participate in :projectable’s project, :project. They would like you to join them for their :engagement_type, :engagement", - "You have been invited to participate in this engagement. Please respond by :date.": "You have been invited to participate in this engagement. Please respond by :date.", "You have been invited to the :invitationable_type \":invitationable\" as a :role on The Accessibility Exchange. Sign in to your account at https:\/\/accessibilityexchange.ca to continue.": "You have been invited to the :invitationable_type \":invitationable\" as a :role on The Accessibility Exchange. Sign in to your account at https:\/\/accessibilityexchange.ca to continue.", "You have been invited to the engagement \":invitationable\" as a participant on The Accessibility Exchange. Sign in to your account at https:\/\/accessibilityexchange.ca to continue.": "You have been invited to the engagement \":invitationable\" as a participant on The Accessibility Exchange. Sign in to your account at https:\/\/accessibilityexchange.ca to continue.", - "You have been listed as the Accessibility Consultant in :projectable’s project, :project.": "You have been listed as the Accessibility Consultant in :projectable’s project, :project.", "You have completed your engagement details, **but you won’t be able to publish them until you [get an estimate](:get_estimate) for this project and approve it**.": "You have completed your engagement details, **but you won’t be able to publish them until you [get an estimate](:get_estimate) for this project and approve it**.", - "You have completed your orientation session.": "You have completed your orientation session.", "You have declined an invitation on behalf of your organization, :organization, to work as a :role on :invitationable.": "You have declined an invitation on behalf of your organization, :organization, to work as a :role on :invitationable.", "You have declined your invitation to work as a :role on :invitationable.": "You have declined your invitation to work as a :role on :invitationable.", "You have joined :invitationable as a :role": "You have joined :invitationable as a :role", "You have not added any engagements yet.": "You have not added any engagements yet.", - "You have not determined the selection criteria for the people you seek for this project.": "You have not determined the selection criteria for the people you seek for this project.", "You have not passed the quiz.": "You have not passed the quiz.", - "You have not requested an estimate before.": "You have not requested an estimate before.", "You have now completed this course. Your certificate of completion has been sent to your email.": "You have now completed this course. Your certificate of completion has been sent to your email.", - "You have successfully accepted your invitation.": "You have successfully accepted your invitation.", - "You have successfully accepted your invitation. You are now a Consultation Participant for this engagement.": "You have successfully accepted your invitation. You are now a Consultation Participant for this engagement.", "You have successfully added :notificationable to your list.": "You have successfully added :notificationable to your list.", "You have successfully added :organization as the Community Organization you are consulting with for this engagement.": "You have successfully added :organization as the Community Organization you are consulting with for this engagement.", - "You have successfully added :organization to your list.": "You have successfully added :organization to your list.", - "You have successfully added a new engagement.": "You have successfully added a new engagement.", "You have successfully approved your estimate.": "You have successfully approved your estimate.", "You have successfully blocked :blockable.": "You have successfully blocked :blockable.", - "You have successfully blocked :organization.": "You have successfully blocked :organization.", "You have successfully completed course :course and passed the quiz.": "You have successfully completed course :course and passed the quiz.", - "You have successfully invited :name to participate in this engagement.": "You have successfully invited :name to participate in this engagement.", "You have successfully left this engagement.": "You have successfully left this engagement.", "You have successfully removed :notificationable from your notification list.": "You have successfully removed :notificationable from your notification list.", "You have successfully removed :organization as the Community Organization for this engagement.": "You have successfully removed :organization as the Community Organization for this engagement.", @@ -2299,14 +1891,12 @@ "You have successfully signed up for this engagement.": "You have successfully signed up for this engagement.", "You have successfully submitted an estimate request.": "You have successfully submitted an estimate request.", "You have successfully unblocked :blockable.": "You have successfully unblocked :blockable.", - "You have successfully unpublished your Regulated Organization profile.": "You have successfully unpublished your Regulated Organization profile.", "You may accept this invitation by clicking the button below:": "You may accept this invitation by clicking the button below:", "You must agree to the privacy policy.": "You must agree to the privacy policy.", "You must agree to the terms of service.": "You must agree to the terms of service.", "You must answer this question": "You must answer this question", "You must attend an [orientation session](:url) and fill in all the required information before you can publish your page.": "You must attend an [orientation session](:url) and fill in all the required information before you can publish your page.", "You must attend an [orientation session](:url) and fill in all the required information before you can publish your project.": "You must attend an [orientation session](:url) and fill in all the required information before you can publish your project.", - "You must attend an [orientation session](:url) before you can publish your page.": "You must attend an [orientation session](:url) before you can publish your page.", "You must belong to an :organization in order to manage its roles and permissions.": "You must belong to an :organization in order to manage its roles and permissions.", "You must choose at least one area of impact.": "You must choose at least one area of impact.", "You must choose at least one payment type.": "You must choose at least one payment type.", @@ -2376,10 +1966,8 @@ "You must select which specific disability and\/or Deaf groups your organization :represents_or_serves_and_supports.": "You must select which specific disability and\/or Deaf groups your organization :represents_or_serves_and_supports.", "You must tell us who you're joining as.": "You must tell us who you're joining as.", "You must [approve your estimate and return your signed agreement](:estimates_and_agreements) before you can publish your engagement.": "You must [approve your estimate and return your signed agreement](:estimates_and_agreements) before you can publish your engagement.", - "You now have administrative privileges for :organization. You can now create and manage projects.": "You now have administrative privileges for :organization. You can now create and manage projects.", "You now have completed this course.": "You now have completed this course.", "Your :model page has been unpublished.": "Your :model page has been unpublished.", - "Your access needs": "Your access needs", "Your access needs have been updated.": "Your access needs have been updated.", "Your account has been approved": "Your account has been approved", "Your account has been approved.": "Your account has been approved.", @@ -2400,7 +1988,6 @@ "Your bio must be provided in at least English or French.": "Your bio must be provided in at least English or French.", "Your communication and consultation preferences have been updated.": "Your communication and consultation preferences have been updated.", "Your Community Connector has been removed.": "Your Community Connector has been removed.", - "Your consultation preferences": "Your consultation preferences", "Your details": "Your details", "Your engagement has been created.": "Your engagement has been created.", "Your engagement has been published.": "Your engagement has been published.", @@ -2417,7 +2004,6 @@ "Your first language and other languages will be combined into a “working languages” list - this will let governments and businesses understand what languages you can use to work with them in, and communicate to others in.": "Your first language and other languages will be combined into a “working languages” list - this will let governments and businesses understand what languages you can use to work with them in, and communicate to others in.", "Your first language will help us match you to a project that may be looking for someone who uses that first language.": "Your first language will help us match you to a project that may be looking for someone who uses that first language.", "Your headquarters location": "Your headquarters location", - "Your inclusive and accessible consultation": "Your inclusive and accessible consultation", "Your individual page has been deleted.": "Your individual page has been deleted.", "Your individual page will be deleted and cannot be recovered. If you still want to delete your individual page, please enter your current password to proceed.": "Your individual page will be deleted and cannot be recovered. If you still want to delete your individual page, please enter your current password to proceed.", "Your information has been updated.": "Your information has been updated.", @@ -2427,7 +2013,6 @@ "Your meeting has been deleted.": "Your meeting has been deleted.", "Your meeting has been updated.": "Your meeting has been updated.", "Your members": "Your members", - "Your name and your contact information have been shared with :name.": "Your name and your contact information have been shared with :name.", "Your notification preferences have been updated.": "Your notification preferences have been updated.", "Your organization has been added to an engagement": "Your organization has been added to an engagement", "Your organization has been added to the engagement “:engagement”.": "Your organization has been added to the engagement “:engagement”.", @@ -2440,10 +2025,7 @@ "Your organization’s name": "Your organization’s name", "Your organization’s name in either English or French is required.": "Your organization’s name in either English or French is required.", "Your organization’s role": "Your organization’s role", - "Your participants are from the following age groups.": "Your participants are from the following age groups.", - "Your participants are from the following locations in Canada.": "Your participants are from the following locations in Canada.", "Your participant selection criteria have been updated.": "Your participant selection criteria have been updated.", - "Your participants use the following languages.": "Your participants use the following languages.", "Your payment information has been updated.": "Your payment information has been updated.", "Your preference for sharing your access needs has been saved.": "Your preference for sharing your access needs has been saved.", "Your preferences for in-person or virtual engagements will determine what projects and engagements you are matched to.": "Your preferences for in-person or virtual engagements will determine what projects and engagements you are matched to.", @@ -2454,10 +2036,7 @@ "Your projects and engagements": "Your projects and engagements", "Your pronouns must be provided in at least English or French.": "Your pronouns must be provided in at least English or French.", "your public profile will be removed from the platform": "your public profile will be removed from the platform", - "your public profile will be removed from the website": "your public profile will be removed from the website", "Your regulated organization, :name, will be deleted and cannot be recovered. If you still want to delete your regulated organization, please enter your current password to proceed.": "Your regulated organization, :name, will be deleted and cannot be recovered. If you still want to delete your regulated organization, please enter your current password to proceed.", - "Your role: :role": "Your role: :role", - "Your role has been updated to :role": "Your role has been updated to :role", "Your roles have been saved.": "Your roles have been saved.", "your support person, :name": "your support person, :name", "Your support person’s name is required if they are your preferred contact person.": "Your support person’s name is required if they are your preferred contact person.", @@ -2481,18 +2060,14 @@ "You will not be able to edit any information in your account.": "You will not be able to edit any information in your account.", "You will not be able to edit any information in your account. Your page will no longer be shown to other users of this website.": "You will not be able to edit any information in your account. Your page will no longer be shown to other users of this website.", "You won’t be able to publish your engagement until you’ve added meetings.": "You won’t be able to publish your engagement until you’ve added meetings.", - "You’ve been invited to participate in :organization project, :project. They would like you to join for the :engagement engagement.": "You’ve been invited to participate in :organization project, :project. They would like you to join for the :engagement engagement.", "You’ve been invited to participate in [:projectable](:projectable_url)’s project, [:project](:project_url). They would like you to join them for their engagement, [:engagement](:engagement_url).": "You’ve been invited to participate in [:projectable](:projectable_url)’s project, [:project](:project_url). They would like you to join them for their engagement, [:engagement](:engagement_url).", "You’ve blocked :individual. If you want to visit this page, you can :unblock and return to this page.": "You’ve blocked :individual. If you want to visit this page, you can :unblock and return to this page.", - "You’ve blocked :name": "You’ve blocked :name", "You’ve blocked :organization. If you want to visit this page, you can :unblock and return to this page.": "You’ve blocked :organization. If you want to visit this page, you can :unblock and return to this page.", "You’ve blocked :regulatedOrganization. If you want to visit this page, you can :unblock and return to this page.": "You’ve blocked :regulatedOrganization. If you want to visit this page, you can :unblock and return to this page.", "You’ve provided the following contact information:": "You’ve provided the following contact information:", "You’ve provided the following contact information for them:": "You’ve provided the following contact information for them:", "Yukon Territory": "Yukon Territory", "Zoom": "Zoom", - "Zoom ID:": "Zoom ID:", - "Zoom password:": "Zoom password:", "[:projectable](:projectable_url) has approved an estimate for their project [:project](:project_url).": "[:projectable](:projectable_url) has approved an estimate for their project [:project](:project_url).", "[:projectable](:projectable_url) has requested an estimate for their project [:project](:project_url).": "[:projectable](:projectable_url) has requested an estimate for their project [:project](:project_url).", "{1} :count project matches your applied filters.": "{1} :count project matches your applied filters.", diff --git a/resources/lang/fr.json b/resources/lang/fr.json index 442138e02..9f90ac3fc 100644 --- a/resources/lang/fr.json +++ b/resources/lang/fr.json @@ -3,13 +3,8 @@ "\"About your organization\" (French)": "À propos de votre organisation", "\"stalk\" or otherwise harass another person;": "\"stalk\" or otherwise harass another person;", "(a)\tYou agree to release, indemnify and hold IRIS and its affiliates and their officers, employees, directors and agents (collectively, “**Indemnitees**”) harmless from any and all losses, damages, expenses, liability, or costs, including reasonable attorneys’ fees, rights, claims, actions of any kind and injury (including death) arising out of or relating to (i) your access, use and\/or misuse of the Platform; (ii) any of your User Content, including any claim by a third party that the display or other use of User Content infringes the intellectual property or other rights of a third party; (iii) your violation of these Terms or your violation of any rights of another; (iv) access and use of your Registration Information by any third parties; (v) any use of your Registration Information by an Underaged Person; or (vi) claims asserted against the Indemnitees by another User or third party arising as a consequence of User’s act, omission or conduct in relation to the use of the Platform and Services, or a Third Party Service, or any activities ancillary thereto.": "(a)\tYou agree to release, indemnify and hold IRIS and its affiliates and their officers, employees, directors and agents (collectively, “**Indemnitees**”) harmless from any and all losses, damages, expenses, liability, or costs, including reasonable attorneys’ fees, rights, claims, actions of any kind and injury (including death) arising out of or relating to (i) your access, use and\/or misuse of the Platform; (ii) any of your User Content, including any claim by a third party that the display or other use of User Content infringes the intellectual property or other rights of a third party; (iii) your violation of these Terms or your violation of any rights of another; (iv) access and use of your Registration Information by any third parties; (v) any use of your Registration Information by an Underaged Person; or (vi) claims asserted against the Indemnitees by another User or third party arising as a consequence of User’s act, omission or conduct in relation to the use of the Platform and Services, or a Third Party Service, or any activities ancillary thereto.", - "(current format)": "(format actuel)", - "(current page)": "(page actuelle)", "(optional)": "(optionnel)", "(required)": "(requis)", - "(required)*": "(requis)*", - "(such as broken limb, gestational diabetes)": "(tel qu'un membre cassé, un problème de diabète gestationnel)", - "(Support person, :name)": "(Personne apportant du soutien, :name)", "**A community organization** who represents or supports the disability or Deaf community": "**Une organisation communautaire** qui représente ou soutient la communauté des personnes en situation de handicap ou des personnes sourdes", "**Applicable Laws.** You agree that you are responsible for, and agree to abide by, all laws, rules, and regulations applicable to your use of the Platform, your use of any tool, service or product offered on the Platform and any transaction or agreement you enter into on the Platform or in connection with your use of the Platform. You further agree that you are responsible for and agree to abide by all laws, rules and regulations applicable to the Project, including any and all laws, rules, regulations or other requirements relating to taxes, credit cards, data and privacy, accessibility, and compliance with all anti-discrimination laws, as applicable.": "**Applicable Laws.** You agree that you are responsible for, and agree to abide by, all laws, rules, and regulations applicable to your use of the Platform, your use of any tool, service or product offered on the Platform and any transaction or agreement you enter into on the Platform or in connection with your use of the Platform. You further agree that you are responsible for and agree to abide by all laws, rules and regulations applicable to the Project, including any and all laws, rules, regulations or other requirements relating to taxes, credit cards, data and privacy, accessibility, and compliance with all anti-discrimination laws, as applicable.", "**Assignment.** You may not assign these Terms without the prior written consent of IRIS, but IRIS may assign or transfer these Terms, in whole or in part, without restriction.": "**Assignment.** You may not assign these Terms without the prior written consent of IRIS, but IRIS may assign or transfer these Terms, in whole or in part, without restriction.", @@ -53,7 +48,6 @@ "**Use of the Platform.** IRIS authorizes You to access and use the Platform solely for the purpose of searching, accessing, downloading and reviewing Platform content (in print, audio, video or other provided format) for informational purposes only and solely for your own use.": "**Use of the Platform.** IRIS authorizes You to access and use the Platform solely for the purpose of searching, accessing, downloading and reviewing Platform content (in print, audio, video or other provided format) for informational purposes only and solely for your own use.", "**User Content.** IRIS does not claim ownership of any User Content you provide to IRIS (including feedback and suggestions) via the Platform. Unless otherwise specified, you retain copyright and any other rights you already hold over User Content that you create and submit, post, or display on or through the Platform. However, by submitting, posting, or displaying User Content, you give IRIS and its affiliates and their successors and assigns a perpetual, irrevocable, worldwide, royalty-free, fully paid up, sublicensable and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display, distribute, Upload, store, edit, reformat, otherwise use and create derivative works from any User Content that you submit, post, or display on or through the Platform.": "**User Content.** IRIS does not claim ownership of any User Content you provide to IRIS (including feedback and suggestions) via the Platform. Unless otherwise specified, you retain copyright and any other rights you already hold over User Content that you create and submit, post, or display on or through the Platform. However, by submitting, posting, or displaying User Content, you give IRIS and its affiliates and their successors and assigns a perpetual, irrevocable, worldwide, royalty-free, fully paid up, sublicensable and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display, distribute, Upload, store, edit, reformat, otherwise use and create derivative works from any User Content that you submit, post, or display on or through the Platform.", "**Waiver.** No failure or delay by IRIS in exercising any right hereunder will waive any further exercise of that right.": "**Waiver.** No failure or delay by IRIS in exercising any right hereunder will waive any further exercise of that right.", - "* means that a field is required.": "* signifie qu'un champ est requis.", "*Yukon and parts of British Columbia observe Mountain Standard Time all year.": "*Le Yukon et certaines parties de la Colombie-Britannique observent l\"heure normale des Rocheuses toute l'année.", "1 new person accepted their invitation for :engagement": "1 nouvelle personne a accepté l'invitation pour :engagement", "1 new person accepted your invitation for :engagement": "1 nouvelle personne a accepté votre invitation pour :engagement", @@ -76,57 +70,27 @@ "3. Work directly with governments and businesses": "3. Work directly with governments and businesses", "3. Work directly with people on your accessibility project": "3. Work directly with people on your accessibility project", "8 characters or more": "8 caractères ou plus", - ":access_support added for :engagement": ":access_support ajouté pour :engagement", ":account and its users have been suspended.": ":account et ses utilisateurs ont été suspendus.", ":account has been approved.": ":account a été approuvé.", ":account has been suspended.": ":account a été suspendu.", ":blockable could not be unblocked because it was not on your block list.": ":blockable n'a pas pu être débloqué car il ne figurait pas dans votre liste.", ":blockable is already on your block list.": ":blockable est déjà dans votre liste.", - ":correct out of :total questions were answered correctly. You have now completed all the webinars in this course.": "Vous avez répondu correctement à :correct des :total questions. Vous avez maintenant terminé tous les webinaires de ce cours.", - ":correct out of :total questions were answered correctly. You have now completed this webinar. You have :unfinished more webinars to finish in order to complete this training.": "Vous avez répondu correctement à :correct des :total questions. Vous avez maintenant terminé ce webinaire. Vous avez encore :unfinished webinaires à finir avant de compléter le cours.", - ":count access needs": ":count besoins en matière d'accessibilité", ":count access needs listed": ":count besoins en matière d'accessibilité listés", - ":count engagements": ":count interactions", - ":count members of your organization": ":count membres de votre organisation", ":count more unread": ":count autres non-lus", - ":count projects": ":count projets", ":count projects match your applied filters.": ":count projets répondent aux critères sélectionnés.", - ":count results for": ":count résultats pour", ":count results for “:searchQuery": ":count résultats trouvés pour « :searchQuery", ":count results for “:searchQuery”.": ":count résultats trouvés pour « :searchQuery ».", - ":count results for “:search” found": ":count résultats trouvés pour « :search »", - ":engagement has been changed to :date at :time. They are meeting :location.": "La date de :engagement a été changée pour le :date à :time. :engagement aura lieu à :location.", - ":engagement has been confirmed for :date at :time. They are meeting :location.": "La date pour :engagement a été confirmée pour le :date à :time. :engagement aura lieu à :location.", - ":engagement is now having an open call for participants.": ":engagement recrute maintenant des personnes participantes.", - ":engagement run by :projectable is seeking participants": ":engagement menée par :projectable est à la recherche de personnes participantes", - ":engagement time changed": "L'heure pour :engagement a changée", - ":engagement time confirmed": "L'heure pour :engagement a été confirmée", ":label (:locale)": ":label (:locale)", ":locality, :region": "", ":model is already translatable into :language.": ":model est déjà traduit en :language.", ":model was not translatable into :language.": ":model n'était pas traduisible en :language.", - ":name has accepted your invitation to join your organization.": ":name a accepté votre invitation à rejoindre votre organisation.", - ":name has joined your organization": ":name a rejoint votre organisation", ":name navigation": ":name navigation", ":name participants navigation": ":name participants navigation", ":name requires access needs facilitation": ":name requires access needs facilitation", - ":name shares **some** of this lived experience.": ":name partage **certaines** de vos expériences vécues.", ":notificationable could not be removed because it was not on your notification list.": ":notificationable n'a pas pu être supprimé car il ne figurait pas dans votre liste de notification.", ":notificationable is already on your notification list.": ":notificationable est déjà dans votre liste de notifications.", - ":numRSVPs new RSVPs to your engagement, :engagement": ":numRSVPs nouveaux RSVPs pour votre consultation, :engagement", - ":organization Accessibility Principles": "Principes d'accessibilité de :organisation", - ":percentage of your participants fall into more than one of these groups.": ":percentage des personnes participantes appartiennent à plus qu'un de ces groupes.", - ":percentage of your participants identify with more than one of the following.": ":percentage des personnes participantes s'identifient comme étant plus qu'un des aspects suivants.", - ":projectable has added :access_support for :engagement.": ":projectable a ajouté les mesures de soutien suivantes :access_support pour :engagement.", ":projectable has approved an estimate for their project **:project**.": ":projectable a approuvé un devis pour son projet **:project**.", - ":projectable has created a new engagement, :engagement. This is a part of :project.": ":projectable a créé un nouvel élément, :engagement dans le contexte de :project.", - ":projectable has created a new project, :project.": ":projectable a créé un nouveau projet, :project.", ":projectable has requested an estimate for their project **:project**.": ":projectable a demandé un devis pour son projet **:project**.", - ":project by :projectable seeking Accessibility Consultant": "Le projet :project mené par :projectable est à la recherche d'une personne consultante en matière d'accessibilité", - ":project by :projectable seeking Community connector": "Le projet :project mené par :projectable est à la recherche de personnes facilitatrices communautaires", - ":project is looking for a Community Connector to for their engagement, :engagement.": "Le projet :project est à la recherche de personnes facilitatrices communautaires pour leur consultation :engagement.", - ":project is looking for an Accessibility Consultant.": "Le projet :project est à la recherche d'une personne consultante en matière d'accessibilité.", - ":projects projects and :engagements engagements you are running": "Vous êtes en charge de :project projets et de :engagements consultations", ":role Invitation": "Invitation à devenir :role", ":service": ":service", ":signLanguage (with :locale)": ":signLanguage (avec :locale)", @@ -137,7 +101,6 @@ "About the Accessibility Exchange": "À propos du Connecteur pour l'accessibilité", "About the organization": "À propos de l'organisation", "About the project team": "À propos de l'équipe", - "About the systemic barriers (laws, policies, practices, and culture) underlying the experiences that consultation participants report": "À propos des obstacles systémiques (lois, politiques, pratiques et culture) qui sous-tendent les expériences que les personnes consultantes rapportent", "About this course": "À propos de ce cours", "About you": "À propos de vous", "About your organization": "À propos de votre organisation", @@ -147,14 +110,11 @@ "Accepted formats": "Formats acceptés", "accepted formats": "formats acceptés", "Accept Invitation": "Accepter l'invitation", - "Accept invitation": "Accepter l'invitation", "Accept your invitation by clicking the button below.": "Acceptez votre invitation en cliquant sur le bouton ci-dessous.", - "Access :language version": "Accéder à la version en :language", "ACCESS AND USE OF THE PLATFORM": "ACCESS AND USE OF THE PLATFORM", "Access governments and businesses who are looking for a Community Connector to help with a project.": "Accéder aux organisations gouvernementales et aux entreprises à la recherche d'une personne facilitatrice communautaire pouvant aider pour un projet.", "Access governments and businesses who are looking for an accessibility consultant to help with a project.": "Accéder aux organisations gouvernementales et aux entreprises à la recherche d'une personne consultante en matière d'accessibilité pouvant aider pour un projet.", "Accessibility and inclusion": "Accessibilité et inclusion", - "Accessibility and Inclusion": "Accessibilité et inclusion", "accessibility and inclusion link": "lien sur les mesures d'accessibilité et d'inclusion", "Accessibility and inclusion links": "Liens sur les mesures d'accessibilité et d'inclusion", "accessibility and inclusion link title": "titre du lien sur les mesures d'accessibilité et d'inclusion", @@ -163,14 +123,11 @@ "Accessibility Consultants": "Personnes consultantes en matière d'accessibilité", "Accessibility Consultants could help you design consultations that are inclusive and accessible.": "Les personnes consultantes en matière d'accessibilité peuvent vous aider à concevoir des consultations qui soient inclusives et accessibles.", "Accessibility Consultants — Individual": "Personne consultante en matière d'accessibilité - Individu", - "Accessibility preferences": "Préférences d'accessibilité", "Accessibility project by [:projectable](:url)": "Projet en matière d'accessibilité par [:projectable](:url)", "Accessible consultation": "Consultation accessible", - "Access more resources": "Accéder à plus de ressources", "Access need": "Besoin en matière d'accessibilité", "Access needs": "Besoins en matière d'accessibilité", "Access Needs": "Besoins en matière d'accessibilité", - "Access needs and accommodations": "Besoins en matière d'accessibilité et mesures d'accomnmodement nécessaires", "Access needs for any materials you may be sent.": "Access needs for any materials you may be sent.", "Access needs for consultations": "Besoins en matière d'accessibilité", "Access needs for when you agree to attend a meeting in real-time, either in-person or virtually.": "Besoins en matière d'accessibilité lorsque vous acceptez d'assister à une réunion en direct, en personne ou virtuellement.", @@ -189,21 +146,18 @@ "Account suspended": "Compte suspendu", "Account suspension lifted": "Suspension du compte levée", "Account type": "Type de compte", - "Across the country": "À travers le pays", "Active": "Actif", "Add :locale translation of :label": "Ajouter une traduction en :locale de\/du :label", "Add a language": "Ajouter une langue", "Add a location": "Ajouter un emplacement", "Add another language": "Ajouter une langue", "Add another link": "Ajouter un autre lien", - "Add another location": "Ajouter un autre emplacement", "Add a training": "Ajouter une formation", "Add Community Connector": "Ajouter une personne facilitatrice communautaire", "Added on :date": "Ajouté le :date", "Add experience": "Ajouter une expérience", "Additional information to join": "Information supplémentaire à joindre", "additional information to join": "information complémentaire à joindre", - "Additional information to join:": "Information supplémentaire à joindre :", "Additional needs or concerns": "Besoins ou préoccupations supplémentaires", "Add language": "Ajouter une langue", "Add link": "", @@ -211,22 +165,17 @@ "Add new meeting": "Ajouter une nouvelle réunion", "Add participant": "Ajouter une personne participante", "Address": "Adresse", - "Address:": "Adresse :", "Add to my notification list": "Ajouter à ma liste de notifications", - "Add training": "Ajouter une formation", - "Add translation": "Ajouter une traduction", "add your own headers, forge headers, or otherwise manipulate identifiers in a manner not permitted by the Platform, in order to disguise the origin of any User Content transmitted through the Platform;": "add your own headers, forge headers, or otherwise manipulate identifiers in a manner not permitted by the Platform, in order to disguise the origin of any User Content transmitted through the Platform;", "Adjust settings that will help you use this website.": "Ajustez les paramètres qui vous aideront à utiliser ce site.", "Administrator": "Administrateur", "advertise or offer to sell or buy any goods or services for any business purpose that is not specifically authorized;": "advertise or offer to sell or buy any goods or services for any business purpose that is not specifically authorized;", "A follow-up to a previous project (such as a progress report)": "Un suivi pour un projet précédent (tel qu'un rapport d'étape)", "African": "Africain", - "After the consultation follow up with participants to share next steps and your organization’s plan for implementing their feedback. This can help foster confidence in your commitment, and an ongoing relationship with your participants, who can be involved in future updates of your accessibility plan.": "Après la consultation, assurez un suivi auprès des personnes participantes pour leur faire part des prochaines étapes et du plan de votre organisation pour mettre en œuvre leurs commentaires. Cela peut contribuer à renforcer la confiance envers votre initiative et à établir une relation durable avec vos participants, lesquels pourraient éventuellement participer aux futures mises à jour de votre plan d'accessibilité.", "Age": "Âge", "Age group": "Groupe d'âge", "age group": "", "Age groups": "Groupes d'âge", - "Age groups they can connect to": "Tranches d'âge auprès desquelles vous pouvez agir comme intermédiaire", "Agreement pending": "Entente en attente", "Agreement received": "Entente reçue", "Agreements": "Ententes", @@ -238,13 +187,10 @@ "All participant spots have been filled.": "All participant spots have been filled.", "All provinces and territories": "Toutes les provinces et tous les territoires", "All rights reserved.": "Tous droits réservés.", - "All the training I am doing or have done.": "Toutes les formations que je fais ou que j'ai faites.", "Alternative text for images": "Texte de remplacement pour les images", "Although it is not compulsory, we highly recommend that you include English and French translations of your content.": "Although it is not compulsory, we highly recommend that you include English and French translations of your content.", "A meeting title must be provided in at least English or French.": "", - "American Sign Language (ASL)": "American Sign Language (ASL)", "Analysis of collected information": "Analyse des informations recueillies", - "Analyze the outcomes of your consultation with people who are in the context of disability and Deaf groups.": "Analyser les résultats de votre consultation avec des personnes faisant partie de groupes de personnes en situation de handicap et de personnes sourdes.", "An approximate response time must be provided in at least one language.": "Un temps de réponse approximatif doit être indiqué dans au moins une langue.", "An engagement description must be provided in at least English or French.": "", "An engagement involves a group of people participating in one set way (for example, a focus group or a survey). An engagement like a focus group can have multiple meetings.": "Une consultation implique un groupe de personnes participant d'une manière donnée (par exemple, un groupe de discussion ou un sondage). Une consultation, comme un groupe de discussion, peut se dérouler sur plusieurs réunions.", @@ -261,8 +207,6 @@ "ANY SERVICE CONTENT DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PLATFORM IS DONE AT YOUR OWN DISCRETION AND RISK AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OF ANY SUCH MATERIAL.": "TOUT CONTENU TÉLÉCHARGÉ OU OBTENU DE TOUTE AUTRE MANIÈRE PAR L'UTILISATION DE LA PLATEFORME SE FAIT À VOTRE PROPRE DISCRÉTION ET À VOS RISQUES ET VOUS SEREZ SEUL RESPONSABLE DE TOUT DOMMAGE À VOTRE SYSTÈME INFORMATIQUE OU DE TOUTE PERTE DE DONNÉES RÉSULTANT DU TÉLÉCHARGEMENT D'UN TEL MATÉRIEL.", "Application for Accessibility Consultant": "Application for Accessibility Consultant", "Application for Community Connector": "Application for Community Connector", - "Apply filter": "Appliquer le filtre", - "Apply filters": "Appliquer les filtres", "Approval status": "Approval status", "Approve": "Approuver", "Approved": "Approuvé", @@ -279,19 +223,14 @@ "areas of impact": "domaine(s) d'impact", "Areas of interest": "Domaines d'intérêt", "Areas of your organization this project will impact": "Secteurs de votre organisation sur lesquels ce projet aura un impact", - "Areas where the organization serves": "Régions où l'organisation est active", "area type": "", - "Are you able to attend consultations in real-time, or do you prefer to receive the materials (ex. questions, discussion topics) and record your responses at your own pace?": "Êtes-vous en mesure d'assister aux consultations en temps réel, ou préférez-vous recevoir le matériel (ex. questions, sujets de discussion) et enregistrer vos réponses à votre propre rythme ?", "Are you looking for individuals in specific provinces or territories or specific cities or towns?": "Cherchez-vous des personnes dans des provinces ou territoires spécifiques ou dans des villes ou villages spécifiques ?", "Are you sure you want to block :blockable?": "Voulez-vous vraiment bloquer :blockable?", "Are you sure you want to delete your account?": "Voulez-vous vraiment supprimer votre compte ?", - "Are you sure you want to delete your organization, :organization?": "Voulez-vous vraiment supprimer votre organisation, :organization ?", "Are you sure you want to leave :organization?": "Voulez-vous vraiment quitter :organization?", "Are you sure you want to leave this engagement? You’ll still be able to sign up for this engagement again before the sign up deadline.": "Êtes-vous sûr de vouloir quitter cette consultation? Vous serez toujours en mesure de vous inscrire à nouveau à cette consultation avant la date limite d'inscription.", "Are you sure you want to remove :language? Any translations that you’ve entered will be lost.": "Êtes-vous sûr de vouloir supprimer :language ? Toutes les traductions que vous avez saisies seront perdues.", "Are you sure you want to remove :member from :organization? You cannot undo this.": "Êtes-vous sûr de vouloir supprimer :member de votre « :organization » ? Vous ne pourrez pas annuler cette action.", - "Are you sure you want to remove :name from :organization? You cannot undo this.": "Êtes-vous sûr de vouloir supprimer :name de « :organization » ? Vous ne pourrez pas annuler cette action.", - "Are you sure you want to unblock them?": "Voulez-vous vraiment les débloquer?", "As a :organizationType, you can engage with individuals to get input for your projects.": "En tant que :organizationType, vous pouvez entrer en contact avec des individus pour obtenir des commentaires en lien avec vos projets.", "As a Community Connector": "En tant que personne facilitatrice communautaire", "As a Community Connector, :name can connect to:": "En tant que personne facilatrice communautaire, :name peut agir comme intermédiaire auprès de :", @@ -301,7 +240,6 @@ "As an Accessibility Consultant, we can help with:": "En tant que personne consultante en matière d'accessibilité, nous pouvons vous aider à :", "As an individual with a disability, Deaf person, or a supporter, you can participate in consultations by organizations and businesses who are working on accessibility projects and get paid for this. You can also gain access to resources and training on how to do this.": "En tant que personne en situation de handicap, ou personne sourde, ou encore personne fournissant du soutien à une personne en situation de handicap ou sourde, vous pouvez participer et être payée pour participer à des consultations en matière d'accessibilité organisées par des organisations ou des entreprises sous réglementation fédérale. Vous avez également accès à des ressources et à des formations sur comment accomplir ces tâches.", "Asian": "Asiatique", - "Ask participants ahead of time about their access needs for the consultation. You can use an Access Form to get information on what people need to participate. Please see the resource, [Access Form Template](:url). If you need assistance in providing accommodation support, please contact us at [info@accessibilityexchange.ca](:email).": "Veillez à recueillir à l'avance les besoins en matière d'accessibilité des personnes participantes à la consultation. Vous pouvez utiliser un formulaire portant sur les besoins en matière d'accessibilité pour obtenir des informations sur ce dont les gens ont besoin pour participer. Veuillez consulter la ressource, [Modèle de formulaire sur les besoins en matière d'accessibilité](:url). Si vous avez besoin d'aide pour offrir des mesures d'accommodement, veuillez nous contacter à [info@accessibilityexchange.ca](:email).", "Atlantic Standard or Daylight Time": "Heure normale ou heure avancée de l'Atlantique", "At least 1 number": "Au moins 1 nombre", "At least 1 special character (!@#$%^&*()-)": "Au moins 1 caractère spécial (!@#$%^&*()-)", @@ -309,15 +247,12 @@ "At least 1 upper case letter": "Au moins 1 lettre majuscule", "At present, you have no unread notifications.": "Vous n'avez pas de notifications non lues.", "Attend an interview in real time.": "Assister à une entrevue en direct.", - "Attend an orientation session": "Assister à une séance d'orientation", "Attended": "Attended", "Audio": "Audio", "Audio description for visuals": "Description audio pour les éléments visuels", "Audio versions of engagement documents": "Versions audio des documents de consultation", "A user with this email already exists.": "Un utilisateur avec cette adresse électronique existe déjà.", - "Author": "Auteur", "Author: :author": "Auteur : :author", - "Authored by :author": "Écrit(s) par :author", "Author name": "Nom de l'auteur", "author organization": "author organization", "availability for Friday": "disponibilité le vendredi", @@ -329,19 +264,16 @@ "availability for Wednesday": "disponibilité le mercredi", "available": "disponible", "Available": "Disponible", - "Available :start to :end :timeZone": "Disponible du :start au :end :timeZone", "Available courses": "Formations disponibles", "Back": "Précédent", - "Back to dashboard": "Retourner au tableau de bord", + "Back to course page": "", "Back to top": "Revenir en haut", - "Back to training home page": "Retourner à la page d'accueil de la formation", "Banks, federal transportation network (airlines, rail, road and marine transportation providers that cross provincial or international borders), atomic energy, postal and courier services, the broadcasting and telecommunications sectors": "Banks, federal transportation network (airlines, rail, road and marine transportation providers that cross provincial or international borders), atomic energy, postal and courier services, the broadcasting and telecommunications sectors", "Baseline access needs": "Besoins de base en matière d'accessibilité", "Basic information about you": "Informations de base à propos de vous", "Be a Community Connector": "Être une personne facilitatrice communautaire", "Be a Consultation Participant": "Être une personne participante à une consultation", "Be an Accessibility Consultant": "Être une personne consultante en matière d'accessibilté", - "Before you can use your account, you must have completed all the previous steps.": "Avant de pouvoir utiliser votre compte, vous devez avoir effectué toutes les étapes précédentes.", "Be invited by a Community Connector (someone with lived experience of disability or is Deaf that organizations hire to help recruit)": "Be invited by a Community Connector (someone with lived experience of disability or is Deaf that organizations hire to help recruit)", "Be matched based on what your lived experiences are": "Be matched based on what your lived experiences are", "Between which times during the day will the interviews take place?": "Entre quels moments de la journée les entrevues auront-elles lieu ?", @@ -355,29 +287,17 @@ "Blocked individuals and organizations": "Personnes et organisations bloquées", "Body differences": "Différences corporelles", "Booking accessibility service providers": "Gestion de prestataires de services en matière d’accessibilité", - "Booking access supports": "Réservation des mesures d'accommodement et d'accessibilité", "Braille version of engagement documents": "Version en braille des documents de consultation", "Bring my service or therapy animal": "Venir avec mon animal d'assistance ou de thérapie", "Bring my support person": "Venir avec une personne accompagnatrice", "British Columbia": "Colombie-Britannique", - "Browse Accessibility Consultants": "Parcourir les personnes consultantes en matière d'accessibilité", "Browse all projects": "Parcourir tous les projets", "Browse all resources": "Parcourir toutes les ressources", - "Browse all the trainings on this website.": "Parcourir toutes les formations sur ce site.", - "Browse by services": "Naviguer par services", "Browse Community Connectors": "Parcourir toutes les personnes facilitatrices communautaires", "Browse community organizations": "Parcourir les organisations communautaires", - "Browse file": "Parcourir le fichier", "Browse for an Community Connector": "Chercher une personne facilitatrice communautaire", "Browse individuals": "Parcourir les individus", - "Browse our resources": "Parcourir nos ressources", "Browse regulated organizations": "Parcourir les organisations sous réglementation fédérale", - "Browse resources by :creator": "Parcourir les ressources par :creator", - "Browse resources for Community Connectors and Accessibility Consultants": "Parcourir les ressources pour les personnes facilitatrices communautaires et pour les personnes consultantes en matière d'accessibilité", - "Browse resources for community organizations": "Parcourir les ressources pour les organisations communautaires", - "Browse resources for Consultation Participants": "Parcourir les ressources pour les personnes participantes aux consultations", - "Browse resources for Regulated Organizations": "Parcourir les ressources pour les organisations sous réglementation fédérale", - "Browse trainings": "Parcourir les formations", "Built environment": "Built environment", "Business": "Entreprise", "Businesses and government can find Community Organizations on this website, and use the contact information to directly reach out. From there, they can hire you consult with them.": "Businesses and government can find Community Organizations on this website, and use the contact information to directly reach out. From there, they can hire you consult with them.", @@ -390,10 +310,8 @@ "Cancel engagement": "Annuler la consultation", "Cancel invitation": "Annuler l'invitation", "Cancel invitation for :email": "Annuler l'invitation pour :email", - "Cancelled": "Annulé", "Cancel project": "Annuler le projet", "Can create and edit the organization page, projects, and engagements.": "Peut créer et modifier la page de l'organisation, les projets et les consultations.", - "Can I learn more about participating in a consultation?": "Puis-je en savoir plus sur la participation à une consultation?", "Can only view the organization page, projects, and engagements.": "Ne peut voir que la page de l'organisation, les projets et les consultations.", "Can you connect to a specific age bracket or brackets?": "Pouvez-vous servir d'intermédiaire auprès des personnes dans des fourchettes d'âge spécifiques?", "Can you connect to a specific ethnoracial identity or identities?": "Pouvez-vous servir d'intermédiaire auprès de personnes de communautés ethniques ou racisées spécifiques?", @@ -407,16 +325,14 @@ "Cash": "En espèces", "Central Standard or Daylight Time": "Heure normale ou avancée du centre", "Central Standard Time**": "Heure normale du centre**", - "Change colour contrast, turn on text to speech, and turn on Sign Language videos.": "Modifier le contraste des couleurs, activer la synthèse vocale et activer les vidéos en langue des signes.", "Change colour contrast and turn on text to speech.": "Change colour contrast and turn on text to speech.", "Change email": "Changer l'adresse courriel", - "Change language": "Changer la langue", "Change login email": "Changer l'identifiant courriel", "Change password": "Changer le mot de passe", - "Change resource format and language": "Changer le format et la langue de la ressource", "Change the colour of the text and background.": "Changer la couleur du texte et de l'arrière-plan.", "Cheque": "Chèque", "Children (under 15)": "Enfants (moins de 15 ans)", + "Choices for: :question": "", "Choose a community organization…": "Choisissez une organisation communautaire…", "Choose a language…": "Choisissez une langue…", "Choose a month…": "Choisissez un mois…", @@ -434,27 +350,22 @@ "Clear filters": "Réinitialiser les filtres", "Click the link above to sign up for an orientation session. (This will lead you to an external site, and when you’re done it will bring you back automatically.)": "Click the link above to sign up for an orientation session. (This will lead you to an external site, and when you’re done it will bring you back automatically.)", "Cluster": "Cluster", - "Co-design": "Co-conception", "Cognitive disabilities": "Déficiences cognitives", "Collaboration Preferences": "Collaboration Preferences", "collect, aggregate, copy, scrape, duplicate, display or derivatively use the Platform;": "collect, aggregate, copy, scrape, duplicate, display or derivatively use the Platform;", "Collection": "Bibliothèque", "Collections this resource appears in": "Bibliothèques dans lesquelles cette ressource apparaît", - "communicate with you": "communiquer avec vous", "Communication": "Communication", "Communication and consultation preferences": "Préférences relatives aux communications et aux consultations", "Communication disabilities": "Troubles de la communication", "Communications": "Communications", "Communities served": "Communautés desservies", "Communities we :represent_or_serve_and_support": "Communautés que nous :represent_or_serve_and_support", - "Communities we represent": "Communautés que nous représentons", "Communities you can connect to": "Communautés auprès desquelles vous pouvez agir comme intermédiaire", "Communities your organization :represents_or_serves_and_supports": "Communautés que votre organisation :represents_or_serves_and_supports", - "Communities your organization serves": "Communautés desservies par votre organisation", "Community Connector": "Personne facilitatrice communautaire", "Community connector application": "Community connector application", "Community Connectors": "Personnes facilitatrices communautaires", - "Community Connectors and Accessibility Consultants": "Personnes facilitatrices communautaires et personnes consultantes en matière d'accessibilité", "Community Connectors could help you connect with groups that may be hard to reach otherwise.": "Les personnes facilitatrices communautaires peuvent vous aider à entrer en contact avec des groupes qui seraient autrement difficiles à rejoindre.", "Community Connectors — Individual": "Personne facilitatrice communautaire - Individu", "Community organization": "Organisation communautaire", @@ -463,15 +374,12 @@ "Community organizations": "Organisations communautaires", "Community Organizations": "Organisations communautaires", "Community organizations could provide research, recommendations, and also support the interpretation of your consultation results to deepen your understanding of Deaf and disability access.": "Les organisations communautaires sont susceptibles de vous fournir des recherches, des recommandations, mais aussi de vous aider à interpréter les résultats de votre consultation afin d'approfondir votre compréhension des questions relatives à l'accessibilité pour les personnes sourdes et les personnes en situation de handicap.", - "Community organizations with expertise in disability and Deaf issues, as well as issues effecting other systemically marginalized populations can help you make sense of your consultation findings. They can help to identify the structural barriers (in law, policy, practice, and culture) that underlay people’s lived\/living experience. As well, they can point to strategies for addressing those barriers. Because of their service provision, longstanding engagement with and leadership by people with disabilities and Deaf persons and\/or other systemically marginalized groups, community organizations can provide the broader context for interpreting your results. Many also have access to complementary research resources – both quantitative sources, and secondary qualitative information to help you understand how widespread the issues are that participants raise.": "Les organisations communautaires spécialisées dans les questions liées aux personnes en situation de handicap et aux personnes sourdes, ainsi que dans les questions touchant d'autres populations systématiquement marginalisées, peuvent vous aider à donner un sens aux résultats de votre consultation. Elles peuvent aider à identifier les obstacles structurels (dans la loi, la politique, la pratique et la culture) qui sous-tendent l'expérience vécue par les gens. De même, elles peuvent vous indiquer les stratégies permettant d'éliminer ces obstacles. En raison de leur prestation de services, de leur engagement de longue date auprès des personnes en situation de handicap et des personnes sourdes et\/ou d'autres groupes marginalisés sur le plan systémique, et du leadership qu'elles exercent, les organisations communautaires peuvent fournir un contexte plus large pour l'interprétation de vos résultats. Beaucoup d'entre elles ont également accès à des ressources de recherche complémentaires - à la fois des sources quantitatives et des informations qualitatives secondaires pour vous aider à comprendre à quel point les questions soulevées par les personnes participantes sont répandues.", - "Community they serve: :community": "Communauté desservie : :community", "Compensation": "Rémunération", "Complete": "Terminé", "Completed": "Terminé", "completed": "completed", "Completed documents are due by:": "Les documents dûment complétés doivent être remis au plus tard le : ", "Completed materials are due by": "Les documents dûment complétés doivent être remis au plus tard le", - "Completed on :date": "Complété le :date", "CONDITIONS OF USE.": "CONDITIONS D'UTILISATION.", "Confirm": "Confirm", "Confirm and sign up": "Confirmer et s'inscrire", @@ -482,7 +390,6 @@ "Confirm your access needs": "Veuillez confirmer vos besoins en matière d'accessibilité", "Confirm your participant selection criteria": "Confirmez les critères de sélection des personnes participantes", "Confirm your password": "Confirmer votre mot de passe", - "Congratulations! You have now completed this course.": "Félicitations ! Vous avez maintenant terminé ce cours.", "Congratulations! You have passed the quiz.": "Félicitations ! Vous avez réussi le jeu-questionnaire.", "Congratulations! You have passed the quiz with :score%.": "Félicitations ! Vous avez réussi le quiz avec un score de :score%.", "Congratulations! Your have successfully published your :model page.": "Félicitations ! Vous avez publié votre page :model avec succès.", @@ -500,7 +407,6 @@ "Consultations": "Consultations", "Consulting services": "Services de consultation", "Consulting with a Community Organization": "Consultation auprès d'une organisation communautaire", - "Consult people more than once": "Consulter plus d'une fois les personnes", "Contact": "Contact", "Contact :contact_person_name from :projectable at:": "Contactez :contact_person_name de :projectable au :", "Contact :name": "Contacter :name", @@ -520,7 +426,6 @@ "Continue": "Continuer", "Contracted": "Contracted", "Contracts": "Contrats", - "Contrast": "Contraste", "Contrast adjustment": "Ajustement du contraste", "Cookies are pieces of information saved about you. This helps us remember your access settings, like your language or colour contrast mode.": "Cookies are pieces of information saved about you. This helps us remember your access settings, like your language or colour contrast mode.", "Coordinate directly with governments and businesses on what help they need and whom they are seeking.": "Travaillez directement avec les organismes gouvernementaux et les entreprises pour savoir de quelle aide ils ont besoin et qui ils cherchent.", @@ -533,14 +438,10 @@ "Create Account": "Créer un compte", "Create an account": "Créer un compte", "Create an account, if you don’t already have one.": "Créez un compte, si vous n'en avez pas déjà un.", - "Create and implement inclusive and accessible consultations for your organization": "Créer et mettre en œuvre des consultations inclusives et accessibles pour votre organisation", - "Create an engagement": "Créer une consultation", "Create a new engagement": "Créer une nouvelle consultation", "Create a new project": "Créer un nouveau projet", - "Create another engagement": "Créer une autre consultation", "Create a project": "Créer un projet", "Create a public page": "Créer une page publique", - "Create a public profile": "Créer un profil public", "Create engagement": "Créer une consultation", "Create new :type": "Créer un nouveau\/une nouvelle :type", "Create new community organization": "Créer une nouvelle organisation communautaire", @@ -550,15 +451,12 @@ "Create organization profile": "Créer un profil d'organisation", "Create regulated organization": "Créer une organisation sous réglementation fédérale", "Create regulated organization profile": "Créer un profil d'organisation sous réglementation fédérale", - "Create selection criteria": "Créer des critères de sélection", - "Create your :role page": "Créer votre page :role", "Create your first project": "Créer votre premier projet", "Create your organization page": "Créer la page de votre organisation", "Create your organization’s page": "Créez la page de votre organisation", "Create your project page": "Créer votre page de projet", "creating an open project, where anyone who matches their criteria can sign up. ": "créer un projet ouvert, où quiconque correspond aux critères peut s'inscrire. ", "Cross disability (includes people with disabilities, Deaf people, and supporters)": "Polyhandicap (comprend les personnes en situation de handicap, les personnes sourdes et les personnes qui les soutiennent)", - "Cross disability (including people with disabilities, Deaf people, and supporters)": "Polyhandicap (incluant les personnes en situation de handicap, les personnes sourdes et les personnes qui les soutiennent)", "Current password": "Mot de passe actuel", "Customize": "Personnaliser", "Customize this website’s accessibility": "Personnaliser l'accessibilité de ce site Internet", @@ -571,77 +469,50 @@ "Date of training": "Date de la formation", "Date range": "Plage de dates", "Dates": "Dates", - "Day": "Jour", "Days of the week interviews will be happening": "Jours de la semaine où les entrevues auront lieu", "Deaf": "Sourde\/Sourd", "DeafBlind": "DeafBlind", - "Decide the scope of your consultation, e.g., local, regional, provincial, territorial or national": "Décidez de la portée de votre consultation, par exemple, locale, régionale, provinciale, territoriale ou nationale", "Decline": "Refuser", "Deepen understanding": "Approfondissement de la compréhension", "Deepen understanding about the systemic barriers (laws, policies, practices, and culture) underlying the experiences that consultation participants report": "Deepen understanding about the systemic barriers (laws, policies, practices, and culture) underlying the experiences that consultation participants report", - "Deepen understanding of what was learned in consultation through systemic analysis": "Approfondir la compréhension de ce qui a été dit lors de la consultation par le biais d'une analyse systémique", - "Define the objectives of your consultation. That is, clearly state what information you are hoping to get out of this consultation.": "Définissez les objectifs de votre consultation. C'est-à-dire indiquez clairement les résultats que vous espérez obtenir de cette consultation.", "Definitions": "Définitions", "Delete account": "Supprimer le compte", - "Delete my organization": "Supprimer mon organisation", "Delete my page": "Supprimer ma page", "Delete regulated organization": "Supprimer l'organisation sous réglementation fédérale", "Delete your account": "Supprimer votre compte", "Delete your individual page": "Supprimer votre page personnelle", - "Delete your organization": "Supprimer votre organisation", - "Delivering and facilitating the consultation": "Organiser et diriger la consultation", - "Demographic breakdown": "Répartition démographique", "Description": "Description", "Description (English)": "Description (anglais)", "Description (French)": "Description (français)", "Design": "Design", "Designing a consultation": "Conception d’une consultation", - "Designing the consultation format and process": "Conception du format et du processus de consultation", "Design your inclusive and accessible consultation": "Design your inclusive and accessible consultation", - "Determine the consultation method, e.g., focus group, online survey, one-to-one interviews, etc.": "Déterminez la méthode de consultation, par exemple, groupes de discussion, sondages en ligne, entretiens individuels, etc.", - "Determine who you would like to participate in your consultation, e.g., people with a similar type of disability, a range of people with different disabilities, Deaf people, Indigenous representation, and\/or other identities, etc.": "Déterminez qui vous aimeriez voir participer à votre consultation, par exemple, des personnes ayant un type de handicap similaire, un éventail de personnes ayant des handicaps différents, des personnes sourdes, des personnes autochtones, et\/ou d'autres identités, etc.", - "Develop a safe and accessible format and process, by addressing questions like:": "Développez un format et un processus sûrs et accessibles, en abordant des questions comme :", "Developed in partnership": "Développé en partenariat", "Developing an accessibility plan": "Développement d'un plan sur l'accessiblité", "Developmental disabilities": "Déficience intellectuelle (et autres troubles du développement)", "Did you know…": "Saviez-vous que…", - "Digital": "Numérique", - "Directly contact me or my support person": "Contactez-moi directement ou la personne qui me soutient", - "Disability": "Handicap", "Disability and\/or Deaf identity": "Handicap et\/ou identité sourde", - "Disability and Deaf groups": "Groupes de personnes en situation de handicap et de personnes sourdes", "Disability and Deaf groups they are looking for": "Groupes de personnes en situation de handicap ou de personnes sourdes qu'ils cherchent", - "Disability and Deaf organizations, and civil society organizations.": "Organisations de personnes en situation de handicap, de personnes sourdes et de la société civile.", "Disability and Deaf representative organizations": "Organisations représentant les personnes en situation de handicap et les personnes sourdes", "Disability and Deaf support organizations": "Organisation soutenant les personnes en situation de handicap et les personnes sourdes", "Disability is not in the person. It results when a person’s long-term physical, mental health, developmental, or sensory characteristics differ from society’s norms. When buildings, services, and workplaces are designed for the norm, they often present barriers to a person’s full and equal participation in society. That’s what we mean by disability. ": "Le handicap n'est pas inhérent à la personne. Il se manifeste lorsque les caractéristiques physiques, de santé mentale, de développement ou sensorielles d'une personne diffèrent des normes de la société. Lorsque les bâtiments, les services et les lieux de travail sont conçus pour la norme, ils présentent souvent des obstacles à la participation pleine et égale d'une personne à la société. C'est ce que nous entendons par handicap. ", "Disability knowledge": "Expérience du handicap", "Disability or Deaf group": "Groupe de personnes en situation de handicap ou de personnes sourdes", - "Disability or Deaf groups": "Groupes de personnes en situation de handicap ou de personnes sourdes", "Disability type": "Type de handicap", "disability type": "type de handicap", "DISCLAIMER OF WARRANTIES.": "DISCLAIMER OF WARRANTIES.", "Disconnected rooms for down-time": "Salles isolées pour les temps morts", "Dismiss": "Ignorer", - "Documents": "Documents", "Documents will be sent to participants by:": "Les documents seront envoyés aux personnes participantes par :", "Does :name have lived experience of the people they can connect to?": ":name a-t-il\/a-t-elle une expérience vécue de la réalité des personnes auprès desquelles il\/elle peut servir d'intermédiaire ?", - "Does it cost Regulated Organizations to use The Accessibility Exchange services?": "L'utilisation des services du Connecteur pour l'accessibilité entraîne-t-elle des frais pour les organisations réglementées ?", "Does your organization :represent_or_serve_and_support a specific age bracket or brackets?": "Est-ce que votre organisation représente une ou plusieurs tranches d'âge spécifiques ?", "Does your organization :represent_or_serve_and_support a specific ethnoracial identity or identities?": "Est-ce que votre organisation représente des personnes ayant une identité éthnique ou racial particulière ?", "Does your organization specifically :represent_or_serve_and_support people who are First Nations, Inuit, or Métis?": "Est-ce que votre organisation représente spécifiquement les personnes membres des Premières nations, les Inuits ou les Métis ?", "Does your organization specifically :represent_or_serve_and_support people who are marginalized based on gender or sexual identity?": "Est-ce que votre organisation représente spécifiquement les personnes marginalisées à cause de leur genre ou de leur identité sexuelle?", "Does your organization specifically :represent_or_serve_and_support people with disabilities and Deaf people, their supporters, or both?": "Votre organisation représente-t-elle spécifiquement des personnes en situation de handicap et\/ou des personnes sourdes, leurs alliées, ou les deux?", "Does your organization specifically :represent_or_serve_and_support refugees and\/or immigrants?": "Est-ce que votre organisation représente spécifiquement les personnes réfugiées ou migrantes?", - "Done": "Terminé !", "Don’t have an account yet? Please": "Vous n'avez pas encore de compte ? S'il vous plaît", - "Download:": "Télécharger : ", - "Download :language document": "Télécharger le document en :language", - "Download agreement": "Télécharger l'entente", "download any file posted by another user of the Platform that you know, or reasonably should know, cannot legally be distributed in such manner;": "download any file posted by another user of the Platform that you know, or reasonably should know, cannot legally be distributed in such manner;", - "Download certificate of completion": "Télécharge le certificat de réussite", - "Download your certificate": "Télécharger votre certificat", - "Do you have concerns about the engagement or the organization running it? We can help solve problems and mediate.": "Vous avez des préoccupations concernant la consultation ou l'organisation qui la dirige ? Nous pouvons aider à résoudre les problèmes et servir de médiateur.", "Do you have lived experience of the people you can connect to?": "Avez-vous une expérience vécue des personnes auprès desquelles pouvez servir d'intermédiaire ?", "Do you have questions about how the engagement works?": "Vous avez des questions sur le processus de consultation ?", "Do you have questions about this project?": "Vous avez des questions à propos de ce projet?", @@ -652,13 +523,11 @@ "due date": "date limite", "E-transfer": "Transfert électronique", "E.g. Microsoft Teams, Webex, Zoom.": "Par exemple, Microsoft Teams, Webex, Zoom.", - "Each participant will be paid :pay.": "Chaque personne participante sera payée :pay.", "East Asian": "Asiatique de l'Est", "Eastern Standard or Daylight Time": "Heure normale de l'Est ou heure avancée de l'Est", "Edit": "Modifier", "Edit :!section": "Modifier :!section", "Edit :user’s role": "Modifier le rôle de :user", - "Editable PDF document": "Document PDF modifiable", "Edit engagement": "Modifier la consultation", "Edit engagement details": "Modifier les détails de la consultation", "Edit meeting": "Modifier la réunion", @@ -677,7 +546,6 @@ "Edit your project page": "Modifier la page de votre projet", "Edit your role": "Modifier votre rôle", "Email": "Courriel", - "Email: :email": "Courriel : :email", "Email address": "Adresse courriel", "email address": "adresse courriel", "Email your certificate again": "Email your certificate again", @@ -690,13 +558,11 @@ "End year": "Année de fin", "End Year": "Année de fin", "Engage": "Consultation", - "Engage a Community Organization to help with analysis": "Faire appel à une organisation communautaire pour aider à l'analyse", "engage in or use any data mining, robots, scraping or similar data gathering or extraction methods;": "engage in or use any data mining, robots, scraping or similar data gathering or extraction methods;", "Engage in the commercial use of the Platform except for the purposes set out in these Terms;": "Engage in the commercial use of the Platform except for the purposes set out in these Terms;", "Engagement": "Consultation", "engagement": "consultation", "engagement description": "description de la consultation", - "Engagement details": "Détails de la consultation", "Engagement materials": "Documents de consultation", "Engagement meetings": "Réunions de la consultation", "engagement name": "nom de la consultation", @@ -706,12 +572,9 @@ "Engagements that are looking for someone with my lived experience": "Consultations qui sont à la recherche de personnes avec mon expérience vécue", "Engagement translations": "Traductions de la consultation", "Engage with disability and Deaf communities and hold meaningful consultations": "Engage with disability and Deaf communities and hold meaningful consultations", - "Engage with the disability and Deaf community and hold meaningful consultations": "Collaborez avec la communauté des personnes en situation de handicap et des personnes sourdes et tenez des consultations substantielles", "English author name": "Nom de l'auteur en anglais", "Enter your collaboration preferences": "Entrez vos préférences de collaboration", - "Enter your personal information": "Entrez vos informations personnelles", "Episodic and invisible disabilities": "Incapacités épisodiques et invisibles", - "Error": "Erreur", "Estimate approved": "Devis approuvé", "Estimate requested": "Devis demandé", "Estimate returned": "Devis retourné", @@ -720,10 +583,8 @@ "Estimate status": "Statut du devis", "Ethno-racial groups": "Communautés ethniques et racisées", "ethnoracial group": "", - "Ethnoracial group they can connect to": "Communautés ethniques et racisées auprès desquelles ils peuvent servir d'intermédiaire", "Ethnoracial identity": "Identité ethnoraciale", "ethnoracial identity": "identité ethnoraciale", - "Everything in your organization will be deleted as well:": "Tout ce qui se trouve dans votre organisation sera également supprimé :", "Experiences": "Expériences", "experience working with organizations to create inclusive consultations, identify barriers, and create accessibility plans.": "expérience de travail avec des organisations pour créer des consultations inclusives, identifier les obstacles et créer des plans en matière d'accessibilité.", "External team": "Équipe externe", @@ -755,10 +616,7 @@ "First Nations": "Premières Nations", "flexible, please contact us if you need to use another software": "flexible, veuillez nous contacter si vous souhaitez utiliser un autre logiciel", "Focus group": "Groupe de discussion", - "Focus groups": "Groupes de discussion", "Follow-up calls or emails": "Appels ou courriels de suivi", - "Follow up call or email": "Appel ou courriel de suivi", - "Follow up to build your relationship": "Suivi pour renforcer votre relation", "for": "pour", "for :project": "pour :project", "For Community Organizations": "Organisations communautaires", @@ -776,10 +634,7 @@ "for lack of use;": "for lack of use;", "Format": "Format", "Format:": "Format :", - "Format: :format": "Format : :format", - "Formats": "Formats", "For meeting in real time": "Pour se rencontrer en personne", - "For the :sector sector": "Pour le secteur :sector", "For the best results, please use Google Chrome, Safari, or Microsoft Edge.": "For the best results, please use Google Chrome, Safari, or Microsoft Edge.", "For this website": "Pour le site", "for using The Accessibility Exchange": "du Connecteur pour l'accessibilité", @@ -795,7 +650,6 @@ "full name": "nom complet", "Further directions": "Autres directives", "further directions": "autres directives", - "Further directions:": "Further directions:", "further or promote any criminal activity or enterprise or provide instructional information about illegal or potentially illegal activities;": "further or promote any criminal activity or enterprise or provide instructional information about illegal or potentially illegal activities;", "Gender and sexual identity": "Identités sexuelles et de genre", "Gender and sexuality": "Genre et sexualité", @@ -803,11 +657,9 @@ "Gender fluid people": "Personnes de genre fluide", "Gender identity": "Identité de genre", "Gender neutral, barrier-free washrooms": "Toilettes mixtes et accessibles", - "Gender neutral washroom": "Salle de bain non genrée", "Gender non-conforming people": "Personnes non-conformes au genre", "gender or sexual identity group": "", "GENERAL": "DISPOSITIONS GÉNÉRALES", - "General": "Général", "General access needs": "Besoins généraux en matière d'accessibilité", "Geographical areas this project will impact": "Zones géographiques sur lesquelles ce projet aura un impact", "geographic areas": "geographic areas", @@ -820,40 +672,26 @@ "Google Meet": "Google Meet", "Go through our listings of Community Connectors on this website.": "Parcourez nos listes des personnes facilitatrices communautaires sur ce site Internet.", "Go to all engagements": "Voir toutes les consultations", - "Go to engagement dashboard": "Aller au tableau de bord de la consultation", "Go to pricing": "Accéder aux tarifs", - "Go to project page": "Accéder à la page du projet", "Go to published page": "Accéder à la page publiée", "Government": "Gouvernement", - "Government, businesses, and nonprofit organizations, which are regulated by the federal government, here to work on accessibility.": "Le gouvernement, les entreprises et les organisations à but non lucratif, qui sont réglementées par le gouvernement fédéral, ici pour travailler sur les questions d'accessibilité.", "Government of Canada": "Government of Canada", "Governments, businesses, and other public sector organizations": "Les gouvernements, les entreprises et autres organisations du secteur public", "Grey on dark grey": "Gris sur gris foncé", "Grey on white": "Gris sur blanc", - "Groups": "Groupes", "Groups in the disability and Deaf community": "Groupes de la communauté des personnes en situation de handicap et des personnes sourdes", "Groups you can connect to": "Groupes auprès desquels vous pouvez agir comme intermédiaire", "groups you can connect to": "groupes auprès desquels vous pouvez agir comme intermédiaire", - "Guide": "Guide", "Guidelines and best practices": "Lignes directrices et meilleures pratiques", "Hard-of-hearing": "Personnes malentendantes", "harvest or collect email addresses or other contact information of other users from the Platform by electronic or other means for the purposes of sending unsolicited emails or other unsolicited communications;": "harvest or collect email addresses or other contact information of other users from the Platform by electronic or other means for the purposes of sending unsolicited emails or other unsolicited communications;", "Have more questions?": "Vous avez encore des questions ?", "Have questions?": "Vous avez des questions ?", "Have trouble meeting the access needs of your participants?": "Vous avez du mal à répondre aux besoins en matière d'accessibilité des personnes participantes ?", - "Have you completed the webinar?": "Avez-vous complété le webinaire ?", "Help organizations and businesses design their consultations, and potentially help facilitate these consultations.": "Aidez les organisations et les entreprises à concevoir leurs consultations et éventuellement à les animer.", "Help regulated organizations design and implement their consultations": "Aide les organisations sous réglementation fédérale à concevoir et à mettre en œuvre leurs consultations", - "Here are a few tips on planning your consultation:": "Voici quelques conseils pour planifier votre consultation :", - "Here you may find resources for employees of the Regulated Organizations.": "Vous trouverez ici des ressources pour les personnes employées par les organisations sous réglementation fédérale.", - "Here you may find resources helpful for participating in a consultation.": "Vous trouverez ici des ressources utiles pour participer à une consultation.", - "Here you may find resources of benefit to Accessibility Consultants and Community Connectors.": "Vous trouverez ici des ressources utiles aux personnes consultantes en matière d'accessibilité et aux personnes facilitatrices communautaires.", - "Here you may find resources to assist in running inclusive and accessible consultations.": "Vous trouverez ici des ressources pour vous aider à organiser des consultations inclusives et accessibles.", - "Here you may find resources to help support your members in participating in consultations.": "Vous trouverez ici des ressources pour aider vos membres à participer aux consultations.", "Hire a Community Connector (who can be an individual or a Community Organization) to recruit people manually from within their networks. This option is best if you are looking for a specific or hard-to-reach group.": "Engagez une personne facilitatrice communautaire (qui peut être un individu ou une organisation communautaire) pour recruter des personnes de façon ciblée au sein de son réseau. Cette option est la meilleure si vous recherchez un groupe spécifique ou difficile à atteindre.", "Hours": "Heures", - "Hours: :start - :end :timeZone": "Heures : :start - :end :timeZone", - "Hours: :start to :end :timeZone": "Heures : de :start à :end :timeZone", "House of Commons, Senate, Library of Parliament, Parliamentary Protective Service": "House of Commons, Senate, Library of Parliament, Parliamentary Protective Service", "How can you help a regulated organization?": "Comment pouvez-vous aider les organisations réglementées ?", "how communities will be impacted": "comment les communautés seront touchées", @@ -861,8 +699,6 @@ "How does being a :role work?": "Qu'est-ce qu'être un-e :role représente?", "How does being an :role work?": "Qu'est-ce qu'être un-e :role représente?", "How does getting input for your projects work?": "Comment fonctionne la collecte de commentaires pour vos projets ?", - "How does The Accessibility Exchange assist Regulated Organizations interested in recruiting and engaging people with disabilities, Deaf people, and supporters in consultations?": "Comment le Connecteur pour l'accessibilité aide-t-il les organisations réglementées désireuses de recruter et de faire participer aux consultations des personnes en situation de handicap, des personnes sourdes et et les personnes qui les soutiennent ?", - "How does The Accessibility Exchange define disability?": "Comment le Connecteur pour l'accessibilité définit-il le handicap ?", "How does this work?": "Comment la plateforme fonctionne-t-elle ?", "How do you want to recruit participants?": "Comment voulez-vous recruter des personnes participantes?", "How many participants would you like to engage? Please enter a number, for example 20.": "Combien de personnes souhaitez-vous impliquer ? Veuillez saisir un nombre, par exemple 20.", @@ -873,12 +709,7 @@ "How this works for individuals": "Comment cela fonctionne pour les individus", "How this works for Individuals with Disabilities and Deaf Individuals": "Comment cela fonctionne pour les personnes en situation de handicap et les personnes sourdes", "How this works for Regulated Organizations": "Comment cela fonctionne pour les organisations réglementées", - "How will conflict be managed?": "Comment les conflits seront-ils gérés ?", - "How will my access needs be met during a consultation?": "Comment mes besoins en matière d'accessibilité seront-ils comblés lors des consultations ?", - "How will my privacy be protected on this website?": "Comment ma vie privée sera-t-elle protégée sur ce site Internet ?", "I agree to the ": "J'accepte les ", - "I agree with the [privacy policy](:url) or using The Accessibility Exchange": "Je suis d'accord avec la [politique de confidentialité](:url) ou l'utilisation du Connecteur pour l'accessibilité", - "I agree with the [terms of service](:url) or using The Accessibility Exchange": "Je suis d'accord avec les [conditions de service](:url) ou l'utilisation du Connecteur pour l'accessibilité", "I am a person with a disability, a Deaf person, or am a family member or supporter.": "Je suis une personne en situation de handicap, une personne sourde, ou je suis un membre de la famille ou un sympathisant.", "I am currently seeking an Community Connector for this engagement": "Je suis actuellement à la recherche d'une personne facilitatrice communautaire pour cette consultation", "I am open to other formats suggested by participants": "Je suis ouvert à d'autres formats suggérés par les personnes participantes", @@ -891,8 +722,6 @@ "Ideal number of participants": "Nombre idéal de personnes participantes", "ideal number of participants": "", "Identities": "Identités", - "If anything about your projects or engagements have changed, please send a new estimate request.": "Si un élément de vos projets ou consultations a changé, veuillez envoyer une nouvelle demande de devis.", - "If a Sign Language video translation is available, you will see a button in line with the website content. Pressing that button will load the Sign Language video.": "Si une traduction vidéo en langue des signes est disponible, vous verrez un bouton en ligne avec le contenu du site Internet. En appuyant sur ce bouton, la vidéo en langue des signes sera chargée.", "if IRIS is required to do so by law (for example, where the provision of the Platform to you is, or becomes, unlawful);": "if IRIS is required to do so by law (for example, where the provision of the Platform to you is, or becomes, unlawful);", "if IRIS is transitioning to no longer providing the Platform to users in the region or province in which you reside or from which you use the Platform; or": "if IRIS is transitioning to no longer providing the Platform to users in the region or province in which you reside or from which you use the Platform; or", "If more than one of the following applies to you, you will need to register separate accounts.": "Si plus qu'une des conditions suivantes s'applique à vous, vous devrez créer des comptes séparés.", @@ -903,7 +732,6 @@ "If you are looking for a group with a specific experience or identity, you must select which type of experience or identity you are looking for.": "", "If you are looking for a specific :attribute, you must select at least one.": "", "If you are seeking a Community Connector for this engagement, there are a few ways to find one:": "Si vous recherchez une personne facilitatrice communautaire pour cette consultation, plusieurs moyens s'offrent à vous :", - "If you are thinking of working with a specific group, for example, Indigenous people with disabilities, it would be a good idea to hire an Accessibility Consultant from that community.": "Si vous envisagez de travailler avec un groupe spécifique, par exemple, des personnes en situation de handicap issues de communautés autochtones, il pourrait être avantageux d'engager une personne consultante en matière d'accessibilité issue de cette communauté.", "If you delete your account:": "Si vous supprimez votre compte :", "If you did not expect to receive an invitation to this :invitationable_type, you may discard this email.": "Si vous ne vous attendiez pas à recevoir une invitation pour ce\/cette :invitationable_type, vous pouvez ignorer ce courriel.", "If you have an additional access need you must describe it.": "Si vous avez des besoins additionnels en matière d'accessibilité, veuillez les décrire.", @@ -912,14 +740,9 @@ " if you need this in another language.": " si vous avez besoin de soutien dans une autre langue.", "If your organization is offering services as a **Community Connector**, regulated organizations may ask you to assist them in connecting to your primary constituencies. If your organization is offering services as a **Consultation Participant**, regulated organizations may ask you to represent this group’s point of view in consultations.": "Si votre organisation offre des services en tant que **Community Connector**, les organisations réglementées peuvent vous demander de les aider à établir des liens avec les populations les intéressant le plus. Si votre organisation offre des services en tant que **Consultation Participant**, les organisations réglementées peuvent vous demander de représenter le point de vue de ce ou ces groupes lors des consultations.", "If you select no, our support line will contact you and arrange for a way to have your access needs met.": "Si vous choisissez \"non\", notre service à la clientèle vous contactera afin de trouver un moyen alternatif pour satisfaire vos besoins en matière d'accessibilité.", - "If you want to visit their page, you can unblock them and return to this page.": "Si vous voulez visiter leur page, vous devrez d'abord les débloquer et ensuite rafraichir cette page.", - "If you would like assistance in arranging for an accessibility consultant, you can [contact the Accessibility Exchange Support team](:url)": "Si vous souhaitez obtenir de l'aide pour trouver une personne consultante en matière d'accessibilité, vous pouvez [contacter l'équipe de soutien du Connecteur pour l'accessibilité](:url)", - "If you would like more support in planning your consultation, consider hiring an Accessibility Consultant. An Accessibility Consultant can help you with:": "Si vous aimeriez avoir plus de soutien dans la planification de votre consultation, envisagez d'engager une personne consultante en matière d'accessibilité. Une personne consultante en matière d'accessibilité peut vous aider en ce qui concerne :", "Immigrants": "Immigrants", "impersonate any person or entity, or falsely state or otherwise misrepresent your affiliation with a person or entity;": "impersonate any person or entity, or falsely state or otherwise misrepresent your affiliation with a person or entity;", "implement any measures to circumvent any tools or resources IRIS has used to block you from accessing all or some of the Platform (e.g., by masking your IP address or using a proxy IP address);": "implement any measures to circumvent any tools or resources IRIS has used to block you from accessing all or some of the Platform (e.g., by masking your IP address or using a proxy IP address);", - "In a specific province or territory or city or town": "Dans une province ou un territoire, une ville ou un village spécifique", - "In a specific region": "Dans une région spécifique", "Includes individuals with no spoken or signed language who communicate using gestures, pictures, letter boards, communication devices or assistance from a person who knows them well": "Comprend les personnes non-verbales ou ne communiquant pas avec une langue signée mais communiquant en utilisant des gestes, des images, des tableaux de lettres, des dispositifs de communication ou l'aide d'une personne qui les connaît bien", "Includes individuals with sight loss, blind individuals, and partially sighted individuals": "Comprend les personnes ayant perdu la vue, les personnes aveugles et les personnes malvoyantes", "Includes intellectual disability": "Comprend la déficience intellectuelle", @@ -934,17 +757,14 @@ "Individual": "Individu", "individual": "individu", "Individual orientation": "Individual orientation", - "Individual or organization": "Personne ou organisation", "Individuals": "Individus", "individuals": "individus", - "Individuals or Community Organizations that can help find Consultation Participants for projects.": "Personnes ou organisations communautaires qui peuvent aider à trouver des personnes désirant participer à des consultations pour des projets.", "Information such as your communication and consultation preferences might be out of date if it has not been updated for over a year.": "Certaines informations telles que vos préférences en matière de communication et de consultation pourraient être obsolètes si elle n'ont pas été mises à jour depuis plus d'un an.", "Information such as your matching information, your communication preferences, and your consultation preferences might be out of date if it has not been updated for over a year.": "Certaines informations telles que vos informations pour le jumelage, vos préférences en matière de communication et de consultation pourraient être obsolètes si elle n'ont pas été mises à jour depuis plus d'un an.", "Information technology": "Information technology", "Information that we ask Consultation Participants, Accessibility Consultants, and Community Connectors to share.": "Informations que nous demandons aux personnes participant aux consultations, aux personnes consultantes en matière d'accessibilité et aux personnes facilitatrices communautaires de partager.", "Initiated by": "Lancé par", "IN NO EVENT WILL IRIS’ TOTAL AGGREGATE LIABILITY, FOR ANY AND ALL CLAIMS ARISING OUT OF OR RELATED TO THIS AGREEMENT, THE PLATFORM, PLATFORM CONTENT AND ANY SERVICES, WHETHER IN CONTRACT, TORT OR UNDER ANY OTHER THEORY OF LIABILITY, EXCEED THE LESSER OF (I) ANY FEES PAID BY THE USER TO IRIS FOR THE SERVICES DURING **[THE TWELVE (12) MONTH PERIOD IMMEDIATELY PRECEDING THE DATE ON WHICH THE CAUSE OF ACTION AROSE; AND (II) SIX HUNDRED AND TWENTY-FIVE DOLLARS (CDN$625.00)]**. ": "IN NO EVENT WILL IRIS’ TOTAL AGGREGATE LIABILITY, FOR ANY AND ALL CLAIMS ARISING OUT OF OR RELATED TO THIS AGREEMENT, THE PLATFORM, PLATFORM CONTENT AND ANY SERVICES, WHETHER IN CONTRACT, TORT OR UNDER ANY OTHER THEORY OF LIABILITY, EXCEED THE LESSER OF (I) ANY FEES PAID BY THE USER TO IRIS FOR THE SERVICES DURING **[THE TWELVE (12) MONTH PERIOD IMMEDIATELY PRECEDING THE DATE ON WHICH THE CAUSE OF ACTION AROSE; AND (II) SIX HUNDRED AND TWENTY-FIVE DOLLARS (CDN$625.00)]**. ", - "In order for :name to meet the following access needs, they will need to know who requested them. Do you give permission to share it is you who requested the following access needs?": "Pour que :name puisse répondre aux besoins en matière d'accessibilité suivants, il leur est nécessaire de connaître la personne qui les a demandés. Nous autorisez vous à dire que vous avez formulé ces besoins en matière d'accessibilité ?", "In order to create a successful exchange, we ask Consultation Participants to provide this information so that The Accessibility Exchange can match Consultation Participants with an engagement that is looking for someone with your experiences.": "Afin de créer un échange réussi, nous demandons aux personnes participant à des consultations de fournir ces informations afin que le Connecteur pour l'accessibilité puisse mettre en relation les participants à des consultations avec une consultation à la recherche d'une personne ayant votre expérience.", "In person": "En personne", "In progress": "En cours", @@ -957,11 +777,9 @@ "Intersectional - This engagement is looking for people who have all sorts of different identities and lived experiences, such as race, gender, age, sexual orientation, and more.": "Intersectionnel - Cette consultation s'adresse à toute personne, peu importe leurs axes d'identités intersectionnels (telles que la race, le sexe, l'âge, l'orientation sexuelle) et leurs expériences vécues.", "Intersectional outreach": "Approche intersectionnelle", "Intervenor": "Intervenant", - "Interview at their own pace": "Effectuer l'entrevue à leur propre rythme", "Interview at your own pace": "Possibilité de répondre aux questions d'entrevues à votre propre rythme", "Interviews": "Entrevues", "Interviews can happen between the following dates:": "Les entrevues sont possibles entre les dates suivantes :", - "Interviews will take place between :start - :end": "Les entrevues auront lieu dans la période du :start au :end", "Interviews will take place between :start and :end.": "Les entrevues auront lieu dans la période du :start au :end.", "In the event that IRIS terminates or suspends the User’s access to the Services or this Agreement under this Subsection 16(b), User will receive a pro-rata refund of any prepaid fees paid to IRIS for which Services have not been provided. IRIS shall not be liable to you or to any third party for any suspension or discontinuance of the Services or the Platform, including on account of any expenditures or investments or other commitments made or actions taken in reliance on the expected continuation of the Services or Platform. Any suspected fraudulent, abusive or illegal activity that may be grounds for termination of your use of the Platform and may be referred to appropriate law enforcement authorities.": "In the event that IRIS terminates or suspends the User’s access to the Services or this Agreement under this Subsection 16(b), User will receive a pro-rata refund of any prepaid fees paid to IRIS for which Services have not been provided. IRIS shall not be liable to you or to any third party for any suspension or discontinuance of the Services or the Platform, including on account of any expenditures or investments or other commitments made or actions taken in reliance on the expected continuation of the Services or Platform. Any suspected fraudulent, abusive or illegal activity that may be grounds for termination of your use of the Platform and may be referred to appropriate law enforcement authorities.", "Introduction video": "Vidéo de présentation", @@ -982,43 +800,29 @@ "Is there a group with a specific experience of identity you are interested in engaging?": "Y a-t-il un groupe ayant une identité spécifique que vous souhaitez impliquer ?", "Is there a specific disability or Deaf group you are interested in engaging?": "Y a-t-il un groupe spécifique de personnes en situation de handicap ou de personnes sourdes que vous souhaitez impliquer ?", "Is there something you are looking for that isn’t here?": "Cherchez-vous quelque chose qui n'est pas ici ?", - "Is there training on how to design and facilitate and effective consultation?": "Existe-t-il des formations sur la conception et l'animation d'une consultation réussie ?", "Is this engagement paid or volunteer?": "Cette consultation est-elle rémunérée ou bénévole ?", - "It is a good idea to hold more than one consultation with participants to ensure that you are capturing the information correctly and to provide an opportunity for additional feedback. This will demonstrate to participants that they are being heard, and that their feedback matters.": "Il est judicieux d'organiser plus d'une consultation avec les personnes participantes afin de s'assurer que vous saisissez correctement les informations et d'offrir la possibilité de fournir une rétroaction supplémentaire. Cela démontrera aux personnes concernées qu'elles sont entendues et que leurs commentaires comptent.", - "It is most likely that you will have Consultation Participants who will request English, French, ASL, and LSQ.": "Il est fort probable que vous ayez des personnes consultantes qui demandent l'anglais, le français, l'ASL et la LSQ.", - "It is useful to share the objectives with your participants and be clear about the limits of the consultation. This will avoid participants feeling that their feedback is missing from your report. Being clear from the outset will help build trust and foster a good working relationship with your participants.": "Il est utile de communiquer vos objectifs aux personnes participantes et d'être clair sur les limites de la consultation. Cela évitera que les personnes participantes aient l'impression que leurs commentaires ne figurent pas dans votre rapport. Le fait d'être clair dès le départ permettra d'instaurer la confiance et de favoriser une bonne relation de travail avec les personnes participantes.", - "It looks like your project is complete, based on your project dates. If this is not accurate, please update your project duration dates.": "Il semblerait que votre projet soit terminé, d'après les dates de votre projet. Si cela n'est pas exact, veuillez mettre à jour les dates de déroulement de votre projet.", "It seems as though you have not created any projects yet.": "Il semblerait que vous n'ayez pas encore créé de projets.", - "It’s been at least a year since you’ve updated your communication and consultation preferences. Please update this so you are matched to the appropriate projects.": "Vous n'avez pas mis à jour vos préférences en matière de communication et de consultation depuis au moins un an. Veuillez les mettre à jour pour que vous soyez associé aux projets les plus pertinents pour vous.", - "It’s been at least a year since you’ve updated your matching information. Please update this information so that we can be sure to match you with the appropriate projects.": "Vous n'avez pas mis à jour vos informations de jumelage depuis au moins un an. Veuillez mettre à jour ces informations afin que nous puissions être sûrs de vous jumeler avec les projets les plus appropriés pour vous.", - "It’s been at least a year since you’ve updated your matching information. Please update this so you are matched to the appropriate projects.": "Vous n'avez pas mis à jour vos informations de jumelage depuis au moins un an. Veuillez les mettre à jour afin que vous puissiez être jumelé aux projets les plus pertinents pour vous.", - "It’s been at least a year since you’ve updated your public page. Please review and update any changes.": "Vous n'avez pas mis à jour votre page publique depuis au moins un an. Veuillez revoir et mettre à jour les changements éventuels.", "I work for a private business, the federal government, or a public sector organization regulated under the Accessible Canada Act.": "Je travaille pour une entreprise privée, le gouvernement fédéral ou une organisation du secteur public réglementée par la Loi canadienne sur l'accessibilité.", "I would like to speak to someone to discuss additional access needs or concerns": "Je voudrais parler à une personne afin de discuter de mes besoins ou préoccupations supplémentaires en matière d'accessibilité", "I’ve gone to orientation, why isn’t this updated?": "I’ve gone to orientation, why isn’t this updated?", "Join our accessibility community": "Rejoignez notre communauté en faveur de l'accessibilité", "Keeping my information up to date": "Maintenir mes informations à jour", "Language": "Langue", - "Language: :language": "Langue : :language", "Language: :locale": "Langue: :locale", "Language :language added.": "Langue :language ajoutée.", "Language :language removed.": "Langue :language supprimée.", "Language :number": "Langue :number", "Language groups": "Communautés linguistiques", - "Language groups they can connect to": "Communautés linguistiques auprès desquels ils peuvent servir d'intermédiaire", "Language preferences": "Préférences linguistiques", "Languages": "Langues", "languages": "langues", "Languages :name uses": "Langues que :name parle", "Languages available": "Langues disponibles", - "Langue des signes québécoise (LSQ)": "Langue des signes québécoise (LSQ)", "Large text": "Grand texte", "Last updated: :date": "Dernière mise à jour le :date", - "Last updated on :date.": "Dernière mise à jour le :date.", "Later, you will have the chance to choose the language or languages for your consultations.": "Par la suite, vous aurez la possibilité de choisir la ou les langues pour les consultations auxquelles vous participerez.", "Latin American": "Hispanique \/ Latino", "Learn about our pricing": "Découvrez nos tarifs", - "Learn how to plan an inclusive and accessible consultation": "Apprenez à planifier une consultation inclusive et accessible", "Learning disabilities": "Troubles d'apprentissage", "Learn more": "En savoir plus", "Learn more about being a Community Connector": "Apprenez-en plus sur le rôle de personne facilitatrice communautaire", @@ -1040,7 +844,6 @@ "LinkedIn page": "Page LinkedIn", "Links to resource": "Lien(s) vers la ressource", "Link to join": "Lien pour se joindre à la rencontre", - "Link to join:": "Lien pour se joindre à la rencontre :", "link to join the meeting": "lien pour rejoindre la réunion", "Lived and living experiences": "Expériences vécues", "Lived experience": "Expérience vécue", @@ -1050,10 +853,7 @@ "Lived or living experience": "Expérience vécue", "Living in urban, rural, or remote areas": "Vivant dans des zones urbaines, rurales ou éloignées", "Location": "Emplacement", - "Location: :location": "Emplacement: :location", - "Location :location": "Emplacement :location", "Location :number": "Emplacement :number", - "Locations": "Emplacements", "Mailing Address": "Adresse postale", "Mailing address": "Adresse postale", "main menu": "menu principal", @@ -1074,8 +874,6 @@ "Mark as read": "Marquer comme lu", "Mark estimate as returned": "Marquer le devis comme retourné", "Mark the estimate as \"returned\" by visiting the link below and searching for :projectable.": "Marquez le devis comme « retourné » en visitant le lien ci-dessous et en recherchant :projectable.", - "Matching information": "Information correspondante", - "Matching service": "Service de jumelage", "match you to their projects or engagements": "vous jumeler à leurs projets ou consultations", "Materials": "Matériels", "Materials are sent to participants by": "Le matériel de consultation sera envoyé aux personnes participantes le", @@ -1084,7 +882,6 @@ "Me": "Moi", "means that a field is required.": "singifie qu'un champ est requis.", "meeting date": "date de la réunion", - "Meeting date :date": "Date de la réunion :date", "Meeting dates": "Dates de réunion", "meeting end time": "heure de fin de la réunion", "Meetings": "Réunions", @@ -1097,7 +894,6 @@ "Mental health-related disabilities": "Incapacités liées à la santé mentale", "Menu": "Menu", "Microsoft Teams": "Microsoft Teams", - "Microsoft Word": "Microsoft Word", "Middle Eastern": "Moyen-oriental", "Minimum number of participants": "Nombre minimum de personnes participantes", "minimum number of participants": "", @@ -1106,8 +902,6 @@ "Module - :title": "Module - :title", "Modules": "Modules", "Monday": "Lundi", - "Month": "Mois", - "more": "plus", "Most of the time, we will not need to tell them who requested the access need. However, for some of the access needs, we will—and we’ll tell you which ones below.": "Most of the time, we will not need to tell them who requested the access need. However, for some of the access needs, we will—and we’ll tell you which ones below.", "Mountain Standard or Daylight Time": "Heure normale ou avancée des Rocheuses", "Mountain Standard Time*": "Heure normale des Rocheuses*", @@ -1115,7 +909,6 @@ "My dashboard": "Mon tableau de bord", "My email": "Mon adresse courriel", "My organization’s page": "La page de mon organisation", - "My organization’s role: :roles": "Le rôle de mon organisation : :roles", "My phone number": "Mon numéro de téléphone", "My projects": "Mes projets", "My public page": "My public page", @@ -1127,7 +920,6 @@ "My support person’s phone number": "Numéro de téléphone de la personne me soutenant", "My trainings": "Mes formations", "Métis": "Métis", - "N\/A": "Sans objet", "Name": "Nom", "Name (English)": "Nom (anglais)", "Name (French)": "Nom (français)", @@ -1137,11 +929,9 @@ "Name of organization — English": "Nom de l'organisation — en anglais", "Name of organization — French": "Nom de l’organisation — en français", "Name of training": "Nom de la formation", - "Need someone to call and walk through information": "Need someone to call and walk through information", "Needs printed version to be sent to:": "A besoin d'une version imprimée envoyée à :", "Neurodivergence": "Neurodiversité", "New Brunswick": "Nouveau-Brunswick", - "New engagement by :projectable": "Nouvelle consultation par :projectable", "New estimate approval": "Nouvelle approbation du devis", "New Estimate Approval from :projectable": "Nouvelle approbation de devis de :projectable", "New estimate request": "Nouvelle demande de devis", @@ -1150,10 +940,8 @@ "Newfoundland Standard or Daylight Time": "Heure normale ou heure avancée de Terre-Neuve", "New password": "Nouveau mot de passe", "New project": "Nouveau projet", - "New project by :projectable": "Nouveau projet par :projectable", "New reports uploaded": "Nouveaux rapports téléversés", "Next": "Suivant", - "Next webinar": "Webinaire suivant", "No": "Non", "No, don’t share my access needs": "Non, veuillez ne pas partager mes besoins en matière d'accessibilité", "No, give me a group with intersectional experiences and\/or identities": "Non, proposez-moi un groupe avec des expériences et\/ou des identités intersectionnelles", @@ -1185,8 +973,6 @@ "Not available": "Non disponible", "Not available.": "Non disponible.", "not available yet": "pas encore disponible", - "Note": "Remarque", - "Note-taking and analysis": "Prise de notes et analyse", "Note-taking services": "Services de prise de notes", "Notes": "Remarques", "Not everyone has had access to paid or volunteer experiences, but there are a lot of experiences that build certain skills and strengths. You can share more about that here. If you have had paid or volunteer experiences, you can also include that.": "Tout le monde n'a pas forcément eu la possibilité de vivre des expériences rémunérées ou bénévoles, mais il existe de nombreuses expériences qui permettent de développer certaines compétences et forces. Vous pouvez en parler ici. Si vous avez eu des expériences rémunérées ou bénévoles, vous pouvez également le mentionner.", @@ -1196,7 +982,6 @@ "Notification preferences": "Préférences de notification", "Notifications": "Notifications", "notifications navigation": "navigation des notifications", - "Notify me on this website": "Me prévenir sur ce site Internet", "Notify me or my support person directly": "Avisez-moi ou avisez la personne me fournissant du soutien directement", "Notify your organization’s contact person directly": "Prévenez directement la personne de contact de votre organisation", "Notify your organization’s team through the website": "Informez l'équipe de votre organisation par le biais du site Internet", @@ -1205,7 +990,6 @@ "No trainings found.": "Aucune formation trouvée.", "Not ready to publish": "Pas prêt à publier", "Not received": "Non reçu", - "Not started": "Non commencé", "Not started yet": "Pas encore commencé", "Notwithstanding the foregoing, you will have no obligation to indemnify or hold harmless any Indemnitee from or against any liability, losses, damages or expenses incurred as a result of any action or inaction of such Indemnitee.": "Notwithstanding the foregoing, you will have no obligation to indemnify or hold harmless any Indemnitee from or against any liability, losses, damages or expenses incurred as a result of any action or inaction of such Indemnitee.", "Not yet approved": "Not yet approved", @@ -1218,7 +1002,6 @@ "Nunavut": "Nunavut", "obtain or attempt to access or otherwise obtain any materials or information through any means not intentionally made available or provided for through the Platform;": "obtain or attempt to access or otherwise obtain any materials or information through any means not intentionally made available or provided for through the Platform;", "Off": "Inactif", - "Offer transparency around what is out of scope": "Faites preuve de transparence sur ce qui est hors du champ d'application", "Okay": "Okay", "Older people (65+)": "Personnes aînées (65+)", "On": "Actif", @@ -1227,35 +1010,27 @@ "Once you are done watching the videos for all the modules, you can take this quiz. Upon passing this quiz, you can receive your certificate of completion.": "Une fois que vous aurez terminé de regarder les vidéos de tous les modules, vous pourrez répondre à ce jeu-questionnaire. En réussissant ce jeu-questionnaire, vous recevrez votre certificat de réussite.", "Once you confirm your participation for an engagement, we share your access needs with the government or business that you are working with. This will help them seek out the appropriate service providers to meet your access need(s).": "Lorsque vous confirmez votre participation à une consultation, nous partageons vos besoins en matière d'accessibilité avec le gouvernement ou l'entreprise avec lesquels vous travaillez. Cela les aidera à trouver les fournisseurs de services appropriés pour répondre à votre ou vos besoins en matière d'accessibilité.", "Once you confirm your participation for an engagement, we will share your preferred contact method and your contact information with the government or business. This information enables them to contact you to discuss the details of your participation.": "Lorsque vous confirmez votre participation à une consultation, nous partageons votre méthode de communication préférée et vos coordonnées avec le gouvernement ou l'entreprise. Ces informations leur permettent de vous contacter pour discuter des détails de votre participation.", - "Once you delete your account, you will not be able to recover it": "Une fois que vous aurez supprimé votre compte, il vous sera impossible de le récupérer", "Once you delete your account, you will not be able to recover it.": "Une fois que vous aurez supprimé votre compte, il vous sera impossible de le récupérer.", - "Once you delete your organization profile, there will be a grace period of 30 days, during which you could recover it. After 30 days, it will be deleted forever — this cannot be reversed.": "Une fois que vous aurez supprimé le profil de votre organisation, il y aura une période de grâce de 30 jours, pendant laquelle vous pourrez le récupérer. Après 30 jours, il sera supprimé pour toujours - ceci ne peut être annulé.", "Once you have hired a Community Connector, please add their information here.": "Une fois que vous aurez engagé une personne facilitatrice communautaire, veuillez ajouter ses informations ici.", "Once you have hired a Community Connector, please add them here. This will give them access to your engagement details and allow them to add participants.": "Une fois que vous aurez engagé une personne facilitatrice communautaire, veuillez l'ajouter ici. Cela leur donnera accès aux détails de votre consultation et leur permettra d'ajouter des personnes participantes.", "Once you have hired a Community Organization, please select the organization below.": "Une fois que vous aurez engagé une organisation communautaire, veuillez sélectionner l'organisation ci-dessous.", "Once you publish your engagement details, anyone on this website will be able to access it.": "Une fois que vous aurez publié les détails de vos consultations, n'importe qui sur ce site Internet pourra y accéder.", - "Once you publish your profile, other users on this website can access your page.": "Une fois que vous aurez publié votre profil, les autres membres de ce site Internet pourront accéder à votre page.", - "Once you publish your project, others can find it.": "Une fois que vous aurez publié votre projet, d'autres personnes pourront le trouver.", "Once your account has been approved, you can review and publish your organization’s page. You must have completed all the previous steps.": "Once your account has been approved, you can review and publish your organization’s page. You must have completed all the previous steps.", "Once your account has been approved, you can review and publish your page. You must have completed all the previous steps.": "Once your account has been approved, you can review and publish your page. You must have completed all the previous steps.", "Once you sign up, you can sign up for an orientation session to learn about what you can do on this website. You can also fill in information about your organization so businesses and government can learn more about what you do and who you represent or serve.": "Une fois inscrit, vous pouvez vous inscrire à une séance d'orientation pour découvrir ce que vous pouvez faire sur ce site. Vous pouvez également fournir des informations sur votre organisation afin que les entreprises et les gouvernements puissent en savoir plus sur ce que vous faites et qui vous représentez ou soutenez.", "Once you sign up, you can sign up for an orientation session to learn about what you can do on this website. You can also fill in information to facilitate a smoother collaboration with organizations, such as access needs, communication preferences, and consultation preferences.": "Une fois inscrit, vous pouvez vous inscrire à une séance d'orientation pour découvrir ce que vous pouvez faire sur ce site. Vous pouvez également remplir des informations destinées à rendre la collaboration avec les organisations plus harmonieuse, telles que vos besoins en matière d'accessibilité, vos préférences en ce qui concerne les communications ou encore les consultations.", "Once you’ve reviewed the project details, please:": "Une fois que vous aurez revu les détails du projet, veuillez :", - "One of the key parts of preparing for your consultation with the disability and Deaf communities is making sure that your consultations are done in an accessible and inclusive way.": "L'un des éléments clés de la préparation de votre consultation avec les communautés de personnes en situation de handicap et de personnes sourdes est de s'assurer que vos consultations se déroulent d'une manière accessible et inclusive.", - "Online form, such as survey monkey or google forms": "Formulaire en ligne, tel que SurveyMonkey ou Google Forms", "Only people with specific disabilities and\/or Deaf people": "Personnes ayant des handicaps spécifiques et\/ou personnes sourdes", "Only reachable within cross-disability and Deaf or intersectional groups": "Only reachable within cross-disability and Deaf or intersectional groups", "Ontario": "Ontario", "Open call": "Invitation ouverte", "Opens in new tab": "S'ouvre dans un nouvel onglet", "optional": "optionnel", - "Optional": "Optionnel", "Organization details": "Détails de l'organisation", "Organization information": "Informations sur l'organisation", "Organization information that will set you up for running consultations.": "Renseignements sur l'organisation qui vous permettront de mener des consultations.", "Organization name": "Nom de l'organisation", "organization name": "nom de l'organisation", - "Organizations": "Organisations", "organizations and businesses to work on accessibility projects together.": "les organisations et entreprises afin de travailler ensemble sur des projets relatifs à l'accessibilité.", "Organizations can decide which criteria they would like the participants for a project to have. They then have a choice between:": "Les organisations peuvent décider des critères qu'elles souhaitent voir figurer parmi les personnes participantes à un projet. Elles ont alors le choix entre :", "Organization selection criteria": "Critères de sélection des organisations", @@ -1264,23 +1039,15 @@ "Organizations which have some constituency of persons with disabilities, Deaf persons, or family members, but these groups are not their primary mandate. Groups served, for example, can include: Indigenous organizations, 2SLGBTQ+ organizations, immigrant and refugee groups, and women’s groups.": "Organisations qui comptent parmi leurs membres des personnes en situation de handicap, des personnes sourdes ou des membres de leur famille, mais pour qui ces groupes ne constituent pas leur vocation première. Les groupes desservis peuvent inclure : les organisations autochtones, les organisations 2SLGBTQ+, les groupes de personnes migrantes et réfugiées et les groupes de femmes.", "Organizations “of” disability, Deaf, and family-based organizations. Constituted primarily by people with disabilities.": "Organisations de personnes en situation de handicap, de personnes sourdes, et de familles. Constituées principalement de personnes en situation de handicap.", "Organization website": "Site Internet de l'organisation", - "Orientation completed": "Orientation complétée", "Other": "Autre", "Other (please describe)": "Autre (veuillez décrire)", "Other (please specify)": "Autre (veuillez préciser)", "Other accepted format": "Autre format accepté", "other accepted format": "autre format accepté", "Other civil society organizations relevant to people with disabilities, Deaf people, and supporters": "Autres organisations de la société civile pertinentes pour les personnes en situation de handicap, les personnes sourdes et leurs réseaux de soutien", - "Other disability": "Autre incapacité", - "Other engagements for this project": "Autres consultations pour ce projet", - "Other experiences or identities": "Autres expériences ou identités", "Other identities": "Autres axes d'identité", - "Other identities included": "Les autres identités comprennent", "Other identity groups": "Autres groupes identitaires", - "Other identity groups they can connect to": "Autres groupes identitaires auprès desquels ils peuvent servir d'intermédiaire", - "Other languages": "Autres langues", "Other public sector organization, which is regulated by the Accessible Canada Act": "Autre organisation du secteur public qui est réglementée par la Loi canadienne sur l'accessibilité", - "Other webinars": "Autres webinaires", "Other – in-person or virtual meeting": "Autre - réunion en personne ou virtuelle", "Other – written or recorded response": "Autre – réponse écrite ou enregistrée", "Our team does not have people with lived and living experiences of disability or being Deaf.": "Notre équipe ne compte pas de personnes en situation de handicap ou de personne sourdes, ou de personnes ayant une expérience vécue du handicap ou de la surdité.", @@ -1297,18 +1064,14 @@ "Parliamentary entities": "Parliamentary entities", "Participant": "Personne participante", "Participant access needs": "Besoins en matière d'accessibilité des personnes participantes", - "Participant consent forms": "Formulaires de consentement des personnes participantes", "Participant details": "Détails de la personne participante", "Participant Invitation": "Participant Invitation", "Participant location": "Emplacement de la personne participante", - "Participant non-disclosure agreement": "Entente de confidentialité de la personne participante", "Participants": "Personnes participantes", "participants confirmed": "personnes participantes confirmées", "Participant selection criteria": "Critères de sélection des personnes participantes", "Participants must respond to their invitation by the following date": "Les personnes participantes doivent répondre à l'invitation avant la date suivante", "Participants must sign up for this engagement by the following date": "Les personnes intéressées doivent s'inscrire à cette consultation avant la date suivante", - "Participants taking part in **interviewing at their own pace** will be paid :pay.": "Les personnes participant à **l'entrevue à leur propre rythme** seront rémunérées :pay.", - "Participants taking part in **real time interviews** will be paid :pay.": "Les personnes participant à des **entrevues en direct** seront rémunérées :pay.", "Participants who have additional concerns or needs to be discussed": "Les personnes ayant des préoccupations ou des besoins supplémentaires à discuter", "Participate in consultations": "Participe à des consultations sur l'accessibilité", "Participate in consultations for organizations and businesses who are working on accessibility projects, and get paid for your participation.": "Participer à des consultations pour des organisations et des entreprises qui travaillent sur des projets relatifs à l'accessibilité et être payé pour votre participation.", @@ -1316,9 +1079,7 @@ "Participating in engagements": "Participer à des consultations", "Pause": "Pause", "Payment": "Paiement", - "Payment amount": "Montant du paiement", "Payment information": "Informations de paiement", - "Payment method": "Moyen de paiement", "Payment type": "Type de paiement", "PDF": "PDF", "Pending": "En attente", @@ -1326,13 +1087,10 @@ "Pending invitations": "Invitations en attente", "People across any disabilities and Deaf people": "Personnes ayant toutes sortes de handicap et personnes sourdes", "People and organizations": "Personnes et organisations", - "People who identify with one or more of the 2SLGBTQIA+ identities": "Personnes s'identifiant à une ou plusieurs des identités 2SLGBTQIA+", "People with disabilities and\/or Deaf people": "Personnes en situation de handicap et\/ou personnes sourdes", - "People with lived experience of disability or being Deaf.": "Personnes ayant une expérience vécue du handicap ou de la surdité.", "Phase of consultation": "Phase de la consultation", "Phases of consultation": "Phase(s) de la consultation", "Phone": "Téléphone ", - "Phone: :phone": "Téléphone: :phone", "Phone call": "Appel téléphonique", "Phone calls": "Appels téléphoniques", "Phone number": "Numéro de téléphone", @@ -1345,16 +1103,11 @@ "Plan and share your project with others on this website.": "Planifiez et partagez votre projet avec d'autres personnes sur ce site Internet.", "Play": "Play", "Please:": "Veuillez :", - "Please attend an orientation session for your roles as :role.|Please attend an orientation session for each of your roles as :firstRole and :lastRole.": "Veuillez assister à une session d'orientation pour vos rôles en tant que :role.|Veuillez assister à une session d'orientation pour chacun de vos rôles en tant que :firstRole et :lastRole.", - "Please be aware that it is highly likely that people will request English, French, American Sign Language (ASL), and Langue des signes québécoise (LSQ)": "Sachez qu'il est très probable que des personnes requièrent l'anglais, le français, l'American Sign Language (ASL) et la Langue des signes québécoise (LSQ)", "Please be specific about where you would like the participants to go to participate in this engagement.": "Veuillez préciser le lieu où vous souhaitez que les personnes se rendent pour participer à cette consultation.", - "Please browse our Resources page, to help you plan an accessible and inclusive consultation.": "Veuillez consulter notre page de ressources afin de vous aider à planifier une consultation accessible et inclusive.", "Please check all that apply.": "Veuillez cocher toutes les cases qui s'appliquent.", "Please choose a new password for The Accessibility Exchange": "Veuillez choisir un nouveau mot de passe pour le Connecteur pour l'accessibilité", "Please choose the language or languages you would like to use on this website.": "Veuillez choisir la ou les langues que vous souhaitez utiliser sur ce site Internet.", "Please complete this section so that you can be set up to participate.": "Please complete this section so that you can be set up to participate.", - "Please complete this section so that you can be set up to participate in consultations.": "Veuillez remplir cette section afin de pouvoir participer aux consultations.", - "Please complete this section so that you can be set up to participate in consultations and work on projects.": "Veuillez remplir cette section afin de pouvoir participer à des consultations et travailler sur des projets.", "Please complete your engagement details.": "Veuillez compléter les détails de votre consultation.", "Please complete your engagement details so potential participants can know what they are signing up for.": "Veuillez compléter les détails de votre consultation afin que les personnes intéressées puissent savoir à quoi elles s'engagent.", "Please confirm new password": "Veuillez confirmer le nouveau mot de passe", @@ -1366,7 +1119,6 @@ "Please create an account to join The Accessibility Exchange.": "Veuillez créer un compte pour vous joindre au Connecteur pour l'accessibilité.", "Please create your organization’s page so that other members of this website can find you.": "Veuillez créer la page de votre organisation afin que les autres membres de ce site Internet puissent vous trouver.", "Please create your page to share more about who you are, your experiences, and your interests.": "Veuillez créer votre page pour en dire plus sur qui vous êtes, vos expériences et vos intérêts.", - "Please create your profile to share more about who you are, your experiences, and your interests.": "Veuillez créer votre profil pour en dire plus sur qui vous êtes, vos expériences et vos intérêts.", "Please describe how the Disability and Deaf communities will be impacted by the outcomes of your project.": "Veuillez décrire comment les communautés des personnes en situation de handicap et des personnes sourdes seront touchées par les résultats de votre projet.", "Please describe this engagement.": "Veuillez décrire cette consultation.", "Please enter a :attribute that is less than or the same as the ideal number of participants.": "", @@ -1375,14 +1127,11 @@ "Please enter a valid date for the :attribute.": "", "Please enter a valid website link under “Accessibility and Inclusion links”.": "Veuillez saisir un lien Internet valide sous \"Liens en lien avec l'accessibilité et l'inclusion\".", "Please enter the email address of the individual you have hired as a Community Connector.": "Veuillez entrer l'adresse courriel de la personne que vous avez embauchée en tant que personne facilitatrice communautaire.", - "Please enter your collaboration preferences": "Veuillez entrer vos préférences de collaboration", "Please enter your own name and email, rather than you organization’s. You will be able to create your organization in a later step.": "Please enter your own name and email, rather than you organization’s. You will be able to create your organization in a later step.", - "Please fill this out and email it back to us for our first meeting together.": "Veuillez remplir ce document et nous le renvoyer par courriel en vue de notre première rencontre.", "Please identify the type of Regulated Organization yours is:": "Veuillez identifier le type d'organisation réglementée que vous êtes :", "Please include any links that describes the accessibility and inclusion initiatives your regulated entity has. This can include reports, case studies, and more.": "Veuillez inclure tout lien qui décrit les initiatives en matière d'accessibilité et d'inclusion de votre entité réglementée. Cela peut inclure des rapports, des études de cas, et plus encore.", "Please indicate how you would like to be notified of a new person or people being added to your engagements.": "Veuillez indiquer comment vous souhaitez être informé de l'ajout d'une ou plusieurs nouvelles personnes à vos consultations.", "Please indicate how you would like to be notified of a project estimate that has been returned for you to review.": "Veuillez indiquer comment vous aimeriez être informé qu'un devis pour un projet vous a été retourné.", - "Please indicate how you would like to be notified of new participants being added to your engagements.": "Veuillez indiquer comment vous souhaitez être informé de l'ajout de nouvelles personnes participantes à vos consultations.", "Please indicate how you would like to be notified of new projects. ": "Veuillez indiquer comment vous souhaitez être informé de tout nouveau projet. ", "Please indicate how you would like to be notified to review and update your information.": "Veuillez indiquer comment vous souhaitez être contacté lorsque vient le temps de réviser et mettre à jour vos informations.", "Please indicate if the reports will be publicly available.": "Veuillez indiquer si les rapports seront accessibles au public.", @@ -1409,40 +1158,26 @@ "Please list any languages that you will be using to describe your regulated organization.": "Veuillez énumérer toutes les langues que vous utiliserez pour décrire votre organisation sous réglementation fédérale.", "Please list any training related to accessibility or inclusion that your team members have received.": "Veuillez énumérer toute formation liée à l'accessibilité ou à l'inclusion que les membres de votre équipe ont reçue.", "Please note that all organizations have been asked to provide gender neutral and accessible washrooms by default.": "Please note that all organizations have been asked to provide gender neutral and accessible washrooms by default.", - "Please note that if you want to reach a specific identity group, you will not be able to use our matching service. You can reach them through an open call project, or go through a Community Connector or community organization.": "Veuillez noter que si vous souhaitez rejoindre un groupe de personnes ayant des axes d'ientité spécifiques, vous ne pourrez pas utiliser notre service de jumelage. Vous pouvez par contre les rejoindre par le biais d'un appel de projet public, ou passer par une personne facilitatrice communautaire ou encore par une organisation communautaire.", "Please note that selecting some of these options may open up new follow-up questions below them. ": "Veuillez noter que sélectionner certaines des options suivantes peut faire apparaître de nouvelles questions complémentaires. ", "Please provide personal information that will help us find consultations for you to participate in.": "Veuillez fournir les renseignements personnels nécessaires pour nous aider à trouver des consultations auxquelles vous pourriez participer.", "Please provide the details for a member of your team whom potential participants may contact to ask questions.": "Veuillez fournir les coordonnées de la personne de votre équipe que les personnes susceptibles de participer peuvent contacter pour leur poser des questions.", "Please reach out to us and we can try to help.": "N'hésitez pas à nous contacter et nous nous efforcerons de vous aider.", "Please read these terms of service carefully.": "Veuillez lire attentivement ces conditions de service.", "Please reset your password for The Accessibility Exchange": "Veuillez réinitialiser votre mot de passe pour le Connecteur pour l'accessibilité", - "Please respond by :date.": "Veuillez répondre avant le :date.", "Please review and publish your engagement details.": "Veuillez réviser et publier les détails de votre consultation.", - "Please review and update your communication and consultation preferences": "Veuillez réviser et mettre à jour vos préférences en matière de communication et de consultation", - "Please review and update your matching information": "Veuillez réviser et mettre à jour vos informations de jumelage", - "Please review and update your public page": "Veuillez réviser et mettre à jour votre page publique", "Please review your page. There is some information for your new role that you will have to fill in.": "Merci de vérifier l'information présentée sur cette page. De l'information sur les nouveaux rôles que vous avez sélectionnés est disponible.", - "Please see the resource [Planning a Safe, Accessible Consultation](:url).": "Veuillez consulter la ressource [Planification d'une consultation sûre et accessible](:url).", "Please select a language.": "", "Please select a language that the engagement documents will be in.": "", "Please select a language to remove.": "", "Please select a recruitment method": "Veuillez sélectionner une méthode de recrutement", - "Please select disability groups that your organization specifically represents": "Veuillez sélectionner les groupes de personnes en situation de handicap que votre organisation représente spécifiquement", "Please select the disability and\/or Deaf groups that you can connect to.": "Veuillez sélectionner les groupes de personnes en situation de handicap et\/ou de personnes sourdes auprès desquels vous pouvez agir comme intermédiaire.", "Please select the disability and\/or Deaf groups that your organization :represents_or_serves_and_supports": "Veuillez sélectionner le ou les groupes de personnes en situation de handicap ou de personnes sourdes que votre organisation :represents_or_serves_and_supports", - "Please select the disability groups that you can connect to.": "Veuillez sélectionner les groupes de personnes en situation de handicap avec lesquelles vous pouvez servir d'intermédiaire.", - "Please select the languages that you can translate your page into.": "Veuillez sélectionner les langues dans lesquelles vous êtes en mesure de traduire votre page.", "Please select the languages that your engagement information can be translated into by your organization.": "Veuillez sélectionner les langues dans lesquelles les informations sur les consultations peuvent être traduites par votre organisation.", "Please select the languages that your project information can be translated into by your organization.": "Veuillez sélectionner les langues dans lesquelles les informations sur votre projet peuvent être traduites par votre organisation.", "Please select the original project for which this is a follow-up:": "Veuillez sélectionner le projet original pour lequel il s'agit d'un suivi :", "Please select the specific disability and\/or Deaf groups that you can connect to.": "Veuillez sélectionner les catégories de personnes en situation de handicap et\/ou de personnes sourdes auprès desquelles vous pouvez servir d'intermédiaire.", "Please select the specific disability and\/or Deaf groups that your organization :represents_or_serves_and_supports": "Veuillez sélectionner les types de handicap ou les groupes de personnes sourdes que votre organisation :represents_or_serves_and_supports", "Please select your time zone…": "Veuillez sélectionner votre fuseau horaire…", - "Please sign this agreement and send to :email": "Veuillez signer cette entente et l'envoyer à :email", - "Please sign up for this engagement by:": "Veuillez vous inscrire à cette consultation d'ici le :", - "Please sign up for this engagement by :date.": "Veuillez vous inscrire à cette consultation d'ici le :date.", - "Please take the quiz to complete": "Veuillez répondre au jeu-questionnaire pour terminer", - "Please take this quick quiz to confirm your understanding. Once you pass the quiz, you will receive credit for finishing the webinar.": "Veuillez répondre à ce jeu-questionnaire rapide pour confirmer votre bonne compréhension. Une fois que vous aurez réussi le jeu-questionnaire, vous recevrez un certificat de complétion du webinaire.", "Please tell us more about the individuals you’d like participating in your engagement.": "Veuillez nous en dire plus sur les personnes que vous aimeriez impliquer dans votre consultation.", "Please tell us more about the organization you’d like participating in your engagement.": "Veuillez nous en dire plus sur l'organisation que vous souhaitez impliquer dans votre consultation.", "Please tell us the type of organization you are representing.": "Please tell us the type of organization you are representing.", @@ -1450,12 +1185,9 @@ "Please tell us what you would like to do on this website.": "Veuillez nous dire ce quel rôle vous souhaitez occuper sur la plateforme.", "Please tell us which community or communities your organization :represents_or_serves_and_supports.": "Dites-nous en plus sur la ou les communautés que votre organisation :represents_or_serves_and_supports.", "Please tell us which language you would like to use on The Accessibility Exchange.": "Veuillez nous indiquer la langue que vous souhaitez utiliser sur le Connecteur pour l'accessibilité.", - "Please try again.": "Veuillez réessayer.", "Please use the 24 hour clock time. For example, 13:00 is 1pm.": "Veuillez utiliser une heure sur 24 heures. Par exemple, 13h correspond à 1p.m.", "Please verify your email address by clicking on the link we emailed to you. If you didn’t receive the email, we will gladly send you another.": "Veuillez vérifier votre adresse courriel en cliquant sur le lien que nous vous avons envoyé. Si vous n'avez pas reçu le courriel, nous nous ferons un plaisir de vous en envoyer un autre.", "Please wait a few moments and try again.": "Veuillez attendre quelques instants et réessayer.", - "Please [update your access needs](:url) if they have changed.": "Veuillez [mettre à jour vos besoins en matière d'accessibilité](:url) s'ils ont changé.", - "Please [update your communication and consultation preferences](:url) if they have changed.": "Veuillez [mettre à jour vos préférences en matière de communication et de consultation](:url) si elles ont changé.", "Policy and programs": "Policy and programs", "Postal code": "Code postal", "Post your engagement as an open call. Anyone who fits your selection criteria can sign up. It is first-come, first-served until the number of participants you are seeking has been reached.": "Publiez votre consultation sous forme d'appel à tous et toutes. Toute personne qui correspond à vos critères de sélection pourra alors s'inscrire. Le principe du « premier arrivé, premier servi » sera appliqué jusqu'à ce que le nombre de personnes que vous recherchez soit atteint.", @@ -1465,21 +1197,16 @@ "Preferred contact method": "Méthode de contact privilégiée", "Preferred notification method": "Méthode de notification privilégiée", "present": "présent", - "Preview": "Prévisualiser", "Preview page": "Prévisualiser la page", - "Previous engagement": "Consultation précédente", "Pricing": "Tarification", "Prince Edward Island": "Île-du-Prince-Édouard", - "Printed documents": "Documents imprimés", "Printed version of engagement documents": "Version imprimée des documents de consultation", "Privacy": "Confidentialité", "PRIVACY AND CONFIDENTIALITY.": "PRIVACY AND CONFIDENTIALITY.", "privacy policy": "politique de confidentialité", "Privacy Policy": "Politique de confidentialité", "Procurement": "Procurement", - "Professional consultants who can help Regulated Organizations plan and run the consultation, analyze collected information, write accessibility reports, and book accessibility service providers.": "Des personnes consultantes professionnelles qui peuvent aider les organisations réglementées à planifier et à mener des consultations, à analyser les informations recueillies, à rédiger des rapports sur l'accessibilité et à retenir les services de prestataires de services en matière d'accessibilité.", "project": "projet", - "Project by :organization": "Projet par :organization", "Project by :projectable": "Projet par :projectable", "Project details": "Détails du projet", "Project duration": "Durée du projet", @@ -1488,7 +1215,6 @@ "project goals": "objectifs du projet", "Project goals must be provided in at least one language.": "Les objectifs du projet doivent être fournis dans au moins une langue.", "Project impact": "Impact du projet", - "Project invitation": "Invitation au projet", "Project name": "Nom du projet", "project name": "nom du projet", "Project outcome": "Résultat du projet", @@ -1505,13 +1231,7 @@ "Projects I am running": "Projets que je dirige", "Projects involved in as a Community Connector": "Projects involved in as a Community Connector", "Projects involved in as a Consultation Participant": "Projects involved in as a Consultation Participant", - "Projects I’m participating in as a :role.": "Projets auxquels je participe en tant que :role.", - "Projects I’m participating in as a Consultation Participant.": "Projets auxquels je participe en tant que personne participante.", "Projects I’m running": "Projets que je dirige", - "Projects I’m working on as an Accessibility Consultant or Community Connector.": "Projets pour lesquels je travaille en tant que personne consultante en matière d'accessibilité ou en tant que personne facilitatrice communautaire.", - "Projects my organization is contracted for as an Accessibility Consultant or Community Connector.": "Projets pour lesquels mon organisation est engagée en tant que personne consultante en matière d'accessibilité ou en tant que facilitatrice communautaire.", - "Projects my organization is participating in as a Consultation Participant.": "Projets pour lesquels mon organisation participe en tant que personne participante aux consultations.", - "Projects my organization is running.": "Projets menés par mon organisation.", "Project start date": "Date de début du projet", "Projects that are looking for people that my organization represents or supports": "Projets cherchant des personnes que mon organisation représente ou soutient", "Projects that are looking for someone with my lived experience": "Projets cherchant une personne ayant une expérience vécue similaire à la mienne", @@ -1529,37 +1249,28 @@ "Providing this information will help us match you to projects that are working on areas of interest to you.": "Fournir ces informations nous aidera à vous jumeler à des projets qui portent sur des domaines qui vous intéressent.", "Province or territory": "Province ou territoire", "province or territory": "province ou territoire", - "Public page": "Page publique", "Public profile": "Profil public", "Publish": "Publier", "Published": "Publié", - "Published on": "Publié le", "Published on: :created_at": "Publié le : :created_at", "Published on :date": "Publié le :date", "Publish page": "Publier la page", - "Publish project": "Publier le projet", "Quebec": "Québec", - "Question :current of :total": "Question :current de :total", "QUESTIONS": "QUESTIONS", "Questions are sent to participants by:": "Les questions sont envoyées aux personnes participantes par :", "Quick exit": "Sortie rapide", "Quick links": "Liens rapides", "Quiz": "Jeu-questionnaire", - "Quiz completed": "Jeu-questionnaire terminé", "Quiz results": "Résultats du jeu-questionnaire", "Quiz Results for :name": "Résultats du jeu-questionnaire pour :name", "Race and ethnicity": "Race et origine ethnique", - "Read more about these types of organizations": "En savoir plus sur ce type d'organisations", "Read our privacy policy": "Lisez notre politique de confidentialité", - "Ready": "Prêt", "Ready to publish": "Prêt à publier", - "Real-time consultations": "Consultations en temps réel", "Real time interview": "Entrevue en direct", "receive communication from them": "recevoir des communications de leur part", "Received": "Reçu", "Recommendation": "Recommandation", "Recommended": "Recommended", - "Record responses at my own pace": "Inscrire les réponses à mon propre rythme", "Recruit individuals who are Deaf or have disabilities to give input on your own projects.": "Recrutez des personnes sourdes ou en situation de handicap pour qu'elles donnent leur avis sur vos projets.", "Recruitment": "Recrutement", "Recruitment method": "Méthode de recrutement", @@ -1580,11 +1291,9 @@ "Relevant experiences (optional)": "Expériences pertinentes (optionnel)", "Relevant work and volunteer experience.": "Expérience professionnelle et bénévole pertinente.", "Reminders": "Rappels", - "Reminders (for events or for submitting engagement documents)": "Rappels (pour des événements ou pour la soumission de documents de consultation)", "Remote areas": "Zones éloignées", "Remove": "Retirer", "Remove :member from your organization": "Retirer :member de votre organisation", - "Remove :name from your organization": "Retirer :name de votre organisation", "Remove :notificationable": "Retirer :notificationable", "Remove :user from :membershipable": "Retirer :user de :membershipable", "Remove experience": "Retirer l'expérience", @@ -1595,7 +1304,6 @@ "Remove this location": "Retirer cet emplacement", "Remove this training": "Retirer cette formation", "represent": "représenter", - "Representative community organization": "Organisation communautaire représentative", "Representative organization": "Organisation représentative", "Representative organizations": "Organisation de personnes en situation de handicap ou de personnes sourdes", "represents": "représente", @@ -1606,7 +1314,6 @@ "required without an author organization": "required without an author organization", "requires VRS": "requiert le SRV", "Resend verification email": "Renvoyer le courriel de vérification", - "Reset": "Réinitialiser", "Reset your password": "Réinitialiser votre mot de passe", "Resource": "Ressource", "Resource collections": "Bibliothèques de ressources", @@ -1614,12 +1321,9 @@ "Resource link": "Resource link", "Resources": "Ressources", "Resources and training": "Ressources et formations", - "Resources by role": "Ressources par rôle", - "Resources for this phase": "Ressources pour cette étape", "Resource title": "Resource title", "Resource type": "Type de ressource", "Resource type: Training": "Resource type: Training", - "Resource type by :author": "Type de ressource par :author", "Responses are due by:": "Les réponses doivent être remises au plus tard le :", "Returned": "Retourné", "Return to dashboard": "Retour au tableau de bord", @@ -1627,15 +1331,12 @@ "Review and publish your organization’s public page": "Review and publish your organization’s public page", "Review and publish your public page": "Réviser et publier votre page publique", "Review engagement details": "Réviser les détails de la consultation", - "Review my organization’s page": "Réviser la page de mon organisation", - "Review my page": "Réviser ma page", "Review project": "Réviser le projet", "Review project details": "Vérifier les détails du projet", "Role": "Rôle", "Roles": "Rôles", "Roles:": "Rôles :", "Roles and permissions": "Rôles et permissions", - "Role|Roles": "Rôle|Rôles", "Run by": "Dirigé par", "Running": "Running", "Running a consultation": "Gestion de la consultation", @@ -1654,26 +1355,19 @@ "Save selection criteria": "Enregistrer les critères de sélection", "Scheduling": "Calendrier", "Search": "Chercher", - "Search...": "Rechercher...", "Search by account name": "Search by account name", - "Search by name...": "Recherche par nom...", "Search by organization name": "Recherche par nom d'organisation", "Search for resources": "Rechercher des ressources", - "Search name or lived experience...": "Recherche par nom ou par expérience vécue...", - "Search term": "Terme de recherche", "secondary": "secondaire", "Sector": "Secteur", "Sector:": "Secteur :", - "Sector: :sector": "Secteur : :sector", "Sectors": "Secteur(s)", "Sectors of interest": "Secteurs d'intérêt", "SECURITY.": "SECURITY.", - "Seeking Accessibility Consultants": "À la recherche de personnes consultantes en matière d'accessibilité", "Seeking Community Connector": "À la recherche d'une personne facilitatrice communautaire", "Seeking community connector": "À la recherche d'une personne facilitatrice communautaire", "Seeking Community Connectors": "À la recherche de personnes facilitatrices communautaires", "Seeking Community Organizations to consult with": "À la recherche d'organisations communautaires à consulter", - "Seeking Consultation Participants": "À la recherche de personnes intéressées à participer à des consultations", "Seeking Individual Consultation Participants": "À la recherche d'une personne intéressée à participer à des consultations", "Seeking Participants": "À la recherche de personnes intéressées à participer à des consultations", "Seeking participants": "À la recherche de personnes intéressées à participer à des consultations", @@ -1685,9 +1379,6 @@ "Selecting some of these options may open up new follow-up questions below them.": "Sélectionner certaines de ces options peut faire apparaître des questions supplémentaires.", "Select language": "Sélectionnez la langue", "Select none": "Tout déselectionner", - "Select specific cities or towns": "Sélectionnez des villes ou des villes spécifiques", - "Select specific provinces or territories": "Sélectionnez des provinces ou des territoires spécifiques", - "Select your criteria": "Sélectionnez vos critères", "Send invitation": "Envoyer l'invitation", "Send request": "Envoyer la demande", "Send the estimate and agreement to <:contact>.": "Envoyez le devis et l'entente à <:contact>.", @@ -1695,8 +1386,6 @@ "serves and supports": "sert et soutien", "Service areas": "Régions desservies", "Service delivery": "Service delivery", - "Service location": "Emplacement du service", - "Service organization": "Organisation offrant des services", "Settings": "Paramètres", "Share some information about yourself, including which communities you are connected to, so governments and businesses can get to know you and how you may be able to help them.": "Partagez quelques informations sur vous-même, y compris les communautés auxquelles vous êtes rattaché ou pour lesquelles vous pouvez servir d'intermédiaire, afin que les gouvernements et les entreprises puissent apprendre à vous connaître et savoir comment vous pouvez les aider.", "Share some information about yourself so governments and businesses can get to know you and what you may be able to help them with.": "Partagez quelques informations sur vous-même afin que les gouvernements et les entreprises puissent apprendre à vous connaître et à savoir ce que vous pourriez leur apporter.", @@ -1711,9 +1400,6 @@ "Sign language interpretation": "Interprétation en langue des signes", "Sign language interpretations": "Sign language interpretations", "Sign language translation": "Traduction en langue des signes", - "Sign language translation - :language": "Traduction de la langue des signes - :language", - "Sign language translation - ASL": "Traduction en ASL", - "Sign Language translations": "Traductions en langue des signes", "Sign Language video": "Vidéo en langue des signes", "Sign out": "Se déconnecter", "Sign up": "S’inscrire", @@ -1743,13 +1429,11 @@ "Social media and website links": "Liens vers les réseaux sociaux et les sites Internet", "Social media links": "Liens de vos réseaux sociaux", "Software": "Logiciel", - "Software:": "Logiciel :", "solicit personal information from any Underaged Person; or harm such persons in any way;": "solicit personal information from any Underaged Person; or harm such persons in any way;", "SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OR EXCLUSION OF CERTAIN WARRANTIES OR THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES. ACCORDINGLY, SOME OF THE ABOVE LIMITATIONS SET FORTH ABOVE MAY NOT APPLY TO YOU OR BE ENFORCEABLE WITH RESPECT TO YOU.": "SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OR EXCLUSION OF CERTAIN WARRANTIES OR THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES. ACCORDINGLY, SOME OF THE ABOVE LIMITATIONS SET FORTH ABOVE MAY NOT APPLY TO YOU OR BE ENFORCEABLE WITH RESPECT TO YOU.", "Some of the access needs you’ve chosen need :projectable to directly contact you to arrange and deliver. Are you okay with us putting your name beside this access need?": "Some of the access needs you’ve chosen need :projectable to directly contact you to arrange and deliver. Are you okay with us putting your name beside this access need?", "Someone to call and walk you through the information": "Someone to call and walk you through the information", "Some participants may not be able to meet in real-time. For them, you can send out a list of questions, and participants can respond to them in formats you accept.": "Certains personnes participantes peuvent ne pas être en mesure de participer à une réunion en direct. Dans ce cas, vous pouvez envoyer une liste de questions et les personnes participantes pourront y répondre dans des formats que vous acceptez.", - "Something changed?": "Quelque chose a changé ?", "Something else": "Quelque chose d'autre", "Sometimes, governments and businesses also want to talk to people with specific experiences. For example, people from a certain location. Or, people who speak a certain first language.": "Parfois, les gouvernements et les entreprises veulent aussi parler à des personnes ayant des expériences spécifiques. Par exemple, des personnes originaires d'un certain endroit. Ou, des personnes qui parlent une première langue en particulier.", "South Asian": "Sud-Asiatique", @@ -1758,7 +1442,6 @@ "Specific provinces or territories": "Provinces ou territoires spécifiques", "Spoken language interpretation": "Interprétation en langue parlée", "Staff lived experience": "Expérience vécue du personnel", - "Start adding participants to this engagement": "Commencer à ajouter des personnes à cette consultation", "Start date": "Date de début", "start date": "date de début", "Start time": "Heure de début", @@ -1768,12 +1451,10 @@ "Status": "Statut", "Status updated": "Statut actualisé", "Step :current of :total": "Étape :current de :total", - "Steps for creating your page": "Étapes à suivre pour créer votre page", "Steps for creating your project": "Étapes à suivre pour créer votre projet", "Stop": "Stop", "Street address": "Adresse postale", "Submit": "Soumettre", - "Success": "Opération réussie", "Such as, federal departments, agencies, and crown corporations, other public sector bodies and businesses.": "Par exemple, les ministères fédéraux, les agences et les sociétés d'État, les autres organismes et entreprises du secteur public.", "Such as Autism, ADHD": "Tels que l'autisme ou le TDAH", "Such as broken limbs, gestational diabetes": "Tel qu'un membre cassé, un problème de diabète gestationnel", @@ -1792,16 +1473,11 @@ "Support phone": "Support phone", "Survey": "Sondage", "Survey materials": "Documents du sondage", - "Surveys": "Surveys", "SURVEYS.": "SONDAGES.", "Suspend": "Suspendre", "Suspended": "Suspendu", - "Switch to:": "Basculer vers :", "System theme": "Thème du système", - "Table of contents": "Table des matières", "Take Quiz": "Répondre au jeu-questionnaire", - "Take the quiz": "Répondre au jeu-questionnaire", - "Talk to an Accessibility Consultant": "Parler à une personne consultante en matière d'accessibilité", "Tangible outcomes must be provided in at least one language.": "Tangible outcomes must be provided in at least one language.", "tangible outcomes of this project": "résultats tangibles de ce projet", "Tangible outcomes of this project": "Résultats tangibles de ce projet", @@ -1813,7 +1489,6 @@ "Tell us your business name": "Tell us your business name", "Tell us your organization’s name": "Tell us your organization’s name", "Templates and forms": "Modèles et formulaires", - "Temporary": "Temporaire", "Temporary disabilities": "Incapacités temporaires", "TERMINATION.": "TERMINATION.", "terms of service": "conditions d'utilisation", @@ -1835,11 +1510,7 @@ "The agreement will be sent with your estimate. Please sign this agreement and send it to <:email>.": "L'entente sera envoyée avec votre devis. Veuillez signer l'entente et l'envoyer à <:email>.", "The Canadian Forces and the Royal Canadian Mounted Police": "The Canadian Forces and the Royal Canadian Mounted Police", "The Community Organization being consulted with for this engagement.": "Organisation communautaire consultée dans le cadre de cette consultation.", - "The demographic breakdown of your confirmed participants will show when your sign up deadline has passed. Please come back and check again at that time.": "La répartition démographique de vos personnes participantes s'affichera lorsque la date limite d'inscription sera passée. Veuillez revenir et vérifier à nouveau à ce moment-là.", "The estimate for “:project” has been marked as returned.": "Le devis pour « :project » a été marqué comme retourné.", - "The following access needs have been shared with :name anonymously. They will not know it is you who requested them.": "Les besoins en matière d'accessibilité suivants ont été partagés avec :name de façon anonyme. Ceux-ci ne sauront pas que c'est vous qui les avez demandés.", - "The following preferences have been shared with :name.": "Les préférences suivantes ont été partagées avec :name.", - "The group of participants who have accepted your invitation include:": "Le groupe de personnes ayant accepté votre invitation est composé des personnes suivantes :", "The individual on this website with the email address you provided is not a community connector.": "La personne pour laquelle vous avez entré l'adresse courriel n'est pas une personne facilitatrice communautaire.", "The individual with the email address you provided is already participating in this engagement.": "La personne avec le courriel que vous avez fourni participe déjà à cette consultation.", "The languages you can work in.": "Les langues dans lesquelles vous pouvez travailler.", @@ -1862,14 +1533,11 @@ "The other payment type must be specified.": "Vous devez spécifier l'autre type de paiement.", "The person with the email address you provided is not a consultation participant.": "La personne dont l'adresse courriel est indiquée ne participe pas à la consultation.", "The provided password does not match your current password.": "Le mot de passe fourni ne correspond pas à votre mot de passe actuel.", - "The Regulated Organization sends out a list of questions, and you can respond to them at your own pace.": "L'organisme réglementé enverra une liste de questions et vous pourrez y répondre à votre propre rythme.", "There is already a :type with the name “:name” registered on this platform. If this is the organization you work for, please contact your colleagues to get an invitation to the organization. If this isn’t the organization you work for, please use a different name.": "Il existe déjà un :type avec le nom « :name » sur cette plateforme. S'il s'agit de l'organisation pour laquelle vous travaillez, veuillez contacter vos collègues pour obtenir une invitation à la rejoindre. S'il ne s'agit pas de l'organisation pour laquelle vous travaillez, veuillez utiliser un autre nom.", - "There is already an organization with the name “:name” registered on this platform. If this is the organization you work for, please contact your colleagues to get an invitation to the organization. If this isn’t the organization you work for, please use a different name.": "Il existe déjà une organisation avec le nom « :name » sur cette plateforme. S'il s'agit de l'organisation pour laquelle vous travaillez, veuillez contacter vos collègues pour obtenir une invitation à la rejoindre. S'il ne s'agit pas de l'organisation pour laquelle vous travaillez, veuillez utiliser un autre nom.", "There is no disability type filled in under \"something else\". Please fill this in.": "Aucun type de handicap n'a été indiqué sous « autre chose ». Merci de le remplir.", "There is no ethnoracial identity filled in under \"something else\". Please fill this in.": "Il n'y a pas d'identité ethnoraciale renseignée sous « autre chose ». Veuillez la remplir.", "These are the seven areas listed within the Accessible Canada Act. By law, entities must ensure these areas are accessible.": "Ces sept domaines sont énumérés dans la Loi canadienne sur l'accessibilité. En vertu de la loi, les entités doivent s'assurer que ces domaines sont accessibles.", "These are the seven areas listed within the Accessible Canada Act. Federally regulated organizations must work to improve their accessibility in all of these areas.": "Ces sept domaines sont énumérés dans la Loi canadienne sur l'accessibilité. En vertu de la loi, les organisations sous réglementation fédérale doivent s'assurer que ces domaines sont accessibles.", - "These details will help people know what to expect when working with you.": "Ces détails aideront les gens à savoir à quoi s'attendre lorsqu'ils travaillent avec vous.", "The selected consulting service is invalid": "", "The selected working language is not valid.": "La langue de travail sélectionnée n'est pas valide.", "These organizations, coalitions, cross-disability or umbrella groups are made up of, and controlled by, persons with disabilities, Deaf persons, and\/or their family members. These organizations were created to advance and defend the rights of persons with disabilities.": "Ces organisations, coalitions, groupes multi-handicap ou parapluies sont constitués et contrôlés par des personnes en situation de handicap, des personnes sourdes et\/ou des membres de leur famille. Ces organisations ont été créées pour faire avancer et défendre les droits des personnes en situation de handicap.", @@ -1897,7 +1565,6 @@ "This does not have to be your legal name.": "Il n'est pas nécessaire que ce soit votre nom légal.", "This engagement is a **paid** opportunity.": "Cette consultation est une opportunité **rémunérée**.", "This engagement is a **volunteer** opportunity.": "Cette consultation est une opportunité **bénévole**.", - "This engagement is a volunteer engagement. There will be no monetary payment.": "Cette consultation est entièrement bénévole. Il n'y aura pas de paiement effectué.", "This estimate includes the following engagements:": "Ce devis comprend les consultations suivantes :", "This estimate was sent to :contact on :date.": "Ce devis a été envoyé à :contact le :date.", "This includes disability and Deaf representative organizations, support organizations, and other civil society organizations (not only disability focused).": "Cela inclut les organisations représentant les personnes en situation de handicap et les personnes sourdes, les organisations de défense des droits et les autres organisations de la société civile (pas seulement axées sur le handicap).", @@ -1912,9 +1579,7 @@ "This is also the email you use to sign in to this account.": "This is also the email you use to sign in to this account.", "This is a summary of the access needs for your confirmed participants.": "Voici un résumé des besoins en matière d'accessibilité pour les personnes participantes ayant confirmé leur intérêt.", "This is for individuals with disabilities or Deaf people and their supporters, and those wishing to offer accessibility consulting and community connection services.": "Personnes en situation de handicap ou personnes sourdes, leurs alliés, ainsi que toute personne souhaitant offrir des services de consultation en matière d'accessibilité et de facilitation communautaire.", - "This is not the same as deleting your individual account for yourself. If you would like to delete your individual account, please go to [Delete my account](:url).": "Il ne s'agit pas de la même chose que de supprimer votre compte individue. Si vous souhaitez supprimer votre compte individuel, veuillez vous rendre au [Supprimer mon compte](:url).", "This is the email address you will use to sign in to The Accessibility Exchange.": "Il s'agit de l'adresse courriel que vous utiliserez pour vous connecter au Connecteur pour l'accessibilité.", - "This is the email that the invitation will be sent to.": "Il s'agit du courriel auquel l'invitation sera envoyée.", "This is the email your invitation will be sent to.": "Il s'agit du courriel auquel votre invitation sera envoyée.", "This is the email you use to log into the website.": "Il s'agit du courriel que vous utilisez pour vous connecter au site Internet.", "This is the ideal number of participants you would like to have for this engagement. The least you can select is 10 participants.": "Il s'agit du nombre idéal de personnes que vous souhaitez voir participer à cette consultation. Le minimum que vous pouvez sélectionner est de 10 personnes.", @@ -1927,8 +1592,6 @@ "This organization has people on staff who have lived experience of the communities they :represent_or_serve_and_support.": "Cette organisation compte parmi son personnel des personnes ayant une expérience vécue des communautés qu'elle :represent_or_serve_and_support.", "This site is for three kinds of users. Select an option below to learn more.": "Ce site s'adresse à trois types de publics. Sélectionnez une option ci-dessous pour en savoir plus.", "This site uses cookies to help provide a better experience.": "This site uses cookies to help provide a better experience.", - "This survey will be provided in the following digital formats:": "Ce sondage sera fourni dans les formats numériques suivants :", - "This survey will be provided in the following formats:": "Ce sondage sera fourni dans les formats suivants :", "This website was made in partnership with members and organizations from the disability and Deaf communities, supporters, and members from Federally Regulated Organizations.": "Ce site Internet a été conçu en partenariat avec des membres et des organisations de la communauté des personnes en situation de handicap et des personnes sourdes, de leurs alliés et des membres d'organisations sous réglementation fédérale.", "This will help governments and businesses communicate and work with you in a format that is accessible to you.": "Cela aidera les gouvernements et les entreprises à communiquer et à travailler avec vous dans un format qui vous est accessible.", "This will help people know what to expect when working with you.": "Cela permettra aux gens de savoir à quoi s'attendre lorsqu'ils travaillent avec vous.", @@ -1963,7 +1626,6 @@ "Trainer": "Personne fomatrice", "Training": "Formation", "Training by: :author": "Training by: :author", - "Training by :name": "Formation par :name", "training date": "training date", "training name": "training name", "Training organization or trainer": "Organisme de formation ou personne formatrice", @@ -1971,39 +1633,28 @@ "training organization or trainer website address": "training organization or trainer website address", "Training Participant": "Personne cherchant à se former", "Training your team has received": "Formation que votre équipe a suivie", - "Transcript": "Transcription", "Translations": "Traductions", "transmit any viruses, worms, defects, Trojan horses, or other items of a destructive nature;": "transmit any viruses, worms, defects, Trojan horses, or other items of a destructive nature;", "Trans people": "Personnes transgenres", "Tuesday": "Mardi", "Twitter page": "Page Twitter", "Two-factor authentication": "Authentification à deux facteurs", - "Type of community organization": "Type d'organisation communautaire", "Type of organization": "Type d'organisation", "Types of experiences or identities": "Types d'expériences ou d'identités", "Types of meetings offered": "Types de réunions proposées", "Types of regulated organizations": "Types of regulated organizations", "Unblock": "Débloquer", "Unblock :blockable": "Débloquer : blockable", - "Unblock :organization": "Débloquer :organization", "unblock them": "les débloquer", - "Unfortunately you will not be able to continue using The Accessibility Exchange at this time. You will no longer be able to log in through your account. If you have any questions, please reach out to us at :email or :phone.": "Malheureusement, vous ne pouvez pas continuer à utiliser le Connecteur pour l'accessibilité pour le moment. Vous ne pourrez plus vous connecter via votre compte. Si vous avez des questions, veuillez nous contacter à :email ou au :phone.", "Unit, apartment, or suite": "Unité, appartement ou suite", "Unit, suite, or floor": "Unité, suite ou étage", "Unpublish": "Dépublier", - "Unpublish my page": "Dépublier ma page", "Unpublish page": "Dépublier la page", "Unread": "Non lu", - "Unsaved content": "Contenu non sauvegardé", "Unsuspend": "Réinstaurer", "Upcoming": "À venir", "Update": "Mettre à jour", "Update estimate status": "Mettre à jour le statut du devis", - "Update matching information": "Mettre à jour les informations de jumelage", - "Update preferences": "Mettre à jour les préférences", - "Update your communication and consultation preferences": "Update your communication and consultation preferences", - "Update your matching information": "Mettre à jour vos informations de jumelage", - "Upload a file": "Téléverser un fichier", "upon request": "sur demande", "Upon request": "Sur demande", "Urban, rural, or remote": "Urbain, rural ou éloigné", @@ -2027,33 +1678,23 @@ "View page": "Voir la page", "violate any of the obligations contained in these Terms, including, but not limited to, those contained in Section 9 hereof pertaining to intellectual property rights.": "violate any of the obligations contained in these Terms, including, but not limited to, those contained in Section 9 hereof pertaining to intellectual property rights.", "violate these Terms, any code of conduct or other guidelines which may be applicable for any particular area of the Platform, including those that have been communicated to you by anyone affiliated with IRIS; or": "violate these Terms, any code of conduct or other guidelines which may be applicable for any particular area of the Platform, including those that have been communicated to you by anyone affiliated with IRIS; or", - "Virtual - web conference": "Virtuel - conférence en ligne", - "Virtual on :tool": "Virtuel sur :tool", "Virtual or in-person": "Virtuel ou en personne", "Virtual – phone call": "Virtuel - appel téléphonique", "Virtual – web conference": "Virtuel - conférence en ligne", "Virtual — phone call": "Virtuel - appel téléphonique", "Virtual — video call": "Virtuel - appel vidéo", - "Visit :language website": "Visitez le site en :language", "Visit engagement": "Visiter la consultation", "Visit engagement: :url.": "Visiter la page de la consultation : :url.", - "Visit our Resource page": "Visitez notre page de ressources", "Visual disabilities": "Déficiences visuelles", "Voice recording": "Enregistrement vocal", "Volunteer": "Bénévole", "VRS": "SRV", - "Walkthrough": "Visite guidée", - "Warning": "Avertissement", - "Watched": "Vu", - "Watch introduction video again": "Regarder à nouveau la vidéo de présentation", "Ways to attend": "Façons de participer", - "Ways to do this": "Moyens d'y parvenir", "Ways to participate": "Façons de participer", "We ask Accessibility Consultants for the following information:": "Nous demandons aux personnes consultantes en matière d'accessibilité de fournir les informations suivantes :", "We ask Community Connectors for the following information:": "Nous demandons aux personnes facilitatrices communautaires de fournir les informations suivantes :", "We ask Consultation Participants for the following information:": "Nous demandons aux personnes participant aux consultations de fournir les informations suivantes :", "WebEx": "WebEx", - "Webinars": "Webinaires", "Website": "Site Internet", "Website accessibility preferences": "Préférences d'accessibilité du site Internet", "Website language": "Langue du site internet", @@ -2073,15 +1714,11 @@ "We will ask you for your preferred method of payment.": "Nous vous demanderons votre mode de paiement préféré.", "We will ask you to indicate:": "Nous vous demanderons d'indiquer :", "We will notify you about being invited to engagements by directly contacting you or your support person.": "Nous vous informerons des invitations à des consultations en vous contactant directement ou en contactant votre personne de soutien.", - "What access supports will be needed?": "Quels sont vos besoins en matière d'accessibilité ?", "What age group are you interested in engaging?": "Quel est le groupe d'âge que vous souhaitez impliquer ?", "what age groups you can connect to": "les groupes d'âges auprès desquels vous pouvez servir d'intermédiaire", "What areas of accessibility planning and design are you most interested in consulting on?": "What areas of accessibility planning and design are you most interested in consulting on?", - "What are the different roles that are played in The Accessibility Exchange": "Quels sont les différents rôles au sein du Connecteur pour l'accessibilité", - "What are the different roles that are played in The Accessibility Exchange?": "Quels sont les différents rôles au sein du Connecteur pour l'accessibilité ?", "What are your lived experiences of disability or other intersectional identities?": "Quelles sont vos expériences vécues en matière de handicap ou d'autres identités intersectionnelles ?", "What are your skills and strengths relevant to The Accessibility Exchange?": "Quelles sont vos compétences et vos forces ?", - "What cultural practices and protocols do we need to be sensitive to?": "À quelles pratiques et protocoles culturels devrions-nous être sensibles ?", "what disability or Deaf communities you can connect to": "les communautés de personnes en situation de handicap et de personnes sourdes auprès desquels vous pouvez servir d'intermédiaire", "What do we mean when we say “Community organizations”?": "Qu'entendons-nous par « organisations communautaires » ?", "What do we mean when we say “disability”?": "Qu'entendons-nous par « handicap » ?", @@ -2100,11 +1737,8 @@ "What language(s) does your organization work in?": "Dans quelle(s) langue(s) votre organisation travaille-t-elle ?", "what language groups you can connect to": "communautés linguistiques auprès desquels vous pouvez servir d'intermédiaire", "What languages are used by the people you can connect to?": "Quelles langues sont utilisées par les personnes auprès desquelles vous pouvez servir d'intermédiaire ?", - "What needs your permission to share": "Ce qui nécessite votre permission pour pouvoir être partagé", "what other intersectional communities you can connect to": "autres communautés intersectionnelles auprès desquelles vous pouvez servir d'intermédiaire", "What provinces or territories does your organization serve?": "Quelles provinces ou quels territoires votre organisation dessert-elle ?", - "What safety protocol should be used if a participant becomes upset?": "Quel protocole de sécurité convient-il d'utiliser si un personne participante devient bouleversée ?", - "What services does The Accessibility Exchange offer?": "Quels sont les services proposés par le Connecteur pour l'accessibilité ?", "What specific disability and Deaf group or groups are you interested in engaging?": "Quel(s) groupe(s) spécifique(s) de personnes en situation de handicap et de personnes sourdes souhaitez-vous impliquer ?", "What specific languages do the people your organization :represents_or_serves_and_supports use?": "Quelles langues spécifiques les personnes que votre organisation représente utilisent ?", "What type of regulated organization are you?": "Quel type d'organisation réglementée êtes-vous ?", @@ -2112,12 +1746,9 @@ "What types of payment are you able to accept?": "Quels moyens de paiement êtes-vous en mesure d'accepter ?", "What types of Regulated Organization are you interested consulting with on accessibility planning and design?": "What types of Regulated Organization are you interested consulting with on accessibility planning and design?", "What you can do on this website": "Ce que vous pouvez faire sur ce site Internet", - "What’s been shared anonymously": "Ce qui a été partagé anonymement", "When Federally Regulated Organizations use the matching service to find a group of Consultation Participants, The Accessibility Exchange will create a diverse group of participants in terms of being disabled, Deaf, and other identities. This diversity can maximize the number of perspectives which can be represented.": "Lorsque les organisations sous réglementation fédérale utilisent le service de jumelage pour trouver un groupe de personnes voulant participer à des consultations, le Connecteur pour l'accessibilité crée automatiquement un groupe diversifié de personnes participantes en ce qui a trait aux personnes en situation de handicap, aux personnes sourdes et à d'autres identités. Cette diversité permet de maximiser le nombre de perspectives qui peuvent être représentées.", "When you block someone, you will not be able to:": "Lorsque vous bloquez une personne, vous n'êtes plus en mesure de :", - "When you select this option, your profile page will be hidden from everyone except yourself until you publish it again.": "Si vous sélectionnez cette option, votre page de profil sera cachée de tous, sauf de vous-même, jusqu'à ce que vous la publiiez à nouveau.", "When you sign up to participate in consultations, the access needs you check off below will be shared with the organization you are working with so they can meet them.": "When you sign up to participate in consultations, the access needs you check off below will be shared with the organization you are working with so they can meet them.", - "When you unblock someone, they will be able to:": "Lorsque vous débloquez une personne, elle peut :", "Where are your organization’s service areas?": "Où se trouvent les zones de service de votre organisation ?", "Where do the people that you :represent_or_serve_and_support come from?": "D'où viennent les personnes que vous représentez ?", "Where do the people that you can connect to come from?": "D'où viennent les personnes avec lesquelles vous pouvez servir d'intermédiaire ?", @@ -2132,63 +1763,47 @@ "Whether they identify with one or more of the 2SLGBTQIA+ identities": "S'ils s'identifient à une ou plusieurs des identités 2SLGBTQIA+", "Which age groups can you connect to?": "Auprès de quels groupes d'âge pouvez-vous servir d'intermédiaire ?", "Which age groups does your organization specifically :represent_or_serve_and_support?": "Which age groups does your organization specifically :represent_or_serve_and_support?", - "Which age groups does your organization specifically represent?": "Quels groupes d'âge votre organisation représente-t-elle spécifiquement ?", "Which days of the week are available for interviews to be scheduled?": "Quels sont les jours de la semaine où les entrevues peuvent être planifiées ?", "Which ethno-racial identity or identities are the people you can connect to?": "Quels sont les différents groupes racisés ou éthniques auprès desquels vous pouvez servir d'intermédiaire?", - "Which ethno-racial identity or identities are the people your organization specifically represents?": "Quelle(s) identité(s) ethno-raciale(s) votre organisation représente spécifiquement ?", "Which ethnoracial identity or identities are the people your organization specifically :represents_or_serves_and_supports": "Quels identité ou groupes d'identités votre organisation représente-t-elle?", - "Which groups can you connect to?": "Quels sont les groupes auprès desquels vous pouvez servir d'intermédiaire?", "Which groups marginalized based on gender or sexual identity can you connect to?": "Auprès de quels groupes marginalisés en raison de leur orientation sexuelle ou de leur genre pouvez-vous servir d'intermédiaire?", "Which groups marginalized based on gender or sexual identity does your organization specifically :represent_or_serve_and_support?": "Which groups marginalized based on gender or sexual identity does your organization specifically :represent_or_serve_and_support?", - "Which groups marginalized based on gender or sexual identity does your organization specifically represent?": "Quels groupes marginalisés en raison de leur genre ou de leur identité sexuelle votre organisation représente-t-elle spécifiquement ?", "Which Indigenous groups can you connect to?": "Quels sont les groupes autochtones auprès desquels vous pouvez servir d'intermédiaire?", "Which Indigenous groups does your organization specifically :represent_or_serve_and_support?": "Quels groupes de personnes autochtones votre organisation représente-t-elle spécifiquement ?", - "Which Indigenous groups does your organization specifically represent?": "Quels groupes de personnes autochtones votre organisation représente-t-elle spécifiquement ?", "Which of these areas can you help a regulated organization with?": "Dans lesquels de ces domaines pouvez-vous aider une organisation réglementée ?", "White": "Blanc", "White on black": "Blanc sur noir", "Who can be a :role?": "Qui peut être une :role?", - "Who can play these roles?": "Qui peut jouer ces rôles?", "Who do you want to engage?": "Qui voulez-vous consulter ?", "who is going through the results": "qui passe en revue les résultats", "Who they’re seeking": "Profil recherché", "Who we’re looking for": "Qui nous cherchons", "Who will be going through the results and producing an outcome?": "", - "Who will be the best person to facilitate your consultation?": "Qui pourrait être la meilleure personne pour mener à bien votre consultation ?", "Who you’re joining as": "Quel type de compte voulez-vous créer?", "Who’s responsible for going through results and producing an outcome": "", "Why do we ask for this information?": "Pourquoi demandons-nous ces informations ?", - "With disability and Deaf communities and hold meaningful consultations": "Avec les communautés de personnes en situation de handicap et de personnes sourdes et tenir des consultations efficaces", "Women": "Femmes", "Word document": "Document Word", "Working age adults (15–64)": "Adultes en âge de travailler (15-64)", "Working languages": "Langues de travail", "Workshop": "Atelier", - "Workshops": "Ateliers", "Would you like to be notified directly when a project you have worked on uploads a new report?": "Souhaitez-vous être averti dès qu'un projet sur lequel vous avez travaillé met en ligne un nouveau rapport ?", "Would you like to be notified directly when you are added as an Accessibility Consultant to a project?": "Souhaitez-vous être averti lorsque vous êtes ajouté en tant que personne consultante en matière d'accessibilité à un projet ?", "Would you like to be notified directly when you are added to an engagement as a Community Connector?": "Aimeriez vous recevoir une notification lorsque vous êtes ajouté à une consultation en tant que personne facilitatrice communautaire ?", - "Would you like to be notified directly when you are assigned a new role by your organization admin?": "Souhaitez-vous être averti lorsque l'administrateur de votre organisation vous attribue un nouveau rôle ?", - "Would you like to unpublish your consultant page? (You can republish it later.)": "Souhaitez-vous dépublier votre page de personne participant à des consultations ? (Vous pourrez la republier plus tard)", "Writing": "Réponse écrite", "Writing accessibility reports": "Rédaction de rapports relatifs à l’accessibilité", - "Writing your consultation report": "Rédaction de votre rapport de consultation", "Written language translation": "Traduction en langue écrite", - "Written language translation - :language": "Written language translation - :language", "Written or recorded responses": "Réponses écrites ou enregistrées", "Wrong answer": "Mauvaise réponse", "Wrong answer.": "Mauvaise réponse.", - "Year": "Année", "Year of birth": "Année de naissance", "Yellow on black": "Jaune sur noir", "Yes": "Oui", "Yes, all": "Oui, pour toutes les réponses sélectionnées", - "Yes, I’m interested in a specific disability or Deaf group": "Oui, je cherche un groupe spécifique de personnes en situation de handicap ou de personnes sourdes", "Yes, I’m interested in a specific disability or Deaf group or groups": "Oui, je cherche un ou des groupes spécifiques de personnes en situation de handicap ou de personnes sourdes", "Yes, I’m looking for a group with a specific experience and\/or identity (for example: Indigenous, immigrant, 2SLGBTQIA+)": "Oui, je cherche un groupe ayant une expérience et\/ou une identité spécifique (par exemple : autochtone, personne immigrante, 2SLGBTQIA+)", "Yes, leave engagement": "Oui, quitter la consultation", "Yes, project reports will be publicly available.": "Les rapports du projet seront accessibles au public.", - "Yes, remove": "Oui, supprimer", "Yes, share my access needs": "Oui, vous pouvez partager mes besoins en matière d'accessibilité", "Yes, some": "Oui, pour certaines des réponses sélectionnées", "you": "vous", @@ -2202,7 +1817,6 @@ "You already belong to an organization, so you cannot create a new one.": "Vous faites déjà partie d'une organisation, vous ne pouvez donc pas en créer une nouvelle.", "You are now able to publish your page.": "Vous êtes maintenant en mesure de publier votre page.", "You are now able to publish your page and create projects and engagements.": "You are now able to publish your page and create projects and engagements.", - "You are now able to publish your page and new projects": "Vous êtes maintenant en mesure de publier votre page ainsi que vos nouveaux projets", "You are now able to publish your page and sign up for projects.": "You are now able to publish your page and sign up for projects.", "You are now able to publish your page and take part in consultations.": "Vous êtes maintenant en mesure de publier votre page et de participer à des consultations.", "You are now able to sign up for projects.": "You are now able to sign up for projects.", @@ -2213,12 +1827,10 @@ "You are previewing your public page.": "Vous prévisualisez actuellement votre page publique.", "You are previewing your regulated organization’s page.": "Vous prévisualisez actuellement la page de votre organisation réglémentée.", "You are solely responsible for all Content that you Upload or make available to IRIS (“**User Content**”).": "You are solely responsible for all Content that you Upload or make available to IRIS (“**User Content**”).", - "You can address these questions with your accessibility or equity, diversity and inclusion team, or work with an accessibility consultant or the Accessibility Exchange support service.": "Vous pouvez aborder ces questions avec votre équipe chargée de l'accessibilité ou de l'équité, de la diversité et de l'inclusion, ou travailler avec une personne consultante en matière d'accessibilité ou le service d'assistance du Connecteur pour l'accessibilité.", "You can always change this by selecting the language menu.": "Vous pouvez toujours changer de langue en utilisant le menu de langue.", "You can always change this later.": "Vous pourrez toujours changer cela plus tard.", "You can choose how you would like to take part:": "Vous pouvez choisir comment vous souhaitez participer :", "You can communicate directly with the business or government to figure out how to work on their accessibility project. You will be paid for your work.": "You can communicate directly with the business or government to figure out how to work on their accessibility project. You will be paid for your work.", - "You can define who you are looking for here. What you choose here will be applied to all your engagements under this project, unless you want to get more specific in your engagements.": "Vous pouvez définir ici qui vous recherchez. Ce que vous choisissez ici sera appliqué à toutes vos consultations dans le cadre de ce projet, sauf si vous décidez d'être plus spécifique pour chacune de vos consultations.", "You can join a consultation engagement in a few ways:": "You can join a consultation engagement in a few ways:", "You cannot block individuals or organizations.": "Vous ne pouvez pas bloquer des individus ou des organisations.", "You cannot block yourself.": "Vous ne pouvez pas vous bloquer vous-même.", @@ -2239,18 +1851,14 @@ "You cannot unpublish this individual page.": "Vous ne pouvez pas dépublier cette page individuelle.", "You cannot unpublish this organization.": "Vous ne pouvez pas dépublier cette organisation.", "You cannot unpublish this regulated organization.": "Vous ne pouvez pas dépublier cette organisation sous réglementation fédérale.", - "You can now sign up for projects.": "Vous pouvez désormais vous inscrire à des projets.", - "You can now view :organization’s projects and engagements.": "Vous pouvez maintenant voir les projets et les consultations de :organisation.", "You can only choose one of these options for each account. So, if you are a Deaf person who would like to participate in consultations, and you are also the contact for an organization that serves Deaf people, you should create two separate accounts, one as an individual, and as a Community Organization. That way, we can be sure to show you the right information based on who you’ve joined as.": "Vous ne pouvez choisir qu'une seule de ces options pour chaque compte. Ainsi, si vous êtes une personne sourde qui souhaite participer à des consultations et que vous êtes également la personne ressource d'une organisation qui dessert les personnes sourdes, vous devez créer deux comptes distincts, l'un en tant qu'individu, l'autre en tant qu'organisation communautaire. De cette façon, nous pouvons être sûrs de vous montrer les bonnes informations en fonction du type de compte que vous avez créé.", "You can play the page in spoken language. You can also highlight parts of this page, and they will be read out.": "Vous pouvez lire la page en version parlée. Vous pouvez également surligner des parties de cette page, et elles seront lues à haute voix.", "You can provide either an exact number or a range.": "Vous pouvez fournir un nombre exact ou une plage.", "You can share your lived experience if you feel it is relevant to your work.": "Vous pouvez partager votre expérience vécue si vous estimez qu'elle est pertinente pour votre travail.", - "You can upload videos, images, audio, or other files.": "Vous pouvez téléverser des vidéos, des images, des fichiers audio ou autres.", "You can work on any projects related to accessibility on this website. This can be your organization’s Accessibility Plan or Report (as required under the Accessible Canada Act), or getting feedback on your customer service or accessibility in your workplace.": "Vous pouvez travailler sur tout projet lié à l'accessibilité sur ce site Internet. Il peut s'agir du plan ou du rapport d'accessibilité de votre organisation (comme l'exige la Loi canadienne sur l'accessibilité), ou encore d'obtenir des commentaires sur votre service à la clientèle ou sur l'accessibilité de votre lieu de travail.", "You currently do not have a Community Organization for this engagement.": "Vous n'avez actuellement pas d'organisation communautaire pour cette consultation.", "You don’t need to be a member of these communities yourself.": "Vous n'avez pas besoin d'être vous-même membre de ces communautés.", "YOU EXPRESSLY UNDERSTAND AND AGREE THAT IRIS WILL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY DAMAGES, OR DAMAGES FOR LOSS OF PROFITS INCLUDING BUT NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, USE, DATA OR OTHER INTANGIBLE LOSSES (EVEN IF IRIS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES), WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, INCLUDING BUT NOT LIMITED TO THOSE DAMAGES RESULTING FROM: (I) THE USE OR THE INABILITY TO USE THE PLATFORM; (II) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS AND SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED OR TRANSACTIONS ENTERED INTO THROUGH OR FROM THE PLATFORM; (III) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (IV) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE PLATFORM; (V) ANY ACTION YOU TAKE BASED ON THE INFORMATION YOU RECEIVE IN THROUGH OR FROM PLATFORM; (VI) YOUR FAILURE TO KEEP YOUR PASSWORD OR ACCOUNT DETAILS SECURE AND CONFIDENTIAL; (VII) THE IMPROPER AUTHORIZATION FOR THE PLATFORM BY SOMEONE CLAIMING SUCH AUTHORITY; OR (VII) ANY OTHER MATTER RELATING TO THE PLATFORM.": "YOU EXPRESSLY UNDERSTAND AND AGREE THAT IRIS WILL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY DAMAGES, OR DAMAGES FOR LOSS OF PROFITS INCLUDING BUT NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, USE, DATA OR OTHER INTANGIBLE LOSSES (EVEN IF IRIS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES), WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, INCLUDING BUT NOT LIMITED TO THOSE DAMAGES RESULTING FROM: (I) THE USE OR THE INABILITY TO USE THE PLATFORM; (II) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS AND SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED OR TRANSACTIONS ENTERED INTO THROUGH OR FROM THE PLATFORM; (III) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (IV) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE PLATFORM; (V) ANY ACTION YOU TAKE BASED ON THE INFORMATION YOU RECEIVE IN THROUGH OR FROM PLATFORM; (VI) YOUR FAILURE TO KEEP YOUR PASSWORD OR ACCOUNT DETAILS SECURE AND CONFIDENTIAL; (VII) THE IMPROPER AUTHORIZATION FOR THE PLATFORM BY SOMEONE CLAIMING SUCH AUTHORITY; OR (VII) ANY OTHER MATTER RELATING TO THE PLATFORM.", - "You have been added to :project": "Vous avez été ajouté à :project", "You have been invited as a :role": "Vous avez été invité en tant que :role", "You have been invited as a :role to :projectable’s :invitationable_type, :invitationable.": "Vous avez été invité en tant que :role à :projectable :invitationable_type, :invitationable.", "You have been invited as a Consultation Participant": "Vous avez été invité en tant que personne participante à la consultation", @@ -2258,36 +1866,20 @@ "You have been invited to join the :invitationable team!": "Vous avez été invité à rejoindre l'équipe :invitationable !", "You have been invited to join the :invitationable_type “:invitationable” as a :role.": "Vous avez été invité à rejoindre le :invitationable_type « :invitationable» en tant que :role.", "You have been invited to join the :invitationable_type “:invitationable” as a participant.": "Vous avez été invité à rejoindre le :invitationable_type « :invitationable» en tant que personne participante.", - "You have been invited to participate in :organization project, :project. They would like you to join for the :engagement engagement.": "Vous avez été invité à participer au projet de :organization, :project. Cette organisation souhaite que vous vous joigniez à elle pour la consultation :engagement.", - "You have been invited to participate in :projectable’s project, :project. They would like to interview you for their engagement, :engagement": "Vous avez été invité à participer au projet de :projectable, :project. Ceux-ci aimeraient vous rencontrer pour leur consultation, :engagement", - "You have been invited to participate in :projectable’s project, :project. They would like you to consult with them for their engagement, :engagement": "Vous avez été invité à participer au projet de :projectable, :project. Ceux-ci aimeraient que vous participiez à leur consultation, :engagement", - "You have been invited to participate in :projectable’s project, :project. They would like you to do their survey for their engagement, :engagement": "Vous avez été invité à participer au projet de :projectable, :project. Ceux-ci aimeraient que vous répondiez à leur sondage dans le contexte de leur consultation, :engagement", - "You have been invited to participate in :projectable’s project, :project. They would like you to join them for their :engagement_type, :engagement": "Vous avez été invité à participer au projet de :projectable, :project. Ceux-ci aimeraient que vous vous joigniez à eux pour leur :engagement_type, :engagement", - "You have been invited to participate in this engagement. Please respond by :date.": "Vous avez été invité à participer à cette consultation. Veuillez répondre avant le :date.", "You have been invited to the :invitationable_type \":invitationable\" as a :role on The Accessibility Exchange. Sign in to your account at https:\/\/accessibilityexchange.ca to continue.": "Vous avez été invité au :invitationable_type « :invitationable » en tant que :role sur le Connecteur pour l'accessibilité. Connectez-vous à votre compte à l'adresse https:\/\/accessibilityexchange.ca pour continuer.", "You have been invited to the engagement \":invitationable\" as a participant on The Accessibility Exchange. Sign in to your account at https:\/\/accessibilityexchange.ca to continue.": "Vous avez été invité à la consultation \":invitationable\" en tant que participant au Connecteur pour l'accessibilité. Connectez-vous à votre compte sur https:\/\/accessibilityexchange.ca pour continuer.", - "You have been listed as the Accessibility Consultant in :projectable’s project, :project.": "Vous avez été listé comme la personne consultante en matière d'accessibilité pour le projet :project de :projectable.", "You have completed your engagement details, **but you won’t be able to publish them until you [get an estimate](:get_estimate) for this project and approve it**.": "Vous avez rempli les détails de votre consultation, **mais vous ne pourrez pas les publier avant d'avoir [obtenu un devis](:get_estimate) pour ce projet et de l'avoir approuvé**.", - "You have completed your orientation session.": "Vous avez terminé votre session d'orientation.", "You have declined an invitation on behalf of your organization, :organization, to work as a :role on :invitationable.": "Vous avez refusé une invitation au nom de votre organisation, :organization, à travailler en tant que :role au sein de :invitationable.", "You have declined your invitation to work as a :role on :invitationable.": "Vous avez décliné l'invitation à travailler en tant que :role au sein de :invitationable.", "You have joined :invitationable as a :role": "Vous avez rejoint :invitationable en tant que :role", "You have not added any engagements yet.": "Vous n'avez pas encore ajouté de consultations.", - "You have not determined the selection criteria for the people you seek for this project.": "Vous n'avez pas déterminé les critères de sélection des personnes que vous recherchez pour ce projet.", "You have not passed the quiz.": "Vous n'avez pas réussi le jeu-questionnaire.", - "You have not requested an estimate before.": "Vous n'avez pas demandé de devis auparavant.", "You have now completed this course. Your certificate of completion has been sent to your email.": "You have now completed this course. Your certificate of completion has been sent to your email.", - "You have successfully accepted your invitation.": "Vous avez accepté avec succès l'invitation.", - "You have successfully accepted your invitation. You are now a Consultation Participant for this engagement.": "Iinvitation acceptée avec succès. Vous êtes maintenant une personne participante pour cette consultation.", "You have successfully added :notificationable to your list.": "Vous avez ajouté avec succès :notificationable à votre liste.", "You have successfully added :organization as the Community Organization you are consulting with for this engagement.": "Vous avez ajouté avec succès :organisation comme l'organisation communautaire avec laquelle vous travaillez pour cette consultation.", - "You have successfully added :organization to your list.": "Vous avez ajouté avec succès :organization à votre liste.", - "You have successfully added a new engagement.": "Vous avez ajouté une nouvelle consultation avec succès.", "You have successfully approved your estimate.": "Vous avez approuvé le devis avec succès.", "You have successfully blocked :blockable.": "Vous avez bloqué : blockable.", - "You have successfully blocked :organization.": "Vous avez bloqué :organisation.", "You have successfully completed course :course and passed the quiz.": "Vous avez terminé avec succès le cours :course et réussi le jeu-questionnaire.", - "You have successfully invited :name to participate in this engagement.": "Vous avez invité avec succès :name à participer à cette consultation.", "You have successfully left this engagement.": "Vous avez quitté cette consultation avec succès.", "You have successfully removed :notificationable from your notification list.": "Vous avez supprimé :notifiable de votre liste de notification.", "You have successfully removed :organization as the Community Organization for this engagement.": "Vous avez retiré :organization comme organisation communautaire pour cette consultation.", @@ -2299,14 +1891,12 @@ "You have successfully signed up for this engagement.": "Vous vous êtes inscrit avec succès à cette consultation.", "You have successfully submitted an estimate request.": "Votre demande de devis a été soumise avec succès.", "You have successfully unblocked :blockable.": "Vous avez débloqué :blockable.", - "You have successfully unpublished your Regulated Organization profile.": "Votre profil d'organisme réglementé a été dépublié avec succès.", "You may accept this invitation by clicking the button below:": "Vous pouvez accepter cette invitation en cliquant sur le bouton ci-dessous :", "You must agree to the privacy policy.": "Vous devez accepter la politique de confidentialité.", "You must agree to the terms of service.": "Vous devez accepter les conditions de service.", "You must answer this question": "You must answer this question", "You must attend an [orientation session](:url) and fill in all the required information before you can publish your page.": "Veuillez noter que vous devrez assister à une [séance d'orientation](:url) et remplir toutes les informations requises avant de pouvoir publier votre page.", "You must attend an [orientation session](:url) and fill in all the required information before you can publish your project.": "Veuillez noter que vous devrez assister à une [séance d'orientation](:url) et remplir toutes les informations requises avant de pouvoir publier votre projet.", - "You must attend an [orientation session](:url) before you can publish your page.": "Vous devez assister à une [session d'orientation](:url) avant de pouvoir publier votre page.", "You must belong to an :organization in order to manage its roles and permissions.": "Vous devez appartenir à une :organization afin de pouvoir gérer ses rôles et autorisations.", "You must choose at least one area of impact.": "Vous devez choisir au moins un domaine d'impact.", "You must choose at least one payment type.": "Vous devez choisir au moins un type de paiement.", @@ -2376,10 +1966,8 @@ "You must select which specific disability and\/or Deaf groups your organization :represents_or_serves_and_supports.": "You must select which specific disability and\/or Deaf groups your organization :represents_or_serves_and_supports.", "You must tell us who you're joining as.": "Vous devez nous dire sous quelle identité vous vous inscrivez.", "You must [approve your estimate and return your signed agreement](:estimates_and_agreements) before you can publish your engagement.": "Vous devez [approuver votre devis et renvoyer votre entente signée](:estimates_and_agreements) avant de pouvoir publier votre consultation.", - "You now have administrative privileges for :organization. You can now create and manage projects.": "Vous disposez désormais de privilèges d'administration pour :organisation. Vous pouvez maintenant créer et gérer des projets.", "You now have completed this course.": "You now have completed this course.", "Your :model page has been unpublished.": "Votre page :model a été dépubliée.", - "Your access needs": "Vos besoins en matière d'accessibilité", "Your access needs have been updated.": "Vos besoins en matière d'accessibilité ont été mis à jour.", "Your account has been approved": "Votre compte a été approuvé", "Your account has been approved.": "Votre compte a été approuvé.", @@ -2400,7 +1988,6 @@ "Your bio must be provided in at least English or French.": "", "Your communication and consultation preferences have been updated.": "Vos préférences en matière de communication et de consultation ont été mises à jour.", "Your Community Connector has been removed.": "Votre personne facilitatrice communautaire a été supprimée.", - "Your consultation preferences": "Vos préférences en matière de consultation", "Your details": "Vos informations", "Your engagement has been created.": "Votre consultation a été créée.", "Your engagement has been published.": "Votre consultation a été publiée.", @@ -2417,7 +2004,6 @@ "Your first language and other languages will be combined into a “working languages” list - this will let governments and businesses understand what languages you can use to work with them in, and communicate to others in.": "Votre première langue et vos autres langues seront regroupées dans une liste de « langues de travail » - cela permettra aux gouvernements et aux entreprises de savoir dans quelles langues vous pouvez travailler avec eux et communiquer avec les autres.", "Your first language will help us match you to a project that may be looking for someone who uses that first language.": "Votre première langue nous aidera à vous associer à un projet qui pourrait rechercher une personne utilisant cette première langue.", "Your headquarters location": "Emplacement de votre siège social", - "Your inclusive and accessible consultation": "Votre consultation accessible et inclusive", "Your individual page has been deleted.": "Votre page individuelle a été supprimée.", "Your individual page will be deleted and cannot be recovered. If you still want to delete your individual page, please enter your current password to proceed.": "Votre page individuelle sera supprimée et ne pourra pas être récupérée. Si vous souhaitez toujours supprimer votre page individuelle, veuillez saisir votre mot de passe actuel pour continuer.", "Your information has been updated.": "Vos informations ont été mises à jour.", @@ -2427,7 +2013,6 @@ "Your meeting has been deleted.": "Votre réunion a été supprimée.", "Your meeting has been updated.": "Votre réunion a été mise à jour.", "Your members": "Vos membres", - "Your name and your contact information have been shared with :name.": "Votre nom et vos coordonnées ont été partagés avec :name.", "Your notification preferences have been updated.": "Vos préférences de notification ont été mises à jour.", "Your organization has been added to an engagement": "Votre organisation a été ajoutée à une consultation", "Your organization has been added to the engagement “:engagement”.": "Votre organisation a été ajoutée à la consultation « :engagement ».", @@ -2440,10 +2025,7 @@ "Your organization’s name": "Nom de votre organisation", "Your organization’s name in either English or French is required.": "Le nom de votre organisation est requis en anglais ou en français.", "Your organization’s role": "Rôle de votre organisation", - "Your participants are from the following age groups.": "Vos personnes participantes appartiennent aux groupes d'âge suivants.", - "Your participants are from the following locations in Canada.": "Vos personnes participantes viennent des régions suivantes au Canada.", "Your participant selection criteria have been updated.": "Vos critères de sélection des personnes participantes ont été mis à jour.", - "Your participants use the following languages.": "Vos personnes participants utilisent les langues suivantes.", "Your payment information has been updated.": "Vos informations de paiement ont été mises à jour.", "Your preference for sharing your access needs has been saved.": "Votre préférence relative au partage de vos besoins en matière d'accessibilité a été enregistrée.", "Your preferences for in-person or virtual engagements will determine what projects and engagements you are matched to.": "Vos préférences pour les consultations en personne ou virtuelles détermineront les projets et les consultations qui vous seront attribués.", @@ -2454,10 +2036,7 @@ "Your projects and engagements": "Vos projets et consultations", "Your pronouns must be provided in at least English or French.": "", "your public profile will be removed from the platform": "votre profil public sera supprimé de la plateforme", - "your public profile will be removed from the website": "votre profil public sera supprimé du site Internet", "Your regulated organization, :name, will be deleted and cannot be recovered. If you still want to delete your regulated organization, please enter your current password to proceed.": "Votre organisme réglementé, :name, sera supprimé et ne pourra pas être récupéré. Si vous souhaitez toujours supprimer votre organisme réglementé, veuillez saisir votre mot de passe actuel pour continuer.", - "Your role: :role": "Votre rôle : :role", - "Your role has been updated to :role": "Votre rôle a été mis à jour vers :role", "Your roles have been saved.": "Vos rôles ont été enregistrés.", "your support person, :name": "la personne vous apportant du soutien, :name", "Your support person’s name is required if they are your preferred contact person.": "Le nom de la personne vous apportant du soutien est requis s'il s'agit de votre personne de contact.", @@ -2481,18 +2060,14 @@ "You will not be able to edit any information in your account.": "You will not be able to edit any information in your account.", "You will not be able to edit any information in your account. Your page will no longer be shown to other users of this website.": "You will not be able to edit any information in your account. Your page will no longer be shown to other users of this website.", "You won’t be able to publish your engagement until you’ve added meetings.": "Vous ne pouvez pas publier votre consultation tant que vous n'avez pas ajouté de réunions.", - "You’ve been invited to participate in :organization project, :project. They would like you to join for the :engagement engagement.": "Vous avez été invité à participer au projet :project de :organisation. Cette organisation aimerait que vous vous joigniez à elle pour la consultation :engagement .", "You’ve been invited to participate in [:projectable](:projectable_url)’s project, [:project](:project_url). They would like you to join them for their engagement, [:engagement](:engagement_url).": "Vous avez été invité à participer au projet [:project](:project_url) de [:projectable](:projectable_url). Cette organisation aimerait que vous vous joigniez à elle pour la consultation [:engagement](:engagement_url).", "You’ve blocked :individual. If you want to visit this page, you can :unblock and return to this page.": "Vous avez bloqué :individual. Si vous souhaitez visiter leur page dans le futur, vous devrez les :unblock puis rafraichir la page.", - "You’ve blocked :name": "Vous avez bloqué :name", "You’ve blocked :organization. If you want to visit this page, you can :unblock and return to this page.": "Vous avez bloqué :organization. Si vous souhaitez visiter leur page dans le futur, vous devrez les :unblock puis rafraichir la page.", "You’ve blocked :regulatedOrganization. If you want to visit this page, you can :unblock and return to this page.": "Vous avez bloqué :regulatedOrganization. Si vous souhaitez visiter leur page dans le futur, vous devrez les :unblock puis rafraichir la page.", "You’ve provided the following contact information:": "Vous avez fourni les informations de contact suivantes :", "You’ve provided the following contact information for them:": "Vous avez fourni les informations de contact suivantes pour cette personne :", "Yukon Territory": "Territoire du Yukon", "Zoom": "Zoom", - "Zoom ID:": "ID Zoom :", - "Zoom password:": "Mot de passe Zoom :", "[:projectable](:projectable_url) has approved an estimate for their project [:project](:project_url).": "[:projectable](:projectable_url) a approuvé un devis pour leur projet [:project](:project_url).", "[:projectable](:projectable_url) has requested an estimate for their project [:project](:project_url).": "[:projectable](:projectable_url) a demandé un devis pour leur projet [:project](:project_url).", "{1} :count project matches your applied filters.": "{1} :count projet(s) correspondent à vos critères de recherche.", diff --git a/resources/lang/lsq.json b/resources/lang/lsq.json index 442138e02..9f90ac3fc 100644 --- a/resources/lang/lsq.json +++ b/resources/lang/lsq.json @@ -3,13 +3,8 @@ "\"About your organization\" (French)": "À propos de votre organisation", "\"stalk\" or otherwise harass another person;": "\"stalk\" or otherwise harass another person;", "(a)\tYou agree to release, indemnify and hold IRIS and its affiliates and their officers, employees, directors and agents (collectively, “**Indemnitees**”) harmless from any and all losses, damages, expenses, liability, or costs, including reasonable attorneys’ fees, rights, claims, actions of any kind and injury (including death) arising out of or relating to (i) your access, use and\/or misuse of the Platform; (ii) any of your User Content, including any claim by a third party that the display or other use of User Content infringes the intellectual property or other rights of a third party; (iii) your violation of these Terms or your violation of any rights of another; (iv) access and use of your Registration Information by any third parties; (v) any use of your Registration Information by an Underaged Person; or (vi) claims asserted against the Indemnitees by another User or third party arising as a consequence of User’s act, omission or conduct in relation to the use of the Platform and Services, or a Third Party Service, or any activities ancillary thereto.": "(a)\tYou agree to release, indemnify and hold IRIS and its affiliates and their officers, employees, directors and agents (collectively, “**Indemnitees**”) harmless from any and all losses, damages, expenses, liability, or costs, including reasonable attorneys’ fees, rights, claims, actions of any kind and injury (including death) arising out of or relating to (i) your access, use and\/or misuse of the Platform; (ii) any of your User Content, including any claim by a third party that the display or other use of User Content infringes the intellectual property or other rights of a third party; (iii) your violation of these Terms or your violation of any rights of another; (iv) access and use of your Registration Information by any third parties; (v) any use of your Registration Information by an Underaged Person; or (vi) claims asserted against the Indemnitees by another User or third party arising as a consequence of User’s act, omission or conduct in relation to the use of the Platform and Services, or a Third Party Service, or any activities ancillary thereto.", - "(current format)": "(format actuel)", - "(current page)": "(page actuelle)", "(optional)": "(optionnel)", "(required)": "(requis)", - "(required)*": "(requis)*", - "(such as broken limb, gestational diabetes)": "(tel qu'un membre cassé, un problème de diabète gestationnel)", - "(Support person, :name)": "(Personne apportant du soutien, :name)", "**A community organization** who represents or supports the disability or Deaf community": "**Une organisation communautaire** qui représente ou soutient la communauté des personnes en situation de handicap ou des personnes sourdes", "**Applicable Laws.** You agree that you are responsible for, and agree to abide by, all laws, rules, and regulations applicable to your use of the Platform, your use of any tool, service or product offered on the Platform and any transaction or agreement you enter into on the Platform or in connection with your use of the Platform. You further agree that you are responsible for and agree to abide by all laws, rules and regulations applicable to the Project, including any and all laws, rules, regulations or other requirements relating to taxes, credit cards, data and privacy, accessibility, and compliance with all anti-discrimination laws, as applicable.": "**Applicable Laws.** You agree that you are responsible for, and agree to abide by, all laws, rules, and regulations applicable to your use of the Platform, your use of any tool, service or product offered on the Platform and any transaction or agreement you enter into on the Platform or in connection with your use of the Platform. You further agree that you are responsible for and agree to abide by all laws, rules and regulations applicable to the Project, including any and all laws, rules, regulations or other requirements relating to taxes, credit cards, data and privacy, accessibility, and compliance with all anti-discrimination laws, as applicable.", "**Assignment.** You may not assign these Terms without the prior written consent of IRIS, but IRIS may assign or transfer these Terms, in whole or in part, without restriction.": "**Assignment.** You may not assign these Terms without the prior written consent of IRIS, but IRIS may assign or transfer these Terms, in whole or in part, without restriction.", @@ -53,7 +48,6 @@ "**Use of the Platform.** IRIS authorizes You to access and use the Platform solely for the purpose of searching, accessing, downloading and reviewing Platform content (in print, audio, video or other provided format) for informational purposes only and solely for your own use.": "**Use of the Platform.** IRIS authorizes You to access and use the Platform solely for the purpose of searching, accessing, downloading and reviewing Platform content (in print, audio, video or other provided format) for informational purposes only and solely for your own use.", "**User Content.** IRIS does not claim ownership of any User Content you provide to IRIS (including feedback and suggestions) via the Platform. Unless otherwise specified, you retain copyright and any other rights you already hold over User Content that you create and submit, post, or display on or through the Platform. However, by submitting, posting, or displaying User Content, you give IRIS and its affiliates and their successors and assigns a perpetual, irrevocable, worldwide, royalty-free, fully paid up, sublicensable and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display, distribute, Upload, store, edit, reformat, otherwise use and create derivative works from any User Content that you submit, post, or display on or through the Platform.": "**User Content.** IRIS does not claim ownership of any User Content you provide to IRIS (including feedback and suggestions) via the Platform. Unless otherwise specified, you retain copyright and any other rights you already hold over User Content that you create and submit, post, or display on or through the Platform. However, by submitting, posting, or displaying User Content, you give IRIS and its affiliates and their successors and assigns a perpetual, irrevocable, worldwide, royalty-free, fully paid up, sublicensable and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display, distribute, Upload, store, edit, reformat, otherwise use and create derivative works from any User Content that you submit, post, or display on or through the Platform.", "**Waiver.** No failure or delay by IRIS in exercising any right hereunder will waive any further exercise of that right.": "**Waiver.** No failure or delay by IRIS in exercising any right hereunder will waive any further exercise of that right.", - "* means that a field is required.": "* signifie qu'un champ est requis.", "*Yukon and parts of British Columbia observe Mountain Standard Time all year.": "*Le Yukon et certaines parties de la Colombie-Britannique observent l\"heure normale des Rocheuses toute l'année.", "1 new person accepted their invitation for :engagement": "1 nouvelle personne a accepté l'invitation pour :engagement", "1 new person accepted your invitation for :engagement": "1 nouvelle personne a accepté votre invitation pour :engagement", @@ -76,57 +70,27 @@ "3. Work directly with governments and businesses": "3. Work directly with governments and businesses", "3. Work directly with people on your accessibility project": "3. Work directly with people on your accessibility project", "8 characters or more": "8 caractères ou plus", - ":access_support added for :engagement": ":access_support ajouté pour :engagement", ":account and its users have been suspended.": ":account et ses utilisateurs ont été suspendus.", ":account has been approved.": ":account a été approuvé.", ":account has been suspended.": ":account a été suspendu.", ":blockable could not be unblocked because it was not on your block list.": ":blockable n'a pas pu être débloqué car il ne figurait pas dans votre liste.", ":blockable is already on your block list.": ":blockable est déjà dans votre liste.", - ":correct out of :total questions were answered correctly. You have now completed all the webinars in this course.": "Vous avez répondu correctement à :correct des :total questions. Vous avez maintenant terminé tous les webinaires de ce cours.", - ":correct out of :total questions were answered correctly. You have now completed this webinar. You have :unfinished more webinars to finish in order to complete this training.": "Vous avez répondu correctement à :correct des :total questions. Vous avez maintenant terminé ce webinaire. Vous avez encore :unfinished webinaires à finir avant de compléter le cours.", - ":count access needs": ":count besoins en matière d'accessibilité", ":count access needs listed": ":count besoins en matière d'accessibilité listés", - ":count engagements": ":count interactions", - ":count members of your organization": ":count membres de votre organisation", ":count more unread": ":count autres non-lus", - ":count projects": ":count projets", ":count projects match your applied filters.": ":count projets répondent aux critères sélectionnés.", - ":count results for": ":count résultats pour", ":count results for “:searchQuery": ":count résultats trouvés pour « :searchQuery", ":count results for “:searchQuery”.": ":count résultats trouvés pour « :searchQuery ».", - ":count results for “:search” found": ":count résultats trouvés pour « :search »", - ":engagement has been changed to :date at :time. They are meeting :location.": "La date de :engagement a été changée pour le :date à :time. :engagement aura lieu à :location.", - ":engagement has been confirmed for :date at :time. They are meeting :location.": "La date pour :engagement a été confirmée pour le :date à :time. :engagement aura lieu à :location.", - ":engagement is now having an open call for participants.": ":engagement recrute maintenant des personnes participantes.", - ":engagement run by :projectable is seeking participants": ":engagement menée par :projectable est à la recherche de personnes participantes", - ":engagement time changed": "L'heure pour :engagement a changée", - ":engagement time confirmed": "L'heure pour :engagement a été confirmée", ":label (:locale)": ":label (:locale)", ":locality, :region": "", ":model is already translatable into :language.": ":model est déjà traduit en :language.", ":model was not translatable into :language.": ":model n'était pas traduisible en :language.", - ":name has accepted your invitation to join your organization.": ":name a accepté votre invitation à rejoindre votre organisation.", - ":name has joined your organization": ":name a rejoint votre organisation", ":name navigation": ":name navigation", ":name participants navigation": ":name participants navigation", ":name requires access needs facilitation": ":name requires access needs facilitation", - ":name shares **some** of this lived experience.": ":name partage **certaines** de vos expériences vécues.", ":notificationable could not be removed because it was not on your notification list.": ":notificationable n'a pas pu être supprimé car il ne figurait pas dans votre liste de notification.", ":notificationable is already on your notification list.": ":notificationable est déjà dans votre liste de notifications.", - ":numRSVPs new RSVPs to your engagement, :engagement": ":numRSVPs nouveaux RSVPs pour votre consultation, :engagement", - ":organization Accessibility Principles": "Principes d'accessibilité de :organisation", - ":percentage of your participants fall into more than one of these groups.": ":percentage des personnes participantes appartiennent à plus qu'un de ces groupes.", - ":percentage of your participants identify with more than one of the following.": ":percentage des personnes participantes s'identifient comme étant plus qu'un des aspects suivants.", - ":projectable has added :access_support for :engagement.": ":projectable a ajouté les mesures de soutien suivantes :access_support pour :engagement.", ":projectable has approved an estimate for their project **:project**.": ":projectable a approuvé un devis pour son projet **:project**.", - ":projectable has created a new engagement, :engagement. This is a part of :project.": ":projectable a créé un nouvel élément, :engagement dans le contexte de :project.", - ":projectable has created a new project, :project.": ":projectable a créé un nouveau projet, :project.", ":projectable has requested an estimate for their project **:project**.": ":projectable a demandé un devis pour son projet **:project**.", - ":project by :projectable seeking Accessibility Consultant": "Le projet :project mené par :projectable est à la recherche d'une personne consultante en matière d'accessibilité", - ":project by :projectable seeking Community connector": "Le projet :project mené par :projectable est à la recherche de personnes facilitatrices communautaires", - ":project is looking for a Community Connector to for their engagement, :engagement.": "Le projet :project est à la recherche de personnes facilitatrices communautaires pour leur consultation :engagement.", - ":project is looking for an Accessibility Consultant.": "Le projet :project est à la recherche d'une personne consultante en matière d'accessibilité.", - ":projects projects and :engagements engagements you are running": "Vous êtes en charge de :project projets et de :engagements consultations", ":role Invitation": "Invitation à devenir :role", ":service": ":service", ":signLanguage (with :locale)": ":signLanguage (avec :locale)", @@ -137,7 +101,6 @@ "About the Accessibility Exchange": "À propos du Connecteur pour l'accessibilité", "About the organization": "À propos de l'organisation", "About the project team": "À propos de l'équipe", - "About the systemic barriers (laws, policies, practices, and culture) underlying the experiences that consultation participants report": "À propos des obstacles systémiques (lois, politiques, pratiques et culture) qui sous-tendent les expériences que les personnes consultantes rapportent", "About this course": "À propos de ce cours", "About you": "À propos de vous", "About your organization": "À propos de votre organisation", @@ -147,14 +110,11 @@ "Accepted formats": "Formats acceptés", "accepted formats": "formats acceptés", "Accept Invitation": "Accepter l'invitation", - "Accept invitation": "Accepter l'invitation", "Accept your invitation by clicking the button below.": "Acceptez votre invitation en cliquant sur le bouton ci-dessous.", - "Access :language version": "Accéder à la version en :language", "ACCESS AND USE OF THE PLATFORM": "ACCESS AND USE OF THE PLATFORM", "Access governments and businesses who are looking for a Community Connector to help with a project.": "Accéder aux organisations gouvernementales et aux entreprises à la recherche d'une personne facilitatrice communautaire pouvant aider pour un projet.", "Access governments and businesses who are looking for an accessibility consultant to help with a project.": "Accéder aux organisations gouvernementales et aux entreprises à la recherche d'une personne consultante en matière d'accessibilité pouvant aider pour un projet.", "Accessibility and inclusion": "Accessibilité et inclusion", - "Accessibility and Inclusion": "Accessibilité et inclusion", "accessibility and inclusion link": "lien sur les mesures d'accessibilité et d'inclusion", "Accessibility and inclusion links": "Liens sur les mesures d'accessibilité et d'inclusion", "accessibility and inclusion link title": "titre du lien sur les mesures d'accessibilité et d'inclusion", @@ -163,14 +123,11 @@ "Accessibility Consultants": "Personnes consultantes en matière d'accessibilité", "Accessibility Consultants could help you design consultations that are inclusive and accessible.": "Les personnes consultantes en matière d'accessibilité peuvent vous aider à concevoir des consultations qui soient inclusives et accessibles.", "Accessibility Consultants — Individual": "Personne consultante en matière d'accessibilité - Individu", - "Accessibility preferences": "Préférences d'accessibilité", "Accessibility project by [:projectable](:url)": "Projet en matière d'accessibilité par [:projectable](:url)", "Accessible consultation": "Consultation accessible", - "Access more resources": "Accéder à plus de ressources", "Access need": "Besoin en matière d'accessibilité", "Access needs": "Besoins en matière d'accessibilité", "Access Needs": "Besoins en matière d'accessibilité", - "Access needs and accommodations": "Besoins en matière d'accessibilité et mesures d'accomnmodement nécessaires", "Access needs for any materials you may be sent.": "Access needs for any materials you may be sent.", "Access needs for consultations": "Besoins en matière d'accessibilité", "Access needs for when you agree to attend a meeting in real-time, either in-person or virtually.": "Besoins en matière d'accessibilité lorsque vous acceptez d'assister à une réunion en direct, en personne ou virtuellement.", @@ -189,21 +146,18 @@ "Account suspended": "Compte suspendu", "Account suspension lifted": "Suspension du compte levée", "Account type": "Type de compte", - "Across the country": "À travers le pays", "Active": "Actif", "Add :locale translation of :label": "Ajouter une traduction en :locale de\/du :label", "Add a language": "Ajouter une langue", "Add a location": "Ajouter un emplacement", "Add another language": "Ajouter une langue", "Add another link": "Ajouter un autre lien", - "Add another location": "Ajouter un autre emplacement", "Add a training": "Ajouter une formation", "Add Community Connector": "Ajouter une personne facilitatrice communautaire", "Added on :date": "Ajouté le :date", "Add experience": "Ajouter une expérience", "Additional information to join": "Information supplémentaire à joindre", "additional information to join": "information complémentaire à joindre", - "Additional information to join:": "Information supplémentaire à joindre :", "Additional needs or concerns": "Besoins ou préoccupations supplémentaires", "Add language": "Ajouter une langue", "Add link": "", @@ -211,22 +165,17 @@ "Add new meeting": "Ajouter une nouvelle réunion", "Add participant": "Ajouter une personne participante", "Address": "Adresse", - "Address:": "Adresse :", "Add to my notification list": "Ajouter à ma liste de notifications", - "Add training": "Ajouter une formation", - "Add translation": "Ajouter une traduction", "add your own headers, forge headers, or otherwise manipulate identifiers in a manner not permitted by the Platform, in order to disguise the origin of any User Content transmitted through the Platform;": "add your own headers, forge headers, or otherwise manipulate identifiers in a manner not permitted by the Platform, in order to disguise the origin of any User Content transmitted through the Platform;", "Adjust settings that will help you use this website.": "Ajustez les paramètres qui vous aideront à utiliser ce site.", "Administrator": "Administrateur", "advertise or offer to sell or buy any goods or services for any business purpose that is not specifically authorized;": "advertise or offer to sell or buy any goods or services for any business purpose that is not specifically authorized;", "A follow-up to a previous project (such as a progress report)": "Un suivi pour un projet précédent (tel qu'un rapport d'étape)", "African": "Africain", - "After the consultation follow up with participants to share next steps and your organization’s plan for implementing their feedback. This can help foster confidence in your commitment, and an ongoing relationship with your participants, who can be involved in future updates of your accessibility plan.": "Après la consultation, assurez un suivi auprès des personnes participantes pour leur faire part des prochaines étapes et du plan de votre organisation pour mettre en œuvre leurs commentaires. Cela peut contribuer à renforcer la confiance envers votre initiative et à établir une relation durable avec vos participants, lesquels pourraient éventuellement participer aux futures mises à jour de votre plan d'accessibilité.", "Age": "Âge", "Age group": "Groupe d'âge", "age group": "", "Age groups": "Groupes d'âge", - "Age groups they can connect to": "Tranches d'âge auprès desquelles vous pouvez agir comme intermédiaire", "Agreement pending": "Entente en attente", "Agreement received": "Entente reçue", "Agreements": "Ententes", @@ -238,13 +187,10 @@ "All participant spots have been filled.": "All participant spots have been filled.", "All provinces and territories": "Toutes les provinces et tous les territoires", "All rights reserved.": "Tous droits réservés.", - "All the training I am doing or have done.": "Toutes les formations que je fais ou que j'ai faites.", "Alternative text for images": "Texte de remplacement pour les images", "Although it is not compulsory, we highly recommend that you include English and French translations of your content.": "Although it is not compulsory, we highly recommend that you include English and French translations of your content.", "A meeting title must be provided in at least English or French.": "", - "American Sign Language (ASL)": "American Sign Language (ASL)", "Analysis of collected information": "Analyse des informations recueillies", - "Analyze the outcomes of your consultation with people who are in the context of disability and Deaf groups.": "Analyser les résultats de votre consultation avec des personnes faisant partie de groupes de personnes en situation de handicap et de personnes sourdes.", "An approximate response time must be provided in at least one language.": "Un temps de réponse approximatif doit être indiqué dans au moins une langue.", "An engagement description must be provided in at least English or French.": "", "An engagement involves a group of people participating in one set way (for example, a focus group or a survey). An engagement like a focus group can have multiple meetings.": "Une consultation implique un groupe de personnes participant d'une manière donnée (par exemple, un groupe de discussion ou un sondage). Une consultation, comme un groupe de discussion, peut se dérouler sur plusieurs réunions.", @@ -261,8 +207,6 @@ "ANY SERVICE CONTENT DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PLATFORM IS DONE AT YOUR OWN DISCRETION AND RISK AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR LOSS OF DATA THAT RESULTS FROM THE DOWNLOAD OF ANY SUCH MATERIAL.": "TOUT CONTENU TÉLÉCHARGÉ OU OBTENU DE TOUTE AUTRE MANIÈRE PAR L'UTILISATION DE LA PLATEFORME SE FAIT À VOTRE PROPRE DISCRÉTION ET À VOS RISQUES ET VOUS SEREZ SEUL RESPONSABLE DE TOUT DOMMAGE À VOTRE SYSTÈME INFORMATIQUE OU DE TOUTE PERTE DE DONNÉES RÉSULTANT DU TÉLÉCHARGEMENT D'UN TEL MATÉRIEL.", "Application for Accessibility Consultant": "Application for Accessibility Consultant", "Application for Community Connector": "Application for Community Connector", - "Apply filter": "Appliquer le filtre", - "Apply filters": "Appliquer les filtres", "Approval status": "Approval status", "Approve": "Approuver", "Approved": "Approuvé", @@ -279,19 +223,14 @@ "areas of impact": "domaine(s) d'impact", "Areas of interest": "Domaines d'intérêt", "Areas of your organization this project will impact": "Secteurs de votre organisation sur lesquels ce projet aura un impact", - "Areas where the organization serves": "Régions où l'organisation est active", "area type": "", - "Are you able to attend consultations in real-time, or do you prefer to receive the materials (ex. questions, discussion topics) and record your responses at your own pace?": "Êtes-vous en mesure d'assister aux consultations en temps réel, ou préférez-vous recevoir le matériel (ex. questions, sujets de discussion) et enregistrer vos réponses à votre propre rythme ?", "Are you looking for individuals in specific provinces or territories or specific cities or towns?": "Cherchez-vous des personnes dans des provinces ou territoires spécifiques ou dans des villes ou villages spécifiques ?", "Are you sure you want to block :blockable?": "Voulez-vous vraiment bloquer :blockable?", "Are you sure you want to delete your account?": "Voulez-vous vraiment supprimer votre compte ?", - "Are you sure you want to delete your organization, :organization?": "Voulez-vous vraiment supprimer votre organisation, :organization ?", "Are you sure you want to leave :organization?": "Voulez-vous vraiment quitter :organization?", "Are you sure you want to leave this engagement? You’ll still be able to sign up for this engagement again before the sign up deadline.": "Êtes-vous sûr de vouloir quitter cette consultation? Vous serez toujours en mesure de vous inscrire à nouveau à cette consultation avant la date limite d'inscription.", "Are you sure you want to remove :language? Any translations that you’ve entered will be lost.": "Êtes-vous sûr de vouloir supprimer :language ? Toutes les traductions que vous avez saisies seront perdues.", "Are you sure you want to remove :member from :organization? You cannot undo this.": "Êtes-vous sûr de vouloir supprimer :member de votre « :organization » ? Vous ne pourrez pas annuler cette action.", - "Are you sure you want to remove :name from :organization? You cannot undo this.": "Êtes-vous sûr de vouloir supprimer :name de « :organization » ? Vous ne pourrez pas annuler cette action.", - "Are you sure you want to unblock them?": "Voulez-vous vraiment les débloquer?", "As a :organizationType, you can engage with individuals to get input for your projects.": "En tant que :organizationType, vous pouvez entrer en contact avec des individus pour obtenir des commentaires en lien avec vos projets.", "As a Community Connector": "En tant que personne facilitatrice communautaire", "As a Community Connector, :name can connect to:": "En tant que personne facilatrice communautaire, :name peut agir comme intermédiaire auprès de :", @@ -301,7 +240,6 @@ "As an Accessibility Consultant, we can help with:": "En tant que personne consultante en matière d'accessibilité, nous pouvons vous aider à :", "As an individual with a disability, Deaf person, or a supporter, you can participate in consultations by organizations and businesses who are working on accessibility projects and get paid for this. You can also gain access to resources and training on how to do this.": "En tant que personne en situation de handicap, ou personne sourde, ou encore personne fournissant du soutien à une personne en situation de handicap ou sourde, vous pouvez participer et être payée pour participer à des consultations en matière d'accessibilité organisées par des organisations ou des entreprises sous réglementation fédérale. Vous avez également accès à des ressources et à des formations sur comment accomplir ces tâches.", "Asian": "Asiatique", - "Ask participants ahead of time about their access needs for the consultation. You can use an Access Form to get information on what people need to participate. Please see the resource, [Access Form Template](:url). If you need assistance in providing accommodation support, please contact us at [info@accessibilityexchange.ca](:email).": "Veillez à recueillir à l'avance les besoins en matière d'accessibilité des personnes participantes à la consultation. Vous pouvez utiliser un formulaire portant sur les besoins en matière d'accessibilité pour obtenir des informations sur ce dont les gens ont besoin pour participer. Veuillez consulter la ressource, [Modèle de formulaire sur les besoins en matière d'accessibilité](:url). Si vous avez besoin d'aide pour offrir des mesures d'accommodement, veuillez nous contacter à [info@accessibilityexchange.ca](:email).", "Atlantic Standard or Daylight Time": "Heure normale ou heure avancée de l'Atlantique", "At least 1 number": "Au moins 1 nombre", "At least 1 special character (!@#$%^&*()-)": "Au moins 1 caractère spécial (!@#$%^&*()-)", @@ -309,15 +247,12 @@ "At least 1 upper case letter": "Au moins 1 lettre majuscule", "At present, you have no unread notifications.": "Vous n'avez pas de notifications non lues.", "Attend an interview in real time.": "Assister à une entrevue en direct.", - "Attend an orientation session": "Assister à une séance d'orientation", "Attended": "Attended", "Audio": "Audio", "Audio description for visuals": "Description audio pour les éléments visuels", "Audio versions of engagement documents": "Versions audio des documents de consultation", "A user with this email already exists.": "Un utilisateur avec cette adresse électronique existe déjà.", - "Author": "Auteur", "Author: :author": "Auteur : :author", - "Authored by :author": "Écrit(s) par :author", "Author name": "Nom de l'auteur", "author organization": "author organization", "availability for Friday": "disponibilité le vendredi", @@ -329,19 +264,16 @@ "availability for Wednesday": "disponibilité le mercredi", "available": "disponible", "Available": "Disponible", - "Available :start to :end :timeZone": "Disponible du :start au :end :timeZone", "Available courses": "Formations disponibles", "Back": "Précédent", - "Back to dashboard": "Retourner au tableau de bord", + "Back to course page": "", "Back to top": "Revenir en haut", - "Back to training home page": "Retourner à la page d'accueil de la formation", "Banks, federal transportation network (airlines, rail, road and marine transportation providers that cross provincial or international borders), atomic energy, postal and courier services, the broadcasting and telecommunications sectors": "Banks, federal transportation network (airlines, rail, road and marine transportation providers that cross provincial or international borders), atomic energy, postal and courier services, the broadcasting and telecommunications sectors", "Baseline access needs": "Besoins de base en matière d'accessibilité", "Basic information about you": "Informations de base à propos de vous", "Be a Community Connector": "Être une personne facilitatrice communautaire", "Be a Consultation Participant": "Être une personne participante à une consultation", "Be an Accessibility Consultant": "Être une personne consultante en matière d'accessibilté", - "Before you can use your account, you must have completed all the previous steps.": "Avant de pouvoir utiliser votre compte, vous devez avoir effectué toutes les étapes précédentes.", "Be invited by a Community Connector (someone with lived experience of disability or is Deaf that organizations hire to help recruit)": "Be invited by a Community Connector (someone with lived experience of disability or is Deaf that organizations hire to help recruit)", "Be matched based on what your lived experiences are": "Be matched based on what your lived experiences are", "Between which times during the day will the interviews take place?": "Entre quels moments de la journée les entrevues auront-elles lieu ?", @@ -355,29 +287,17 @@ "Blocked individuals and organizations": "Personnes et organisations bloquées", "Body differences": "Différences corporelles", "Booking accessibility service providers": "Gestion de prestataires de services en matière d’accessibilité", - "Booking access supports": "Réservation des mesures d'accommodement et d'accessibilité", "Braille version of engagement documents": "Version en braille des documents de consultation", "Bring my service or therapy animal": "Venir avec mon animal d'assistance ou de thérapie", "Bring my support person": "Venir avec une personne accompagnatrice", "British Columbia": "Colombie-Britannique", - "Browse Accessibility Consultants": "Parcourir les personnes consultantes en matière d'accessibilité", "Browse all projects": "Parcourir tous les projets", "Browse all resources": "Parcourir toutes les ressources", - "Browse all the trainings on this website.": "Parcourir toutes les formations sur ce site.", - "Browse by services": "Naviguer par services", "Browse Community Connectors": "Parcourir toutes les personnes facilitatrices communautaires", "Browse community organizations": "Parcourir les organisations communautaires", - "Browse file": "Parcourir le fichier", "Browse for an Community Connector": "Chercher une personne facilitatrice communautaire", "Browse individuals": "Parcourir les individus", - "Browse our resources": "Parcourir nos ressources", "Browse regulated organizations": "Parcourir les organisations sous réglementation fédérale", - "Browse resources by :creator": "Parcourir les ressources par :creator", - "Browse resources for Community Connectors and Accessibility Consultants": "Parcourir les ressources pour les personnes facilitatrices communautaires et pour les personnes consultantes en matière d'accessibilité", - "Browse resources for community organizations": "Parcourir les ressources pour les organisations communautaires", - "Browse resources for Consultation Participants": "Parcourir les ressources pour les personnes participantes aux consultations", - "Browse resources for Regulated Organizations": "Parcourir les ressources pour les organisations sous réglementation fédérale", - "Browse trainings": "Parcourir les formations", "Built environment": "Built environment", "Business": "Entreprise", "Businesses and government can find Community Organizations on this website, and use the contact information to directly reach out. From there, they can hire you consult with them.": "Businesses and government can find Community Organizations on this website, and use the contact information to directly reach out. From there, they can hire you consult with them.", @@ -390,10 +310,8 @@ "Cancel engagement": "Annuler la consultation", "Cancel invitation": "Annuler l'invitation", "Cancel invitation for :email": "Annuler l'invitation pour :email", - "Cancelled": "Annulé", "Cancel project": "Annuler le projet", "Can create and edit the organization page, projects, and engagements.": "Peut créer et modifier la page de l'organisation, les projets et les consultations.", - "Can I learn more about participating in a consultation?": "Puis-je en savoir plus sur la participation à une consultation?", "Can only view the organization page, projects, and engagements.": "Ne peut voir que la page de l'organisation, les projets et les consultations.", "Can you connect to a specific age bracket or brackets?": "Pouvez-vous servir d'intermédiaire auprès des personnes dans des fourchettes d'âge spécifiques?", "Can you connect to a specific ethnoracial identity or identities?": "Pouvez-vous servir d'intermédiaire auprès de personnes de communautés ethniques ou racisées spécifiques?", @@ -407,16 +325,14 @@ "Cash": "En espèces", "Central Standard or Daylight Time": "Heure normale ou avancée du centre", "Central Standard Time**": "Heure normale du centre**", - "Change colour contrast, turn on text to speech, and turn on Sign Language videos.": "Modifier le contraste des couleurs, activer la synthèse vocale et activer les vidéos en langue des signes.", "Change colour contrast and turn on text to speech.": "Change colour contrast and turn on text to speech.", "Change email": "Changer l'adresse courriel", - "Change language": "Changer la langue", "Change login email": "Changer l'identifiant courriel", "Change password": "Changer le mot de passe", - "Change resource format and language": "Changer le format et la langue de la ressource", "Change the colour of the text and background.": "Changer la couleur du texte et de l'arrière-plan.", "Cheque": "Chèque", "Children (under 15)": "Enfants (moins de 15 ans)", + "Choices for: :question": "", "Choose a community organization…": "Choisissez une organisation communautaire…", "Choose a language…": "Choisissez une langue…", "Choose a month…": "Choisissez un mois…", @@ -434,27 +350,22 @@ "Clear filters": "Réinitialiser les filtres", "Click the link above to sign up for an orientation session. (This will lead you to an external site, and when you’re done it will bring you back automatically.)": "Click the link above to sign up for an orientation session. (This will lead you to an external site, and when you’re done it will bring you back automatically.)", "Cluster": "Cluster", - "Co-design": "Co-conception", "Cognitive disabilities": "Déficiences cognitives", "Collaboration Preferences": "Collaboration Preferences", "collect, aggregate, copy, scrape, duplicate, display or derivatively use the Platform;": "collect, aggregate, copy, scrape, duplicate, display or derivatively use the Platform;", "Collection": "Bibliothèque", "Collections this resource appears in": "Bibliothèques dans lesquelles cette ressource apparaît", - "communicate with you": "communiquer avec vous", "Communication": "Communication", "Communication and consultation preferences": "Préférences relatives aux communications et aux consultations", "Communication disabilities": "Troubles de la communication", "Communications": "Communications", "Communities served": "Communautés desservies", "Communities we :represent_or_serve_and_support": "Communautés que nous :represent_or_serve_and_support", - "Communities we represent": "Communautés que nous représentons", "Communities you can connect to": "Communautés auprès desquelles vous pouvez agir comme intermédiaire", "Communities your organization :represents_or_serves_and_supports": "Communautés que votre organisation :represents_or_serves_and_supports", - "Communities your organization serves": "Communautés desservies par votre organisation", "Community Connector": "Personne facilitatrice communautaire", "Community connector application": "Community connector application", "Community Connectors": "Personnes facilitatrices communautaires", - "Community Connectors and Accessibility Consultants": "Personnes facilitatrices communautaires et personnes consultantes en matière d'accessibilité", "Community Connectors could help you connect with groups that may be hard to reach otherwise.": "Les personnes facilitatrices communautaires peuvent vous aider à entrer en contact avec des groupes qui seraient autrement difficiles à rejoindre.", "Community Connectors — Individual": "Personne facilitatrice communautaire - Individu", "Community organization": "Organisation communautaire", @@ -463,15 +374,12 @@ "Community organizations": "Organisations communautaires", "Community Organizations": "Organisations communautaires", "Community organizations could provide research, recommendations, and also support the interpretation of your consultation results to deepen your understanding of Deaf and disability access.": "Les organisations communautaires sont susceptibles de vous fournir des recherches, des recommandations, mais aussi de vous aider à interpréter les résultats de votre consultation afin d'approfondir votre compréhension des questions relatives à l'accessibilité pour les personnes sourdes et les personnes en situation de handicap.", - "Community organizations with expertise in disability and Deaf issues, as well as issues effecting other systemically marginalized populations can help you make sense of your consultation findings. They can help to identify the structural barriers (in law, policy, practice, and culture) that underlay people’s lived\/living experience. As well, they can point to strategies for addressing those barriers. Because of their service provision, longstanding engagement with and leadership by people with disabilities and Deaf persons and\/or other systemically marginalized groups, community organizations can provide the broader context for interpreting your results. Many also have access to complementary research resources – both quantitative sources, and secondary qualitative information to help you understand how widespread the issues are that participants raise.": "Les organisations communautaires spécialisées dans les questions liées aux personnes en situation de handicap et aux personnes sourdes, ainsi que dans les questions touchant d'autres populations systématiquement marginalisées, peuvent vous aider à donner un sens aux résultats de votre consultation. Elles peuvent aider à identifier les obstacles structurels (dans la loi, la politique, la pratique et la culture) qui sous-tendent l'expérience vécue par les gens. De même, elles peuvent vous indiquer les stratégies permettant d'éliminer ces obstacles. En raison de leur prestation de services, de leur engagement de longue date auprès des personnes en situation de handicap et des personnes sourdes et\/ou d'autres groupes marginalisés sur le plan systémique, et du leadership qu'elles exercent, les organisations communautaires peuvent fournir un contexte plus large pour l'interprétation de vos résultats. Beaucoup d'entre elles ont également accès à des ressources de recherche complémentaires - à la fois des sources quantitatives et des informations qualitatives secondaires pour vous aider à comprendre à quel point les questions soulevées par les personnes participantes sont répandues.", - "Community they serve: :community": "Communauté desservie : :community", "Compensation": "Rémunération", "Complete": "Terminé", "Completed": "Terminé", "completed": "completed", "Completed documents are due by:": "Les documents dûment complétés doivent être remis au plus tard le : ", "Completed materials are due by": "Les documents dûment complétés doivent être remis au plus tard le", - "Completed on :date": "Complété le :date", "CONDITIONS OF USE.": "CONDITIONS D'UTILISATION.", "Confirm": "Confirm", "Confirm and sign up": "Confirmer et s'inscrire", @@ -482,7 +390,6 @@ "Confirm your access needs": "Veuillez confirmer vos besoins en matière d'accessibilité", "Confirm your participant selection criteria": "Confirmez les critères de sélection des personnes participantes", "Confirm your password": "Confirmer votre mot de passe", - "Congratulations! You have now completed this course.": "Félicitations ! Vous avez maintenant terminé ce cours.", "Congratulations! You have passed the quiz.": "Félicitations ! Vous avez réussi le jeu-questionnaire.", "Congratulations! You have passed the quiz with :score%.": "Félicitations ! Vous avez réussi le quiz avec un score de :score%.", "Congratulations! Your have successfully published your :model page.": "Félicitations ! Vous avez publié votre page :model avec succès.", @@ -500,7 +407,6 @@ "Consultations": "Consultations", "Consulting services": "Services de consultation", "Consulting with a Community Organization": "Consultation auprès d'une organisation communautaire", - "Consult people more than once": "Consulter plus d'une fois les personnes", "Contact": "Contact", "Contact :contact_person_name from :projectable at:": "Contactez :contact_person_name de :projectable au :", "Contact :name": "Contacter :name", @@ -520,7 +426,6 @@ "Continue": "Continuer", "Contracted": "Contracted", "Contracts": "Contrats", - "Contrast": "Contraste", "Contrast adjustment": "Ajustement du contraste", "Cookies are pieces of information saved about you. This helps us remember your access settings, like your language or colour contrast mode.": "Cookies are pieces of information saved about you. This helps us remember your access settings, like your language or colour contrast mode.", "Coordinate directly with governments and businesses on what help they need and whom they are seeking.": "Travaillez directement avec les organismes gouvernementaux et les entreprises pour savoir de quelle aide ils ont besoin et qui ils cherchent.", @@ -533,14 +438,10 @@ "Create Account": "Créer un compte", "Create an account": "Créer un compte", "Create an account, if you don’t already have one.": "Créez un compte, si vous n'en avez pas déjà un.", - "Create and implement inclusive and accessible consultations for your organization": "Créer et mettre en œuvre des consultations inclusives et accessibles pour votre organisation", - "Create an engagement": "Créer une consultation", "Create a new engagement": "Créer une nouvelle consultation", "Create a new project": "Créer un nouveau projet", - "Create another engagement": "Créer une autre consultation", "Create a project": "Créer un projet", "Create a public page": "Créer une page publique", - "Create a public profile": "Créer un profil public", "Create engagement": "Créer une consultation", "Create new :type": "Créer un nouveau\/une nouvelle :type", "Create new community organization": "Créer une nouvelle organisation communautaire", @@ -550,15 +451,12 @@ "Create organization profile": "Créer un profil d'organisation", "Create regulated organization": "Créer une organisation sous réglementation fédérale", "Create regulated organization profile": "Créer un profil d'organisation sous réglementation fédérale", - "Create selection criteria": "Créer des critères de sélection", - "Create your :role page": "Créer votre page :role", "Create your first project": "Créer votre premier projet", "Create your organization page": "Créer la page de votre organisation", "Create your organization’s page": "Créez la page de votre organisation", "Create your project page": "Créer votre page de projet", "creating an open project, where anyone who matches their criteria can sign up. ": "créer un projet ouvert, où quiconque correspond aux critères peut s'inscrire. ", "Cross disability (includes people with disabilities, Deaf people, and supporters)": "Polyhandicap (comprend les personnes en situation de handicap, les personnes sourdes et les personnes qui les soutiennent)", - "Cross disability (including people with disabilities, Deaf people, and supporters)": "Polyhandicap (incluant les personnes en situation de handicap, les personnes sourdes et les personnes qui les soutiennent)", "Current password": "Mot de passe actuel", "Customize": "Personnaliser", "Customize this website’s accessibility": "Personnaliser l'accessibilité de ce site Internet", @@ -571,77 +469,50 @@ "Date of training": "Date de la formation", "Date range": "Plage de dates", "Dates": "Dates", - "Day": "Jour", "Days of the week interviews will be happening": "Jours de la semaine où les entrevues auront lieu", "Deaf": "Sourde\/Sourd", "DeafBlind": "DeafBlind", - "Decide the scope of your consultation, e.g., local, regional, provincial, territorial or national": "Décidez de la portée de votre consultation, par exemple, locale, régionale, provinciale, territoriale ou nationale", "Decline": "Refuser", "Deepen understanding": "Approfondissement de la compréhension", "Deepen understanding about the systemic barriers (laws, policies, practices, and culture) underlying the experiences that consultation participants report": "Deepen understanding about the systemic barriers (laws, policies, practices, and culture) underlying the experiences that consultation participants report", - "Deepen understanding of what was learned in consultation through systemic analysis": "Approfondir la compréhension de ce qui a été dit lors de la consultation par le biais d'une analyse systémique", - "Define the objectives of your consultation. That is, clearly state what information you are hoping to get out of this consultation.": "Définissez les objectifs de votre consultation. C'est-à-dire indiquez clairement les résultats que vous espérez obtenir de cette consultation.", "Definitions": "Définitions", "Delete account": "Supprimer le compte", - "Delete my organization": "Supprimer mon organisation", "Delete my page": "Supprimer ma page", "Delete regulated organization": "Supprimer l'organisation sous réglementation fédérale", "Delete your account": "Supprimer votre compte", "Delete your individual page": "Supprimer votre page personnelle", - "Delete your organization": "Supprimer votre organisation", - "Delivering and facilitating the consultation": "Organiser et diriger la consultation", - "Demographic breakdown": "Répartition démographique", "Description": "Description", "Description (English)": "Description (anglais)", "Description (French)": "Description (français)", "Design": "Design", "Designing a consultation": "Conception d’une consultation", - "Designing the consultation format and process": "Conception du format et du processus de consultation", "Design your inclusive and accessible consultation": "Design your inclusive and accessible consultation", - "Determine the consultation method, e.g., focus group, online survey, one-to-one interviews, etc.": "Déterminez la méthode de consultation, par exemple, groupes de discussion, sondages en ligne, entretiens individuels, etc.", - "Determine who you would like to participate in your consultation, e.g., people with a similar type of disability, a range of people with different disabilities, Deaf people, Indigenous representation, and\/or other identities, etc.": "Déterminez qui vous aimeriez voir participer à votre consultation, par exemple, des personnes ayant un type de handicap similaire, un éventail de personnes ayant des handicaps différents, des personnes sourdes, des personnes autochtones, et\/ou d'autres identités, etc.", - "Develop a safe and accessible format and process, by addressing questions like:": "Développez un format et un processus sûrs et accessibles, en abordant des questions comme :", "Developed in partnership": "Développé en partenariat", "Developing an accessibility plan": "Développement d'un plan sur l'accessiblité", "Developmental disabilities": "Déficience intellectuelle (et autres troubles du développement)", "Did you know…": "Saviez-vous que…", - "Digital": "Numérique", - "Directly contact me or my support person": "Contactez-moi directement ou la personne qui me soutient", - "Disability": "Handicap", "Disability and\/or Deaf identity": "Handicap et\/ou identité sourde", - "Disability and Deaf groups": "Groupes de personnes en situation de handicap et de personnes sourdes", "Disability and Deaf groups they are looking for": "Groupes de personnes en situation de handicap ou de personnes sourdes qu'ils cherchent", - "Disability and Deaf organizations, and civil society organizations.": "Organisations de personnes en situation de handicap, de personnes sourdes et de la société civile.", "Disability and Deaf representative organizations": "Organisations représentant les personnes en situation de handicap et les personnes sourdes", "Disability and Deaf support organizations": "Organisation soutenant les personnes en situation de handicap et les personnes sourdes", "Disability is not in the person. It results when a person’s long-term physical, mental health, developmental, or sensory characteristics differ from society’s norms. When buildings, services, and workplaces are designed for the norm, they often present barriers to a person’s full and equal participation in society. That’s what we mean by disability. ": "Le handicap n'est pas inhérent à la personne. Il se manifeste lorsque les caractéristiques physiques, de santé mentale, de développement ou sensorielles d'une personne diffèrent des normes de la société. Lorsque les bâtiments, les services et les lieux de travail sont conçus pour la norme, ils présentent souvent des obstacles à la participation pleine et égale d'une personne à la société. C'est ce que nous entendons par handicap. ", "Disability knowledge": "Expérience du handicap", "Disability or Deaf group": "Groupe de personnes en situation de handicap ou de personnes sourdes", - "Disability or Deaf groups": "Groupes de personnes en situation de handicap ou de personnes sourdes", "Disability type": "Type de handicap", "disability type": "type de handicap", "DISCLAIMER OF WARRANTIES.": "DISCLAIMER OF WARRANTIES.", "Disconnected rooms for down-time": "Salles isolées pour les temps morts", "Dismiss": "Ignorer", - "Documents": "Documents", "Documents will be sent to participants by:": "Les documents seront envoyés aux personnes participantes par :", "Does :name have lived experience of the people they can connect to?": ":name a-t-il\/a-t-elle une expérience vécue de la réalité des personnes auprès desquelles il\/elle peut servir d'intermédiaire ?", - "Does it cost Regulated Organizations to use The Accessibility Exchange services?": "L'utilisation des services du Connecteur pour l'accessibilité entraîne-t-elle des frais pour les organisations réglementées ?", "Does your organization :represent_or_serve_and_support a specific age bracket or brackets?": "Est-ce que votre organisation représente une ou plusieurs tranches d'âge spécifiques ?", "Does your organization :represent_or_serve_and_support a specific ethnoracial identity or identities?": "Est-ce que votre organisation représente des personnes ayant une identité éthnique ou racial particulière ?", "Does your organization specifically :represent_or_serve_and_support people who are First Nations, Inuit, or Métis?": "Est-ce que votre organisation représente spécifiquement les personnes membres des Premières nations, les Inuits ou les Métis ?", "Does your organization specifically :represent_or_serve_and_support people who are marginalized based on gender or sexual identity?": "Est-ce que votre organisation représente spécifiquement les personnes marginalisées à cause de leur genre ou de leur identité sexuelle?", "Does your organization specifically :represent_or_serve_and_support people with disabilities and Deaf people, their supporters, or both?": "Votre organisation représente-t-elle spécifiquement des personnes en situation de handicap et\/ou des personnes sourdes, leurs alliées, ou les deux?", "Does your organization specifically :represent_or_serve_and_support refugees and\/or immigrants?": "Est-ce que votre organisation représente spécifiquement les personnes réfugiées ou migrantes?", - "Done": "Terminé !", "Don’t have an account yet? Please": "Vous n'avez pas encore de compte ? S'il vous plaît", - "Download:": "Télécharger : ", - "Download :language document": "Télécharger le document en :language", - "Download agreement": "Télécharger l'entente", "download any file posted by another user of the Platform that you know, or reasonably should know, cannot legally be distributed in such manner;": "download any file posted by another user of the Platform that you know, or reasonably should know, cannot legally be distributed in such manner;", - "Download certificate of completion": "Télécharge le certificat de réussite", - "Download your certificate": "Télécharger votre certificat", - "Do you have concerns about the engagement or the organization running it? We can help solve problems and mediate.": "Vous avez des préoccupations concernant la consultation ou l'organisation qui la dirige ? Nous pouvons aider à résoudre les problèmes et servir de médiateur.", "Do you have lived experience of the people you can connect to?": "Avez-vous une expérience vécue des personnes auprès desquelles pouvez servir d'intermédiaire ?", "Do you have questions about how the engagement works?": "Vous avez des questions sur le processus de consultation ?", "Do you have questions about this project?": "Vous avez des questions à propos de ce projet?", @@ -652,13 +523,11 @@ "due date": "date limite", "E-transfer": "Transfert électronique", "E.g. Microsoft Teams, Webex, Zoom.": "Par exemple, Microsoft Teams, Webex, Zoom.", - "Each participant will be paid :pay.": "Chaque personne participante sera payée :pay.", "East Asian": "Asiatique de l'Est", "Eastern Standard or Daylight Time": "Heure normale de l'Est ou heure avancée de l'Est", "Edit": "Modifier", "Edit :!section": "Modifier :!section", "Edit :user’s role": "Modifier le rôle de :user", - "Editable PDF document": "Document PDF modifiable", "Edit engagement": "Modifier la consultation", "Edit engagement details": "Modifier les détails de la consultation", "Edit meeting": "Modifier la réunion", @@ -677,7 +546,6 @@ "Edit your project page": "Modifier la page de votre projet", "Edit your role": "Modifier votre rôle", "Email": "Courriel", - "Email: :email": "Courriel : :email", "Email address": "Adresse courriel", "email address": "adresse courriel", "Email your certificate again": "Email your certificate again", @@ -690,13 +558,11 @@ "End year": "Année de fin", "End Year": "Année de fin", "Engage": "Consultation", - "Engage a Community Organization to help with analysis": "Faire appel à une organisation communautaire pour aider à l'analyse", "engage in or use any data mining, robots, scraping or similar data gathering or extraction methods;": "engage in or use any data mining, robots, scraping or similar data gathering or extraction methods;", "Engage in the commercial use of the Platform except for the purposes set out in these Terms;": "Engage in the commercial use of the Platform except for the purposes set out in these Terms;", "Engagement": "Consultation", "engagement": "consultation", "engagement description": "description de la consultation", - "Engagement details": "Détails de la consultation", "Engagement materials": "Documents de consultation", "Engagement meetings": "Réunions de la consultation", "engagement name": "nom de la consultation", @@ -706,12 +572,9 @@ "Engagements that are looking for someone with my lived experience": "Consultations qui sont à la recherche de personnes avec mon expérience vécue", "Engagement translations": "Traductions de la consultation", "Engage with disability and Deaf communities and hold meaningful consultations": "Engage with disability and Deaf communities and hold meaningful consultations", - "Engage with the disability and Deaf community and hold meaningful consultations": "Collaborez avec la communauté des personnes en situation de handicap et des personnes sourdes et tenez des consultations substantielles", "English author name": "Nom de l'auteur en anglais", "Enter your collaboration preferences": "Entrez vos préférences de collaboration", - "Enter your personal information": "Entrez vos informations personnelles", "Episodic and invisible disabilities": "Incapacités épisodiques et invisibles", - "Error": "Erreur", "Estimate approved": "Devis approuvé", "Estimate requested": "Devis demandé", "Estimate returned": "Devis retourné", @@ -720,10 +583,8 @@ "Estimate status": "Statut du devis", "Ethno-racial groups": "Communautés ethniques et racisées", "ethnoracial group": "", - "Ethnoracial group they can connect to": "Communautés ethniques et racisées auprès desquelles ils peuvent servir d'intermédiaire", "Ethnoracial identity": "Identité ethnoraciale", "ethnoracial identity": "identité ethnoraciale", - "Everything in your organization will be deleted as well:": "Tout ce qui se trouve dans votre organisation sera également supprimé :", "Experiences": "Expériences", "experience working with organizations to create inclusive consultations, identify barriers, and create accessibility plans.": "expérience de travail avec des organisations pour créer des consultations inclusives, identifier les obstacles et créer des plans en matière d'accessibilité.", "External team": "Équipe externe", @@ -755,10 +616,7 @@ "First Nations": "Premières Nations", "flexible, please contact us if you need to use another software": "flexible, veuillez nous contacter si vous souhaitez utiliser un autre logiciel", "Focus group": "Groupe de discussion", - "Focus groups": "Groupes de discussion", "Follow-up calls or emails": "Appels ou courriels de suivi", - "Follow up call or email": "Appel ou courriel de suivi", - "Follow up to build your relationship": "Suivi pour renforcer votre relation", "for": "pour", "for :project": "pour :project", "For Community Organizations": "Organisations communautaires", @@ -776,10 +634,7 @@ "for lack of use;": "for lack of use;", "Format": "Format", "Format:": "Format :", - "Format: :format": "Format : :format", - "Formats": "Formats", "For meeting in real time": "Pour se rencontrer en personne", - "For the :sector sector": "Pour le secteur :sector", "For the best results, please use Google Chrome, Safari, or Microsoft Edge.": "For the best results, please use Google Chrome, Safari, or Microsoft Edge.", "For this website": "Pour le site", "for using The Accessibility Exchange": "du Connecteur pour l'accessibilité", @@ -795,7 +650,6 @@ "full name": "nom complet", "Further directions": "Autres directives", "further directions": "autres directives", - "Further directions:": "Further directions:", "further or promote any criminal activity or enterprise or provide instructional information about illegal or potentially illegal activities;": "further or promote any criminal activity or enterprise or provide instructional information about illegal or potentially illegal activities;", "Gender and sexual identity": "Identités sexuelles et de genre", "Gender and sexuality": "Genre et sexualité", @@ -803,11 +657,9 @@ "Gender fluid people": "Personnes de genre fluide", "Gender identity": "Identité de genre", "Gender neutral, barrier-free washrooms": "Toilettes mixtes et accessibles", - "Gender neutral washroom": "Salle de bain non genrée", "Gender non-conforming people": "Personnes non-conformes au genre", "gender or sexual identity group": "", "GENERAL": "DISPOSITIONS GÉNÉRALES", - "General": "Général", "General access needs": "Besoins généraux en matière d'accessibilité", "Geographical areas this project will impact": "Zones géographiques sur lesquelles ce projet aura un impact", "geographic areas": "geographic areas", @@ -820,40 +672,26 @@ "Google Meet": "Google Meet", "Go through our listings of Community Connectors on this website.": "Parcourez nos listes des personnes facilitatrices communautaires sur ce site Internet.", "Go to all engagements": "Voir toutes les consultations", - "Go to engagement dashboard": "Aller au tableau de bord de la consultation", "Go to pricing": "Accéder aux tarifs", - "Go to project page": "Accéder à la page du projet", "Go to published page": "Accéder à la page publiée", "Government": "Gouvernement", - "Government, businesses, and nonprofit organizations, which are regulated by the federal government, here to work on accessibility.": "Le gouvernement, les entreprises et les organisations à but non lucratif, qui sont réglementées par le gouvernement fédéral, ici pour travailler sur les questions d'accessibilité.", "Government of Canada": "Government of Canada", "Governments, businesses, and other public sector organizations": "Les gouvernements, les entreprises et autres organisations du secteur public", "Grey on dark grey": "Gris sur gris foncé", "Grey on white": "Gris sur blanc", - "Groups": "Groupes", "Groups in the disability and Deaf community": "Groupes de la communauté des personnes en situation de handicap et des personnes sourdes", "Groups you can connect to": "Groupes auprès desquels vous pouvez agir comme intermédiaire", "groups you can connect to": "groupes auprès desquels vous pouvez agir comme intermédiaire", - "Guide": "Guide", "Guidelines and best practices": "Lignes directrices et meilleures pratiques", "Hard-of-hearing": "Personnes malentendantes", "harvest or collect email addresses or other contact information of other users from the Platform by electronic or other means for the purposes of sending unsolicited emails or other unsolicited communications;": "harvest or collect email addresses or other contact information of other users from the Platform by electronic or other means for the purposes of sending unsolicited emails or other unsolicited communications;", "Have more questions?": "Vous avez encore des questions ?", "Have questions?": "Vous avez des questions ?", "Have trouble meeting the access needs of your participants?": "Vous avez du mal à répondre aux besoins en matière d'accessibilité des personnes participantes ?", - "Have you completed the webinar?": "Avez-vous complété le webinaire ?", "Help organizations and businesses design their consultations, and potentially help facilitate these consultations.": "Aidez les organisations et les entreprises à concevoir leurs consultations et éventuellement à les animer.", "Help regulated organizations design and implement their consultations": "Aide les organisations sous réglementation fédérale à concevoir et à mettre en œuvre leurs consultations", - "Here are a few tips on planning your consultation:": "Voici quelques conseils pour planifier votre consultation :", - "Here you may find resources for employees of the Regulated Organizations.": "Vous trouverez ici des ressources pour les personnes employées par les organisations sous réglementation fédérale.", - "Here you may find resources helpful for participating in a consultation.": "Vous trouverez ici des ressources utiles pour participer à une consultation.", - "Here you may find resources of benefit to Accessibility Consultants and Community Connectors.": "Vous trouverez ici des ressources utiles aux personnes consultantes en matière d'accessibilité et aux personnes facilitatrices communautaires.", - "Here you may find resources to assist in running inclusive and accessible consultations.": "Vous trouverez ici des ressources pour vous aider à organiser des consultations inclusives et accessibles.", - "Here you may find resources to help support your members in participating in consultations.": "Vous trouverez ici des ressources pour aider vos membres à participer aux consultations.", "Hire a Community Connector (who can be an individual or a Community Organization) to recruit people manually from within their networks. This option is best if you are looking for a specific or hard-to-reach group.": "Engagez une personne facilitatrice communautaire (qui peut être un individu ou une organisation communautaire) pour recruter des personnes de façon ciblée au sein de son réseau. Cette option est la meilleure si vous recherchez un groupe spécifique ou difficile à atteindre.", "Hours": "Heures", - "Hours: :start - :end :timeZone": "Heures : :start - :end :timeZone", - "Hours: :start to :end :timeZone": "Heures : de :start à :end :timeZone", "House of Commons, Senate, Library of Parliament, Parliamentary Protective Service": "House of Commons, Senate, Library of Parliament, Parliamentary Protective Service", "How can you help a regulated organization?": "Comment pouvez-vous aider les organisations réglementées ?", "how communities will be impacted": "comment les communautés seront touchées", @@ -861,8 +699,6 @@ "How does being a :role work?": "Qu'est-ce qu'être un-e :role représente?", "How does being an :role work?": "Qu'est-ce qu'être un-e :role représente?", "How does getting input for your projects work?": "Comment fonctionne la collecte de commentaires pour vos projets ?", - "How does The Accessibility Exchange assist Regulated Organizations interested in recruiting and engaging people with disabilities, Deaf people, and supporters in consultations?": "Comment le Connecteur pour l'accessibilité aide-t-il les organisations réglementées désireuses de recruter et de faire participer aux consultations des personnes en situation de handicap, des personnes sourdes et et les personnes qui les soutiennent ?", - "How does The Accessibility Exchange define disability?": "Comment le Connecteur pour l'accessibilité définit-il le handicap ?", "How does this work?": "Comment la plateforme fonctionne-t-elle ?", "How do you want to recruit participants?": "Comment voulez-vous recruter des personnes participantes?", "How many participants would you like to engage? Please enter a number, for example 20.": "Combien de personnes souhaitez-vous impliquer ? Veuillez saisir un nombre, par exemple 20.", @@ -873,12 +709,7 @@ "How this works for individuals": "Comment cela fonctionne pour les individus", "How this works for Individuals with Disabilities and Deaf Individuals": "Comment cela fonctionne pour les personnes en situation de handicap et les personnes sourdes", "How this works for Regulated Organizations": "Comment cela fonctionne pour les organisations réglementées", - "How will conflict be managed?": "Comment les conflits seront-ils gérés ?", - "How will my access needs be met during a consultation?": "Comment mes besoins en matière d'accessibilité seront-ils comblés lors des consultations ?", - "How will my privacy be protected on this website?": "Comment ma vie privée sera-t-elle protégée sur ce site Internet ?", "I agree to the ": "J'accepte les ", - "I agree with the [privacy policy](:url) or using The Accessibility Exchange": "Je suis d'accord avec la [politique de confidentialité](:url) ou l'utilisation du Connecteur pour l'accessibilité", - "I agree with the [terms of service](:url) or using The Accessibility Exchange": "Je suis d'accord avec les [conditions de service](:url) ou l'utilisation du Connecteur pour l'accessibilité", "I am a person with a disability, a Deaf person, or am a family member or supporter.": "Je suis une personne en situation de handicap, une personne sourde, ou je suis un membre de la famille ou un sympathisant.", "I am currently seeking an Community Connector for this engagement": "Je suis actuellement à la recherche d'une personne facilitatrice communautaire pour cette consultation", "I am open to other formats suggested by participants": "Je suis ouvert à d'autres formats suggérés par les personnes participantes", @@ -891,8 +722,6 @@ "Ideal number of participants": "Nombre idéal de personnes participantes", "ideal number of participants": "", "Identities": "Identités", - "If anything about your projects or engagements have changed, please send a new estimate request.": "Si un élément de vos projets ou consultations a changé, veuillez envoyer une nouvelle demande de devis.", - "If a Sign Language video translation is available, you will see a button in line with the website content. Pressing that button will load the Sign Language video.": "Si une traduction vidéo en langue des signes est disponible, vous verrez un bouton en ligne avec le contenu du site Internet. En appuyant sur ce bouton, la vidéo en langue des signes sera chargée.", "if IRIS is required to do so by law (for example, where the provision of the Platform to you is, or becomes, unlawful);": "if IRIS is required to do so by law (for example, where the provision of the Platform to you is, or becomes, unlawful);", "if IRIS is transitioning to no longer providing the Platform to users in the region or province in which you reside or from which you use the Platform; or": "if IRIS is transitioning to no longer providing the Platform to users in the region or province in which you reside or from which you use the Platform; or", "If more than one of the following applies to you, you will need to register separate accounts.": "Si plus qu'une des conditions suivantes s'applique à vous, vous devrez créer des comptes séparés.", @@ -903,7 +732,6 @@ "If you are looking for a group with a specific experience or identity, you must select which type of experience or identity you are looking for.": "", "If you are looking for a specific :attribute, you must select at least one.": "", "If you are seeking a Community Connector for this engagement, there are a few ways to find one:": "Si vous recherchez une personne facilitatrice communautaire pour cette consultation, plusieurs moyens s'offrent à vous :", - "If you are thinking of working with a specific group, for example, Indigenous people with disabilities, it would be a good idea to hire an Accessibility Consultant from that community.": "Si vous envisagez de travailler avec un groupe spécifique, par exemple, des personnes en situation de handicap issues de communautés autochtones, il pourrait être avantageux d'engager une personne consultante en matière d'accessibilité issue de cette communauté.", "If you delete your account:": "Si vous supprimez votre compte :", "If you did not expect to receive an invitation to this :invitationable_type, you may discard this email.": "Si vous ne vous attendiez pas à recevoir une invitation pour ce\/cette :invitationable_type, vous pouvez ignorer ce courriel.", "If you have an additional access need you must describe it.": "Si vous avez des besoins additionnels en matière d'accessibilité, veuillez les décrire.", @@ -912,14 +740,9 @@ " if you need this in another language.": " si vous avez besoin de soutien dans une autre langue.", "If your organization is offering services as a **Community Connector**, regulated organizations may ask you to assist them in connecting to your primary constituencies. If your organization is offering services as a **Consultation Participant**, regulated organizations may ask you to represent this group’s point of view in consultations.": "Si votre organisation offre des services en tant que **Community Connector**, les organisations réglementées peuvent vous demander de les aider à établir des liens avec les populations les intéressant le plus. Si votre organisation offre des services en tant que **Consultation Participant**, les organisations réglementées peuvent vous demander de représenter le point de vue de ce ou ces groupes lors des consultations.", "If you select no, our support line will contact you and arrange for a way to have your access needs met.": "Si vous choisissez \"non\", notre service à la clientèle vous contactera afin de trouver un moyen alternatif pour satisfaire vos besoins en matière d'accessibilité.", - "If you want to visit their page, you can unblock them and return to this page.": "Si vous voulez visiter leur page, vous devrez d'abord les débloquer et ensuite rafraichir cette page.", - "If you would like assistance in arranging for an accessibility consultant, you can [contact the Accessibility Exchange Support team](:url)": "Si vous souhaitez obtenir de l'aide pour trouver une personne consultante en matière d'accessibilité, vous pouvez [contacter l'équipe de soutien du Connecteur pour l'accessibilité](:url)", - "If you would like more support in planning your consultation, consider hiring an Accessibility Consultant. An Accessibility Consultant can help you with:": "Si vous aimeriez avoir plus de soutien dans la planification de votre consultation, envisagez d'engager une personne consultante en matière d'accessibilité. Une personne consultante en matière d'accessibilité peut vous aider en ce qui concerne :", "Immigrants": "Immigrants", "impersonate any person or entity, or falsely state or otherwise misrepresent your affiliation with a person or entity;": "impersonate any person or entity, or falsely state or otherwise misrepresent your affiliation with a person or entity;", "implement any measures to circumvent any tools or resources IRIS has used to block you from accessing all or some of the Platform (e.g., by masking your IP address or using a proxy IP address);": "implement any measures to circumvent any tools or resources IRIS has used to block you from accessing all or some of the Platform (e.g., by masking your IP address or using a proxy IP address);", - "In a specific province or territory or city or town": "Dans une province ou un territoire, une ville ou un village spécifique", - "In a specific region": "Dans une région spécifique", "Includes individuals with no spoken or signed language who communicate using gestures, pictures, letter boards, communication devices or assistance from a person who knows them well": "Comprend les personnes non-verbales ou ne communiquant pas avec une langue signée mais communiquant en utilisant des gestes, des images, des tableaux de lettres, des dispositifs de communication ou l'aide d'une personne qui les connaît bien", "Includes individuals with sight loss, blind individuals, and partially sighted individuals": "Comprend les personnes ayant perdu la vue, les personnes aveugles et les personnes malvoyantes", "Includes intellectual disability": "Comprend la déficience intellectuelle", @@ -934,17 +757,14 @@ "Individual": "Individu", "individual": "individu", "Individual orientation": "Individual orientation", - "Individual or organization": "Personne ou organisation", "Individuals": "Individus", "individuals": "individus", - "Individuals or Community Organizations that can help find Consultation Participants for projects.": "Personnes ou organisations communautaires qui peuvent aider à trouver des personnes désirant participer à des consultations pour des projets.", "Information such as your communication and consultation preferences might be out of date if it has not been updated for over a year.": "Certaines informations telles que vos préférences en matière de communication et de consultation pourraient être obsolètes si elle n'ont pas été mises à jour depuis plus d'un an.", "Information such as your matching information, your communication preferences, and your consultation preferences might be out of date if it has not been updated for over a year.": "Certaines informations telles que vos informations pour le jumelage, vos préférences en matière de communication et de consultation pourraient être obsolètes si elle n'ont pas été mises à jour depuis plus d'un an.", "Information technology": "Information technology", "Information that we ask Consultation Participants, Accessibility Consultants, and Community Connectors to share.": "Informations que nous demandons aux personnes participant aux consultations, aux personnes consultantes en matière d'accessibilité et aux personnes facilitatrices communautaires de partager.", "Initiated by": "Lancé par", "IN NO EVENT WILL IRIS’ TOTAL AGGREGATE LIABILITY, FOR ANY AND ALL CLAIMS ARISING OUT OF OR RELATED TO THIS AGREEMENT, THE PLATFORM, PLATFORM CONTENT AND ANY SERVICES, WHETHER IN CONTRACT, TORT OR UNDER ANY OTHER THEORY OF LIABILITY, EXCEED THE LESSER OF (I) ANY FEES PAID BY THE USER TO IRIS FOR THE SERVICES DURING **[THE TWELVE (12) MONTH PERIOD IMMEDIATELY PRECEDING THE DATE ON WHICH THE CAUSE OF ACTION AROSE; AND (II) SIX HUNDRED AND TWENTY-FIVE DOLLARS (CDN$625.00)]**. ": "IN NO EVENT WILL IRIS’ TOTAL AGGREGATE LIABILITY, FOR ANY AND ALL CLAIMS ARISING OUT OF OR RELATED TO THIS AGREEMENT, THE PLATFORM, PLATFORM CONTENT AND ANY SERVICES, WHETHER IN CONTRACT, TORT OR UNDER ANY OTHER THEORY OF LIABILITY, EXCEED THE LESSER OF (I) ANY FEES PAID BY THE USER TO IRIS FOR THE SERVICES DURING **[THE TWELVE (12) MONTH PERIOD IMMEDIATELY PRECEDING THE DATE ON WHICH THE CAUSE OF ACTION AROSE; AND (II) SIX HUNDRED AND TWENTY-FIVE DOLLARS (CDN$625.00)]**. ", - "In order for :name to meet the following access needs, they will need to know who requested them. Do you give permission to share it is you who requested the following access needs?": "Pour que :name puisse répondre aux besoins en matière d'accessibilité suivants, il leur est nécessaire de connaître la personne qui les a demandés. Nous autorisez vous à dire que vous avez formulé ces besoins en matière d'accessibilité ?", "In order to create a successful exchange, we ask Consultation Participants to provide this information so that The Accessibility Exchange can match Consultation Participants with an engagement that is looking for someone with your experiences.": "Afin de créer un échange réussi, nous demandons aux personnes participant à des consultations de fournir ces informations afin que le Connecteur pour l'accessibilité puisse mettre en relation les participants à des consultations avec une consultation à la recherche d'une personne ayant votre expérience.", "In person": "En personne", "In progress": "En cours", @@ -957,11 +777,9 @@ "Intersectional - This engagement is looking for people who have all sorts of different identities and lived experiences, such as race, gender, age, sexual orientation, and more.": "Intersectionnel - Cette consultation s'adresse à toute personne, peu importe leurs axes d'identités intersectionnels (telles que la race, le sexe, l'âge, l'orientation sexuelle) et leurs expériences vécues.", "Intersectional outreach": "Approche intersectionnelle", "Intervenor": "Intervenant", - "Interview at their own pace": "Effectuer l'entrevue à leur propre rythme", "Interview at your own pace": "Possibilité de répondre aux questions d'entrevues à votre propre rythme", "Interviews": "Entrevues", "Interviews can happen between the following dates:": "Les entrevues sont possibles entre les dates suivantes :", - "Interviews will take place between :start - :end": "Les entrevues auront lieu dans la période du :start au :end", "Interviews will take place between :start and :end.": "Les entrevues auront lieu dans la période du :start au :end.", "In the event that IRIS terminates or suspends the User’s access to the Services or this Agreement under this Subsection 16(b), User will receive a pro-rata refund of any prepaid fees paid to IRIS for which Services have not been provided. IRIS shall not be liable to you or to any third party for any suspension or discontinuance of the Services or the Platform, including on account of any expenditures or investments or other commitments made or actions taken in reliance on the expected continuation of the Services or Platform. Any suspected fraudulent, abusive or illegal activity that may be grounds for termination of your use of the Platform and may be referred to appropriate law enforcement authorities.": "In the event that IRIS terminates or suspends the User’s access to the Services or this Agreement under this Subsection 16(b), User will receive a pro-rata refund of any prepaid fees paid to IRIS for which Services have not been provided. IRIS shall not be liable to you or to any third party for any suspension or discontinuance of the Services or the Platform, including on account of any expenditures or investments or other commitments made or actions taken in reliance on the expected continuation of the Services or Platform. Any suspected fraudulent, abusive or illegal activity that may be grounds for termination of your use of the Platform and may be referred to appropriate law enforcement authorities.", "Introduction video": "Vidéo de présentation", @@ -982,43 +800,29 @@ "Is there a group with a specific experience of identity you are interested in engaging?": "Y a-t-il un groupe ayant une identité spécifique que vous souhaitez impliquer ?", "Is there a specific disability or Deaf group you are interested in engaging?": "Y a-t-il un groupe spécifique de personnes en situation de handicap ou de personnes sourdes que vous souhaitez impliquer ?", "Is there something you are looking for that isn’t here?": "Cherchez-vous quelque chose qui n'est pas ici ?", - "Is there training on how to design and facilitate and effective consultation?": "Existe-t-il des formations sur la conception et l'animation d'une consultation réussie ?", "Is this engagement paid or volunteer?": "Cette consultation est-elle rémunérée ou bénévole ?", - "It is a good idea to hold more than one consultation with participants to ensure that you are capturing the information correctly and to provide an opportunity for additional feedback. This will demonstrate to participants that they are being heard, and that their feedback matters.": "Il est judicieux d'organiser plus d'une consultation avec les personnes participantes afin de s'assurer que vous saisissez correctement les informations et d'offrir la possibilité de fournir une rétroaction supplémentaire. Cela démontrera aux personnes concernées qu'elles sont entendues et que leurs commentaires comptent.", - "It is most likely that you will have Consultation Participants who will request English, French, ASL, and LSQ.": "Il est fort probable que vous ayez des personnes consultantes qui demandent l'anglais, le français, l'ASL et la LSQ.", - "It is useful to share the objectives with your participants and be clear about the limits of the consultation. This will avoid participants feeling that their feedback is missing from your report. Being clear from the outset will help build trust and foster a good working relationship with your participants.": "Il est utile de communiquer vos objectifs aux personnes participantes et d'être clair sur les limites de la consultation. Cela évitera que les personnes participantes aient l'impression que leurs commentaires ne figurent pas dans votre rapport. Le fait d'être clair dès le départ permettra d'instaurer la confiance et de favoriser une bonne relation de travail avec les personnes participantes.", - "It looks like your project is complete, based on your project dates. If this is not accurate, please update your project duration dates.": "Il semblerait que votre projet soit terminé, d'après les dates de votre projet. Si cela n'est pas exact, veuillez mettre à jour les dates de déroulement de votre projet.", "It seems as though you have not created any projects yet.": "Il semblerait que vous n'ayez pas encore créé de projets.", - "It’s been at least a year since you’ve updated your communication and consultation preferences. Please update this so you are matched to the appropriate projects.": "Vous n'avez pas mis à jour vos préférences en matière de communication et de consultation depuis au moins un an. Veuillez les mettre à jour pour que vous soyez associé aux projets les plus pertinents pour vous.", - "It’s been at least a year since you’ve updated your matching information. Please update this information so that we can be sure to match you with the appropriate projects.": "Vous n'avez pas mis à jour vos informations de jumelage depuis au moins un an. Veuillez mettre à jour ces informations afin que nous puissions être sûrs de vous jumeler avec les projets les plus appropriés pour vous.", - "It’s been at least a year since you’ve updated your matching information. Please update this so you are matched to the appropriate projects.": "Vous n'avez pas mis à jour vos informations de jumelage depuis au moins un an. Veuillez les mettre à jour afin que vous puissiez être jumelé aux projets les plus pertinents pour vous.", - "It’s been at least a year since you’ve updated your public page. Please review and update any changes.": "Vous n'avez pas mis à jour votre page publique depuis au moins un an. Veuillez revoir et mettre à jour les changements éventuels.", "I work for a private business, the federal government, or a public sector organization regulated under the Accessible Canada Act.": "Je travaille pour une entreprise privée, le gouvernement fédéral ou une organisation du secteur public réglementée par la Loi canadienne sur l'accessibilité.", "I would like to speak to someone to discuss additional access needs or concerns": "Je voudrais parler à une personne afin de discuter de mes besoins ou préoccupations supplémentaires en matière d'accessibilité", "I’ve gone to orientation, why isn’t this updated?": "I’ve gone to orientation, why isn’t this updated?", "Join our accessibility community": "Rejoignez notre communauté en faveur de l'accessibilité", "Keeping my information up to date": "Maintenir mes informations à jour", "Language": "Langue", - "Language: :language": "Langue : :language", "Language: :locale": "Langue: :locale", "Language :language added.": "Langue :language ajoutée.", "Language :language removed.": "Langue :language supprimée.", "Language :number": "Langue :number", "Language groups": "Communautés linguistiques", - "Language groups they can connect to": "Communautés linguistiques auprès desquels ils peuvent servir d'intermédiaire", "Language preferences": "Préférences linguistiques", "Languages": "Langues", "languages": "langues", "Languages :name uses": "Langues que :name parle", "Languages available": "Langues disponibles", - "Langue des signes québécoise (LSQ)": "Langue des signes québécoise (LSQ)", "Large text": "Grand texte", "Last updated: :date": "Dernière mise à jour le :date", - "Last updated on :date.": "Dernière mise à jour le :date.", "Later, you will have the chance to choose the language or languages for your consultations.": "Par la suite, vous aurez la possibilité de choisir la ou les langues pour les consultations auxquelles vous participerez.", "Latin American": "Hispanique \/ Latino", "Learn about our pricing": "Découvrez nos tarifs", - "Learn how to plan an inclusive and accessible consultation": "Apprenez à planifier une consultation inclusive et accessible", "Learning disabilities": "Troubles d'apprentissage", "Learn more": "En savoir plus", "Learn more about being a Community Connector": "Apprenez-en plus sur le rôle de personne facilitatrice communautaire", @@ -1040,7 +844,6 @@ "LinkedIn page": "Page LinkedIn", "Links to resource": "Lien(s) vers la ressource", "Link to join": "Lien pour se joindre à la rencontre", - "Link to join:": "Lien pour se joindre à la rencontre :", "link to join the meeting": "lien pour rejoindre la réunion", "Lived and living experiences": "Expériences vécues", "Lived experience": "Expérience vécue", @@ -1050,10 +853,7 @@ "Lived or living experience": "Expérience vécue", "Living in urban, rural, or remote areas": "Vivant dans des zones urbaines, rurales ou éloignées", "Location": "Emplacement", - "Location: :location": "Emplacement: :location", - "Location :location": "Emplacement :location", "Location :number": "Emplacement :number", - "Locations": "Emplacements", "Mailing Address": "Adresse postale", "Mailing address": "Adresse postale", "main menu": "menu principal", @@ -1074,8 +874,6 @@ "Mark as read": "Marquer comme lu", "Mark estimate as returned": "Marquer le devis comme retourné", "Mark the estimate as \"returned\" by visiting the link below and searching for :projectable.": "Marquez le devis comme « retourné » en visitant le lien ci-dessous et en recherchant :projectable.", - "Matching information": "Information correspondante", - "Matching service": "Service de jumelage", "match you to their projects or engagements": "vous jumeler à leurs projets ou consultations", "Materials": "Matériels", "Materials are sent to participants by": "Le matériel de consultation sera envoyé aux personnes participantes le", @@ -1084,7 +882,6 @@ "Me": "Moi", "means that a field is required.": "singifie qu'un champ est requis.", "meeting date": "date de la réunion", - "Meeting date :date": "Date de la réunion :date", "Meeting dates": "Dates de réunion", "meeting end time": "heure de fin de la réunion", "Meetings": "Réunions", @@ -1097,7 +894,6 @@ "Mental health-related disabilities": "Incapacités liées à la santé mentale", "Menu": "Menu", "Microsoft Teams": "Microsoft Teams", - "Microsoft Word": "Microsoft Word", "Middle Eastern": "Moyen-oriental", "Minimum number of participants": "Nombre minimum de personnes participantes", "minimum number of participants": "", @@ -1106,8 +902,6 @@ "Module - :title": "Module - :title", "Modules": "Modules", "Monday": "Lundi", - "Month": "Mois", - "more": "plus", "Most of the time, we will not need to tell them who requested the access need. However, for some of the access needs, we will—and we’ll tell you which ones below.": "Most of the time, we will not need to tell them who requested the access need. However, for some of the access needs, we will—and we’ll tell you which ones below.", "Mountain Standard or Daylight Time": "Heure normale ou avancée des Rocheuses", "Mountain Standard Time*": "Heure normale des Rocheuses*", @@ -1115,7 +909,6 @@ "My dashboard": "Mon tableau de bord", "My email": "Mon adresse courriel", "My organization’s page": "La page de mon organisation", - "My organization’s role: :roles": "Le rôle de mon organisation : :roles", "My phone number": "Mon numéro de téléphone", "My projects": "Mes projets", "My public page": "My public page", @@ -1127,7 +920,6 @@ "My support person’s phone number": "Numéro de téléphone de la personne me soutenant", "My trainings": "Mes formations", "Métis": "Métis", - "N\/A": "Sans objet", "Name": "Nom", "Name (English)": "Nom (anglais)", "Name (French)": "Nom (français)", @@ -1137,11 +929,9 @@ "Name of organization — English": "Nom de l'organisation — en anglais", "Name of organization — French": "Nom de l’organisation — en français", "Name of training": "Nom de la formation", - "Need someone to call and walk through information": "Need someone to call and walk through information", "Needs printed version to be sent to:": "A besoin d'une version imprimée envoyée à :", "Neurodivergence": "Neurodiversité", "New Brunswick": "Nouveau-Brunswick", - "New engagement by :projectable": "Nouvelle consultation par :projectable", "New estimate approval": "Nouvelle approbation du devis", "New Estimate Approval from :projectable": "Nouvelle approbation de devis de :projectable", "New estimate request": "Nouvelle demande de devis", @@ -1150,10 +940,8 @@ "Newfoundland Standard or Daylight Time": "Heure normale ou heure avancée de Terre-Neuve", "New password": "Nouveau mot de passe", "New project": "Nouveau projet", - "New project by :projectable": "Nouveau projet par :projectable", "New reports uploaded": "Nouveaux rapports téléversés", "Next": "Suivant", - "Next webinar": "Webinaire suivant", "No": "Non", "No, don’t share my access needs": "Non, veuillez ne pas partager mes besoins en matière d'accessibilité", "No, give me a group with intersectional experiences and\/or identities": "Non, proposez-moi un groupe avec des expériences et\/ou des identités intersectionnelles", @@ -1185,8 +973,6 @@ "Not available": "Non disponible", "Not available.": "Non disponible.", "not available yet": "pas encore disponible", - "Note": "Remarque", - "Note-taking and analysis": "Prise de notes et analyse", "Note-taking services": "Services de prise de notes", "Notes": "Remarques", "Not everyone has had access to paid or volunteer experiences, but there are a lot of experiences that build certain skills and strengths. You can share more about that here. If you have had paid or volunteer experiences, you can also include that.": "Tout le monde n'a pas forcément eu la possibilité de vivre des expériences rémunérées ou bénévoles, mais il existe de nombreuses expériences qui permettent de développer certaines compétences et forces. Vous pouvez en parler ici. Si vous avez eu des expériences rémunérées ou bénévoles, vous pouvez également le mentionner.", @@ -1196,7 +982,6 @@ "Notification preferences": "Préférences de notification", "Notifications": "Notifications", "notifications navigation": "navigation des notifications", - "Notify me on this website": "Me prévenir sur ce site Internet", "Notify me or my support person directly": "Avisez-moi ou avisez la personne me fournissant du soutien directement", "Notify your organization’s contact person directly": "Prévenez directement la personne de contact de votre organisation", "Notify your organization’s team through the website": "Informez l'équipe de votre organisation par le biais du site Internet", @@ -1205,7 +990,6 @@ "No trainings found.": "Aucune formation trouvée.", "Not ready to publish": "Pas prêt à publier", "Not received": "Non reçu", - "Not started": "Non commencé", "Not started yet": "Pas encore commencé", "Notwithstanding the foregoing, you will have no obligation to indemnify or hold harmless any Indemnitee from or against any liability, losses, damages or expenses incurred as a result of any action or inaction of such Indemnitee.": "Notwithstanding the foregoing, you will have no obligation to indemnify or hold harmless any Indemnitee from or against any liability, losses, damages or expenses incurred as a result of any action or inaction of such Indemnitee.", "Not yet approved": "Not yet approved", @@ -1218,7 +1002,6 @@ "Nunavut": "Nunavut", "obtain or attempt to access or otherwise obtain any materials or information through any means not intentionally made available or provided for through the Platform;": "obtain or attempt to access or otherwise obtain any materials or information through any means not intentionally made available or provided for through the Platform;", "Off": "Inactif", - "Offer transparency around what is out of scope": "Faites preuve de transparence sur ce qui est hors du champ d'application", "Okay": "Okay", "Older people (65+)": "Personnes aînées (65+)", "On": "Actif", @@ -1227,35 +1010,27 @@ "Once you are done watching the videos for all the modules, you can take this quiz. Upon passing this quiz, you can receive your certificate of completion.": "Une fois que vous aurez terminé de regarder les vidéos de tous les modules, vous pourrez répondre à ce jeu-questionnaire. En réussissant ce jeu-questionnaire, vous recevrez votre certificat de réussite.", "Once you confirm your participation for an engagement, we share your access needs with the government or business that you are working with. This will help them seek out the appropriate service providers to meet your access need(s).": "Lorsque vous confirmez votre participation à une consultation, nous partageons vos besoins en matière d'accessibilité avec le gouvernement ou l'entreprise avec lesquels vous travaillez. Cela les aidera à trouver les fournisseurs de services appropriés pour répondre à votre ou vos besoins en matière d'accessibilité.", "Once you confirm your participation for an engagement, we will share your preferred contact method and your contact information with the government or business. This information enables them to contact you to discuss the details of your participation.": "Lorsque vous confirmez votre participation à une consultation, nous partageons votre méthode de communication préférée et vos coordonnées avec le gouvernement ou l'entreprise. Ces informations leur permettent de vous contacter pour discuter des détails de votre participation.", - "Once you delete your account, you will not be able to recover it": "Une fois que vous aurez supprimé votre compte, il vous sera impossible de le récupérer", "Once you delete your account, you will not be able to recover it.": "Une fois que vous aurez supprimé votre compte, il vous sera impossible de le récupérer.", - "Once you delete your organization profile, there will be a grace period of 30 days, during which you could recover it. After 30 days, it will be deleted forever — this cannot be reversed.": "Une fois que vous aurez supprimé le profil de votre organisation, il y aura une période de grâce de 30 jours, pendant laquelle vous pourrez le récupérer. Après 30 jours, il sera supprimé pour toujours - ceci ne peut être annulé.", "Once you have hired a Community Connector, please add their information here.": "Une fois que vous aurez engagé une personne facilitatrice communautaire, veuillez ajouter ses informations ici.", "Once you have hired a Community Connector, please add them here. This will give them access to your engagement details and allow them to add participants.": "Une fois que vous aurez engagé une personne facilitatrice communautaire, veuillez l'ajouter ici. Cela leur donnera accès aux détails de votre consultation et leur permettra d'ajouter des personnes participantes.", "Once you have hired a Community Organization, please select the organization below.": "Une fois que vous aurez engagé une organisation communautaire, veuillez sélectionner l'organisation ci-dessous.", "Once you publish your engagement details, anyone on this website will be able to access it.": "Une fois que vous aurez publié les détails de vos consultations, n'importe qui sur ce site Internet pourra y accéder.", - "Once you publish your profile, other users on this website can access your page.": "Une fois que vous aurez publié votre profil, les autres membres de ce site Internet pourront accéder à votre page.", - "Once you publish your project, others can find it.": "Une fois que vous aurez publié votre projet, d'autres personnes pourront le trouver.", "Once your account has been approved, you can review and publish your organization’s page. You must have completed all the previous steps.": "Once your account has been approved, you can review and publish your organization’s page. You must have completed all the previous steps.", "Once your account has been approved, you can review and publish your page. You must have completed all the previous steps.": "Once your account has been approved, you can review and publish your page. You must have completed all the previous steps.", "Once you sign up, you can sign up for an orientation session to learn about what you can do on this website. You can also fill in information about your organization so businesses and government can learn more about what you do and who you represent or serve.": "Une fois inscrit, vous pouvez vous inscrire à une séance d'orientation pour découvrir ce que vous pouvez faire sur ce site. Vous pouvez également fournir des informations sur votre organisation afin que les entreprises et les gouvernements puissent en savoir plus sur ce que vous faites et qui vous représentez ou soutenez.", "Once you sign up, you can sign up for an orientation session to learn about what you can do on this website. You can also fill in information to facilitate a smoother collaboration with organizations, such as access needs, communication preferences, and consultation preferences.": "Une fois inscrit, vous pouvez vous inscrire à une séance d'orientation pour découvrir ce que vous pouvez faire sur ce site. Vous pouvez également remplir des informations destinées à rendre la collaboration avec les organisations plus harmonieuse, telles que vos besoins en matière d'accessibilité, vos préférences en ce qui concerne les communications ou encore les consultations.", "Once you’ve reviewed the project details, please:": "Une fois que vous aurez revu les détails du projet, veuillez :", - "One of the key parts of preparing for your consultation with the disability and Deaf communities is making sure that your consultations are done in an accessible and inclusive way.": "L'un des éléments clés de la préparation de votre consultation avec les communautés de personnes en situation de handicap et de personnes sourdes est de s'assurer que vos consultations se déroulent d'une manière accessible et inclusive.", - "Online form, such as survey monkey or google forms": "Formulaire en ligne, tel que SurveyMonkey ou Google Forms", "Only people with specific disabilities and\/or Deaf people": "Personnes ayant des handicaps spécifiques et\/ou personnes sourdes", "Only reachable within cross-disability and Deaf or intersectional groups": "Only reachable within cross-disability and Deaf or intersectional groups", "Ontario": "Ontario", "Open call": "Invitation ouverte", "Opens in new tab": "S'ouvre dans un nouvel onglet", "optional": "optionnel", - "Optional": "Optionnel", "Organization details": "Détails de l'organisation", "Organization information": "Informations sur l'organisation", "Organization information that will set you up for running consultations.": "Renseignements sur l'organisation qui vous permettront de mener des consultations.", "Organization name": "Nom de l'organisation", "organization name": "nom de l'organisation", - "Organizations": "Organisations", "organizations and businesses to work on accessibility projects together.": "les organisations et entreprises afin de travailler ensemble sur des projets relatifs à l'accessibilité.", "Organizations can decide which criteria they would like the participants for a project to have. They then have a choice between:": "Les organisations peuvent décider des critères qu'elles souhaitent voir figurer parmi les personnes participantes à un projet. Elles ont alors le choix entre :", "Organization selection criteria": "Critères de sélection des organisations", @@ -1264,23 +1039,15 @@ "Organizations which have some constituency of persons with disabilities, Deaf persons, or family members, but these groups are not their primary mandate. Groups served, for example, can include: Indigenous organizations, 2SLGBTQ+ organizations, immigrant and refugee groups, and women’s groups.": "Organisations qui comptent parmi leurs membres des personnes en situation de handicap, des personnes sourdes ou des membres de leur famille, mais pour qui ces groupes ne constituent pas leur vocation première. Les groupes desservis peuvent inclure : les organisations autochtones, les organisations 2SLGBTQ+, les groupes de personnes migrantes et réfugiées et les groupes de femmes.", "Organizations “of” disability, Deaf, and family-based organizations. Constituted primarily by people with disabilities.": "Organisations de personnes en situation de handicap, de personnes sourdes, et de familles. Constituées principalement de personnes en situation de handicap.", "Organization website": "Site Internet de l'organisation", - "Orientation completed": "Orientation complétée", "Other": "Autre", "Other (please describe)": "Autre (veuillez décrire)", "Other (please specify)": "Autre (veuillez préciser)", "Other accepted format": "Autre format accepté", "other accepted format": "autre format accepté", "Other civil society organizations relevant to people with disabilities, Deaf people, and supporters": "Autres organisations de la société civile pertinentes pour les personnes en situation de handicap, les personnes sourdes et leurs réseaux de soutien", - "Other disability": "Autre incapacité", - "Other engagements for this project": "Autres consultations pour ce projet", - "Other experiences or identities": "Autres expériences ou identités", "Other identities": "Autres axes d'identité", - "Other identities included": "Les autres identités comprennent", "Other identity groups": "Autres groupes identitaires", - "Other identity groups they can connect to": "Autres groupes identitaires auprès desquels ils peuvent servir d'intermédiaire", - "Other languages": "Autres langues", "Other public sector organization, which is regulated by the Accessible Canada Act": "Autre organisation du secteur public qui est réglementée par la Loi canadienne sur l'accessibilité", - "Other webinars": "Autres webinaires", "Other – in-person or virtual meeting": "Autre - réunion en personne ou virtuelle", "Other – written or recorded response": "Autre – réponse écrite ou enregistrée", "Our team does not have people with lived and living experiences of disability or being Deaf.": "Notre équipe ne compte pas de personnes en situation de handicap ou de personne sourdes, ou de personnes ayant une expérience vécue du handicap ou de la surdité.", @@ -1297,18 +1064,14 @@ "Parliamentary entities": "Parliamentary entities", "Participant": "Personne participante", "Participant access needs": "Besoins en matière d'accessibilité des personnes participantes", - "Participant consent forms": "Formulaires de consentement des personnes participantes", "Participant details": "Détails de la personne participante", "Participant Invitation": "Participant Invitation", "Participant location": "Emplacement de la personne participante", - "Participant non-disclosure agreement": "Entente de confidentialité de la personne participante", "Participants": "Personnes participantes", "participants confirmed": "personnes participantes confirmées", "Participant selection criteria": "Critères de sélection des personnes participantes", "Participants must respond to their invitation by the following date": "Les personnes participantes doivent répondre à l'invitation avant la date suivante", "Participants must sign up for this engagement by the following date": "Les personnes intéressées doivent s'inscrire à cette consultation avant la date suivante", - "Participants taking part in **interviewing at their own pace** will be paid :pay.": "Les personnes participant à **l'entrevue à leur propre rythme** seront rémunérées :pay.", - "Participants taking part in **real time interviews** will be paid :pay.": "Les personnes participant à des **entrevues en direct** seront rémunérées :pay.", "Participants who have additional concerns or needs to be discussed": "Les personnes ayant des préoccupations ou des besoins supplémentaires à discuter", "Participate in consultations": "Participe à des consultations sur l'accessibilité", "Participate in consultations for organizations and businesses who are working on accessibility projects, and get paid for your participation.": "Participer à des consultations pour des organisations et des entreprises qui travaillent sur des projets relatifs à l'accessibilité et être payé pour votre participation.", @@ -1316,9 +1079,7 @@ "Participating in engagements": "Participer à des consultations", "Pause": "Pause", "Payment": "Paiement", - "Payment amount": "Montant du paiement", "Payment information": "Informations de paiement", - "Payment method": "Moyen de paiement", "Payment type": "Type de paiement", "PDF": "PDF", "Pending": "En attente", @@ -1326,13 +1087,10 @@ "Pending invitations": "Invitations en attente", "People across any disabilities and Deaf people": "Personnes ayant toutes sortes de handicap et personnes sourdes", "People and organizations": "Personnes et organisations", - "People who identify with one or more of the 2SLGBTQIA+ identities": "Personnes s'identifiant à une ou plusieurs des identités 2SLGBTQIA+", "People with disabilities and\/or Deaf people": "Personnes en situation de handicap et\/ou personnes sourdes", - "People with lived experience of disability or being Deaf.": "Personnes ayant une expérience vécue du handicap ou de la surdité.", "Phase of consultation": "Phase de la consultation", "Phases of consultation": "Phase(s) de la consultation", "Phone": "Téléphone ", - "Phone: :phone": "Téléphone: :phone", "Phone call": "Appel téléphonique", "Phone calls": "Appels téléphoniques", "Phone number": "Numéro de téléphone", @@ -1345,16 +1103,11 @@ "Plan and share your project with others on this website.": "Planifiez et partagez votre projet avec d'autres personnes sur ce site Internet.", "Play": "Play", "Please:": "Veuillez :", - "Please attend an orientation session for your roles as :role.|Please attend an orientation session for each of your roles as :firstRole and :lastRole.": "Veuillez assister à une session d'orientation pour vos rôles en tant que :role.|Veuillez assister à une session d'orientation pour chacun de vos rôles en tant que :firstRole et :lastRole.", - "Please be aware that it is highly likely that people will request English, French, American Sign Language (ASL), and Langue des signes québécoise (LSQ)": "Sachez qu'il est très probable que des personnes requièrent l'anglais, le français, l'American Sign Language (ASL) et la Langue des signes québécoise (LSQ)", "Please be specific about where you would like the participants to go to participate in this engagement.": "Veuillez préciser le lieu où vous souhaitez que les personnes se rendent pour participer à cette consultation.", - "Please browse our Resources page, to help you plan an accessible and inclusive consultation.": "Veuillez consulter notre page de ressources afin de vous aider à planifier une consultation accessible et inclusive.", "Please check all that apply.": "Veuillez cocher toutes les cases qui s'appliquent.", "Please choose a new password for The Accessibility Exchange": "Veuillez choisir un nouveau mot de passe pour le Connecteur pour l'accessibilité", "Please choose the language or languages you would like to use on this website.": "Veuillez choisir la ou les langues que vous souhaitez utiliser sur ce site Internet.", "Please complete this section so that you can be set up to participate.": "Please complete this section so that you can be set up to participate.", - "Please complete this section so that you can be set up to participate in consultations.": "Veuillez remplir cette section afin de pouvoir participer aux consultations.", - "Please complete this section so that you can be set up to participate in consultations and work on projects.": "Veuillez remplir cette section afin de pouvoir participer à des consultations et travailler sur des projets.", "Please complete your engagement details.": "Veuillez compléter les détails de votre consultation.", "Please complete your engagement details so potential participants can know what they are signing up for.": "Veuillez compléter les détails de votre consultation afin que les personnes intéressées puissent savoir à quoi elles s'engagent.", "Please confirm new password": "Veuillez confirmer le nouveau mot de passe", @@ -1366,7 +1119,6 @@ "Please create an account to join The Accessibility Exchange.": "Veuillez créer un compte pour vous joindre au Connecteur pour l'accessibilité.", "Please create your organization’s page so that other members of this website can find you.": "Veuillez créer la page de votre organisation afin que les autres membres de ce site Internet puissent vous trouver.", "Please create your page to share more about who you are, your experiences, and your interests.": "Veuillez créer votre page pour en dire plus sur qui vous êtes, vos expériences et vos intérêts.", - "Please create your profile to share more about who you are, your experiences, and your interests.": "Veuillez créer votre profil pour en dire plus sur qui vous êtes, vos expériences et vos intérêts.", "Please describe how the Disability and Deaf communities will be impacted by the outcomes of your project.": "Veuillez décrire comment les communautés des personnes en situation de handicap et des personnes sourdes seront touchées par les résultats de votre projet.", "Please describe this engagement.": "Veuillez décrire cette consultation.", "Please enter a :attribute that is less than or the same as the ideal number of participants.": "", @@ -1375,14 +1127,11 @@ "Please enter a valid date for the :attribute.": "", "Please enter a valid website link under “Accessibility and Inclusion links”.": "Veuillez saisir un lien Internet valide sous \"Liens en lien avec l'accessibilité et l'inclusion\".", "Please enter the email address of the individual you have hired as a Community Connector.": "Veuillez entrer l'adresse courriel de la personne que vous avez embauchée en tant que personne facilitatrice communautaire.", - "Please enter your collaboration preferences": "Veuillez entrer vos préférences de collaboration", "Please enter your own name and email, rather than you organization’s. You will be able to create your organization in a later step.": "Please enter your own name and email, rather than you organization’s. You will be able to create your organization in a later step.", - "Please fill this out and email it back to us for our first meeting together.": "Veuillez remplir ce document et nous le renvoyer par courriel en vue de notre première rencontre.", "Please identify the type of Regulated Organization yours is:": "Veuillez identifier le type d'organisation réglementée que vous êtes :", "Please include any links that describes the accessibility and inclusion initiatives your regulated entity has. This can include reports, case studies, and more.": "Veuillez inclure tout lien qui décrit les initiatives en matière d'accessibilité et d'inclusion de votre entité réglementée. Cela peut inclure des rapports, des études de cas, et plus encore.", "Please indicate how you would like to be notified of a new person or people being added to your engagements.": "Veuillez indiquer comment vous souhaitez être informé de l'ajout d'une ou plusieurs nouvelles personnes à vos consultations.", "Please indicate how you would like to be notified of a project estimate that has been returned for you to review.": "Veuillez indiquer comment vous aimeriez être informé qu'un devis pour un projet vous a été retourné.", - "Please indicate how you would like to be notified of new participants being added to your engagements.": "Veuillez indiquer comment vous souhaitez être informé de l'ajout de nouvelles personnes participantes à vos consultations.", "Please indicate how you would like to be notified of new projects. ": "Veuillez indiquer comment vous souhaitez être informé de tout nouveau projet. ", "Please indicate how you would like to be notified to review and update your information.": "Veuillez indiquer comment vous souhaitez être contacté lorsque vient le temps de réviser et mettre à jour vos informations.", "Please indicate if the reports will be publicly available.": "Veuillez indiquer si les rapports seront accessibles au public.", @@ -1409,40 +1158,26 @@ "Please list any languages that you will be using to describe your regulated organization.": "Veuillez énumérer toutes les langues que vous utiliserez pour décrire votre organisation sous réglementation fédérale.", "Please list any training related to accessibility or inclusion that your team members have received.": "Veuillez énumérer toute formation liée à l'accessibilité ou à l'inclusion que les membres de votre équipe ont reçue.", "Please note that all organizations have been asked to provide gender neutral and accessible washrooms by default.": "Please note that all organizations have been asked to provide gender neutral and accessible washrooms by default.", - "Please note that if you want to reach a specific identity group, you will not be able to use our matching service. You can reach them through an open call project, or go through a Community Connector or community organization.": "Veuillez noter que si vous souhaitez rejoindre un groupe de personnes ayant des axes d'ientité spécifiques, vous ne pourrez pas utiliser notre service de jumelage. Vous pouvez par contre les rejoindre par le biais d'un appel de projet public, ou passer par une personne facilitatrice communautaire ou encore par une organisation communautaire.", "Please note that selecting some of these options may open up new follow-up questions below them. ": "Veuillez noter que sélectionner certaines des options suivantes peut faire apparaître de nouvelles questions complémentaires. ", "Please provide personal information that will help us find consultations for you to participate in.": "Veuillez fournir les renseignements personnels nécessaires pour nous aider à trouver des consultations auxquelles vous pourriez participer.", "Please provide the details for a member of your team whom potential participants may contact to ask questions.": "Veuillez fournir les coordonnées de la personne de votre équipe que les personnes susceptibles de participer peuvent contacter pour leur poser des questions.", "Please reach out to us and we can try to help.": "N'hésitez pas à nous contacter et nous nous efforcerons de vous aider.", "Please read these terms of service carefully.": "Veuillez lire attentivement ces conditions de service.", "Please reset your password for The Accessibility Exchange": "Veuillez réinitialiser votre mot de passe pour le Connecteur pour l'accessibilité", - "Please respond by :date.": "Veuillez répondre avant le :date.", "Please review and publish your engagement details.": "Veuillez réviser et publier les détails de votre consultation.", - "Please review and update your communication and consultation preferences": "Veuillez réviser et mettre à jour vos préférences en matière de communication et de consultation", - "Please review and update your matching information": "Veuillez réviser et mettre à jour vos informations de jumelage", - "Please review and update your public page": "Veuillez réviser et mettre à jour votre page publique", "Please review your page. There is some information for your new role that you will have to fill in.": "Merci de vérifier l'information présentée sur cette page. De l'information sur les nouveaux rôles que vous avez sélectionnés est disponible.", - "Please see the resource [Planning a Safe, Accessible Consultation](:url).": "Veuillez consulter la ressource [Planification d'une consultation sûre et accessible](:url).", "Please select a language.": "", "Please select a language that the engagement documents will be in.": "", "Please select a language to remove.": "", "Please select a recruitment method": "Veuillez sélectionner une méthode de recrutement", - "Please select disability groups that your organization specifically represents": "Veuillez sélectionner les groupes de personnes en situation de handicap que votre organisation représente spécifiquement", "Please select the disability and\/or Deaf groups that you can connect to.": "Veuillez sélectionner les groupes de personnes en situation de handicap et\/ou de personnes sourdes auprès desquels vous pouvez agir comme intermédiaire.", "Please select the disability and\/or Deaf groups that your organization :represents_or_serves_and_supports": "Veuillez sélectionner le ou les groupes de personnes en situation de handicap ou de personnes sourdes que votre organisation :represents_or_serves_and_supports", - "Please select the disability groups that you can connect to.": "Veuillez sélectionner les groupes de personnes en situation de handicap avec lesquelles vous pouvez servir d'intermédiaire.", - "Please select the languages that you can translate your page into.": "Veuillez sélectionner les langues dans lesquelles vous êtes en mesure de traduire votre page.", "Please select the languages that your engagement information can be translated into by your organization.": "Veuillez sélectionner les langues dans lesquelles les informations sur les consultations peuvent être traduites par votre organisation.", "Please select the languages that your project information can be translated into by your organization.": "Veuillez sélectionner les langues dans lesquelles les informations sur votre projet peuvent être traduites par votre organisation.", "Please select the original project for which this is a follow-up:": "Veuillez sélectionner le projet original pour lequel il s'agit d'un suivi :", "Please select the specific disability and\/or Deaf groups that you can connect to.": "Veuillez sélectionner les catégories de personnes en situation de handicap et\/ou de personnes sourdes auprès desquelles vous pouvez servir d'intermédiaire.", "Please select the specific disability and\/or Deaf groups that your organization :represents_or_serves_and_supports": "Veuillez sélectionner les types de handicap ou les groupes de personnes sourdes que votre organisation :represents_or_serves_and_supports", "Please select your time zone…": "Veuillez sélectionner votre fuseau horaire…", - "Please sign this agreement and send to :email": "Veuillez signer cette entente et l'envoyer à :email", - "Please sign up for this engagement by:": "Veuillez vous inscrire à cette consultation d'ici le :", - "Please sign up for this engagement by :date.": "Veuillez vous inscrire à cette consultation d'ici le :date.", - "Please take the quiz to complete": "Veuillez répondre au jeu-questionnaire pour terminer", - "Please take this quick quiz to confirm your understanding. Once you pass the quiz, you will receive credit for finishing the webinar.": "Veuillez répondre à ce jeu-questionnaire rapide pour confirmer votre bonne compréhension. Une fois que vous aurez réussi le jeu-questionnaire, vous recevrez un certificat de complétion du webinaire.", "Please tell us more about the individuals you’d like participating in your engagement.": "Veuillez nous en dire plus sur les personnes que vous aimeriez impliquer dans votre consultation.", "Please tell us more about the organization you’d like participating in your engagement.": "Veuillez nous en dire plus sur l'organisation que vous souhaitez impliquer dans votre consultation.", "Please tell us the type of organization you are representing.": "Please tell us the type of organization you are representing.", @@ -1450,12 +1185,9 @@ "Please tell us what you would like to do on this website.": "Veuillez nous dire ce quel rôle vous souhaitez occuper sur la plateforme.", "Please tell us which community or communities your organization :represents_or_serves_and_supports.": "Dites-nous en plus sur la ou les communautés que votre organisation :represents_or_serves_and_supports.", "Please tell us which language you would like to use on The Accessibility Exchange.": "Veuillez nous indiquer la langue que vous souhaitez utiliser sur le Connecteur pour l'accessibilité.", - "Please try again.": "Veuillez réessayer.", "Please use the 24 hour clock time. For example, 13:00 is 1pm.": "Veuillez utiliser une heure sur 24 heures. Par exemple, 13h correspond à 1p.m.", "Please verify your email address by clicking on the link we emailed to you. If you didn’t receive the email, we will gladly send you another.": "Veuillez vérifier votre adresse courriel en cliquant sur le lien que nous vous avons envoyé. Si vous n'avez pas reçu le courriel, nous nous ferons un plaisir de vous en envoyer un autre.", "Please wait a few moments and try again.": "Veuillez attendre quelques instants et réessayer.", - "Please [update your access needs](:url) if they have changed.": "Veuillez [mettre à jour vos besoins en matière d'accessibilité](:url) s'ils ont changé.", - "Please [update your communication and consultation preferences](:url) if they have changed.": "Veuillez [mettre à jour vos préférences en matière de communication et de consultation](:url) si elles ont changé.", "Policy and programs": "Policy and programs", "Postal code": "Code postal", "Post your engagement as an open call. Anyone who fits your selection criteria can sign up. It is first-come, first-served until the number of participants you are seeking has been reached.": "Publiez votre consultation sous forme d'appel à tous et toutes. Toute personne qui correspond à vos critères de sélection pourra alors s'inscrire. Le principe du « premier arrivé, premier servi » sera appliqué jusqu'à ce que le nombre de personnes que vous recherchez soit atteint.", @@ -1465,21 +1197,16 @@ "Preferred contact method": "Méthode de contact privilégiée", "Preferred notification method": "Méthode de notification privilégiée", "present": "présent", - "Preview": "Prévisualiser", "Preview page": "Prévisualiser la page", - "Previous engagement": "Consultation précédente", "Pricing": "Tarification", "Prince Edward Island": "Île-du-Prince-Édouard", - "Printed documents": "Documents imprimés", "Printed version of engagement documents": "Version imprimée des documents de consultation", "Privacy": "Confidentialité", "PRIVACY AND CONFIDENTIALITY.": "PRIVACY AND CONFIDENTIALITY.", "privacy policy": "politique de confidentialité", "Privacy Policy": "Politique de confidentialité", "Procurement": "Procurement", - "Professional consultants who can help Regulated Organizations plan and run the consultation, analyze collected information, write accessibility reports, and book accessibility service providers.": "Des personnes consultantes professionnelles qui peuvent aider les organisations réglementées à planifier et à mener des consultations, à analyser les informations recueillies, à rédiger des rapports sur l'accessibilité et à retenir les services de prestataires de services en matière d'accessibilité.", "project": "projet", - "Project by :organization": "Projet par :organization", "Project by :projectable": "Projet par :projectable", "Project details": "Détails du projet", "Project duration": "Durée du projet", @@ -1488,7 +1215,6 @@ "project goals": "objectifs du projet", "Project goals must be provided in at least one language.": "Les objectifs du projet doivent être fournis dans au moins une langue.", "Project impact": "Impact du projet", - "Project invitation": "Invitation au projet", "Project name": "Nom du projet", "project name": "nom du projet", "Project outcome": "Résultat du projet", @@ -1505,13 +1231,7 @@ "Projects I am running": "Projets que je dirige", "Projects involved in as a Community Connector": "Projects involved in as a Community Connector", "Projects involved in as a Consultation Participant": "Projects involved in as a Consultation Participant", - "Projects I’m participating in as a :role.": "Projets auxquels je participe en tant que :role.", - "Projects I’m participating in as a Consultation Participant.": "Projets auxquels je participe en tant que personne participante.", "Projects I’m running": "Projets que je dirige", - "Projects I’m working on as an Accessibility Consultant or Community Connector.": "Projets pour lesquels je travaille en tant que personne consultante en matière d'accessibilité ou en tant que personne facilitatrice communautaire.", - "Projects my organization is contracted for as an Accessibility Consultant or Community Connector.": "Projets pour lesquels mon organisation est engagée en tant que personne consultante en matière d'accessibilité ou en tant que facilitatrice communautaire.", - "Projects my organization is participating in as a Consultation Participant.": "Projets pour lesquels mon organisation participe en tant que personne participante aux consultations.", - "Projects my organization is running.": "Projets menés par mon organisation.", "Project start date": "Date de début du projet", "Projects that are looking for people that my organization represents or supports": "Projets cherchant des personnes que mon organisation représente ou soutient", "Projects that are looking for someone with my lived experience": "Projets cherchant une personne ayant une expérience vécue similaire à la mienne", @@ -1529,37 +1249,28 @@ "Providing this information will help us match you to projects that are working on areas of interest to you.": "Fournir ces informations nous aidera à vous jumeler à des projets qui portent sur des domaines qui vous intéressent.", "Province or territory": "Province ou territoire", "province or territory": "province ou territoire", - "Public page": "Page publique", "Public profile": "Profil public", "Publish": "Publier", "Published": "Publié", - "Published on": "Publié le", "Published on: :created_at": "Publié le : :created_at", "Published on :date": "Publié le :date", "Publish page": "Publier la page", - "Publish project": "Publier le projet", "Quebec": "Québec", - "Question :current of :total": "Question :current de :total", "QUESTIONS": "QUESTIONS", "Questions are sent to participants by:": "Les questions sont envoyées aux personnes participantes par :", "Quick exit": "Sortie rapide", "Quick links": "Liens rapides", "Quiz": "Jeu-questionnaire", - "Quiz completed": "Jeu-questionnaire terminé", "Quiz results": "Résultats du jeu-questionnaire", "Quiz Results for :name": "Résultats du jeu-questionnaire pour :name", "Race and ethnicity": "Race et origine ethnique", - "Read more about these types of organizations": "En savoir plus sur ce type d'organisations", "Read our privacy policy": "Lisez notre politique de confidentialité", - "Ready": "Prêt", "Ready to publish": "Prêt à publier", - "Real-time consultations": "Consultations en temps réel", "Real time interview": "Entrevue en direct", "receive communication from them": "recevoir des communications de leur part", "Received": "Reçu", "Recommendation": "Recommandation", "Recommended": "Recommended", - "Record responses at my own pace": "Inscrire les réponses à mon propre rythme", "Recruit individuals who are Deaf or have disabilities to give input on your own projects.": "Recrutez des personnes sourdes ou en situation de handicap pour qu'elles donnent leur avis sur vos projets.", "Recruitment": "Recrutement", "Recruitment method": "Méthode de recrutement", @@ -1580,11 +1291,9 @@ "Relevant experiences (optional)": "Expériences pertinentes (optionnel)", "Relevant work and volunteer experience.": "Expérience professionnelle et bénévole pertinente.", "Reminders": "Rappels", - "Reminders (for events or for submitting engagement documents)": "Rappels (pour des événements ou pour la soumission de documents de consultation)", "Remote areas": "Zones éloignées", "Remove": "Retirer", "Remove :member from your organization": "Retirer :member de votre organisation", - "Remove :name from your organization": "Retirer :name de votre organisation", "Remove :notificationable": "Retirer :notificationable", "Remove :user from :membershipable": "Retirer :user de :membershipable", "Remove experience": "Retirer l'expérience", @@ -1595,7 +1304,6 @@ "Remove this location": "Retirer cet emplacement", "Remove this training": "Retirer cette formation", "represent": "représenter", - "Representative community organization": "Organisation communautaire représentative", "Representative organization": "Organisation représentative", "Representative organizations": "Organisation de personnes en situation de handicap ou de personnes sourdes", "represents": "représente", @@ -1606,7 +1314,6 @@ "required without an author organization": "required without an author organization", "requires VRS": "requiert le SRV", "Resend verification email": "Renvoyer le courriel de vérification", - "Reset": "Réinitialiser", "Reset your password": "Réinitialiser votre mot de passe", "Resource": "Ressource", "Resource collections": "Bibliothèques de ressources", @@ -1614,12 +1321,9 @@ "Resource link": "Resource link", "Resources": "Ressources", "Resources and training": "Ressources et formations", - "Resources by role": "Ressources par rôle", - "Resources for this phase": "Ressources pour cette étape", "Resource title": "Resource title", "Resource type": "Type de ressource", "Resource type: Training": "Resource type: Training", - "Resource type by :author": "Type de ressource par :author", "Responses are due by:": "Les réponses doivent être remises au plus tard le :", "Returned": "Retourné", "Return to dashboard": "Retour au tableau de bord", @@ -1627,15 +1331,12 @@ "Review and publish your organization’s public page": "Review and publish your organization’s public page", "Review and publish your public page": "Réviser et publier votre page publique", "Review engagement details": "Réviser les détails de la consultation", - "Review my organization’s page": "Réviser la page de mon organisation", - "Review my page": "Réviser ma page", "Review project": "Réviser le projet", "Review project details": "Vérifier les détails du projet", "Role": "Rôle", "Roles": "Rôles", "Roles:": "Rôles :", "Roles and permissions": "Rôles et permissions", - "Role|Roles": "Rôle|Rôles", "Run by": "Dirigé par", "Running": "Running", "Running a consultation": "Gestion de la consultation", @@ -1654,26 +1355,19 @@ "Save selection criteria": "Enregistrer les critères de sélection", "Scheduling": "Calendrier", "Search": "Chercher", - "Search...": "Rechercher...", "Search by account name": "Search by account name", - "Search by name...": "Recherche par nom...", "Search by organization name": "Recherche par nom d'organisation", "Search for resources": "Rechercher des ressources", - "Search name or lived experience...": "Recherche par nom ou par expérience vécue...", - "Search term": "Terme de recherche", "secondary": "secondaire", "Sector": "Secteur", "Sector:": "Secteur :", - "Sector: :sector": "Secteur : :sector", "Sectors": "Secteur(s)", "Sectors of interest": "Secteurs d'intérêt", "SECURITY.": "SECURITY.", - "Seeking Accessibility Consultants": "À la recherche de personnes consultantes en matière d'accessibilité", "Seeking Community Connector": "À la recherche d'une personne facilitatrice communautaire", "Seeking community connector": "À la recherche d'une personne facilitatrice communautaire", "Seeking Community Connectors": "À la recherche de personnes facilitatrices communautaires", "Seeking Community Organizations to consult with": "À la recherche d'organisations communautaires à consulter", - "Seeking Consultation Participants": "À la recherche de personnes intéressées à participer à des consultations", "Seeking Individual Consultation Participants": "À la recherche d'une personne intéressée à participer à des consultations", "Seeking Participants": "À la recherche de personnes intéressées à participer à des consultations", "Seeking participants": "À la recherche de personnes intéressées à participer à des consultations", @@ -1685,9 +1379,6 @@ "Selecting some of these options may open up new follow-up questions below them.": "Sélectionner certaines de ces options peut faire apparaître des questions supplémentaires.", "Select language": "Sélectionnez la langue", "Select none": "Tout déselectionner", - "Select specific cities or towns": "Sélectionnez des villes ou des villes spécifiques", - "Select specific provinces or territories": "Sélectionnez des provinces ou des territoires spécifiques", - "Select your criteria": "Sélectionnez vos critères", "Send invitation": "Envoyer l'invitation", "Send request": "Envoyer la demande", "Send the estimate and agreement to <:contact>.": "Envoyez le devis et l'entente à <:contact>.", @@ -1695,8 +1386,6 @@ "serves and supports": "sert et soutien", "Service areas": "Régions desservies", "Service delivery": "Service delivery", - "Service location": "Emplacement du service", - "Service organization": "Organisation offrant des services", "Settings": "Paramètres", "Share some information about yourself, including which communities you are connected to, so governments and businesses can get to know you and how you may be able to help them.": "Partagez quelques informations sur vous-même, y compris les communautés auxquelles vous êtes rattaché ou pour lesquelles vous pouvez servir d'intermédiaire, afin que les gouvernements et les entreprises puissent apprendre à vous connaître et savoir comment vous pouvez les aider.", "Share some information about yourself so governments and businesses can get to know you and what you may be able to help them with.": "Partagez quelques informations sur vous-même afin que les gouvernements et les entreprises puissent apprendre à vous connaître et à savoir ce que vous pourriez leur apporter.", @@ -1711,9 +1400,6 @@ "Sign language interpretation": "Interprétation en langue des signes", "Sign language interpretations": "Sign language interpretations", "Sign language translation": "Traduction en langue des signes", - "Sign language translation - :language": "Traduction de la langue des signes - :language", - "Sign language translation - ASL": "Traduction en ASL", - "Sign Language translations": "Traductions en langue des signes", "Sign Language video": "Vidéo en langue des signes", "Sign out": "Se déconnecter", "Sign up": "S’inscrire", @@ -1743,13 +1429,11 @@ "Social media and website links": "Liens vers les réseaux sociaux et les sites Internet", "Social media links": "Liens de vos réseaux sociaux", "Software": "Logiciel", - "Software:": "Logiciel :", "solicit personal information from any Underaged Person; or harm such persons in any way;": "solicit personal information from any Underaged Person; or harm such persons in any way;", "SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OR EXCLUSION OF CERTAIN WARRANTIES OR THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES. ACCORDINGLY, SOME OF THE ABOVE LIMITATIONS SET FORTH ABOVE MAY NOT APPLY TO YOU OR BE ENFORCEABLE WITH RESPECT TO YOU.": "SOME JURISDICTIONS DO NOT ALLOW THE DISCLAIMER OR EXCLUSION OF CERTAIN WARRANTIES OR THE LIMITATION OR EXCLUSION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES. ACCORDINGLY, SOME OF THE ABOVE LIMITATIONS SET FORTH ABOVE MAY NOT APPLY TO YOU OR BE ENFORCEABLE WITH RESPECT TO YOU.", "Some of the access needs you’ve chosen need :projectable to directly contact you to arrange and deliver. Are you okay with us putting your name beside this access need?": "Some of the access needs you’ve chosen need :projectable to directly contact you to arrange and deliver. Are you okay with us putting your name beside this access need?", "Someone to call and walk you through the information": "Someone to call and walk you through the information", "Some participants may not be able to meet in real-time. For them, you can send out a list of questions, and participants can respond to them in formats you accept.": "Certains personnes participantes peuvent ne pas être en mesure de participer à une réunion en direct. Dans ce cas, vous pouvez envoyer une liste de questions et les personnes participantes pourront y répondre dans des formats que vous acceptez.", - "Something changed?": "Quelque chose a changé ?", "Something else": "Quelque chose d'autre", "Sometimes, governments and businesses also want to talk to people with specific experiences. For example, people from a certain location. Or, people who speak a certain first language.": "Parfois, les gouvernements et les entreprises veulent aussi parler à des personnes ayant des expériences spécifiques. Par exemple, des personnes originaires d'un certain endroit. Ou, des personnes qui parlent une première langue en particulier.", "South Asian": "Sud-Asiatique", @@ -1758,7 +1442,6 @@ "Specific provinces or territories": "Provinces ou territoires spécifiques", "Spoken language interpretation": "Interprétation en langue parlée", "Staff lived experience": "Expérience vécue du personnel", - "Start adding participants to this engagement": "Commencer à ajouter des personnes à cette consultation", "Start date": "Date de début", "start date": "date de début", "Start time": "Heure de début", @@ -1768,12 +1451,10 @@ "Status": "Statut", "Status updated": "Statut actualisé", "Step :current of :total": "Étape :current de :total", - "Steps for creating your page": "Étapes à suivre pour créer votre page", "Steps for creating your project": "Étapes à suivre pour créer votre projet", "Stop": "Stop", "Street address": "Adresse postale", "Submit": "Soumettre", - "Success": "Opération réussie", "Such as, federal departments, agencies, and crown corporations, other public sector bodies and businesses.": "Par exemple, les ministères fédéraux, les agences et les sociétés d'État, les autres organismes et entreprises du secteur public.", "Such as Autism, ADHD": "Tels que l'autisme ou le TDAH", "Such as broken limbs, gestational diabetes": "Tel qu'un membre cassé, un problème de diabète gestationnel", @@ -1792,16 +1473,11 @@ "Support phone": "Support phone", "Survey": "Sondage", "Survey materials": "Documents du sondage", - "Surveys": "Surveys", "SURVEYS.": "SONDAGES.", "Suspend": "Suspendre", "Suspended": "Suspendu", - "Switch to:": "Basculer vers :", "System theme": "Thème du système", - "Table of contents": "Table des matières", "Take Quiz": "Répondre au jeu-questionnaire", - "Take the quiz": "Répondre au jeu-questionnaire", - "Talk to an Accessibility Consultant": "Parler à une personne consultante en matière d'accessibilité", "Tangible outcomes must be provided in at least one language.": "Tangible outcomes must be provided in at least one language.", "tangible outcomes of this project": "résultats tangibles de ce projet", "Tangible outcomes of this project": "Résultats tangibles de ce projet", @@ -1813,7 +1489,6 @@ "Tell us your business name": "Tell us your business name", "Tell us your organization’s name": "Tell us your organization’s name", "Templates and forms": "Modèles et formulaires", - "Temporary": "Temporaire", "Temporary disabilities": "Incapacités temporaires", "TERMINATION.": "TERMINATION.", "terms of service": "conditions d'utilisation", @@ -1835,11 +1510,7 @@ "The agreement will be sent with your estimate. Please sign this agreement and send it to <:email>.": "L'entente sera envoyée avec votre devis. Veuillez signer l'entente et l'envoyer à <:email>.", "The Canadian Forces and the Royal Canadian Mounted Police": "The Canadian Forces and the Royal Canadian Mounted Police", "The Community Organization being consulted with for this engagement.": "Organisation communautaire consultée dans le cadre de cette consultation.", - "The demographic breakdown of your confirmed participants will show when your sign up deadline has passed. Please come back and check again at that time.": "La répartition démographique de vos personnes participantes s'affichera lorsque la date limite d'inscription sera passée. Veuillez revenir et vérifier à nouveau à ce moment-là.", "The estimate for “:project” has been marked as returned.": "Le devis pour « :project » a été marqué comme retourné.", - "The following access needs have been shared with :name anonymously. They will not know it is you who requested them.": "Les besoins en matière d'accessibilité suivants ont été partagés avec :name de façon anonyme. Ceux-ci ne sauront pas que c'est vous qui les avez demandés.", - "The following preferences have been shared with :name.": "Les préférences suivantes ont été partagées avec :name.", - "The group of participants who have accepted your invitation include:": "Le groupe de personnes ayant accepté votre invitation est composé des personnes suivantes :", "The individual on this website with the email address you provided is not a community connector.": "La personne pour laquelle vous avez entré l'adresse courriel n'est pas une personne facilitatrice communautaire.", "The individual with the email address you provided is already participating in this engagement.": "La personne avec le courriel que vous avez fourni participe déjà à cette consultation.", "The languages you can work in.": "Les langues dans lesquelles vous pouvez travailler.", @@ -1862,14 +1533,11 @@ "The other payment type must be specified.": "Vous devez spécifier l'autre type de paiement.", "The person with the email address you provided is not a consultation participant.": "La personne dont l'adresse courriel est indiquée ne participe pas à la consultation.", "The provided password does not match your current password.": "Le mot de passe fourni ne correspond pas à votre mot de passe actuel.", - "The Regulated Organization sends out a list of questions, and you can respond to them at your own pace.": "L'organisme réglementé enverra une liste de questions et vous pourrez y répondre à votre propre rythme.", "There is already a :type with the name “:name” registered on this platform. If this is the organization you work for, please contact your colleagues to get an invitation to the organization. If this isn’t the organization you work for, please use a different name.": "Il existe déjà un :type avec le nom « :name » sur cette plateforme. S'il s'agit de l'organisation pour laquelle vous travaillez, veuillez contacter vos collègues pour obtenir une invitation à la rejoindre. S'il ne s'agit pas de l'organisation pour laquelle vous travaillez, veuillez utiliser un autre nom.", - "There is already an organization with the name “:name” registered on this platform. If this is the organization you work for, please contact your colleagues to get an invitation to the organization. If this isn’t the organization you work for, please use a different name.": "Il existe déjà une organisation avec le nom « :name » sur cette plateforme. S'il s'agit de l'organisation pour laquelle vous travaillez, veuillez contacter vos collègues pour obtenir une invitation à la rejoindre. S'il ne s'agit pas de l'organisation pour laquelle vous travaillez, veuillez utiliser un autre nom.", "There is no disability type filled in under \"something else\". Please fill this in.": "Aucun type de handicap n'a été indiqué sous « autre chose ». Merci de le remplir.", "There is no ethnoracial identity filled in under \"something else\". Please fill this in.": "Il n'y a pas d'identité ethnoraciale renseignée sous « autre chose ». Veuillez la remplir.", "These are the seven areas listed within the Accessible Canada Act. By law, entities must ensure these areas are accessible.": "Ces sept domaines sont énumérés dans la Loi canadienne sur l'accessibilité. En vertu de la loi, les entités doivent s'assurer que ces domaines sont accessibles.", "These are the seven areas listed within the Accessible Canada Act. Federally regulated organizations must work to improve their accessibility in all of these areas.": "Ces sept domaines sont énumérés dans la Loi canadienne sur l'accessibilité. En vertu de la loi, les organisations sous réglementation fédérale doivent s'assurer que ces domaines sont accessibles.", - "These details will help people know what to expect when working with you.": "Ces détails aideront les gens à savoir à quoi s'attendre lorsqu'ils travaillent avec vous.", "The selected consulting service is invalid": "", "The selected working language is not valid.": "La langue de travail sélectionnée n'est pas valide.", "These organizations, coalitions, cross-disability or umbrella groups are made up of, and controlled by, persons with disabilities, Deaf persons, and\/or their family members. These organizations were created to advance and defend the rights of persons with disabilities.": "Ces organisations, coalitions, groupes multi-handicap ou parapluies sont constitués et contrôlés par des personnes en situation de handicap, des personnes sourdes et\/ou des membres de leur famille. Ces organisations ont été créées pour faire avancer et défendre les droits des personnes en situation de handicap.", @@ -1897,7 +1565,6 @@ "This does not have to be your legal name.": "Il n'est pas nécessaire que ce soit votre nom légal.", "This engagement is a **paid** opportunity.": "Cette consultation est une opportunité **rémunérée**.", "This engagement is a **volunteer** opportunity.": "Cette consultation est une opportunité **bénévole**.", - "This engagement is a volunteer engagement. There will be no monetary payment.": "Cette consultation est entièrement bénévole. Il n'y aura pas de paiement effectué.", "This estimate includes the following engagements:": "Ce devis comprend les consultations suivantes :", "This estimate was sent to :contact on :date.": "Ce devis a été envoyé à :contact le :date.", "This includes disability and Deaf representative organizations, support organizations, and other civil society organizations (not only disability focused).": "Cela inclut les organisations représentant les personnes en situation de handicap et les personnes sourdes, les organisations de défense des droits et les autres organisations de la société civile (pas seulement axées sur le handicap).", @@ -1912,9 +1579,7 @@ "This is also the email you use to sign in to this account.": "This is also the email you use to sign in to this account.", "This is a summary of the access needs for your confirmed participants.": "Voici un résumé des besoins en matière d'accessibilité pour les personnes participantes ayant confirmé leur intérêt.", "This is for individuals with disabilities or Deaf people and their supporters, and those wishing to offer accessibility consulting and community connection services.": "Personnes en situation de handicap ou personnes sourdes, leurs alliés, ainsi que toute personne souhaitant offrir des services de consultation en matière d'accessibilité et de facilitation communautaire.", - "This is not the same as deleting your individual account for yourself. If you would like to delete your individual account, please go to [Delete my account](:url).": "Il ne s'agit pas de la même chose que de supprimer votre compte individue. Si vous souhaitez supprimer votre compte individuel, veuillez vous rendre au [Supprimer mon compte](:url).", "This is the email address you will use to sign in to The Accessibility Exchange.": "Il s'agit de l'adresse courriel que vous utiliserez pour vous connecter au Connecteur pour l'accessibilité.", - "This is the email that the invitation will be sent to.": "Il s'agit du courriel auquel l'invitation sera envoyée.", "This is the email your invitation will be sent to.": "Il s'agit du courriel auquel votre invitation sera envoyée.", "This is the email you use to log into the website.": "Il s'agit du courriel que vous utilisez pour vous connecter au site Internet.", "This is the ideal number of participants you would like to have for this engagement. The least you can select is 10 participants.": "Il s'agit du nombre idéal de personnes que vous souhaitez voir participer à cette consultation. Le minimum que vous pouvez sélectionner est de 10 personnes.", @@ -1927,8 +1592,6 @@ "This organization has people on staff who have lived experience of the communities they :represent_or_serve_and_support.": "Cette organisation compte parmi son personnel des personnes ayant une expérience vécue des communautés qu'elle :represent_or_serve_and_support.", "This site is for three kinds of users. Select an option below to learn more.": "Ce site s'adresse à trois types de publics. Sélectionnez une option ci-dessous pour en savoir plus.", "This site uses cookies to help provide a better experience.": "This site uses cookies to help provide a better experience.", - "This survey will be provided in the following digital formats:": "Ce sondage sera fourni dans les formats numériques suivants :", - "This survey will be provided in the following formats:": "Ce sondage sera fourni dans les formats suivants :", "This website was made in partnership with members and organizations from the disability and Deaf communities, supporters, and members from Federally Regulated Organizations.": "Ce site Internet a été conçu en partenariat avec des membres et des organisations de la communauté des personnes en situation de handicap et des personnes sourdes, de leurs alliés et des membres d'organisations sous réglementation fédérale.", "This will help governments and businesses communicate and work with you in a format that is accessible to you.": "Cela aidera les gouvernements et les entreprises à communiquer et à travailler avec vous dans un format qui vous est accessible.", "This will help people know what to expect when working with you.": "Cela permettra aux gens de savoir à quoi s'attendre lorsqu'ils travaillent avec vous.", @@ -1963,7 +1626,6 @@ "Trainer": "Personne fomatrice", "Training": "Formation", "Training by: :author": "Training by: :author", - "Training by :name": "Formation par :name", "training date": "training date", "training name": "training name", "Training organization or trainer": "Organisme de formation ou personne formatrice", @@ -1971,39 +1633,28 @@ "training organization or trainer website address": "training organization or trainer website address", "Training Participant": "Personne cherchant à se former", "Training your team has received": "Formation que votre équipe a suivie", - "Transcript": "Transcription", "Translations": "Traductions", "transmit any viruses, worms, defects, Trojan horses, or other items of a destructive nature;": "transmit any viruses, worms, defects, Trojan horses, or other items of a destructive nature;", "Trans people": "Personnes transgenres", "Tuesday": "Mardi", "Twitter page": "Page Twitter", "Two-factor authentication": "Authentification à deux facteurs", - "Type of community organization": "Type d'organisation communautaire", "Type of organization": "Type d'organisation", "Types of experiences or identities": "Types d'expériences ou d'identités", "Types of meetings offered": "Types de réunions proposées", "Types of regulated organizations": "Types of regulated organizations", "Unblock": "Débloquer", "Unblock :blockable": "Débloquer : blockable", - "Unblock :organization": "Débloquer :organization", "unblock them": "les débloquer", - "Unfortunately you will not be able to continue using The Accessibility Exchange at this time. You will no longer be able to log in through your account. If you have any questions, please reach out to us at :email or :phone.": "Malheureusement, vous ne pouvez pas continuer à utiliser le Connecteur pour l'accessibilité pour le moment. Vous ne pourrez plus vous connecter via votre compte. Si vous avez des questions, veuillez nous contacter à :email ou au :phone.", "Unit, apartment, or suite": "Unité, appartement ou suite", "Unit, suite, or floor": "Unité, suite ou étage", "Unpublish": "Dépublier", - "Unpublish my page": "Dépublier ma page", "Unpublish page": "Dépublier la page", "Unread": "Non lu", - "Unsaved content": "Contenu non sauvegardé", "Unsuspend": "Réinstaurer", "Upcoming": "À venir", "Update": "Mettre à jour", "Update estimate status": "Mettre à jour le statut du devis", - "Update matching information": "Mettre à jour les informations de jumelage", - "Update preferences": "Mettre à jour les préférences", - "Update your communication and consultation preferences": "Update your communication and consultation preferences", - "Update your matching information": "Mettre à jour vos informations de jumelage", - "Upload a file": "Téléverser un fichier", "upon request": "sur demande", "Upon request": "Sur demande", "Urban, rural, or remote": "Urbain, rural ou éloigné", @@ -2027,33 +1678,23 @@ "View page": "Voir la page", "violate any of the obligations contained in these Terms, including, but not limited to, those contained in Section 9 hereof pertaining to intellectual property rights.": "violate any of the obligations contained in these Terms, including, but not limited to, those contained in Section 9 hereof pertaining to intellectual property rights.", "violate these Terms, any code of conduct or other guidelines which may be applicable for any particular area of the Platform, including those that have been communicated to you by anyone affiliated with IRIS; or": "violate these Terms, any code of conduct or other guidelines which may be applicable for any particular area of the Platform, including those that have been communicated to you by anyone affiliated with IRIS; or", - "Virtual - web conference": "Virtuel - conférence en ligne", - "Virtual on :tool": "Virtuel sur :tool", "Virtual or in-person": "Virtuel ou en personne", "Virtual – phone call": "Virtuel - appel téléphonique", "Virtual – web conference": "Virtuel - conférence en ligne", "Virtual — phone call": "Virtuel - appel téléphonique", "Virtual — video call": "Virtuel - appel vidéo", - "Visit :language website": "Visitez le site en :language", "Visit engagement": "Visiter la consultation", "Visit engagement: :url.": "Visiter la page de la consultation : :url.", - "Visit our Resource page": "Visitez notre page de ressources", "Visual disabilities": "Déficiences visuelles", "Voice recording": "Enregistrement vocal", "Volunteer": "Bénévole", "VRS": "SRV", - "Walkthrough": "Visite guidée", - "Warning": "Avertissement", - "Watched": "Vu", - "Watch introduction video again": "Regarder à nouveau la vidéo de présentation", "Ways to attend": "Façons de participer", - "Ways to do this": "Moyens d'y parvenir", "Ways to participate": "Façons de participer", "We ask Accessibility Consultants for the following information:": "Nous demandons aux personnes consultantes en matière d'accessibilité de fournir les informations suivantes :", "We ask Community Connectors for the following information:": "Nous demandons aux personnes facilitatrices communautaires de fournir les informations suivantes :", "We ask Consultation Participants for the following information:": "Nous demandons aux personnes participant aux consultations de fournir les informations suivantes :", "WebEx": "WebEx", - "Webinars": "Webinaires", "Website": "Site Internet", "Website accessibility preferences": "Préférences d'accessibilité du site Internet", "Website language": "Langue du site internet", @@ -2073,15 +1714,11 @@ "We will ask you for your preferred method of payment.": "Nous vous demanderons votre mode de paiement préféré.", "We will ask you to indicate:": "Nous vous demanderons d'indiquer :", "We will notify you about being invited to engagements by directly contacting you or your support person.": "Nous vous informerons des invitations à des consultations en vous contactant directement ou en contactant votre personne de soutien.", - "What access supports will be needed?": "Quels sont vos besoins en matière d'accessibilité ?", "What age group are you interested in engaging?": "Quel est le groupe d'âge que vous souhaitez impliquer ?", "what age groups you can connect to": "les groupes d'âges auprès desquels vous pouvez servir d'intermédiaire", "What areas of accessibility planning and design are you most interested in consulting on?": "What areas of accessibility planning and design are you most interested in consulting on?", - "What are the different roles that are played in The Accessibility Exchange": "Quels sont les différents rôles au sein du Connecteur pour l'accessibilité", - "What are the different roles that are played in The Accessibility Exchange?": "Quels sont les différents rôles au sein du Connecteur pour l'accessibilité ?", "What are your lived experiences of disability or other intersectional identities?": "Quelles sont vos expériences vécues en matière de handicap ou d'autres identités intersectionnelles ?", "What are your skills and strengths relevant to The Accessibility Exchange?": "Quelles sont vos compétences et vos forces ?", - "What cultural practices and protocols do we need to be sensitive to?": "À quelles pratiques et protocoles culturels devrions-nous être sensibles ?", "what disability or Deaf communities you can connect to": "les communautés de personnes en situation de handicap et de personnes sourdes auprès desquels vous pouvez servir d'intermédiaire", "What do we mean when we say “Community organizations”?": "Qu'entendons-nous par « organisations communautaires » ?", "What do we mean when we say “disability”?": "Qu'entendons-nous par « handicap » ?", @@ -2100,11 +1737,8 @@ "What language(s) does your organization work in?": "Dans quelle(s) langue(s) votre organisation travaille-t-elle ?", "what language groups you can connect to": "communautés linguistiques auprès desquels vous pouvez servir d'intermédiaire", "What languages are used by the people you can connect to?": "Quelles langues sont utilisées par les personnes auprès desquelles vous pouvez servir d'intermédiaire ?", - "What needs your permission to share": "Ce qui nécessite votre permission pour pouvoir être partagé", "what other intersectional communities you can connect to": "autres communautés intersectionnelles auprès desquelles vous pouvez servir d'intermédiaire", "What provinces or territories does your organization serve?": "Quelles provinces ou quels territoires votre organisation dessert-elle ?", - "What safety protocol should be used if a participant becomes upset?": "Quel protocole de sécurité convient-il d'utiliser si un personne participante devient bouleversée ?", - "What services does The Accessibility Exchange offer?": "Quels sont les services proposés par le Connecteur pour l'accessibilité ?", "What specific disability and Deaf group or groups are you interested in engaging?": "Quel(s) groupe(s) spécifique(s) de personnes en situation de handicap et de personnes sourdes souhaitez-vous impliquer ?", "What specific languages do the people your organization :represents_or_serves_and_supports use?": "Quelles langues spécifiques les personnes que votre organisation représente utilisent ?", "What type of regulated organization are you?": "Quel type d'organisation réglementée êtes-vous ?", @@ -2112,12 +1746,9 @@ "What types of payment are you able to accept?": "Quels moyens de paiement êtes-vous en mesure d'accepter ?", "What types of Regulated Organization are you interested consulting with on accessibility planning and design?": "What types of Regulated Organization are you interested consulting with on accessibility planning and design?", "What you can do on this website": "Ce que vous pouvez faire sur ce site Internet", - "What’s been shared anonymously": "Ce qui a été partagé anonymement", "When Federally Regulated Organizations use the matching service to find a group of Consultation Participants, The Accessibility Exchange will create a diverse group of participants in terms of being disabled, Deaf, and other identities. This diversity can maximize the number of perspectives which can be represented.": "Lorsque les organisations sous réglementation fédérale utilisent le service de jumelage pour trouver un groupe de personnes voulant participer à des consultations, le Connecteur pour l'accessibilité crée automatiquement un groupe diversifié de personnes participantes en ce qui a trait aux personnes en situation de handicap, aux personnes sourdes et à d'autres identités. Cette diversité permet de maximiser le nombre de perspectives qui peuvent être représentées.", "When you block someone, you will not be able to:": "Lorsque vous bloquez une personne, vous n'êtes plus en mesure de :", - "When you select this option, your profile page will be hidden from everyone except yourself until you publish it again.": "Si vous sélectionnez cette option, votre page de profil sera cachée de tous, sauf de vous-même, jusqu'à ce que vous la publiiez à nouveau.", "When you sign up to participate in consultations, the access needs you check off below will be shared with the organization you are working with so they can meet them.": "When you sign up to participate in consultations, the access needs you check off below will be shared with the organization you are working with so they can meet them.", - "When you unblock someone, they will be able to:": "Lorsque vous débloquez une personne, elle peut :", "Where are your organization’s service areas?": "Où se trouvent les zones de service de votre organisation ?", "Where do the people that you :represent_or_serve_and_support come from?": "D'où viennent les personnes que vous représentez ?", "Where do the people that you can connect to come from?": "D'où viennent les personnes avec lesquelles vous pouvez servir d'intermédiaire ?", @@ -2132,63 +1763,47 @@ "Whether they identify with one or more of the 2SLGBTQIA+ identities": "S'ils s'identifient à une ou plusieurs des identités 2SLGBTQIA+", "Which age groups can you connect to?": "Auprès de quels groupes d'âge pouvez-vous servir d'intermédiaire ?", "Which age groups does your organization specifically :represent_or_serve_and_support?": "Which age groups does your organization specifically :represent_or_serve_and_support?", - "Which age groups does your organization specifically represent?": "Quels groupes d'âge votre organisation représente-t-elle spécifiquement ?", "Which days of the week are available for interviews to be scheduled?": "Quels sont les jours de la semaine où les entrevues peuvent être planifiées ?", "Which ethno-racial identity or identities are the people you can connect to?": "Quels sont les différents groupes racisés ou éthniques auprès desquels vous pouvez servir d'intermédiaire?", - "Which ethno-racial identity or identities are the people your organization specifically represents?": "Quelle(s) identité(s) ethno-raciale(s) votre organisation représente spécifiquement ?", "Which ethnoracial identity or identities are the people your organization specifically :represents_or_serves_and_supports": "Quels identité ou groupes d'identités votre organisation représente-t-elle?", - "Which groups can you connect to?": "Quels sont les groupes auprès desquels vous pouvez servir d'intermédiaire?", "Which groups marginalized based on gender or sexual identity can you connect to?": "Auprès de quels groupes marginalisés en raison de leur orientation sexuelle ou de leur genre pouvez-vous servir d'intermédiaire?", "Which groups marginalized based on gender or sexual identity does your organization specifically :represent_or_serve_and_support?": "Which groups marginalized based on gender or sexual identity does your organization specifically :represent_or_serve_and_support?", - "Which groups marginalized based on gender or sexual identity does your organization specifically represent?": "Quels groupes marginalisés en raison de leur genre ou de leur identité sexuelle votre organisation représente-t-elle spécifiquement ?", "Which Indigenous groups can you connect to?": "Quels sont les groupes autochtones auprès desquels vous pouvez servir d'intermédiaire?", "Which Indigenous groups does your organization specifically :represent_or_serve_and_support?": "Quels groupes de personnes autochtones votre organisation représente-t-elle spécifiquement ?", - "Which Indigenous groups does your organization specifically represent?": "Quels groupes de personnes autochtones votre organisation représente-t-elle spécifiquement ?", "Which of these areas can you help a regulated organization with?": "Dans lesquels de ces domaines pouvez-vous aider une organisation réglementée ?", "White": "Blanc", "White on black": "Blanc sur noir", "Who can be a :role?": "Qui peut être une :role?", - "Who can play these roles?": "Qui peut jouer ces rôles?", "Who do you want to engage?": "Qui voulez-vous consulter ?", "who is going through the results": "qui passe en revue les résultats", "Who they’re seeking": "Profil recherché", "Who we’re looking for": "Qui nous cherchons", "Who will be going through the results and producing an outcome?": "", - "Who will be the best person to facilitate your consultation?": "Qui pourrait être la meilleure personne pour mener à bien votre consultation ?", "Who you’re joining as": "Quel type de compte voulez-vous créer?", "Who’s responsible for going through results and producing an outcome": "", "Why do we ask for this information?": "Pourquoi demandons-nous ces informations ?", - "With disability and Deaf communities and hold meaningful consultations": "Avec les communautés de personnes en situation de handicap et de personnes sourdes et tenir des consultations efficaces", "Women": "Femmes", "Word document": "Document Word", "Working age adults (15–64)": "Adultes en âge de travailler (15-64)", "Working languages": "Langues de travail", "Workshop": "Atelier", - "Workshops": "Ateliers", "Would you like to be notified directly when a project you have worked on uploads a new report?": "Souhaitez-vous être averti dès qu'un projet sur lequel vous avez travaillé met en ligne un nouveau rapport ?", "Would you like to be notified directly when you are added as an Accessibility Consultant to a project?": "Souhaitez-vous être averti lorsque vous êtes ajouté en tant que personne consultante en matière d'accessibilité à un projet ?", "Would you like to be notified directly when you are added to an engagement as a Community Connector?": "Aimeriez vous recevoir une notification lorsque vous êtes ajouté à une consultation en tant que personne facilitatrice communautaire ?", - "Would you like to be notified directly when you are assigned a new role by your organization admin?": "Souhaitez-vous être averti lorsque l'administrateur de votre organisation vous attribue un nouveau rôle ?", - "Would you like to unpublish your consultant page? (You can republish it later.)": "Souhaitez-vous dépublier votre page de personne participant à des consultations ? (Vous pourrez la republier plus tard)", "Writing": "Réponse écrite", "Writing accessibility reports": "Rédaction de rapports relatifs à l’accessibilité", - "Writing your consultation report": "Rédaction de votre rapport de consultation", "Written language translation": "Traduction en langue écrite", - "Written language translation - :language": "Written language translation - :language", "Written or recorded responses": "Réponses écrites ou enregistrées", "Wrong answer": "Mauvaise réponse", "Wrong answer.": "Mauvaise réponse.", - "Year": "Année", "Year of birth": "Année de naissance", "Yellow on black": "Jaune sur noir", "Yes": "Oui", "Yes, all": "Oui, pour toutes les réponses sélectionnées", - "Yes, I’m interested in a specific disability or Deaf group": "Oui, je cherche un groupe spécifique de personnes en situation de handicap ou de personnes sourdes", "Yes, I’m interested in a specific disability or Deaf group or groups": "Oui, je cherche un ou des groupes spécifiques de personnes en situation de handicap ou de personnes sourdes", "Yes, I’m looking for a group with a specific experience and\/or identity (for example: Indigenous, immigrant, 2SLGBTQIA+)": "Oui, je cherche un groupe ayant une expérience et\/ou une identité spécifique (par exemple : autochtone, personne immigrante, 2SLGBTQIA+)", "Yes, leave engagement": "Oui, quitter la consultation", "Yes, project reports will be publicly available.": "Les rapports du projet seront accessibles au public.", - "Yes, remove": "Oui, supprimer", "Yes, share my access needs": "Oui, vous pouvez partager mes besoins en matière d'accessibilité", "Yes, some": "Oui, pour certaines des réponses sélectionnées", "you": "vous", @@ -2202,7 +1817,6 @@ "You already belong to an organization, so you cannot create a new one.": "Vous faites déjà partie d'une organisation, vous ne pouvez donc pas en créer une nouvelle.", "You are now able to publish your page.": "Vous êtes maintenant en mesure de publier votre page.", "You are now able to publish your page and create projects and engagements.": "You are now able to publish your page and create projects and engagements.", - "You are now able to publish your page and new projects": "Vous êtes maintenant en mesure de publier votre page ainsi que vos nouveaux projets", "You are now able to publish your page and sign up for projects.": "You are now able to publish your page and sign up for projects.", "You are now able to publish your page and take part in consultations.": "Vous êtes maintenant en mesure de publier votre page et de participer à des consultations.", "You are now able to sign up for projects.": "You are now able to sign up for projects.", @@ -2213,12 +1827,10 @@ "You are previewing your public page.": "Vous prévisualisez actuellement votre page publique.", "You are previewing your regulated organization’s page.": "Vous prévisualisez actuellement la page de votre organisation réglémentée.", "You are solely responsible for all Content that you Upload or make available to IRIS (“**User Content**”).": "You are solely responsible for all Content that you Upload or make available to IRIS (“**User Content**”).", - "You can address these questions with your accessibility or equity, diversity and inclusion team, or work with an accessibility consultant or the Accessibility Exchange support service.": "Vous pouvez aborder ces questions avec votre équipe chargée de l'accessibilité ou de l'équité, de la diversité et de l'inclusion, ou travailler avec une personne consultante en matière d'accessibilité ou le service d'assistance du Connecteur pour l'accessibilité.", "You can always change this by selecting the language menu.": "Vous pouvez toujours changer de langue en utilisant le menu de langue.", "You can always change this later.": "Vous pourrez toujours changer cela plus tard.", "You can choose how you would like to take part:": "Vous pouvez choisir comment vous souhaitez participer :", "You can communicate directly with the business or government to figure out how to work on their accessibility project. You will be paid for your work.": "You can communicate directly with the business or government to figure out how to work on their accessibility project. You will be paid for your work.", - "You can define who you are looking for here. What you choose here will be applied to all your engagements under this project, unless you want to get more specific in your engagements.": "Vous pouvez définir ici qui vous recherchez. Ce que vous choisissez ici sera appliqué à toutes vos consultations dans le cadre de ce projet, sauf si vous décidez d'être plus spécifique pour chacune de vos consultations.", "You can join a consultation engagement in a few ways:": "You can join a consultation engagement in a few ways:", "You cannot block individuals or organizations.": "Vous ne pouvez pas bloquer des individus ou des organisations.", "You cannot block yourself.": "Vous ne pouvez pas vous bloquer vous-même.", @@ -2239,18 +1851,14 @@ "You cannot unpublish this individual page.": "Vous ne pouvez pas dépublier cette page individuelle.", "You cannot unpublish this organization.": "Vous ne pouvez pas dépublier cette organisation.", "You cannot unpublish this regulated organization.": "Vous ne pouvez pas dépublier cette organisation sous réglementation fédérale.", - "You can now sign up for projects.": "Vous pouvez désormais vous inscrire à des projets.", - "You can now view :organization’s projects and engagements.": "Vous pouvez maintenant voir les projets et les consultations de :organisation.", "You can only choose one of these options for each account. So, if you are a Deaf person who would like to participate in consultations, and you are also the contact for an organization that serves Deaf people, you should create two separate accounts, one as an individual, and as a Community Organization. That way, we can be sure to show you the right information based on who you’ve joined as.": "Vous ne pouvez choisir qu'une seule de ces options pour chaque compte. Ainsi, si vous êtes une personne sourde qui souhaite participer à des consultations et que vous êtes également la personne ressource d'une organisation qui dessert les personnes sourdes, vous devez créer deux comptes distincts, l'un en tant qu'individu, l'autre en tant qu'organisation communautaire. De cette façon, nous pouvons être sûrs de vous montrer les bonnes informations en fonction du type de compte que vous avez créé.", "You can play the page in spoken language. You can also highlight parts of this page, and they will be read out.": "Vous pouvez lire la page en version parlée. Vous pouvez également surligner des parties de cette page, et elles seront lues à haute voix.", "You can provide either an exact number or a range.": "Vous pouvez fournir un nombre exact ou une plage.", "You can share your lived experience if you feel it is relevant to your work.": "Vous pouvez partager votre expérience vécue si vous estimez qu'elle est pertinente pour votre travail.", - "You can upload videos, images, audio, or other files.": "Vous pouvez téléverser des vidéos, des images, des fichiers audio ou autres.", "You can work on any projects related to accessibility on this website. This can be your organization’s Accessibility Plan or Report (as required under the Accessible Canada Act), or getting feedback on your customer service or accessibility in your workplace.": "Vous pouvez travailler sur tout projet lié à l'accessibilité sur ce site Internet. Il peut s'agir du plan ou du rapport d'accessibilité de votre organisation (comme l'exige la Loi canadienne sur l'accessibilité), ou encore d'obtenir des commentaires sur votre service à la clientèle ou sur l'accessibilité de votre lieu de travail.", "You currently do not have a Community Organization for this engagement.": "Vous n'avez actuellement pas d'organisation communautaire pour cette consultation.", "You don’t need to be a member of these communities yourself.": "Vous n'avez pas besoin d'être vous-même membre de ces communautés.", "YOU EXPRESSLY UNDERSTAND AND AGREE THAT IRIS WILL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY DAMAGES, OR DAMAGES FOR LOSS OF PROFITS INCLUDING BUT NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, USE, DATA OR OTHER INTANGIBLE LOSSES (EVEN IF IRIS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES), WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, INCLUDING BUT NOT LIMITED TO THOSE DAMAGES RESULTING FROM: (I) THE USE OR THE INABILITY TO USE THE PLATFORM; (II) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS AND SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED OR TRANSACTIONS ENTERED INTO THROUGH OR FROM THE PLATFORM; (III) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (IV) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE PLATFORM; (V) ANY ACTION YOU TAKE BASED ON THE INFORMATION YOU RECEIVE IN THROUGH OR FROM PLATFORM; (VI) YOUR FAILURE TO KEEP YOUR PASSWORD OR ACCOUNT DETAILS SECURE AND CONFIDENTIAL; (VII) THE IMPROPER AUTHORIZATION FOR THE PLATFORM BY SOMEONE CLAIMING SUCH AUTHORITY; OR (VII) ANY OTHER MATTER RELATING TO THE PLATFORM.": "YOU EXPRESSLY UNDERSTAND AND AGREE THAT IRIS WILL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY DAMAGES, OR DAMAGES FOR LOSS OF PROFITS INCLUDING BUT NOT LIMITED TO, DAMAGES FOR LOSS OF GOODWILL, USE, DATA OR OTHER INTANGIBLE LOSSES (EVEN IF IRIS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES), WHETHER BASED ON CONTRACT, TORT, NEGLIGENCE, STRICT LIABILITY OR OTHERWISE, INCLUDING BUT NOT LIMITED TO THOSE DAMAGES RESULTING FROM: (I) THE USE OR THE INABILITY TO USE THE PLATFORM; (II) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS AND SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED OR TRANSACTIONS ENTERED INTO THROUGH OR FROM THE PLATFORM; (III) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (IV) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE PLATFORM; (V) ANY ACTION YOU TAKE BASED ON THE INFORMATION YOU RECEIVE IN THROUGH OR FROM PLATFORM; (VI) YOUR FAILURE TO KEEP YOUR PASSWORD OR ACCOUNT DETAILS SECURE AND CONFIDENTIAL; (VII) THE IMPROPER AUTHORIZATION FOR THE PLATFORM BY SOMEONE CLAIMING SUCH AUTHORITY; OR (VII) ANY OTHER MATTER RELATING TO THE PLATFORM.", - "You have been added to :project": "Vous avez été ajouté à :project", "You have been invited as a :role": "Vous avez été invité en tant que :role", "You have been invited as a :role to :projectable’s :invitationable_type, :invitationable.": "Vous avez été invité en tant que :role à :projectable :invitationable_type, :invitationable.", "You have been invited as a Consultation Participant": "Vous avez été invité en tant que personne participante à la consultation", @@ -2258,36 +1866,20 @@ "You have been invited to join the :invitationable team!": "Vous avez été invité à rejoindre l'équipe :invitationable !", "You have been invited to join the :invitationable_type “:invitationable” as a :role.": "Vous avez été invité à rejoindre le :invitationable_type « :invitationable» en tant que :role.", "You have been invited to join the :invitationable_type “:invitationable” as a participant.": "Vous avez été invité à rejoindre le :invitationable_type « :invitationable» en tant que personne participante.", - "You have been invited to participate in :organization project, :project. They would like you to join for the :engagement engagement.": "Vous avez été invité à participer au projet de :organization, :project. Cette organisation souhaite que vous vous joigniez à elle pour la consultation :engagement.", - "You have been invited to participate in :projectable’s project, :project. They would like to interview you for their engagement, :engagement": "Vous avez été invité à participer au projet de :projectable, :project. Ceux-ci aimeraient vous rencontrer pour leur consultation, :engagement", - "You have been invited to participate in :projectable’s project, :project. They would like you to consult with them for their engagement, :engagement": "Vous avez été invité à participer au projet de :projectable, :project. Ceux-ci aimeraient que vous participiez à leur consultation, :engagement", - "You have been invited to participate in :projectable’s project, :project. They would like you to do their survey for their engagement, :engagement": "Vous avez été invité à participer au projet de :projectable, :project. Ceux-ci aimeraient que vous répondiez à leur sondage dans le contexte de leur consultation, :engagement", - "You have been invited to participate in :projectable’s project, :project. They would like you to join them for their :engagement_type, :engagement": "Vous avez été invité à participer au projet de :projectable, :project. Ceux-ci aimeraient que vous vous joigniez à eux pour leur :engagement_type, :engagement", - "You have been invited to participate in this engagement. Please respond by :date.": "Vous avez été invité à participer à cette consultation. Veuillez répondre avant le :date.", "You have been invited to the :invitationable_type \":invitationable\" as a :role on The Accessibility Exchange. Sign in to your account at https:\/\/accessibilityexchange.ca to continue.": "Vous avez été invité au :invitationable_type « :invitationable » en tant que :role sur le Connecteur pour l'accessibilité. Connectez-vous à votre compte à l'adresse https:\/\/accessibilityexchange.ca pour continuer.", "You have been invited to the engagement \":invitationable\" as a participant on The Accessibility Exchange. Sign in to your account at https:\/\/accessibilityexchange.ca to continue.": "Vous avez été invité à la consultation \":invitationable\" en tant que participant au Connecteur pour l'accessibilité. Connectez-vous à votre compte sur https:\/\/accessibilityexchange.ca pour continuer.", - "You have been listed as the Accessibility Consultant in :projectable’s project, :project.": "Vous avez été listé comme la personne consultante en matière d'accessibilité pour le projet :project de :projectable.", "You have completed your engagement details, **but you won’t be able to publish them until you [get an estimate](:get_estimate) for this project and approve it**.": "Vous avez rempli les détails de votre consultation, **mais vous ne pourrez pas les publier avant d'avoir [obtenu un devis](:get_estimate) pour ce projet et de l'avoir approuvé**.", - "You have completed your orientation session.": "Vous avez terminé votre session d'orientation.", "You have declined an invitation on behalf of your organization, :organization, to work as a :role on :invitationable.": "Vous avez refusé une invitation au nom de votre organisation, :organization, à travailler en tant que :role au sein de :invitationable.", "You have declined your invitation to work as a :role on :invitationable.": "Vous avez décliné l'invitation à travailler en tant que :role au sein de :invitationable.", "You have joined :invitationable as a :role": "Vous avez rejoint :invitationable en tant que :role", "You have not added any engagements yet.": "Vous n'avez pas encore ajouté de consultations.", - "You have not determined the selection criteria for the people you seek for this project.": "Vous n'avez pas déterminé les critères de sélection des personnes que vous recherchez pour ce projet.", "You have not passed the quiz.": "Vous n'avez pas réussi le jeu-questionnaire.", - "You have not requested an estimate before.": "Vous n'avez pas demandé de devis auparavant.", "You have now completed this course. Your certificate of completion has been sent to your email.": "You have now completed this course. Your certificate of completion has been sent to your email.", - "You have successfully accepted your invitation.": "Vous avez accepté avec succès l'invitation.", - "You have successfully accepted your invitation. You are now a Consultation Participant for this engagement.": "Iinvitation acceptée avec succès. Vous êtes maintenant une personne participante pour cette consultation.", "You have successfully added :notificationable to your list.": "Vous avez ajouté avec succès :notificationable à votre liste.", "You have successfully added :organization as the Community Organization you are consulting with for this engagement.": "Vous avez ajouté avec succès :organisation comme l'organisation communautaire avec laquelle vous travaillez pour cette consultation.", - "You have successfully added :organization to your list.": "Vous avez ajouté avec succès :organization à votre liste.", - "You have successfully added a new engagement.": "Vous avez ajouté une nouvelle consultation avec succès.", "You have successfully approved your estimate.": "Vous avez approuvé le devis avec succès.", "You have successfully blocked :blockable.": "Vous avez bloqué : blockable.", - "You have successfully blocked :organization.": "Vous avez bloqué :organisation.", "You have successfully completed course :course and passed the quiz.": "Vous avez terminé avec succès le cours :course et réussi le jeu-questionnaire.", - "You have successfully invited :name to participate in this engagement.": "Vous avez invité avec succès :name à participer à cette consultation.", "You have successfully left this engagement.": "Vous avez quitté cette consultation avec succès.", "You have successfully removed :notificationable from your notification list.": "Vous avez supprimé :notifiable de votre liste de notification.", "You have successfully removed :organization as the Community Organization for this engagement.": "Vous avez retiré :organization comme organisation communautaire pour cette consultation.", @@ -2299,14 +1891,12 @@ "You have successfully signed up for this engagement.": "Vous vous êtes inscrit avec succès à cette consultation.", "You have successfully submitted an estimate request.": "Votre demande de devis a été soumise avec succès.", "You have successfully unblocked :blockable.": "Vous avez débloqué :blockable.", - "You have successfully unpublished your Regulated Organization profile.": "Votre profil d'organisme réglementé a été dépublié avec succès.", "You may accept this invitation by clicking the button below:": "Vous pouvez accepter cette invitation en cliquant sur le bouton ci-dessous :", "You must agree to the privacy policy.": "Vous devez accepter la politique de confidentialité.", "You must agree to the terms of service.": "Vous devez accepter les conditions de service.", "You must answer this question": "You must answer this question", "You must attend an [orientation session](:url) and fill in all the required information before you can publish your page.": "Veuillez noter que vous devrez assister à une [séance d'orientation](:url) et remplir toutes les informations requises avant de pouvoir publier votre page.", "You must attend an [orientation session](:url) and fill in all the required information before you can publish your project.": "Veuillez noter que vous devrez assister à une [séance d'orientation](:url) et remplir toutes les informations requises avant de pouvoir publier votre projet.", - "You must attend an [orientation session](:url) before you can publish your page.": "Vous devez assister à une [session d'orientation](:url) avant de pouvoir publier votre page.", "You must belong to an :organization in order to manage its roles and permissions.": "Vous devez appartenir à une :organization afin de pouvoir gérer ses rôles et autorisations.", "You must choose at least one area of impact.": "Vous devez choisir au moins un domaine d'impact.", "You must choose at least one payment type.": "Vous devez choisir au moins un type de paiement.", @@ -2376,10 +1966,8 @@ "You must select which specific disability and\/or Deaf groups your organization :represents_or_serves_and_supports.": "You must select which specific disability and\/or Deaf groups your organization :represents_or_serves_and_supports.", "You must tell us who you're joining as.": "Vous devez nous dire sous quelle identité vous vous inscrivez.", "You must [approve your estimate and return your signed agreement](:estimates_and_agreements) before you can publish your engagement.": "Vous devez [approuver votre devis et renvoyer votre entente signée](:estimates_and_agreements) avant de pouvoir publier votre consultation.", - "You now have administrative privileges for :organization. You can now create and manage projects.": "Vous disposez désormais de privilèges d'administration pour :organisation. Vous pouvez maintenant créer et gérer des projets.", "You now have completed this course.": "You now have completed this course.", "Your :model page has been unpublished.": "Votre page :model a été dépubliée.", - "Your access needs": "Vos besoins en matière d'accessibilité", "Your access needs have been updated.": "Vos besoins en matière d'accessibilité ont été mis à jour.", "Your account has been approved": "Votre compte a été approuvé", "Your account has been approved.": "Votre compte a été approuvé.", @@ -2400,7 +1988,6 @@ "Your bio must be provided in at least English or French.": "", "Your communication and consultation preferences have been updated.": "Vos préférences en matière de communication et de consultation ont été mises à jour.", "Your Community Connector has been removed.": "Votre personne facilitatrice communautaire a été supprimée.", - "Your consultation preferences": "Vos préférences en matière de consultation", "Your details": "Vos informations", "Your engagement has been created.": "Votre consultation a été créée.", "Your engagement has been published.": "Votre consultation a été publiée.", @@ -2417,7 +2004,6 @@ "Your first language and other languages will be combined into a “working languages” list - this will let governments and businesses understand what languages you can use to work with them in, and communicate to others in.": "Votre première langue et vos autres langues seront regroupées dans une liste de « langues de travail » - cela permettra aux gouvernements et aux entreprises de savoir dans quelles langues vous pouvez travailler avec eux et communiquer avec les autres.", "Your first language will help us match you to a project that may be looking for someone who uses that first language.": "Votre première langue nous aidera à vous associer à un projet qui pourrait rechercher une personne utilisant cette première langue.", "Your headquarters location": "Emplacement de votre siège social", - "Your inclusive and accessible consultation": "Votre consultation accessible et inclusive", "Your individual page has been deleted.": "Votre page individuelle a été supprimée.", "Your individual page will be deleted and cannot be recovered. If you still want to delete your individual page, please enter your current password to proceed.": "Votre page individuelle sera supprimée et ne pourra pas être récupérée. Si vous souhaitez toujours supprimer votre page individuelle, veuillez saisir votre mot de passe actuel pour continuer.", "Your information has been updated.": "Vos informations ont été mises à jour.", @@ -2427,7 +2013,6 @@ "Your meeting has been deleted.": "Votre réunion a été supprimée.", "Your meeting has been updated.": "Votre réunion a été mise à jour.", "Your members": "Vos membres", - "Your name and your contact information have been shared with :name.": "Votre nom et vos coordonnées ont été partagés avec :name.", "Your notification preferences have been updated.": "Vos préférences de notification ont été mises à jour.", "Your organization has been added to an engagement": "Votre organisation a été ajoutée à une consultation", "Your organization has been added to the engagement “:engagement”.": "Votre organisation a été ajoutée à la consultation « :engagement ».", @@ -2440,10 +2025,7 @@ "Your organization’s name": "Nom de votre organisation", "Your organization’s name in either English or French is required.": "Le nom de votre organisation est requis en anglais ou en français.", "Your organization’s role": "Rôle de votre organisation", - "Your participants are from the following age groups.": "Vos personnes participantes appartiennent aux groupes d'âge suivants.", - "Your participants are from the following locations in Canada.": "Vos personnes participantes viennent des régions suivantes au Canada.", "Your participant selection criteria have been updated.": "Vos critères de sélection des personnes participantes ont été mis à jour.", - "Your participants use the following languages.": "Vos personnes participants utilisent les langues suivantes.", "Your payment information has been updated.": "Vos informations de paiement ont été mises à jour.", "Your preference for sharing your access needs has been saved.": "Votre préférence relative au partage de vos besoins en matière d'accessibilité a été enregistrée.", "Your preferences for in-person or virtual engagements will determine what projects and engagements you are matched to.": "Vos préférences pour les consultations en personne ou virtuelles détermineront les projets et les consultations qui vous seront attribués.", @@ -2454,10 +2036,7 @@ "Your projects and engagements": "Vos projets et consultations", "Your pronouns must be provided in at least English or French.": "", "your public profile will be removed from the platform": "votre profil public sera supprimé de la plateforme", - "your public profile will be removed from the website": "votre profil public sera supprimé du site Internet", "Your regulated organization, :name, will be deleted and cannot be recovered. If you still want to delete your regulated organization, please enter your current password to proceed.": "Votre organisme réglementé, :name, sera supprimé et ne pourra pas être récupéré. Si vous souhaitez toujours supprimer votre organisme réglementé, veuillez saisir votre mot de passe actuel pour continuer.", - "Your role: :role": "Votre rôle : :role", - "Your role has been updated to :role": "Votre rôle a été mis à jour vers :role", "Your roles have been saved.": "Vos rôles ont été enregistrés.", "your support person, :name": "la personne vous apportant du soutien, :name", "Your support person’s name is required if they are your preferred contact person.": "Le nom de la personne vous apportant du soutien est requis s'il s'agit de votre personne de contact.", @@ -2481,18 +2060,14 @@ "You will not be able to edit any information in your account.": "You will not be able to edit any information in your account.", "You will not be able to edit any information in your account. Your page will no longer be shown to other users of this website.": "You will not be able to edit any information in your account. Your page will no longer be shown to other users of this website.", "You won’t be able to publish your engagement until you’ve added meetings.": "Vous ne pouvez pas publier votre consultation tant que vous n'avez pas ajouté de réunions.", - "You’ve been invited to participate in :organization project, :project. They would like you to join for the :engagement engagement.": "Vous avez été invité à participer au projet :project de :organisation. Cette organisation aimerait que vous vous joigniez à elle pour la consultation :engagement .", "You’ve been invited to participate in [:projectable](:projectable_url)’s project, [:project](:project_url). They would like you to join them for their engagement, [:engagement](:engagement_url).": "Vous avez été invité à participer au projet [:project](:project_url) de [:projectable](:projectable_url). Cette organisation aimerait que vous vous joigniez à elle pour la consultation [:engagement](:engagement_url).", "You’ve blocked :individual. If you want to visit this page, you can :unblock and return to this page.": "Vous avez bloqué :individual. Si vous souhaitez visiter leur page dans le futur, vous devrez les :unblock puis rafraichir la page.", - "You’ve blocked :name": "Vous avez bloqué :name", "You’ve blocked :organization. If you want to visit this page, you can :unblock and return to this page.": "Vous avez bloqué :organization. Si vous souhaitez visiter leur page dans le futur, vous devrez les :unblock puis rafraichir la page.", "You’ve blocked :regulatedOrganization. If you want to visit this page, you can :unblock and return to this page.": "Vous avez bloqué :regulatedOrganization. Si vous souhaitez visiter leur page dans le futur, vous devrez les :unblock puis rafraichir la page.", "You’ve provided the following contact information:": "Vous avez fourni les informations de contact suivantes :", "You’ve provided the following contact information for them:": "Vous avez fourni les informations de contact suivantes pour cette personne :", "Yukon Territory": "Territoire du Yukon", "Zoom": "Zoom", - "Zoom ID:": "ID Zoom :", - "Zoom password:": "Mot de passe Zoom :", "[:projectable](:projectable_url) has approved an estimate for their project [:project](:project_url).": "[:projectable](:projectable_url) a approuvé un devis pour leur projet [:project](:project_url).", "[:projectable](:projectable_url) has requested an estimate for their project [:project](:project_url).": "[:projectable](:projectable_url) a demandé un devis pour leur projet [:project](:project_url).", "{1} :count project matches your applied filters.": "{1} :count projet(s) correspondent à vos critères de recherche.", diff --git a/resources/views/about/partials/what-we-ask-for-navigation.blade.php b/resources/views/about/partials/what-we-ask-for-navigation.blade.php index 53f8e75fa..8a775b78d 100644 --- a/resources/views/about/partials/what-we-ask-for-navigation.blade.php +++ b/resources/views/about/partials/what-we-ask-for-navigation.blade.php @@ -1,5 +1,5 @@