diff --git a/.gitignore b/.gitignore index 2fd112e3..7347fbeb 100644 --- a/.gitignore +++ b/.gitignore @@ -3,8 +3,11 @@ logs *.log npm-debug.log* .DS_Store - +cache +.nyc_output/ coverage +cypress/videos +cypress/reports node_modules build .env.local @@ -16,4 +19,4 @@ data omelette src/addons -src/develop \ No newline at end of file +src/develop diff --git a/Jenkinsfile b/Jenkinsfile index 15d36767..a31b05e4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,70 +14,70 @@ pipeline { stages { - // stage('Integration tests') { - // parallel { - // stage('Integration with Cypress') { - // when { - // environment name: 'CHANGE_ID', value: '' - // } - // steps { - // node(label: 'docker') { - // script { - // try { - // sh '''docker pull plone; docker run -d --name="$BUILD_TAG-plone" -e SITE="Plone" -e PROFILES="profile-plone.restapi:blocks" plone fg''' - // sh '''docker pull eeacms/volto-project-ci; docker run -i --name="$BUILD_TAG-cypress" --link $BUILD_TAG-plone:plone -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" eeacms/volto-project-ci cypress''' - // } finally { - // try { - // sh '''rm -rf cypress-reports cypress-results''' - // sh '''mkdir -p cypress-reports cypress-results''' - // sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/videos cypress-reports/''' - // sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/reports cypress-results/''' - // archiveArtifacts artifacts: 'cypress-reports/videos/*.mp4', fingerprint: true - // } - // finally { - // catchError(buildResult: 'SUCCESS', stageResult: 'SUCCESS') { - // junit testResults: 'cypress-results/**/*.xml', allowEmptyResults: true - // } - // sh script: "docker stop $BUILD_TAG-plone", returnStatus: true - // sh script: "docker rm -v $BUILD_TAG-plone", returnStatus: true - // sh script: "docker rm -v $BUILD_TAG-cypress", returnStatus: true - // } - // } - // } - // } - // } - // } - - // stage("Docker test build") { - // when { - // not { - // environment name: 'CHANGE_ID', value: '' - // } - // not { - // buildingTag() - // } - // environment name: 'CHANGE_TARGET', value: 'master' - // } - // environment { - // IMAGE_NAME = BUILD_TAG.toLowerCase() - // } - // steps { - // node(label: 'docker-host') { - // script { - // checkout scm - // try { - // dockerImage = docker.build("${IMAGE_NAME}", "--no-cache .") - // } finally { - // sh script: "docker rmi ${IMAGE_NAME}", returnStatus: true - // } - // } - // } - // } - // } - - - // } - // } + stage('Integration tests') { + parallel { + stage('Integration with Cypress') { + when { + environment name: 'CHANGE_ID', value: '' + } + steps { + node(label: 'docker') { + script { + try { + sh '''docker pull eeacms/plone-backend; docker run --rm -d --name="$BUILD_TAG-plone" -e SITE="Plone" -e PROFILES="eea.kitkat:testing" eeacms/plone-backend''' + sh '''docker pull eeacms/volto-project-ci; docker run -i --name="$BUILD_TAG-cypress" --link $BUILD_TAG-plone:plone -e GIT_NAME=$GIT_NAME -e GIT_BRANCH="$BRANCH_NAME" -e GIT_CHANGE_ID="$CHANGE_ID" eeacms/volto-project-ci cypress''' + } finally { + try { + sh '''rm -rf cypress-reports cypress-results''' + sh '''mkdir -p cypress-reports cypress-results''' + sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/videos cypress-reports/''' + sh '''docker cp $BUILD_TAG-cypress:/opt/frontend/my-volto-project/cypress/reports cypress-results/''' + archiveArtifacts artifacts: 'cypress-reports/videos/*.mp4', fingerprint: true + } + finally { + catchError(buildResult: 'SUCCESS', stageResult: 'SUCCESS') { + junit testResults: 'cypress-results/**/*.xml', allowEmptyResults: true + } + sh script: "docker stop $BUILD_TAG-plone", returnStatus: true + sh script: "docker rm -v $BUILD_TAG-plone", returnStatus: true + sh script: "docker rm -v $BUILD_TAG-cypress", returnStatus: true + } + } + } + } + } + } + + stage("Docker test build") { + when { + not { + environment name: 'CHANGE_ID', value: '' + } + not { + buildingTag() + } + environment name: 'CHANGE_TARGET', value: 'master' + } + environment { + IMAGE_NAME = BUILD_TAG.toLowerCase() + } + steps { + node(label: 'docker-host') { + script { + checkout scm + try { + dockerImage = docker.build("${IMAGE_NAME}", "--no-cache .") + } finally { + sh script: "docker rmi ${IMAGE_NAME}", returnStatus: true + } + } + } + } + } + + + } + } stage('Pull Request') { @@ -174,24 +174,24 @@ pipeline { } } - // stage('Update SonarQube Tags') { - // when { - // not { - // environment name: 'SONARQUBE_TAG', value: '' - // } - // buildingTag() - // } - // steps{ - // node(label: 'docker') { - // withSonarQubeEnv('Sonarqube') { - // withCredentials([string(credentialsId: 'eea-jenkins-token', variable: 'GIT_TOKEN')]) { - // sh '''docker pull eeacms/gitflow''' - // sh '''docker run -i --rm --name="${BUILD_TAG}-sonar" -e GIT_NAME=${GIT_NAME} -e GIT_TOKEN="${GIT_TOKEN}" -e SONARQUBE_TAG=${SONARQUBE_TAG} -e SONARQUBE_TOKEN=${SONAR_AUTH_TOKEN} -e SONAR_HOST_URL=${SONAR_HOST_URL} eeacms/gitflow /update_sonarqube_tags.sh''' - // } - // } - // } - // } - // } + stage('Update SonarQube Tags') { + when { + not { + environment name: 'SONARQUBE_TAG', value: '' + } + buildingTag() + } + steps{ + node(label: 'docker') { + withSonarQubeEnv('Sonarqube') { + withCredentials([string(credentialsId: 'eea-jenkins-token', variable: 'GIT_TOKEN')]) { + sh '''docker pull eeacms/gitflow''' + sh '''docker run -i --rm --name="${BUILD_TAG}-sonar" -e GIT_NAME=${GIT_NAME} -e GIT_TOKEN="${GIT_TOKEN}" -e SONARQUBE_TAG=${SONARQUBE_TAG} -e SONARQUBE_TOKEN=${SONAR_AUTH_TOKEN} -e SONAR_HOST_URL=${SONAR_HOST_URL} eeacms/gitflow /update_sonarqube_tags.sh''' + } + } + } + } + } } diff --git a/cypress.config.js b/cypress.config.js new file mode 100644 index 00000000..da8e7baf --- /dev/null +++ b/cypress.config.js @@ -0,0 +1,27 @@ +const { defineConfig } = require('cypress'); + +module.exports = defineConfig({ + viewportWidth: 1280, + defaultCommandTimeout: 8888, + chromeWebSecurity: false, + reporter: 'junit', + video: true, + retries: { + runMode: 8, + openMode: 0, + }, + reporterOptions: { + mochaFile: 'cypress/reports/cypress-[hash].xml', + jenkinsMode: true, + toConsole: true, + }, + e2e: { + setupNodeEvents(on, config) { + // e2e testing node events setup code + require('@cypress/code-coverage/task')(on, config); + require('cypress-fail-fast/plugin')(on, config); + return config; + }, + baseUrl: 'http://localhost:3000', + }, +}); diff --git a/cypress.json b/cypress.json deleted file mode 100644 index aef675e8..00000000 --- a/cypress.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "baseUrl": "http://localhost:3000", - "viewportWidth": 1280, - "defaultCommandTimeout": 15000, - "reporter": "junit", - "video": true, - "reporterOptions": { - "mochaFile": "cypress/reports/cypress-[hash].xml", - "jenkinsMode": true, - "toConsole": true - } -} diff --git a/cypress/integration/block-basics.js b/cypress/e2e/01-block-basics.cy.js similarity index 57% rename from cypress/integration/block-basics.js rename to cypress/e2e/01-block-basics.cy.js index 454084ce..1e726ef6 100644 --- a/cypress/integration/block-basics.js +++ b/cypress/e2e/01-block-basics.cy.js @@ -1,20 +1,20 @@ -import { setupBeforeEach, tearDownAfterEach } from '../support'; +import { slateBeforeEach, slateAfterEach } from '../support/e2e'; + +import 'cypress-fail-fast'; describe('Blocks Tests', () => { - beforeEach(setupBeforeEach); - afterEach(tearDownAfterEach); + beforeEach(slateBeforeEach); + afterEach(slateAfterEach); it('Add Block: Empty', () => { // Change page title - cy.get('.documentFirstHeading > .public-DraftStyleDefault-block') - .clear() - .type('My Add-on Page') - .get('.documentFirstHeading span[data-text]') - .contains('My Add-on Page'); - - cy.get('.documentFirstHeading > .public-DraftStyleDefault-block').type( - '{enter}', - ); + cy.get('[contenteditable=true]').first().clear(); + + cy.get('[contenteditable=true]').first().type('My Add-on Page'); + + cy.get('.documentFirstHeading').contains('My Add-on Page'); + + cy.get('[contenteditable=true]').first().type('{enter}'); // Add block cy.get('.ui.basic.icon.button.block-add-button').first().click(); diff --git a/cypress/plugins/index.js b/cypress/plugins/index.js deleted file mode 100644 index 27a31a54..00000000 --- a/cypress/plugins/index.js +++ /dev/null @@ -1,26 +0,0 @@ -/// -// *********************************************************** -// This example plugins/index.js can be used to load plugins -// -// You can change the location of this file or turn off loading -// the plugins file with the 'pluginsFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/plugins-guide -// *********************************************************** - -// This function is called when a project is opened or re-opened (e.g. due to -// the project's config changing) - -/** - * @type {Cypress.PluginConfig} - */ -module.exports = (on, config) => { - // `on` is used to hook into various events Cypress emits - // `config` is the resolved Cypress config - /* coverage-start - require('@cypress/code-coverage/task')(on, config) - on('file:preprocessor', require('@cypress/code-coverage/use-babelrc')) - return config - coverage-end */ -}; diff --git a/cypress/support/e2e.js b/cypress/support/e2e.js new file mode 100644 index 00000000..f6964180 --- /dev/null +++ b/cypress/support/e2e.js @@ -0,0 +1,125 @@ +// *********************************************************** +// This example support/index.js is processed and +// loaded automatically before your test files. +// +// This is a great place to put global configuration and +// behavior that modifies Cypress. +// +// You can change the location of this file or turn off +// automatically serving support files with the +// 'supportFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/configuration +// *********************************************************** + +// Import commands.js using ES2015 syntax: +import './commands'; +// Alternatively you can use CommonJS syntax: +// require('./commands') + +//Generate code-coverage +import '@cypress/code-coverage/support'; + +export const slateBeforeEach = (contentType = 'Document') => { + cy.autologin(); + cy.createContent({ + contentType: 'Document', + contentId: 'cypress', + contentTitle: 'Cypress', + }); + cy.createContent({ + contentType: contentType, + contentId: 'my-page', + contentTitle: 'My Page', + path: 'cypress', + }); + cy.visit('/cypress/my-page'); + cy.waitForResourceToLoad('@navigation'); + cy.waitForResourceToLoad('@breadcrumbs'); + cy.waitForResourceToLoad('@actions'); + cy.waitForResourceToLoad('@types'); + cy.waitForResourceToLoad('my-page'); + cy.navigate('/cypress/my-page/edit'); +}; + +export const slateAfterEach = () => { + cy.autologin(); + cy.removeContent('cypress'); +}; + +export const slateJsonBeforeEach = (contentType = 'slate') => { + cy.autologin(); + cy.addContentType(contentType); + cy.addSlateJSONField(contentType, 'slate'); + slateBeforeEach(contentType); +}; + +export const slateJsonAfterEach = (contentType = 'slate') => { + cy.autologin(); + cy.removeContentType(contentType); + slateAfterEach(); +}; + +export const getSelectedSlateEditor = () => { + return cy.get('.slate-editor.selected [contenteditable=true]').click(); +}; + +export const createSlateBlock = () => { + cy.get('.ui.basic.icon.button.block-add-button').first().click(); + cy.get('.blocks-chooser .title').contains('Text').click(); + cy.get('.ui.basic.icon.button.slate').contains('Text').click(); + return getSelectedSlateEditor(); +}; + +export const getSlateBlockValue = (sb) => { + return sb.invoke('attr', 'data-slate-value').then((str) => { + return typeof str === 'undefined' ? [] : JSON.parse(str); + }); +}; + +export const createSlateBlockWithList = ({ + numbered, + firstItemText, + secondItemText, +}) => { + let s1 = createSlateBlock(); + + s1.typeInSlate(firstItemText + secondItemText); + + // select all contents of slate block + // - this opens hovering toolbar + cy.contains(firstItemText + secondItemText).then((el) => { + selectSlateNodeOfWord(el); + }); + + // TODO: do not hardcode these selectors: + if (numbered) { + // this is the numbered list option in the hovering toolbar + cy.get('.slate-inline-toolbar > :nth-child(9)').click(); + } else { + // this is the bulleted list option in the hovering toolbar + cy.get('.slate-inline-toolbar > :nth-child(10)').click(); + } + + // move the text cursor + const sse = getSelectedSlateEditor(); + sse.type('{leftarrow}'); + for (let i = 0; i < firstItemText.length; ++i) { + sse.type('{rightarrow}'); + } + + // simulate pressing Enter + getSelectedSlateEditor().lineBreakInSlate(); + + return s1; +}; + +export const selectSlateNodeOfWord = (el) => { + return cy.window().then((win) => { + var event = new CustomEvent('Test_SelectWord', { + detail: el[0], + }); + win.document.dispatchEvent(event); + }); +}; diff --git a/cypress/support/index.js b/cypress/support/index.js deleted file mode 100644 index e585436d..00000000 --- a/cypress/support/index.js +++ /dev/null @@ -1,53 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands'; - -// Alternatively you can use CommonJS syntax: -// require('./commands') - -/* coverage-start -//Generate code-coverage -import '@cypress/code-coverage/support'; -coverage-end */ - -export const setupBeforeEach = () => { - cy.autologin(); - cy.createContent({ - contentType: 'Folder', - contentId: 'cypress', - contentTitle: 'Cypress', - }); - cy.createContent({ - contentType: 'Document', - contentId: 'my-page', - contentTitle: 'My Page', - path: 'cypress', - }); - cy.visit('/cypress/my-page'); - cy.waitForResourceToLoad('@navigation'); - // cy.waitForResourceToLoad('@breadcrumbs'); - cy.waitForResourceToLoad('@actions'); - cy.waitForResourceToLoad('@types'); - cy.waitForResourceToLoad('my-page'); - cy.navigate('/cypress/my-page/edit'); - cy.get(`.block.title [data-contents]`); -}; - -export const tearDownAfterEach = () => { - cy.autologin(); - cy.removeContent('cypress'); -}; diff --git a/locales/de.json b/locales/de.json index 50ec067f..69b13dad 100644 --- a/locales/de.json +++ b/locales/de.json @@ -1 +1 @@ -{"

Add some HTML here

":"

HTML hier einfügen

","Accessibility":"Barrierefreiheit","Account Registration Completed":"Die Registrierung Ihres Zugangs wurde erfolgreich abgeschlossen.","Account activation completed":"Passwort gesetzt.","Action":"Aktion","Action changed":"","Action: ":"","Actions":"Aktionen","Activate and deactivate":"Aktiviern und Deaktivieren","Active":"","Active content rules in this Page":"","Add":"Hinzufügen","Add (object list)":"","Add Addons":"Add-on hinzufügen","Add Content":"Inhalte hinzufügen","Add Content Rule":"","Add Rule":"","Add Translation…":"Übersetzung hinzufügen…","Add User":"Benutzer hinzufügen","Add a description…":"Beschreibung hinzufügen…","Add a new alternative url":"","Add action":"","Add block":"Block hinzufügen","Add block…":"Block hinzufügen","Add condition":"","Add content rule":"","Add criteria":"Kriterien hinzufügen","Add date":"Datum hinzufügen","Add field":"Feld hinzufügen","Add fieldset":"Fieldset hinzufügen","Add group":"Gruppe hinzufügen","Add new content type":"Neuen Inhaltstypen hinzufügen","Add new group":"Neue Gruppe hinzufügen","Add new user":"Neuen Benutzer hinzufügen","Add to Groups":"Zu Gruppe hinzufügen","Add users to group":"Füge Benutzer zu Gruppe hinzu","Add vocabulary term":"Füge neuen Term hinzu","Add {type}":"{type} hinzufügen","Add-Ons":"","Add-on Configuration":"Konfiguration von Erweiterungen","Add-ons":"","Add-ons Settings":"Einstellungen Add-ons","Added":"","Additional date":"Zusätzliches Datum","Addon could not be installed":"","Addon could not be uninstalled":"","Addon could not be upgraded":"","Addon installed succesfuly":"","Addon uninstalled succesfuly":"","Addon upgraded succesfuly":"","Album view":"Album","Alias":"","Alias has been added":"","Alignment":"Ausrichtung","All":"Alle","All content":"Alle Inhalte","All existing alternative urls for this site":"","Alphabetically":"alphabetisch","Alt text":"Alternative Text","Alt text hint":"","Alt text hint link text":"","Alternative url path (Required)":"","Alternative url path must start with a slash.":"","Alternative url path → target url path (date and time of creation, manually created yes/no)":"","Applied to subfolders":"","Applies to subfolders?":"","Apply to subfolders":"","Apply working copy":"Arbeitskopie anwenden","Are you sure you want to delete this field?":"Sind Sie sicher, dass Sie dieses Feld löschen möchten?","Are you sure you want to delete this fieldset including all fields?":"Sind Sie sicher, dass Sie dieses Fieldset löschen möchten?","Ascending":"Aufsteigend","Assignments":"","Available":"Verfügbar","Available content rules:":"","Back":"Zurück","Background color":"Hintergrundfarbe","Base":"Basis","Base search query":"Basis Suchfilter","Block":"Block","Both email address and password are case sensitive, check that caps lock is not enabled.":"Sowohl E-Mail Adresse als auch Passwort unterscheiden zwischen Groß- und Kleinschreibung, stellen Sie sicher dass die Hochstelltaste nicht aktiviert ist.","Breadcrumbs":"Brotkrumen","Browse":"Durchsuchen","Browse the site, drop an image, or type an URL":"Seite durchsuchen, Bild ablegen oder URL eingeben","By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator.":"Standardmäßig werden die Berechtigungen von einem Ordner auf die in ihm befindlichen Artikel vererbt. Wenn Sie dies deaktivieren, sind nur die explizit definierten Zugriffsberechtigungen gültig. In der Übersicht zeigt das Symbol ${image_confirm_icon} einen ererbten Wert an. Das Symbol ${image_link_icon} zeigt eine globale Funktion an, die vom Administrator verwaltet wird.","By deleting this item, you will break links that exist in the items listed below. If this is indeed what you want to do, we recommend that remove these references first.":"","Cache Name":"Cache Name","Can not edit Layout for {type} content-type as it doesn't have support for Volto Blocks enabled":"Layout für {type} kann nicht verändert werden, da das Volto Blocks-Behavior nicht für diesen Inhaltstyp aktiviert ist","Can not edit Layout for {type} content-type as the Blocks behavior is enabled and read-only":"Layout für {type} kann nicht verändert werden, da das Volto Blocks-Behavior auf nur-lesend gesetzt ist","Cancel":"Abbrechen","Cell":"Zelle","Center":"","Change Note":"Änderungsnotiz","Change Password":"Passwort ändern","Change State":"Arbeitsablauf-Status ändern","Change workflow state recursively":"Arbeitsablauf-Status für alle Unterobjekte ebenfalls ändern","Changes applied.":"Änderungen durchgeführt.","Changes saved":"Änderungen gespeichert","Changes saved.":"Änderungen gespeichert.","Checkbox":"Checkbox","Choices":"Auswahlfeld","Choose Image":"Bild auswählen","Choose Target":"Ziel auswählen","Choose a file":"Datei auswählen","Clear":"Löschen","Clear filters":"Filter entfernen","Click to download full sized image":"Klicken um das Bild in der vollen Größe runterzuladen","Close":"Schließen","Close menu":"Menu schließen","Code":"Code","Collapse item":"Element einklappen","Collection":"Kollektion","Color":"","Comment":"Kommentar","Commenter":"Kommentarautor","Comments":"Kommentare","Compare":"Vergleichen","Condition changed":"","Condition: ":"","Configure Content Rule":"","Configure Content Rule: {title}":"","Configure content rule":"","Confirm password":"Passwort bestätigen","Connection refused":"Verbindung abgelehnt","Contact":"Kontakt","Contact form":"Kontaktformular","Contained items":"Enthaltene Elemente","Content":"Inhalt","Content Rule":"","Content Rules":"","Content rules for {title}":"","Content rules from parent folders":"","Content type created":"Inhaltstyp erstellt","Content type deleted":"Inhaltstyp gelöscht","Contents":"Inhalte","Controls":"Einstellungen","Copy":"Kopieren","Copy blocks":"Blöcke kopieren","Copyright":"Urheberrecht","Copyright statement or other rights information on this item.":"Informationen über die Urheber- und Nutzungsrechte an diesem Artikel.","Create working copy":"Arbeitskopie erstellen","Created by {creator} on {date}":"Erstellt von {creator} am {date}","Created on":"Erstellt am","Creator":"Ersteller","Creators":"Ersteller","Criteria":"Kriterium","Current filters applied":"Ausgewählte Filter","Current password":"Aktuelles Passwort","Cut":"Ausschneiden","Cut blocks":"Blöcke ausschneiden","Daily":"Täglich","Database":"","Database Information":"Datenbankinformationen","Database Location":"Speicheort Datenbank","Database Size":"Größe Datenbank","Database main":"Datenbank","Date":"Datum","Date (newest first)":"Datum (neustes zuerst)","Default":"Standard","Default view":"Standard","Delete":"Löschen","Delete Group":"Gruppe löschen","Delete Type":"Inhaltstype löschen","Delete User":"Benutzer löschen","Delete action":"","Delete blocks":"Blöcke löschen","Delete col":"Spalte löschen","Delete condition":"","Delete row":"Zeile löschen","Deleted":"","Depth":"Tiefe","Descending":"Absteigend","Description":"Beschreibung","Diff":"Unterschied","Difference between revision {one} and {two} of {title}":"Unterschied zwischen Version {one} and {two} von {title}","Disable":"","Disable apply to subfolders":"","Disabled":"","Disabled apply to subfolders":"","Distributed under the {license}.":"Lizensiert unter der {license}.","Divide each row into separate cells":"Jede Zeile in einzelne Zellen teilen","Do you really want to delete the following items?":"Möchten Sie den Artikel wirklich löschen?","Do you really want to delete the group {groupname}?":"Möchten Sie die Gruppe {groupname} wirklich löschen?","Do you really want to delete the type {typename}?":"Möchten Sie den Inhaltstyp {typename} wirklich löschen?","Do you really want to delete the user {username}?":"Möchten Sie den Nutzer {username} wirklich löschen?","Do you really want to delete this item?":"Möchten Sie den Artikel wirklich löschen?","Document":"Seite","Document view":"Seite","Download Event":"","Drag and drop files from your computer onto this area or click the “Browse” button.":"Ziehen Sie Dateien von Ihrem Computer auf diesen Bereich oder drücken Sie den “Durchsuchen”-Knopf.","Drop file here to replace the existing file":"Datei hier ablegen um die bestehende Datei zu ersetzen","Drop file here to upload a new file":"Datei hier ablegen um eine neue Datei hochzuladen","Drop files here ...":"Datei hier ablegen um die bestehende Datei zu ersetzen","E-mail":"E-Mail","E-mail addresses do not match.":"E-Mail-Adressen stimmen nicht überein.","Edit":"Bearbeiten","Edit Rule":"","Edit comment":"Kommentar bearbeiten","Edit field":"Feld bearbeiten","Edit fieldset":"Fieldset bearbeiten","Edit recurrence":"Wiederkehrende Einstellungen bearbeiten","Edit values":"Werte bearbeiten","Edit {title}":"{title} bearbeiten","Email":"E-Mail","Email sent":"E-Mail versendet","Embed code error, please follow the instructions and try again.":"Fehler beim Einbinden des Google Maps Codes. Bitte lesen Sie die Anweisungen und stellen Sie sicher dass Sie den korrekten Code verwenden.","Empty object list":"Leere Liste von Elementen","Enable":"","Enable editable Blocks":"Aktiviere bearbeitbare Blocks","Enabled":"","Enabled here?":"","Enabled?":"","End Date":"Enddatum","Enter URL or select an item":"URL eingeben oder Objekt auswählen","Enter a username above to search or click 'Show All'":"Benutzername oben eingeben oder auf 'Alle anzeigen' klicken","Enter an email address. This will be your login name. We respect your privacy, and will not give the address away to any third parties or expose it anywhere.":"Tragen Sie Ihre E-Mail-Adresse ein, mit der Sie sich künftig anmelden müssen. Wir respektieren den Datenschutz und werden die E-Mail-Adresse nicht an Dritte weitergeben und auch nirgends anzeigen.","Enter full name, e.g. John Smith.":"Tragen Sie bitte Ihren vollen Namen ein.","Enter map Embed Code":"Karten-Einbettungscode eingeben","Enter the absolute path of the target. The path must start with '/'. Target must exist or be an existing alternative url path to the target.":"","Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring.":"","Enter your current password.":"Geben Sie Ihr aktuelles Passwort ein.","Enter your email for verification.":"","Enter your new password. Minimum 5 characters.":"Geben Sie ihr neues Passwort ein. Mindestens 5 Zeichen.","Enter your username for verification.":"","Error":"Fehler","ErrorHeader":"","Event":"","Event listing":"Termine","Event view":"Termin","Exclude from navigation":"Von der Navigation ausschließen","Exclude this occurence":"Dieses Datum ausschließen","Excluded from navigation":"Von Navigation ausgeschlossen","Existing alternative urls for this item":"","Expand sidebar":"Sidebar vergrößern","Expiration Date":"Ablaufdatum","Expiration date":"Ablaufdatum","Expired":"Abgelaufen","External URL":"Externe URL","Facet":"Facette","Facet widget":"Facetten-Widget","Facets":"Facetten","Facets on left side":"Facetten links","Facets on right side":"Facetten rechts","Facets on top":"Facetten oben","Failed To Undo Transactions":"","Field":"Feld","File":"Datei","File size":"Dateigröße","File view":"Datei","Filename":"Dateiname","Filter Rules:":"","Filter by prefix":"","Filter users by groups":"Filtere Benutzer via Gruppenmitgliedschaft","Filter…":"Filter…","First":"Erster Tag des Monats","Fixed width table cells":"Zellen mit fester Breite","Fold":"Einklappen","Folder":"Ordner","Folder listing":"Ordner","Forbidden":"Verboten","Fourth":"Vierter","From":"E-Mail","Full":"Volle Breite","Full Name":"Vor- und Nachname","Fullname":"Name","GNU GPL license":"GNU-GPL-Lizenz","General":"Allgemein","Global role":"Globale Rolle","Google Maps Embedded Block":"Google Maps Block","Group":"Gruppe","Group created":"Gruppe erstellt","Group roles updated":"Gruppenrollen aktualisiert","Groupname":"Gruppenname","Groups":"Gruppen","Groups are logical collections of users, such as departments and business units. Groups are not directly related to permissions on a global level, you normally use Roles for that - and let certain Groups have a particular role. The symbol{plone_svg}indicates a role inherited from membership in another group.":"Gruppen sind Kollektionen von Nutzern, wie z.B. Abteilungen oder Organisationseinheiten. Berechtigungen werden normalerweise nicht global an Gruppen vergeben, sondern eher an Rollen, und dann haben Gruppen eine bestimmte Rolle. Das Symbol {plone_svg} zeigt an, dass eine Rolle von einer anderen Gruppe geerbt wird.","Header cell":"Kopfzeile","Headline":"Überschrift","Headline level":"","Hidden facets will still filter the results if proper parameters are passed in URLs":"Verteckte Facetten können die Ergebnisse weiterhin filtern, wenn die entsprechenden Parameter in der URL angehängt werden","Hide Replies":"Antworten ausblenden","Hide facet?":"Facette verstecken","History":"Historie","History Version Number":"Historie Versionsnummer","History of {title}":"Historie von {title}","Home":"Startseite","ID":"ID","If all of the following conditions are met:":"","If selected, this item will not appear in the navigation tree":"Bestimmt, ob der Artikel nicht in der Navigation auftauchen soll.","If this date is in the future, the content will not show up in listings and searches until this date.":"Falls das Datum in der Zukunft liegt wird der Inhalt in Auflistungen und bei der Suche nicht auftauchen, bis zu dem Datum.","If you are certain this user has abandoned the object, you may unlock the object. You will then be able to edit it.":"Wenn Sie sicher sind dass das Objekt nicht mehr aktiv von einem anderen Nutzer verwendet wird, können Sie die Sperrung aufheben. Danach können Sie das Objekt bearbeiten.","If you are certain you have the correct web address but are encountering an error, please contact the {site_admin}.":"Wenn Sie sicher sind, dass Sie die richtige Adresse eingegeben haben, kontaktieren Sie bitte den {site_admin}.","Image":"Bild","Image gallery":"Bildergalerie","Image size":"","Image view":"Bild","Include this occurence":"Datum einbeziehen","Info":"Information","InfoUserGroupSettings":"Sie haben die Option 'viele Benutzer' oder 'viele Gruppen' gewählt. Deshalb erwartet das Panel die Eingabe eines Suchwerts und die Auswahl eines Gruppen-Filters um Benutzer und Gruppen zu zeigen. Wenn Sie im Panel umgehend alle Benutzer und Gruppen sehen möchten, dann wechseln Sie bitte zu den Benutzer- und Gruppeneinstellungen und ändern die Einstellungen. Links finden Sie einen Link.","Inherit permissions from higher levels":"Berechtigungen von übergeordneten Ordnern übernehmen","Inherited value":"Geerbter Wert","Insert col after":"Spalte dahinter einfügen","Insert col before":"Spalte davor einfügen","Insert row after":"Zeile dahinter einfügen","Insert row before":"Zeile davor einfügen","Install":"Installieren","Installed":"Installiert","Installed version":"Installierte Version","Installing a third party add-on":"","Interval Daily":"Täglich","Interval Monthly":"Monatlich","Interval Weekly":"Wöchentlich","Interval Yearly":"Jährliches Intervall","Item batch size":"Batch-Anzahl","Item succesfully moved.":"Objekt wurde erfolgreich verschoben.","Item(s) copied.":"Objekt(e) kopiert.","Item(s) cut.":"Objekt(e) ausgeschnitten.","Item(s) has been updated.":"Objekt(e) wurde(n) aktualisiert","Item(s) pasted.":"Artikel eingefügt.","Item(s) state has been updated.":"Der Status der Objekte wurde aktualisiert.","Items":"Elemente","Items must be unique.":"Auswahl muss eindeutig sein.","Items to be deleted:":"","Label":"Label","Language":"Sprache","Language independent field.":"","Large":"","Last":"Letzter","Last comment date":"Letztes Kommentierdatum","Last modified":"Letzte Änderung","Latest version":"Letzte Version","Layout":"Layout","Lead Image":"Lead-Bild","Left":"","Link":"Link","Link more":"'Mehr' Link","Link redirect view":"Link","Link title":"Linktitel","Link to":"Link auf","Link translation for":"Übersetzung verbinden","Listing":"Auflistung","Listing view":"Auflistung","Load more":"Mehr laden","Loading":"lädt","Log In":"Anmelden","Log in":"Anmelden","Logged out":"Abgemeldet","Login":"Einloggen","Login Failed":"Login fehlgeschlagen","Login Name":"Benutzername","Logout":"Ausloggen","Made by {creator} on {date}. This is not a working copy anymore, but the main content.":"Erstellt von {creator} am {date}. Diese Seite ist keine Arbeitskopie mehr sondern die Live-Seite.","Make the table compact":"Tabelle komprimieren","Manage Translations":"Übersetzungen verwalten","Manage content…":"","Manage translations for {title}":"Übersetzungen für {} verwalten","Manual":"","Manually or automatically added?":"","Maps":"","Maps URL":"Karten URL","Maximum length is {len}.":"Maximale Länge ist {len}.","Maximum value is {len}.":"Maximaler Wert ist {len}","Medium":"","Message":"Nachricht","Minimum length is {len}.":"Minimale Länge ist {len}","Minimum value is {len}.":"Minimaler Wert ist {len}","Moderate Comments":"Kommentare moderieren","Moderate comments":"Kommentare moderieren","Monday and Friday":"Montag und Freitag","Month day":"Tag des Monats","Monthly":"Monatlich","More":"Mehr","Mosaic layout":"Mosaic","Move down":"","Move to bottom of folder":"Ans Ende verschieben","Move to top of folder":"An den Anfang verschieben","Move up":"","Multiple choices?":"Mehrfachauswahl","My email is":"","My username is":"Mein Benutzername ist","Name":"Name","Navigate back":"Zurück navigieren","Navigation":"Navigation","New password":"Neues Passwort","News Item":"Nachricht","News item view":"Nachricht","No":"Nein","No Transactions Found":"","No Transactions Selected":"","No Transactions Selected To Do Undo":"","No Video selected":"","No addons found":"Keine Add-ons installiert.","No connection to the server":"","No image selected":"","No image set in Lead Image content field":"Im Feld 'Lead-Bild' wurde kein Bild gesetzt.","No image set in image content field":"Im Feld 'Bild' wurde kein Bild gesetzt","No items found in this container.":"Keine Elemente gefunden","No items selected":"Kein Element ausgewählt","No map selected":"Keine Karte ausgewählt","No occurences set":"Kein Datum gesetzt","No options":"Keine Option","No results found":"Keine Ergebnisse gefunden","No results found.":"Keine Ergebnisse gefunden.","No selection":"Keine Auswahl","No uninstall profile":"Kein Deinstallationsprofil","No user found":"Kein Benutzer gefunden","No value":"Kein Wert","No workflow":"Kein Workflow","None":"Nicht vorhanden","Note":"","Note that roles set here apply directly to a user. The symbol{plone_svg}indicates a role inherited from membership in a group.":"Rollen gelten für diesen Nutzer. Das Zeichen {plone_svg} zeigt an dass eine Rolle von einer Gruppenzugehörigkeit geerbt wird.","Number of active objects":"Anzahl aktive Objekte","Object Size":"Grösse","Occurences":"Vorkommen","Ok":"OK","Only lowercase letters (a-z) without accents, numbers (0-9), and the characters \"-\", \"_\", and \".\" are allowed.":"Nur Kleinbuchstaben (a-z) ohne Umlaute oder Sonderzeichen, Zahlen (0-9) und die beiden Zeichen \"-\" und \"_\", und \".\" sind erlaubt.","Open in a new tab":"In neuem Browser-Tab öffnen","Open menu":"Menü öffnen","Open object browser":"Objekt-Browser öffnen","Origin":"Quelle","Page":"Seite","Parent fieldset":"Eltern-Fieldset","Password":"Passwort","Password reset":"Passwort zurücksetzen","Passwords do not match.":"Die Passwörter stimmen nicht überein.","Paste":"Einfügen","Paste blocks":"Blöcke einfügen","Perform the following actions:":"","Permissions have been updated successfully":"Berechtigungen wurden erfolgreich aktualisiert","Permissions updated":"Berechtigungen aktualisiert","Personal Information":"Persönliche Informationen","Personal Preferences":"Meine Einstellungen","Personal tools":"Persönliche Einstellungen","Persons responsible for creating the content of this item. Please enter a list of user names, one per line. The principal creator should come first.":"Eine Liste von Personen, die an der Erstellung dieses Artikels beteiligt waren. Bitte geben Sie einen Benutzernamen pro Zeile ein. Der Hauptverantwortliche sollte zuerst genannt werden.","Please enter a valid URL by deleting the block and adding a new video block.":"Geben Sie eine gültige URL ","Please enter the Embed Code provided by Google Maps -> Share -> Embed map. It should contain the .","Please fill out the form below to set your password.":"Preencha o formulário abaixo para definir sua senha.","Please search for users or use the filters on the side.":"Procure por usuários ou use os filtros na lateral.","Please upgrade to plone.restapi >= 8.24.0.":"Por favor, atualize para plone.restapi >= 8.24.0.","Plone Foundation":"Fundação Plone","Plone Site":"Site Plone","Plone{reg} Open Source CMS/WCM":"Plone{reg} Open Source CMS/WCM","Position changed":"","Possible values":"Valores possíveis","Potential link breakage":"","Powered by Plone & Python":"Criado com Plone e Python","Preferences":"Preferências","Prettify your code":"Re-formatar seu código","Preview":"Pré-visualização","Preview Image URL":"Url de imagem de pré-visualização","Profile":"Perfil","Properties":"Propriedades","Publication date":"Data de publicação","Publishing Date":"Data de publicação","Query":"Consulta","Re-enter the password. Make sure the passwords are identical.":"Reinsira a senha. Certifique-se de que as senhas são idênticas.","Read More…":"Leia Mais…","Rearrange items by…":"Reorganize itens por…","Recurrence ends":"Término da recorrência","Recurrence ends after":"Recorrência se encerra após","Recurrence ends on":"Recorrência se encerra em","Redo":"Refazer","Reduce complexity":"Reduzir complexidade","Register":"Cadastro","Registration form":"Formulário de cadastro","Relevance":"Relevância","Remove":"","Remove item":"Remover Item","Remove recurrence":"Remover a recorrência","Remove selected":"","Remove term":"Remover o termo","Remove users from group":"Remover usuários do grupo","Remove working copy":"Remover a cópia de trabalho","Rename":"Renomear","Rename Items Loading Message":"Renomeando os items","Rename items":"Renomear itens","Repeat":"Repetição","Repeat every":"Repete a cada","Repeat on":"Repete em","Replace existing file":"Substituir arquivo existente","Reply":"Responder","Required":"Obrigatório","Required input is missing.":"Falta informação obrigatória.","Reset term title":"Redefinir o título do termo","Results limit":"Limite de resultados","Results preview":"Visualização de resultados","Results template":"Modelo de resultados","Reversed order":"Ordem invertida","Revert to this revision":"Reverter para esta revisão","Review state":"Estado","Richtext":"Texto rico","Right":"Direita","Rights":"Direitos","Roles":"Papéis","Root":"Raiz","Rule added":"","Rule enable changed":"","Rules":"","Rules execute when a triggering event occurs. Rule actions will only be invoked if all the rule's conditions are met. You can add new actions and conditions using the buttons below.":"","Save":"Salvar","Save recurrence":"Salvar a recorrência","Saved":"","Schema":"Esquema","Schema updates":"Atualizações do esquema","Search":"Pesquisar","Search SVG":"SVG de busca","Search Site":"Pesquisar no site","Search block":"Bloco de busca","Search button label":"Rótulo do botão de busca","Search content":"Pesquisar conteúdo","Search for user or group":"Pesquisar por usuário ou grupo","Search group…":"Pesquisar grupo…","Search input label":"Rótulo da caixa de busca","Search results":"Resultados da pesquisa","Search results for {term}":"Resultados da pesquisa para {term}","Search users…":"Pesquisar usuários…","Searched for":"Busca por","Second":"Segundo","Section title":"Título da Seção","Select":"Selecionar","Select a date to add to recurrence":"Selecione uma data para adicionar à recorrência","Select columns to show":"Selecione colunas para mostrar","Select the transition to be used for modifying the items state.":"Selecione a transição a ser usada para modificar o estado dos itens.","Selected dates":"Datas selecionadas","Selected items":"Itens selecionados","Selected items - x of y":"Itens selecionados - x de y","Selection":"Seleção","Select…":"Selecionar…","Send":"Enviar","Send a confirmation mail with a link to set the password.":"","Set my password":"Defina minha senha","Set your password":"Defina sua senha","Settings":"Configurações","Sharing":"Compartilhamento","Sharing for {title}":"Compartilhamento para {title}","Short Name":"Nome curto","Short name":"Nome curto","Show":"Mostrar","Show All":"Mostrar tudo","Show Replies":"Mostrar respostas","Show groups of users below":"Mostrar grupos de usuários abaixo","Show item":"Mostrar item","Show search button?":"Mostrar botão de pesquisa?","Show search input?":"Mostrar campo de pesquisa?","Show sorting?":"Mostrar ordenação?","Show total results":"","Shrink sidebar":"Recolher barra lateral","Shrink toolbar":"Recolher barra de ferramentas","Sign in to start session":"Faça login para iniciar a sessão","Site":"Site","Site Administration":"Administração do site","Site Map":"Mapa do site","Site Setup":"Configuração do site","Sitemap":"Mapa do site","Size: {size}":"Tamanho: {size}","Small":"Pequeno","Sorry, something went wrong with your request":"Desculpe, algo deu errado com sua requisição","Sort By":"","Sort By:":"Ordenar por:","Sort on":"Ordenado por","Sort on label":"Rótulo de ordenação","Sort on options":"Opções de ordenação","Sort transactions by User-Name, Path or Date":"","Sorted":"","Source":"Fonte","Specify a youtube video or playlist url":"Informe a url para um vídeo ou uma playlist do YouTube","Split":"Dividir","Start Date":"Data de Início","Start of the recurrence":"Início da recorrência","Start password reset":"Redefinir senha","State":"Estado","Status":"","Stop compare":"Pare de comparar","String":"Texto","Stripe alternate rows with color":"Alternar cores das linhas","Styling":"Estilo","Subject":"Assunto","Success":"Sucesso","Successfully Undone Transactions":"","Summary":"Resumo","Summary view":"","Switch to":"Mudar para","Table":"Tabela","Table of Contents":"Tabela de conteúdos","Tabular view":"","Tags":"Tags","Tags to add":"Tags a serem adicionadas","Tags to remove":"Tags a serem removidas","Target":"","Target Path (Required)":"","Target memory size per cache in bytes":"Tamanho de memória destinada para o cache em bytes","Target number of objects in memory per cache":"Número de objetos na memória para o cache","Target url path must start with a slash.":"","Text":"Texto","Thank you.":"Obrigado.","The Database Manager allow you to view database status information":"O Gerenciador de banco de dados permite que você visualize informações de status do banco de dados","The backend is not responding, due to a server timeout or a connection problem of your device. Please check your connection and try again.":"","The backend is not responding, please check if you have started Plone, check your project's configuration object apiPath (or if you are using the internal proxy, devProxyToApiPath) or the RAZZLE_API_PATH Volto's environment variable.":"O servidor de backend não está respondendo, verifique se você inicializou o Plone, verifique o apiPath de objeto de configuração do seu projeto (ou se você está usando o proxy interno, devProxyToApiPath) ou a variável ambiente RAZZLE_API_PATH Volto.","The backend is responding, but the CORS headers are not configured properly and the browser has denied the access to the backend resources.":"O servidor de backend está respondendo, mas os cabeçalhos CORS não estão configurados corretamente e o navegador negou o acesso aos recursos de backend.","The backend server of your website is not answering, we apologize for the inconvenience. Please try to re-load the page and try again. If the problem persists please contact the site administrators.":"O servidor de backend do seu site não está respondendo, pedimos desculpas pelo inconveniente. Por favor, tente recarregar a página e tente novamente. Se o problema persistir, entre em contato com os administradores do site.","The button presence disables the live search, the query is issued when you press ENTER":"A presença do botão desativa a busca ativa, a consulta é realizada apenas quando você pressiona ENTER","The following content rules are active in this Page. Use the content rules control panel to create new rules or delete or modify existing ones.":"","The item could not be deleted.":"O item não pôde ser excluído.","The link address is:":"O endereço do link é:","The provided alternative url already exists!":"","The registration process has been successful. Please check your e-mail inbox for information on how activate your account.":"O processo de registro foi bem sucedido. Verifique sua caixa de entrada de e-mail para obter informações sobre como ativar sua conta.","The working copy was discarded":"A cópia de trabalho foi descartada.","The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends.":"O {plonecms} tem {copyright} de 2000-{current_year} pela {plonefoundation} e amigos.","There is a configuration problem on the backend":"Há um problema de configuração no backend","There were some errors":"Houve alguns erros","There were some errors.":"Houve alguns erros.","Third":"Terceiro","This Page is referenced by the following items:":"","This has an ongoing working copy in {title}":"Este conteúdo tem uma cópia de trabalho ativa em {title}","This is a reserved name and can't be used":"Este é um nome reservado e não pode ser usado","This is a working copy of {title}":"Esta é uma cópia de trabalho de {title}","This item was locked by {creator} on {date}":"Este item foi bloqueado por {creator} em {date}","This name will be displayed in the URL.":"Este nome será exibido na URL.","This page does not seem to exist…":"Esta página parece não existir…","This rule is assigned to the following locations:":"","Time":"Hora","Title":"Título","Title field error. Value not provided or already existing.":"","Total active and non-active objects":"Total de objetos ativos e não ativos","Total comments":"Total de comentários","Total number of objects in each cache":"Número total de objetos em cada cache","Total number of objects in memory from all caches":"Número total de objetos na memória de todos os caches","Total number of objects in the database":"Número total de objetos no banco de dados","Transactions":"","Transactions Checkbox":"","Transactions Have Been Sorted":"","Transactions Have Been Unsorted":"","Translate to {lang}":"Traduza para {lang}","Translation linked":"Tradução vinculada","Translation linking removed":"Vínculo de tradução removido","Triggering event field error. Please select a value":"","Type":"Tipo","Type a Video (YouTube, Vimeo or mp4) URL":"Digite uma URL de vídeo (YouTube, Vimeo ou mp4)","Type text...":"Digite texto...","Type text…":"Digite texto…","Type the heading…":"","Type the title…":"Digite o título…","UID":"UID","URL Management":"","URL Management for {title}":"","Unassign":"","Unassigned":"","Unauthorized":"Não autorizado","Undo":"Desfazer","Undo Controlpanel":"","Unfold":"Expandir","Unified":"Unificado","Uninstall":"Desinstalar","Unknown Block":"Bloco Desconhecido","Unlink translation for":"Desvincular a tradução para","Unlock":"Destravar","Unsorted":"","Update":"Atualizar","Update installed addons":"Atualizar complementos instalados","Update installed addons:":"Atualização de complementos instalados:","Updates available":"Atualizações disponíveis","Upload":"Enviar","Upload a lead image in the 'Lead Image' content field.":"Enviar uma imagem para o campo de imagem principal.","Upload a new image":"Enviar uma nova imagem","Upload files":"Enviar arquivos","Uploading files":"Enviando arquivos","Uploading image":"Enviando imagem","Use the form below to define the new content rule":"","Use the form below to define, change or remove content rules. Rules will automatically perform actions on content when certain triggers take place. After defining rules, you may want to go to a folder to assign them, using the 'rules' item in the actions menu.":"","Used for programmatic access to the fieldset.":"Usado para acesso programático ao conjunto de campos.","User":"Usuário","User Group Membership":"Participação de usuário em grupos","User Group Settings":"Configurações de usuários e grupos","User created":"Usuário criado","User name":"Nome de usuário","User roles updated":"Papéis do grupo atualizados","Username":"Nome de usuário","Users":"Usuários","Users and Groups":"Usuários e Grupos","Using this form, you can manage alternative urls for an item. This is an easy way to make an item available under two different URLs.":"","Variation":"Variação","Version Overview":"Versões","Video":"Vídeo","Video URL":"URL do vídeo","View":"Visão","View changes":"Ver mudanças","View this revision":"Ver esta revisão","View working copy":"Exibir a cópia de trabalho","Viewmode":"Visão","Vocabulary term":"Termo de vocabulário","Vocabulary term title":"Título do termo de vocabulário","Vocabulary terms":"Termos de vocabulário","Warning Regarding debug mode":"Aviso em relação ao modo de depuração","We apologize for the inconvenience, but the backend of the site you are accessing is not available right now. Please, try again later.":"Pedimos desculpas pelo inconveniente, mas o backend do site que você está acessando não está disponível agora. Por favor, tente de novo mais tarde.","We apologize for the inconvenience, but the page you were trying to access is not at this address. You can use the links below to help you find what you are looking for.":"Pedimos desculpas pelo inconveniente, mas a página que você estava tentando acessar não está neste endereço. Você pode usar os links abaixo para ajudá-lo a encontrar o que você está procurando.","We apologize for the inconvenience, but you don't have permissions on this resource.":"Pedimos desculpas pelo inconveniente, mas você não tem permissões neste recurso.","Weeek day of month":"Dia do mês","Weekday":"Dia da semana","Weekly":"Semanalmente","What":"O quê","When":"Quando","When this date is reached, the content will nolonger be visible in listings and searches.":"Quando chegar a esta data, o conteúdo deixará de ficar visível nas listagens e nas pesquisas.","Whether or not execution of further rules should stop after this rule is executed":"","Whether or not other rules should be triggered by the actions launched by this rule. Activate this only if you are sure this won't create infinite loops":"","Whether or not the rule is currently enabled":"","Who":"Quem","Wide":"Largo","Workflow Change Loading Message":"Alterando os estados...","Workflow updated.":"Workflow atualizado.","Yearly":"Anualmente","Yes":"Sim","You are trying to access a protected resource, please {login} first.":"Você está tentando acessar um recurso protegido, por favor, {login} primeiro.","You are using an outdated browser":"Você está usando um navegador desatualizado","You can add a comment by filling out the form below. Plain text formatting.":"Você pode adicionar um comentário preenchendo o formulário abaixo. Formatação de texto simples.","You can control who can view and edit your item using the list below.":"Você pode controlar quem pode visualizar e editar seu item usando a lista abaixo.","You can view the difference of the revisions below.":"Você pode ver a diferença das revisões abaixo.","You can view the history of your item below.":"Você pode ver o histórico do seu item abaixo.","You can't paste this content here":"Você não pode colar este conteúdo aqui","You have been logged out from the site.":"","Your email is required for reset your password.":"Seu e-mail é necessário para redefinir sua senha.","Your password has been set successfully. You may now {link} with your new password.":"Sua senha foi definida com sucesso. Agora você pode {link} com sua nova senha.","Your preferred language":"O seu idioma preferido","Your usernaame is required for reset your password.":"Seu nome de usuário é necessário para redefinir sua senha.","box_forgot_password_option":"Esqueceu sua senha?","common":"Padrão","compare_to":"Comparar com","delete":"excluir","deprecated_browser_notice_message":"Você está usando {browsername} {browserversion} que está sem suporte pelo seu desenvolvedor. Isto significa que não existem mais atualizações de segurança e que ele não suporta as funcionalidades atuais da web, Por favor, atualize seu navegador","description":"Descrição","description_lost_password":"Por motivos de segurança, armazenamos sua senha criptografada e não podemos enviá-la para você. Se você deseja redefinir sua senha, preencha o formulário abaixo e enviaremos um e-mail para o endereço que você forneceu quando se cadastrou para iniciar o processo de redefinição de sua senha.","description_sent_password":"Sua solicitação de redefinição de senha foi enviada. Ele deve chegar em sua caixa de correio em breve. Ao receber a mensagem, visite o endereço que ela contém para redefinir sua senha.","draft":"Rascunho","email":"E-mail","event_alldates":"Todas as datas","event_attendees":"Participantes","event_contactname":"Pessoa de contato","event_contactphone":"Telefone de contato","event_website":"Site","event_what":"O quê","event_when":"Quando","event_where":"Onde","heading_sent_password":"Sua solicitação de redefinição de senha foi enviada","hero":"Herói","html":"HTML","image":"Imagem","integer":"Valor deve ser um número inteiro","intranet":"Intranet","label_my_email_is":"Meu endereço de e-mail é","label_my_username_is":"Meu nome de usuário é<<<<<<< HEAD","leadimage":"Imagem principal","listing":"Listagem","loading":"Carregando","log in":"acessar","maps":"mapas","maxLength":"Comprimento máximo","maximum":"Valor máximo","media":"Mídia","minLength":"Comprimento mínimo","minimum":"Valor mínimo","mostUsed":"Mais usados","no":"Não","no workflow state":"Sem estado de workflow","number":"Valor deve ser numérico","of the month":"do mês","or try a different page.":"ou tente uma página diferente","others":"outros","private":"privado","published":"publicado","querystring-widget-select":"Selecionar","results found":"resultados","return to the site root":"retornar à raiz do site","rrule_and":"e","rrule_approximate":"(~aproximadamente)","rrule_at":"em","rrule_dateFormat":"[day], [month], [year]","rrule_day":"dia","rrule_days":"dias","rrule_every":"a cada","rrule_for":"para","rrule_hour":"hora","rrule_hours":"horas","rrule_in":"em","rrule_last":"última","rrule_minutes":"minutos","rrule_month":"mês","rrule_months":"meses","rrule_nd":"nd","rrule_on":"em","rrule_on the":"no","rrule_or":"ou","rrule_rd":"rd","rrule_st":"st","rrule_th":"th","rrule_the":"o","rrule_time":"vezz","rrule_times":"vezes","rrule_until":"até","rrule_week":"semana","rrule_weekday":"dia da semana","rrule_weekdays":"dias da semana","rrule_weeks":"semanas","rrule_year":"ano","rrule_years":"anos","skiplink-footer":"Ir para o rodapé","skiplink-main-content":"Ir para o conteúdo","skiplink-navigation":"Ir para a navegação","sort":"ordenar","table":"tabela","text":"texto","title":"título","toc":"tabela de conteúdos","upgradeVersions":"","url":"url","user avatar":"avatar do usuário","video":"vídeo","visit_external_website":"Visitar site externo","workingCopyErrorUnauthorized":"","workingCopyGenericError":"","yes":"Sim","{count, plural, one {Upload {count} file} other {Upload {count} files}}":"{count, plural, one {Enviar {count} arquivo} other {Enviar {count} arquivos}}","{count} selected":"{count} selecionados","{id} Content Type":"Tipo de conteúdo {id}","{id} Schema":"Esquema {id}","{title} copied.":"{title} copiado.","{title} cut.":"{title} cortado.","{title} has been deleted.":"{title} foi excluído."} \ No newline at end of file +{"

Add some HTML here

":"

Adicione o HTML aqui

","Accessibility":"Acessibilidade","Account Registration Completed":"Cadastro de Conta Finalizado","Account activation completed":"Ativação completa","Action":"Ação","Action changed":"","Action: ":"","Actions":"Ações","Activate and deactivate":"Ativar e desativar","Active":"","Active content rules in this Page":"","Add":"Adicionar","Add (object list)":"Adicionar","Add Addons":"Adicione complementos","Add Content":"Adicionar conteúdo","Add Content Rule":"","Add Rule":"","Add Translation…":"Adicionar tradução…","Add User":"Adicionar usuário","Add a description…":"Adicionar uma descrição…","Add a new alternative url":"","Add action":"","Add block":"Adicionar Bloco","Add block…":"Adicionar bloco…","Add condition":"","Add content rule":"","Add criteria":"Adicionar critério","Add date":"Adicionar data","Add field":"Adicionar campo","Add fieldset":"Adicionar conjunto de campos","Add group":"Adicionar grupo","Add new content type":"Adicionar novo tipo de conteúdo","Add new group":"Adicionar novo grupo","Add new user":"Adicionar novo usuário","Add to Groups":"Adicionar a grupos","Add users to group":"Adicionar usuários ao grupo","Add vocabulary term":"Adicionar termo de vocabulário","Add {type}":"Adicionar {type}","Add-Ons":"Complementos","Add-on Configuration":"Configuração de complemento","Add-ons":"Complementos","Add-ons Settings":"Configurações dos complementos","Added":"","Additional date":"Outra data","Addon could not be installed":"","Addon could not be uninstalled":"","Addon could not be upgraded":"","Addon installed succesfuly":"","Addon uninstalled succesfuly":"","Addon upgraded succesfuly":"","Album view":"","Alias":"","Alias has been added":"","Alignment":"Alinhamento","All":"Todos","All content":"","All existing alternative urls for this site":"","Alphabetically":"Alfabeticamente","Alt text":"Descrição Alt","Alt text hint":"Deixe em branco se a imagem for puramente decorativa.","Alt text hint link text":"Descreve o propósito da imagem.","Alternative url path (Required)":"","Alternative url path must start with a slash.":"","Alternative url path → target url path (date and time of creation, manually created yes/no)":"","Applied to subfolders":"","Applies to subfolders?":"","Apply to subfolders":"","Apply working copy":"Aplicar a cópia de trabalho","Are you sure you want to delete this field?":"Você realmente deseja deletar este campo?","Are you sure you want to delete this fieldset including all fields?":"Você realmente deseja deletar este fieldset com todos os campos?","Ascending":"Ascendente","Assignments":"","Available":"Disponível","Available content rules:":"","Back":"Voltar","Background color":"Cor de fundo","Base":"Base","Base search query":"Base da consulta para busca","Block":"Bloco","Both email address and password are case sensitive, check that caps lock is not enabled.":"O endereço de e-mail e a senha diferenciam maiúsculas de minúsculas. Certifique-se que o caps lock não está ativado.","Breadcrumbs":"Navegação estrutural","Browse":"Procurar","Browse the site, drop an image, or type an URL":"Navegue no site, arraste uma imagem ou digite um URL","By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator.":"Por padrão, as permissões do contêiner deste item são herdadas. Se você desabilitar isso, apenas as permissões de compartilhamento definidas explicitamente serão válidas. Na visão geral, o símbolo {inherited} indica um valor herdado. Da mesma forma, o símbolo {global} indica uma função global que é gerenciada pelo administrador do site.","By deleting this item, you will break links that exist in the items listed below. If this is indeed what you want to do, we recommend that remove these references first.":"","Cache Name":"Nome do cache","Can not edit Layout for {type} content-type as it doesn't have support for Volto Blocks enabled":"Não é possível editar layout para o tipo de conteúdo {type} , pois não tem suporte para Blocos Volto ativados","Can not edit Layout for {type} content-type as the Blocks behavior is enabled and read-only":"Não é possível editar layout para o tipo de conteúdo {type}, pois o comportamento de Blocos está ativado mas somentepara leitura","Cancel":"Cancelar","Cell":"Célula","Center":"Centro","Change Note":"Alterar Nota","Change Password":"Alterar senha","Change State":"Alterar estado","Change workflow state recursively":"Alterar o estado de workflow recursivamente","Changes applied.":"Alterações aplicadas.","Changes saved":"Alterações salvas","Changes saved.":"Alterações guardadas.","Checkbox":"Caixa de verificação","Choices":"Escolhas","Choose Image":"Escolha Imagem","Choose Target":"Escolha Alvo","Choose a file":"Escolha um arquivo","Clear":"Limpar","Clear filters":"Limpar filtros","Click to download full sized image":"Clique para baixar a imagem em tamanho original","Close":"Fechar","Close menu":"Fechar menu","Code":"Código","Collapse item":"Colapsar item","Collection":"Coleção","Color":"Cor","Comment":"Comentar","Commenter":"Comentador","Comments":"Comentários","Compare":"Comparar","Condition changed":"","Condition: ":"","Configure Content Rule":"","Configure Content Rule: {title}":"","Configure content rule":"","Confirm password":"Confirmar senha","Connection refused":"Conexão recusada","Contact":"Contato","Contact form":"Formulário de contato","Contained items":"Itens contidos","Content":"Conteúdo","Content Rule":"","Content Rules":"","Content rules for {title}":"","Content rules from parent folders":"","Content type created":"Tipo de conteúdo criado","Content type deleted":"Tipo de conteúdo removido","Contents":"Conteúdo","Controls":"Controles","Copy":"Copiar","Copy blocks":"Copiar blocos","Copyright":"Copyright","Copyright statement or other rights information on this item.":"Declaração de copyright ou outras informações de direitos sobre este item.","Create working copy":"Criar cópia de trabalho","Created by {creator} on {date}":"Criado por {creator} em {date}","Created on":"Criado em","Creator":"Autor","Creators":"Autores","Criteria":"Critérios","Current filters applied":"Filtros atualmente aplicados","Current password":"Senha atual","Cut":"Cortar","Cut blocks":"Recortar blocos","Daily":"Diariamente","Database":"Base de dados","Database Information":"Informações do banco de dados","Database Location":"Localização do banco de dados","Database Size":"Tamanho do banco de dados","Database main":"Banco de dados principal","Date":"Data","Date (newest first)":"Data (mais novo primeiro)","Default":"Padrão","Default view":"","Delete":"Excluir","Delete Group":"Excluir Grupo","Delete Type":"Excluir Tipo","Delete User":"Excluir Usuário","Delete action":"","Delete blocks":"Excluir blocos","Delete col":"Excluir coluna","Delete condition":"","Delete row":"Excluir linha","Deleted":"","Depth":"Profundidade","Descending":"Descendente","Description":"Descrição","Diff":"Diferenças","Difference between revision {one} and {two} of {title}":"Diferenças entre as revisões {one} e {two} de {title}","Disable":"","Disable apply to subfolders":"","Disabled":"","Disabled apply to subfolders":"","Distributed under the {license}.":"Distribuído sob a licença {license}.","Divide each row into separate cells":"Dividir cada linha em células separadas","Do you really want to delete the following items?":"Você realmente quer excluir os itens seguintes?","Do you really want to delete the group {groupname}?":"Você realmente quer excluir o grupo {groupname}?","Do you really want to delete the type {typename}?":"Você realmente quer excluir o tipo {typename}?","Do you really want to delete the user {username}?":"Você realmente quer excluir o usuário {username}?","Do you really want to delete this item?":"Você realmente quer excluir este item?","Document":"Documento","Document view":"","Download Event":"Baixar evento","Drag and drop files from your computer onto this area or click the “Browse” button.":"Arraste e solte arquivos do seu computador para esta área ou clique no botão \"Procurar\".","Drop file here to replace the existing file":"Solte um arquivo aqui para substituir o arquivo existente","Drop file here to upload a new file":"Solte um arquivo aqui para enviar um novo arquivo","Drop files here ...":"Soltar aquivos aqui…","E-mail":"E-mail","E-mail addresses do not match.":"Os endereços de e-mail não coincidem.","Edit":"Editar","Edit Rule":"","Edit comment":"Editar comentário","Edit field":"Editar campo","Edit fieldset":"Editar conjunto de campos","Edit recurrence":"Editar recorrência","Edit values":"Editar valores","Edit {title}":"Editar {title}","Email":"E-mail","Email sent":"E-mail enviado","Embed code error, please follow the instructions and try again.":"Erro de código Embed, siga as instruções e tente novamente.","Empty object list":"Lista de objetos vazia","Enable":"","Enable editable Blocks":"Habilitar blocos editáveis","Enabled":"","Enabled here?":"","Enabled?":"","End Date":"Data Final","Enter URL or select an item":"Digite URL ou selecione um item","Enter a username above to search or click 'Show All'":"Digite um nome de usuário acima para pesquisar ou clique em 'Mostrar todos'","Enter an email address. This will be your login name. We respect your privacy, and will not give the address away to any third parties or expose it anywhere.":"Digite um endereço de e-mail. Este será o seu nome de usuário. Respeitamos a sua privacidade e nunca iremos ceder o seu endereço a terceiros ou expô-lo onde quer que seja.","Enter full name, e.g. John Smith.":"Digite o nome completo. Por exemplo, José da Silva.","Enter map Embed Code":"Informe o código Embed do mapa","Enter the absolute path of the target. The path must start with '/'. Target must exist or be an existing alternative url path to the target.":"","Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring.":"","Enter your current password.":"Digite sua senha atual.","Enter your email for verification.":"Informe seu e-mail para verificação.","Enter your new password. Minimum 5 characters.":"Digite sua nova senha. Mínimo de 5 caracteres.","Enter your username for verification.":"Informe seu nome de usuário para verificação.","Error":"Erro","ErrorHeader":"","Event":"","Event listing":"","Event view":"","Exclude from navigation":"Excluir da navegação","Exclude this occurence":"Exclua essa ocorrência","Excluded from navigation":"Excluído da navegação","Existing alternative urls for this item":"","Expand sidebar":"Expandir barra lateral","Expiration Date":"Data de expiração","Expiration date":"Data de validade","Expired":"Expirado","External URL":"URL externa","Facet":"Faceta","Facet widget":"Widget faceta","Facets":"Facetas","Facets on left side":"Facetas no lado esquerdo","Facets on right side":"Facetas no lado direito","Facets on top":"Facetas no topo","Failed To Undo Transactions":"","Field":"Campo","File":"Arquivo","File size":"Tamanho do arquivo","File view":"","Filename":"Nome do arquivo","Filter Rules:":"","Filter by prefix":"","Filter users by groups":"Filtrar usuários por grupos","Filter…":"Filtrar…","First":"Primeiro","Fixed width table cells":"Células de tabela de largura fixa","Fold":"Colapsar","Folder":"Pasta","Folder listing":"","Forbidden":"Restrito","Fourth":"Quarto","From":"E-mail","Full":"Cheia","Full Name":"Nome completo","Fullname":"Nome completo","GNU GPL license":"Licença GNU GPL","General":"Geral","Global role":"Papel global","Google Maps Embedded Block":"Bloco Google Maps","Group":"Grupo","Group created":"Grupo criado","Group roles updated":"Papéis do grupo atualizados","Groupname":"Nome do grupo","Groups":"Grupos","Groups are logical collections of users, such as departments and business units. Groups are not directly related to permissions on a global level, you normally use Roles for that - and let certain Groups have a particular role. The symbol{plone_svg}indicates a role inherited from membership in another group.":"Grupos são coleções lógicas de usuários, como departamentos e unidades de negócios. Os grupos não estão diretamente relacionados com permissões em nível global, você normalmente usa Funções para isso - e permite que certos Grupos tenham um papel particular. O símbolo{plone_svg}dica um papel herdado da adesão a outro grupo.","Header cell":"Célula de cabeçalho","Headline":"Chamada","Headline level":"","Hidden facets will still filter the results if proper parameters are passed in URLs":"Facetas ocultas ainda filtrarão os resultados se parâmetros adequados forem passados em URLs","Hide Replies":"Ocultar respostas","Hide facet?":"Ocultar faceta?","History":"Histórico","History Version Number":"Número da versão","History of {title}":"Histórico de {title}","Home":"Início","ID":"ID","If all of the following conditions are met:":"","If selected, this item will not appear in the navigation tree":"Se selecionado, este item não aparecerá na árvore de navegação","If this date is in the future, the content will not show up in listings and searches until this date.":"Se essa data for no futuro, o conteúdo não aparecerá em listagens e pesquisas até esta data.","If you are certain this user has abandoned the object, you may unlock the object. You will then be able to edit it.":"Se você tiver certeza de que este usuário abandonou o objeto, você pode desbloquear o objeto. Em seguida, você poderá editá-lo.","If you are certain you have the correct web address but are encountering an error, please contact the {site_admin}.":"Se você tiver certeza de que tem o endereço web correto, mas está encontrando um erro, entre em contato com o {site_admin}.","Image":"Imagem","Image gallery":"Galeria de imagem","Image size":"Tamanho da imagem","Image view":"","Include this occurence":"Inclua esta ocorrência","Info":"Informação","InfoUserGroupSettings":"Você selecionou a opção \"muitos usuários\" ou \"muitos grupos\". Por isto, este painel necessita de um filtro para exibir usuários e grupos. Caso queira ver os usuários e grupos imediatamente, vá até configurações de usuários e grupos.","Inherit permissions from higher levels":"Herdar permissões de níveis superiores","Inherited value":"Herdar valor","Insert col after":"Inserir coluna após","Insert col before":"Inserir coluna antes","Insert row after":"Inserir linha após","Insert row before":"Inserir linha antes","Install":"Instalar","Installed":"Instalado","Installed version":"Versão instalada","Installing a third party add-on":"Instalando um complemento de terceiros","Interval Daily":"Intervalo Diário","Interval Monthly":"Intervalo Mensal","Interval Weekly":"Intervalo Semanal","Interval Yearly":"Intervalo Anual","Item batch size":"Tamanho do lote de itens","Item succesfully moved.":"Item movido com sucesso.","Item(s) copied.":"Itens copiados.","Item(s) cut.":"Itens cortados.","Item(s) has been updated.":"Itens atualizados.","Item(s) pasted.":"Itens colados.","Item(s) state has been updated.":"O estado dos itens foi atualizado.","Items":"Itens","Items must be unique.":"Os itens devem ser únicos.","Items to be deleted:":"","Label":"Rótulo","Language":"Idioma","Language independent field.":"Campo independente da linguagem.","Large":"Grande","Last":"Último","Last comment date":"Data do último comentário","Last modified":"Última modificação","Latest version":"Última versão","Layout":"Layout","Lead Image":"Imagem principal","Left":"Esquerda","Link":"Link","Link more":"Mais","Link redirect view":"","Link title":"Título do link","Link to":"Link para","Link translation for":"Linkar tradução para","Listing":"Listagem","Listing view":"","Load more":"Carregar mais","Loading":"Carregando","Log In":"Entrar","Log in":"Entrar","Logged out":"","Login":"Entrar","Login Failed":"Falha na autenticação","Login Name":"Nome de usuário","Logout":"Sair","Made by {creator} on {date}. This is not a working copy anymore, but the main content.":"Criado por {creator} em {date}. Esta não é mais uma cópia de trabalho, mas sim o conteúdo final.","Make the table compact":"Compactar a tabela","Manage Translations":"Gerenciar traduções","Manage content…":"","Manage translations for {title}":"Gerenciar traduções para {title}","Manual":"","Manually or automatically added?":"","Maps":"Mapas","Maps URL":"Url do Mapa","Maximum length is {len}.":"O comprimento máximo é {len}.","Maximum value is {len}.":"O valor máximo é {len}.","Medium":"Médio","Message":"Mensagem","Minimum length is {len}.":"O comprimento mínimo é {len}.","Minimum value is {len}.":"O valor mínimo é {len}.","Moderate Comments":"Moderar comentários","Moderate comments":"Moderar comentários","Monday and Friday":"Segunda e sexta-feira","Month day":"Dia do mês","Monthly":"Mensalmente","More":"Mais","Mosaic layout":"","Move down":"","Move to bottom of folder":"Mover para o final da pasta","Move to top of folder":"Mover para o topo da pasta","Move up":"","Multiple choices?":"Múltipla escolha?","My email is":"Meu e-mail é","My username is":"Meu nome de usuário é","Name":"Nome","Navigate back":"Voltar","Navigation":"Navegação","New password":"Nova senha","News Item":"Notícia","News item view":"","No":"Não","No Transactions Found":"","No Transactions Selected":"","No Transactions Selected To Do Undo":"","No Video selected":"Nenhum vídeo selecionado","No addons found":"Nenhum complemento encontrado","No connection to the server":"","No image selected":"Nenhuma imagem selecionada","No image set in Lead Image content field":"Nenhuma imagem definida no campo de imagem principal","No image set in image content field":"Nenhuma imagem definida no campo de imagem","No items found in this container.":"Não foram encontrados itens nesta pasta.","No items selected":"Nenhum item selecionado","No map selected":"Nenhum mapa selecionado","No occurences set":"Sem ocorrências definidas","No options":"Sem opções","No results found":"Nenhum resultado encontrado","No results found.":"Nenhum resultado encontrado.","No selection":"Nenhuma seleção","No uninstall profile":"Sem perfil de desinstalação","No user found":"Nenhum usuário encontrado","No value":"Sem valor","No workflow":"Sem workflow","None":"Nenhum","Note":"","Note that roles set here apply directly to a user. The symbol{plone_svg}indicates a role inherited from membership in a group.":"Observe que as funções definidas aqui se aplicam diretamente a um usuário. O símbolo{plone_svg}dica um papel herdado da adesão a um grupo.","Number of active objects":"Número de objetos ativos","Object Size":"Tamanho do objeto","Occurences":"Ocorrências","Ok":"Ok","Only lowercase letters (a-z) without accents, numbers (0-9), and the characters \"-\", \"_\", and \".\" are allowed.":"","Open in a new tab":"Abrir em nova aba","Open menu":"Abrir menu","Open object browser":"Abrir navegador de objetos","Origin":"Origem","Page":"Página","Parent fieldset":"Conjunto de campos","Password":"Senha","Password reset":"Redefinição de senha","Passwords do not match.":"As senhas não coincidem.","Paste":"Colar","Paste blocks":"Colar blocos","Perform the following actions:":"","Permissions have been updated successfully":"Permissões atualizadas com sucesso","Permissions updated":"Permissões atualizadas","Personal Information":"Informações pessoais","Personal Preferences":"Preferências pessoais","Personal tools":"Ferramentas pessoais","Persons responsible for creating the content of this item. Please enter a list of user names, one per line. The principal creator should come first.":"Pessoas responsáveis pela criação do conteúdo deste item. Por favor, insira uma lista de nomes de usuário, um por linha. O autor principal deve vir primeiro.","Please enter a valid URL by deleting the block and adding a new video block.":"Digite uma URL válida excluindo o bloco e adicionando um novo bloco de vídeo.","Please enter the Embed Code provided by Google Maps -> Share -> Embed map. It should contain the .","Please fill out the form below to set your password.":"Preencha o formulário abaixo para definir sua senha.","Please search for users or use the filters on the side.":"Procure por usuários ou use os filtros na lateral.","Please upgrade to plone.restapi >= 8.24.0.":"Por favor, atualize para plone.restapi >= 8.24.0.","Plone Foundation":"Fundação Plone","Plone Site":"Site Plone","Plone{reg} Open Source CMS/WCM":"Plone{reg} Open Source CMS/WCM","Position changed":"","Possible values":"Valores possíveis","Potential link breakage":"","Powered by Plone & Python":"Criado com Plone e Python","Preferences":"Preferências","Prettify your code":"Re-formatar seu código","Preview":"Pré-visualização","Preview Image URL":"Url de imagem de pré-visualização","Profile":"Perfil","Properties":"Propriedades","Publication date":"Data de publicação","Publishing Date":"Data de publicação","Query":"Consulta","Re-enter the password. Make sure the passwords are identical.":"Reinsira a senha. Certifique-se de que as senhas são idênticas.","Read More…":"Leia Mais…","Rearrange items by…":"Reorganize itens por…","Recurrence ends":"Término da recorrência","Recurrence ends after":"Recorrência se encerra após","Recurrence ends on":"Recorrência se encerra em","Redo":"Refazer","Reduce complexity":"Reduzir complexidade","Register":"Cadastro","Registration form":"Formulário de cadastro","Relevance":"Relevância","Remove":"","Remove item":"Remover Item","Remove recurrence":"Remover a recorrência","Remove selected":"","Remove term":"Remover o termo","Remove users from group":"Remover usuários do grupo","Remove working copy":"Remover a cópia de trabalho","Rename":"Renomear","Rename Items Loading Message":"Renomeando os items","Rename items":"Renomear itens","Repeat":"Repetição","Repeat every":"Repete a cada","Repeat on":"Repete em","Replace existing file":"Substituir arquivo existente","Reply":"Responder","Required":"Obrigatório","Required input is missing.":"Falta informação obrigatória.","Reset term title":"Redefinir o título do termo","Results limit":"Limite de resultados","Results preview":"Visualização de resultados","Results template":"Modelo de resultados","Reversed order":"Ordem invertida","Revert to this revision":"Reverter para esta revisão","Review state":"Estado","Richtext":"Texto rico","Right":"Direita","Rights":"Direitos","Roles":"Papéis","Root":"Raiz","Rule added":"","Rule enable changed":"","Rules":"","Rules execute when a triggering event occurs. Rule actions will only be invoked if all the rule's conditions are met. You can add new actions and conditions using the buttons below.":"","Save":"Salvar","Save recurrence":"Salvar a recorrência","Saved":"","Schema":"Esquema","Schema updates":"Atualizações do esquema","Search":"Pesquisar","Search SVG":"SVG de busca","Search Site":"Pesquisar no site","Search block":"Bloco de busca","Search button label":"Rótulo do botão de busca","Search content":"Pesquisar conteúdo","Search for user or group":"Pesquisar por usuário ou grupo","Search group…":"Pesquisar grupo…","Search input label":"Rótulo da caixa de busca","Search results":"Resultados da pesquisa","Search results for {term}":"Resultados da pesquisa para {term}","Search users…":"Pesquisar usuários…","Searched for":"Busca por","Second":"Segundo","Section title":"Título da Seção","Select":"Selecionar","Select a date to add to recurrence":"Selecione uma data para adicionar à recorrência","Select columns to show":"Selecione colunas para mostrar","Select the transition to be used for modifying the items state.":"Selecione a transição a ser usada para modificar o estado dos itens.","Selected dates":"Datas selecionadas","Selected items":"Itens selecionados","Selected items - x of y":"Itens selecionados - x de y","Selection":"Seleção","Select…":"Selecionar…","Send":"Enviar","Send a confirmation mail with a link to set the password.":"","Set my password":"Defina minha senha","Set your password":"Defina sua senha","Settings":"Configurações","Sharing":"Compartilhamento","Sharing for {title}":"Compartilhamento para {title}","Short Name":"Nome curto","Short name":"Nome curto","Show":"Mostrar","Show All":"Mostrar tudo","Show Replies":"Mostrar respostas","Show groups of users below":"Mostrar grupos de usuários abaixo","Show item":"Mostrar item","Show search button?":"Mostrar botão de pesquisa?","Show search input?":"Mostrar campo de pesquisa?","Show sorting?":"Mostrar ordenação?","Show total results":"","Shrink sidebar":"Recolher barra lateral","Shrink toolbar":"Recolher barra de ferramentas","Sign in to start session":"Faça login para iniciar a sessão","Site":"Site","Site Administration":"Administração do site","Site Map":"Mapa do site","Site Setup":"Configuração do site","Sitemap":"Mapa do site","Size: {size}":"Tamanho: {size}","Small":"Pequeno","Sorry, something went wrong with your request":"Desculpe, algo deu errado com sua requisição","Sort By":"","Sort By:":"Ordenar por:","Sort on":"Ordenado por","Sort on label":"Rótulo de ordenação","Sort on options":"Opções de ordenação","Sort transactions by User-Name, Path or Date":"","Sorted":"","Source":"Fonte","Specify a youtube video or playlist url":"Informe a url para um vídeo ou uma playlist do YouTube","Split":"Dividir","Start Date":"Data de Início","Start of the recurrence":"Início da recorrência","Start password reset":"Redefinir senha","State":"Estado","Status":"","Stop compare":"Pare de comparar","String":"Texto","Stripe alternate rows with color":"Alternar cores das linhas","Styling":"Estilo","Subject":"Assunto","Success":"Sucesso","Successfully Undone Transactions":"","Summary":"Resumo","Summary view":"","Switch to":"Mudar para","Table":"Tabela","Table of Contents":"Tabela de conteúdos","Tabular view":"","Tags":"Tags","Tags to add":"Tags a serem adicionadas","Tags to remove":"Tags a serem removidas","Target":"Fonte","Target Path (Required)":"","Target memory size per cache in bytes":"Tamanho de memória destinada para o cache em bytes","Target number of objects in memory per cache":"Número de objetos na memória para o cache","Target url path must start with a slash.":"","Text":"Texto","Thank you.":"Obrigado.","The Database Manager allow you to view database status information":"O Gerenciador de banco de dados permite que você visualize informações de status do banco de dados","The backend is not responding, due to a server timeout or a connection problem of your device. Please check your connection and try again.":"","The backend is not responding, please check if you have started Plone, check your project's configuration object apiPath (or if you are using the internal proxy, devProxyToApiPath) or the RAZZLE_API_PATH Volto's environment variable.":"O servidor de backend não está respondendo, verifique se você inicializou o Plone, verifique o apiPath de objeto de configuração do seu projeto (ou se você está usando o proxy interno, devProxyToApiPath) ou a variável ambiente RAZZLE_API_PATH Volto.","The backend is responding, but the CORS headers are not configured properly and the browser has denied the access to the backend resources.":"O servidor de backend está respondendo, mas os cabeçalhos CORS não estão configurados corretamente e o navegador negou o acesso aos recursos de backend.","The backend server of your website is not answering, we apologize for the inconvenience. Please try to re-load the page and try again. If the problem persists please contact the site administrators.":"O servidor de backend do seu site não está respondendo, pedimos desculpas pelo inconveniente. Por favor, tente recarregar a página e tente novamente. Se o problema persistir, entre em contato com os administradores do site.","The button presence disables the live search, the query is issued when you press ENTER":"A presença do botão desativa a busca ativa, a consulta é realizada apenas quando você pressiona ENTER","The following content rules are active in this Page. Use the content rules control panel to create new rules or delete or modify existing ones.":"","The item could not be deleted.":"O item não pôde ser excluído.","The link address is:":"O endereço do link é:","The provided alternative url already exists!":"","The registration process has been successful. Please check your e-mail inbox for information on how activate your account.":"O processo de registro foi bem sucedido. Verifique sua caixa de entrada de e-mail para obter informações sobre como ativar sua conta.","The working copy was discarded":"A cópia de trabalho foi descartada.","The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends.":"O {plonecms} tem {copyright} de 2000-{current_year} pela {plonefoundation} e amigos.","There is a configuration problem on the backend":"Há um problema de configuração no backend","There were some errors":"Houve alguns erros","There were some errors.":"Houve alguns erros.","Third":"Terceiro","This Page is referenced by the following items:":"","This has an ongoing working copy in {title}":"Este conteúdo tem uma cópia de trabalho ativa em {title}","This is a reserved name and can't be used":"Este é um nome reservado e não pode ser usado","This is a working copy of {title}":"Esta é uma cópia de trabalho de {title}","This item was locked by {creator} on {date}":"Este item foi bloqueado por {creator} em {date}","This name will be displayed in the URL.":"Este nome será exibido na URL.","This page does not seem to exist…":"Esta página parece não existir…","This rule is assigned to the following locations:":"","Time":"Hora","Title":"Título","Title field error. Value not provided or already existing.":"","Total active and non-active objects":"Total de objetos ativos e não ativos","Total comments":"Total de comentários","Total number of objects in each cache":"Número total de objetos em cada cache","Total number of objects in memory from all caches":"Número total de objetos na memória de todos os caches","Total number of objects in the database":"Número total de objetos no banco de dados","Transactions":"","Transactions Checkbox":"","Transactions Have Been Sorted":"","Transactions Have Been Unsorted":"","Translate to {lang}":"Traduza para {lang}","Translation linked":"Tradução vinculada","Translation linking removed":"Vínculo de tradução removido","Triggering event field error. Please select a value":"","Type":"Tipo","Type a Video (YouTube, Vimeo or mp4) URL":"Digite uma URL de vídeo (YouTube, Vimeo ou mp4)","Type text...":"Digite texto...","Type text…":"Digite texto…","Type the heading…":"","Type the title…":"Digite o título…","UID":"UID","URL Management":"","URL Management for {title}":"","Unassign":"","Unassigned":"","Unauthorized":"Não autorizado","Undo":"Desfazer","Undo Controlpanel":"","Unfold":"Expandir","Unified":"Unificado","Uninstall":"Desinstalar","Unknown Block":"Bloco Desconhecido","Unlink translation for":"Desvincular a tradução para","Unlock":"Destravar","Unsorted":"","Update":"Atualizar","Update installed addons":"Atualizar complementos instalados","Update installed addons:":"Atualização de complementos instalados:","Updates available":"Atualizações disponíveis","Upload":"Enviar","Upload a lead image in the 'Lead Image' content field.":"Enviar uma imagem para o campo de imagem principal.","Upload a new image":"Enviar uma nova imagem","Upload files":"Enviar arquivos","Uploading files":"Enviando arquivos","Uploading image":"Enviando imagem","Use the form below to define the new content rule":"","Use the form below to define, change or remove content rules. Rules will automatically perform actions on content when certain triggers take place. After defining rules, you may want to go to a folder to assign them, using the 'rules' item in the actions menu.":"","Used for programmatic access to the fieldset.":"Usado para acesso programático ao conjunto de campos.","User":"Usuário","User Group Membership":"Participação de usuário em grupos","User Group Settings":"Configurações de usuários e grupos","User created":"Usuário criado","User name":"Nome de usuário","User roles updated":"Papéis do grupo atualizados","Username":"Nome de usuário","Users":"Usuários","Users and Groups":"Usuários e Grupos","Using this form, you can manage alternative urls for an item. This is an easy way to make an item available under two different URLs.":"","Variation":"Variação","Version Overview":"Versões","Video":"Vídeo","Video URL":"URL do vídeo","View":"Visão","View changes":"Ver mudanças","View this revision":"Ver esta revisão","View working copy":"Exibir a cópia de trabalho","Viewmode":"Visão","Vocabulary term":"Termo de vocabulário","Vocabulary term title":"Título do termo de vocabulário","Vocabulary terms":"Termos de vocabulário","Warning Regarding debug mode":"Aviso em relação ao modo de depuração","We apologize for the inconvenience, but the backend of the site you are accessing is not available right now. Please, try again later.":"Pedimos desculpas pelo inconveniente, mas o backend do site que você está acessando não está disponível agora. Por favor, tente de novo mais tarde.","We apologize for the inconvenience, but the page you were trying to access is not at this address. You can use the links below to help you find what you are looking for.":"Pedimos desculpas pelo inconveniente, mas a página que você estava tentando acessar não está neste endereço. Você pode usar os links abaixo para ajudá-lo a encontrar o que você está procurando.","We apologize for the inconvenience, but you don't have permissions on this resource.":"Pedimos desculpas pelo inconveniente, mas você não tem permissões neste recurso.","Weeek day of month":"Dia do mês","Weekday":"Dia da semana","Weekly":"Semanalmente","What":"O quê","When":"Quando","When this date is reached, the content will nolonger be visible in listings and searches.":"Quando chegar a esta data, o conteúdo deixará de ficar visível nas listagens e nas pesquisas.","Whether or not execution of further rules should stop after this rule is executed":"","Whether or not other rules should be triggered by the actions launched by this rule. Activate this only if you are sure this won't create infinite loops":"","Whether or not the rule is currently enabled":"","Who":"Quem","Wide":"Largo","Workflow Change Loading Message":"Alterando os estados...","Workflow updated.":"Workflow atualizado.","Yearly":"Anualmente","Yes":"Sim","You are trying to access a protected resource, please {login} first.":"Você está tentando acessar um recurso protegido, por favor, {login} primeiro.","You are using an outdated browser":"Você está usando um navegador desatualizado","You can add a comment by filling out the form below. Plain text formatting.":"Você pode adicionar um comentário preenchendo o formulário abaixo. Formatação de texto simples.","You can control who can view and edit your item using the list below.":"Você pode controlar quem pode visualizar e editar seu item usando a lista abaixo.","You can view the difference of the revisions below.":"Você pode ver a diferença das revisões abaixo.","You can view the history of your item below.":"Você pode ver o histórico do seu item abaixo.","You can't paste this content here":"Você não pode colar este conteúdo aqui","You have been logged out from the site.":"","Your email is required for reset your password.":"Seu e-mail é necessário para redefinir sua senha.","Your password has been set successfully. You may now {link} with your new password.":"Sua senha foi definida com sucesso. Agora você pode {link} com sua nova senha.","Your preferred language":"O seu idioma preferido","Your usernaame is required for reset your password.":"Seu nome de usuário é necessário para redefinir sua senha.","box_forgot_password_option":"Esqueceu sua senha?","common":"Padrão","compare_to":"Comparar com","delete":"excluir","deprecated_browser_notice_message":"Você está usando {browsername} {browserversion} que está sem suporte pelo seu desenvolvedor. Isto significa que não existem mais atualizações de segurança e que ele não suporta as funcionalidades atuais da web, Por favor, atualize seu navegador","description":"Descrição","description_lost_password":"Por motivos de segurança, armazenamos sua senha criptografada e não podemos enviá-la para você. Se você deseja redefinir sua senha, preencha o formulário abaixo e enviaremos um e-mail para o endereço que você forneceu quando se cadastrou para iniciar o processo de redefinição de sua senha.","description_sent_password":"Sua solicitação de redefinição de senha foi enviada. Ele deve chegar em sua caixa de correio em breve. Ao receber a mensagem, visite o endereço que ela contém para redefinir sua senha.","draft":"Rascunho","email":"E-mail","event_alldates":"Todas as datas","event_attendees":"Participantes","event_contactname":"Pessoa de contato","event_contactphone":"Telefone de contato","event_website":"Site","event_what":"O quê","event_when":"Quando","event_where":"Onde","heading_sent_password":"Sua solicitação de redefinição de senha foi enviada","hero":"Herói","html":"HTML","image":"Imagem","integer":"Valor deve ser um número inteiro","intranet":"Intranet","label_my_email_is":"Meu endereço de e-mail é","label_my_username_is":"Meu nome de usuário é<<<<<<< HEAD","leadimage":"Imagem principal","listing":"Listagem","loading":"Carregando","log in":"acessar","maps":"mapas","maxLength":"Comprimento máximo","maximum":"Valor máximo","media":"Mídia","minLength":"Comprimento mínimo","minimum":"Valor mínimo","mostUsed":"Mais usados","no":"Não","no workflow state":"Sem estado de workflow","number":"Valor deve ser numérico","of the month":"do mês","or try a different page.":"ou tente uma página diferente","others":"outros","private":"privado","published":"publicado","querystring-widget-select":"Selecionar","results found":"resultados","return to the site root":"retornar à raiz do site","rrule_and":"e","rrule_approximate":"(~aproximadamente)","rrule_at":"em","rrule_dateFormat":"[day], [month], [year]","rrule_day":"dia","rrule_days":"dias","rrule_every":"a cada","rrule_for":"para","rrule_hour":"hora","rrule_hours":"horas","rrule_in":"em","rrule_last":"última","rrule_minutes":"minutos","rrule_month":"mês","rrule_months":"meses","rrule_nd":"nd","rrule_on":"em","rrule_on the":"no","rrule_or":"ou","rrule_rd":"rd","rrule_st":"st","rrule_th":"th","rrule_the":"o","rrule_time":"vezz","rrule_times":"vezes","rrule_until":"até","rrule_week":"semana","rrule_weekday":"dia da semana","rrule_weekdays":"dias da semana","rrule_weeks":"semanas","rrule_year":"ano","rrule_years":"anos","skiplink-footer":"Ir para o rodapé","skiplink-main-content":"Ir para o conteúdo","skiplink-navigation":"Ir para a navegação","sort":"ordenar","table":"tabela","text":"texto","title":"título","toc":"tabela de conteúdos","upgradeVersions":"","url":"url","user avatar":"avatar do usuário","video":"vídeo","visit_external_website":"Visitar site externo","workingCopyErrorUnauthorized":"","workingCopyGenericError":"","yes":"Sim","{count, plural, one {Upload {count} file} other {Upload {count} files}}":"{count, plural, one {Enviar {count} arquivo} other {Enviar {count} arquivos}}","{count} selected":"{count} selecionados","{id} Content Type":"Tipo de conteúdo {id}","{id} Schema":"Esquema {id}","{title} copied.":"{title} copiado.","{title} cut.":"{title} cortado.","{title} has been deleted.":"{title} foi excluído.","Image override":"Imagem","Please choose an existing content as source for this element":"Por favor escolha um conteúdo como fonte deste elemento.","Teaser":"Destaque","column":"coluna","columns":"colunas","head_title":"Chapéu"} \ No newline at end of file diff --git a/package.json b/package.json index 5e1ee5cc..661b7b57 100644 --- a/package.json +++ b/package.json @@ -165,6 +165,9 @@ "eslint-plugin-prettier": "3.1.3", "jest-junit": "8.0.0", "mrs-developer": "*", + "@cypress/code-coverage": "^3.10.0", + "babel-plugin-transform-class-properties": "^6.24.1", + "cypress-fail-fast": "^5.0.1", "postcss": "8.3.11", "prettier": "2.0.5", "stylelint": "14.0.1", diff --git a/yarn.lock b/yarn.lock index 9a0a7707..97187e3b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -29,6 +29,11 @@ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.13.tgz#6aff7b350a1e8c3e40b029e46cbe78e24a913483" integrity sha512-5yUzC5LqyTFp2HLmDoxGQelcdYgSpP9xsnMWBphAscOdFrHSAVbLNzWiy32sVNDqJRDiJK6klfDnAgu6PAGSHw== +"@babel/compat-data@^7.20.5": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733" + integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g== + "@babel/core@7.12.9": version "7.12.9" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8" @@ -72,6 +77,27 @@ json5 "^2.2.1" semver "^6.3.0" +"@babel/core@^7.0.1": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.7.tgz#37072f951bd4d28315445f66e0ec9f6ae0c8c35f" + integrity sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw== + dependencies: + "@ampproject/remapping" "^2.1.0" + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.20.7" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-module-transforms" "^7.20.7" + "@babel/helpers" "^7.20.7" + "@babel/parser" "^7.20.7" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.7" + "@babel/types" "^7.20.7" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.1" + semver "^6.3.0" + "@babel/generator@^7.12.11", "@babel/generator@^7.12.5", "@babel/generator@^7.18.13", "@babel/generator@^7.20.0": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.0.tgz#0bfc5379e0efb05ca6092091261fcdf7ec36249d" @@ -81,6 +107,15 @@ "@jridgewell/gen-mapping" "^0.3.2" jsesc "^2.5.1" +"@babel/generator@^7.17.9", "@babel/generator@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a" + integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw== + dependencies: + "@babel/types" "^7.20.7" + "@jridgewell/gen-mapping" "^0.3.2" + jsesc "^2.5.1" + "@babel/helper-annotate-as-pure@^7.14.5": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" @@ -106,6 +141,17 @@ browserslist "^4.20.2" semver "^6.3.0" +"@babel/helper-compilation-targets@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb" + integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ== + dependencies: + "@babel/compat-data" "^7.20.5" + "@babel/helper-validator-option" "^7.18.6" + browserslist "^4.21.3" + lru-cache "^5.1.1" + semver "^6.3.0" + "@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.14.6": version "7.14.6" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz#f114469b6c06f8b5c59c6c4e74621f5085362542" @@ -209,6 +255,20 @@ "@babel/traverse" "^7.18.9" "@babel/types" "^7.18.9" +"@babel/helper-module-transforms@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.7.tgz#7a6c9a1155bef55e914af574153069c9d9470c43" + integrity sha512-FNdu7r67fqMUSVuQpFQGE6BPdhJIhitoxhGzDbAXNcA07uoVG37fOiMk3OSV8rEICuyG6t8LGkd9EE64qIEoIA== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-simple-access" "^7.20.2" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-validator-identifier" "^7.19.1" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.7" + "@babel/types" "^7.20.7" + "@babel/helper-optimise-call-expression@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c" @@ -252,6 +312,13 @@ dependencies: "@babel/types" "^7.18.6" +"@babel/helper-simple-access@^7.20.2": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" + integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== + dependencies: + "@babel/types" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers@^7.14.5", "@babel/helper-skip-transparent-expression-wrappers@^7.18.9": version "7.18.9" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz#778d87b3a758d90b471e7b9918f34a9a02eb5818" @@ -300,6 +367,15 @@ "@babel/traverse" "^7.18.9" "@babel/types" "^7.18.9" +"@babel/helpers@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce" + integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA== + dependencies: + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.7" + "@babel/types" "^7.20.7" + "@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" @@ -314,6 +390,11 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.0.tgz#b26133c888da4d79b0d3edcf42677bcadc783046" integrity sha512-G9VgAhEaICnz8iiJeGJQyVl6J2nTjbW0xeisva0PK6XcKsga7BIaqm4ZF8Rg1Wbaqmy6znspNqhPaPkyukujzg== +"@babel/parser@^7.13.0", "@babel/parser@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b" + integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg== + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz#4b467302e1548ed3b1be43beae2cc9cf45e0bb7e" @@ -1108,6 +1189,15 @@ "@babel/parser" "^7.18.10" "@babel/types" "^7.18.10" +"@babel/template@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" + integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@babel/traverse@^7.1.0", "@babel/traverse@^7.12.11", "@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.18.13", "@babel/traverse@^7.18.9", "@babel/traverse@^7.7.0": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.0.tgz#538c4c6ce6255f5666eba02252a7b59fc2d5ed98" @@ -1124,6 +1214,22 @@ debug "^4.1.0" globals "^11.1.0" +"@babel/traverse@^7.17.9", "@babel/traverse@^7.20.7": + version "7.20.8" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.8.tgz#e3a23eb04af24f8bbe8a8ba3eef6155b77df0b08" + integrity sha512-/RNkaYDeCy4MjyV70+QkSHhxbvj2JO/5Ft2Pa880qJOG8tWrqcT/wXUuCCv43yogfqPzHL77Xu101KQPf4clnQ== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.20.7" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + debug "^4.1.0" + globals "^11.1.0" + "@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.12.11", "@babel/types@^7.12.7", "@babel/types@^7.14.5", "@babel/types@^7.18.10", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": version "7.20.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.0.tgz#52c94cf8a7e24e89d2a194c25c35b17a64871479" @@ -1133,6 +1239,15 @@ "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" +"@babel/types@^7.20.2", "@babel/types@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f" + integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg== + dependencies: + "@babel/helper-string-parser" "^7.19.4" + "@babel/helper-validator-identifier" "^7.19.1" + to-fast-properties "^2.0.0" + "@base2/pretty-print-object@1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@base2/pretty-print-object/-/pretty-print-object-1.0.0.tgz#860ce718b0b73f4009e153541faff2cb6b85d047" @@ -1156,6 +1271,21 @@ resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9" integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== +"@cypress/code-coverage@^3.10.0": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@cypress/code-coverage/-/code-coverage-3.10.0.tgz#2132dbb7ae068cab91790926d50a9bf85140cab4" + integrity sha512-K5pW2KPpK4vKMXqxd6vuzo6m9BNgpAv1LcrrtmqAtOJ1RGoEILXYZVost0L6Q+V01NyY7n7jXIIfS7LR3nP6YA== + dependencies: + "@cypress/webpack-preprocessor" "^5.11.0" + chalk "4.1.2" + dayjs "1.10.7" + debug "4.3.4" + execa "4.1.0" + globby "11.0.4" + istanbul-lib-coverage "3.0.0" + js-yaml "3.14.1" + nyc "15.1.0" + "@cypress/request@^2.88.10": version "2.88.10" resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.10.tgz#b66d76b07f860d3a4b8d7a0604d020c662752cce" @@ -1180,6 +1310,24 @@ tunnel-agent "^0.6.0" uuid "^8.3.2" +"@cypress/webpack-preprocessor@^5.11.0": + version "5.16.0" + resolved "https://registry.yarnpkg.com/@cypress/webpack-preprocessor/-/webpack-preprocessor-5.16.0.tgz#68dbd8ba0fb4d14e8f3d346fa31a567617a5134d" + integrity sha512-cQM0pPMZ/3DjA8ohFL5vBOrkD7CCpk7nH8k0ML4pLJrN6WDeIHRWuFQRISZoNXom4KP2M0kJNxJ7fCV7EbOYIg== + dependencies: + "@babel/core" "^7.0.1" + "@babel/generator" "^7.17.9" + "@babel/parser" "^7.13.0" + "@babel/traverse" "^7.17.9" + bluebird "3.7.1" + debug "^4.3.2" + fs-extra "^10.1.0" + loader-utils "^2.0.0" + lodash "^4.17.20" + md5 "2.3.0" + source-map "^0.6.1" + webpack-virtual-modules "^0.4.4" + "@cypress/xvfb@^1.2.4": version "1.2.4" resolved "https://registry.yarnpkg.com/@cypress/xvfb/-/xvfb-1.2.4.tgz#2daf42e8275b39f4aa53c14214e557bd14e7748a" @@ -4125,6 +4273,11 @@ ansi-regex@^5.0.0, ansi-regex@^5.0.1: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== + ansi-styles@^3.2.0, ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" @@ -4177,6 +4330,13 @@ app-root-dir@^1.0.2: resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118" integrity sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg= +append-transform@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-2.0.0.tgz#99d9d29c7b38391e6f428d28ce136551f0b77e12" + integrity sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg== + dependencies: + default-require-extensions "^3.0.0" + aproba@^1.0.3, aproba@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" @@ -4187,6 +4347,11 @@ arch@^2.2.0: resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== +archy@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" + integrity sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw== + are-we-there-yet@~1.1.2: version "1.1.5" resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" @@ -4495,6 +4660,15 @@ axobject-query@^2.0.2: dependencies: ast-types-flow "0.0.7" +babel-code-frame@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + integrity sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g== + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + babel-eslint@10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" @@ -4507,6 +4681,25 @@ babel-eslint@10.1.0: eslint-visitor-keys "^1.0.0" resolve "^1.12.0" +babel-helper-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + integrity sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q== + dependencies: + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-get-function-arity@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + integrity sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng== + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + babel-jest@^26.3.0, babel-jest@^26.6.3: version "26.6.3" resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.6.3.tgz#d87d25cb0037577a0c89f82e5755c5d293c01056" @@ -4531,6 +4724,13 @@ babel-loader@^8.0.6, babel-loader@^8.2.2: make-dir "^3.1.0" schema-utils "^2.6.5" +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + integrity sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w== + dependencies: + babel-runtime "^6.22.0" + babel-plugin-add-module-exports@0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-0.2.1.tgz#9ae9a1f4a8dc67f0cdec4f4aeda1e43a5ff65e25" @@ -4695,11 +4895,26 @@ babel-plugin-root-import@6.1.0: dependencies: slash "^1.0.0" +babel-plugin-syntax-class-properties@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" + integrity sha512-chI3Rt9T1AbrQD1s+vxw3KcwC9yHtF621/MacuItITfZX344uhQoANjpoSJZleAmW2tjlolqB/f+h7jIqXa7pA== + babel-plugin-syntax-jsx@^6.18.0: version "6.18.0" resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY= +babel-plugin-transform-class-properties@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" + integrity sha512-n4jtBA3OYBdvG5PRMKsMXJXHfLYw/ZOmtxCLOOwz6Ro5XlrColkStLnz1AS1L2yfPA9BKJ1ZNlmVCLjAL9DSIg== + dependencies: + babel-helper-function-name "^6.24.1" + babel-plugin-syntax-class-properties "^6.8.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-plugin-transform-define@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-define/-/babel-plugin-transform-define-2.0.1.tgz#6a34fd6ea89989feb75721ee4cce817ec779be7f" @@ -4762,7 +4977,7 @@ babel-preset-razzle@4.2.17: babel-plugin-transform-react-remove-prop-types "^0.4.24" chalk "^4.1.0" -babel-runtime@6.x, babel-runtime@^6.26.0, babel-runtime@^6.6.1: +babel-runtime@6.x, babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.6.1: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" integrity sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g== @@ -4770,6 +4985,47 @@ babel-runtime@6.x, babel-runtime@^6.26.0, babel-runtime@^6.6.1: core-js "^2.4.0" regenerator-runtime "^0.11.0" +babel-template@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + integrity sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg== + dependencies: + babel-runtime "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + lodash "^4.17.4" + +babel-traverse@^6.24.1, babel-traverse@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + integrity sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA== + dependencies: + babel-code-frame "^6.26.0" + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + debug "^2.6.8" + globals "^9.18.0" + invariant "^2.2.2" + lodash "^4.17.4" + +babel-types@^6.24.1, babel-types@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + integrity sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g== + dependencies: + babel-runtime "^6.26.0" + esutils "^2.0.2" + lodash "^4.17.4" + to-fast-properties "^1.0.3" + +babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + bail@^1.0.0: version "1.0.4" resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.4.tgz#7181b66d508aa3055d3f6c13f0a0c720641dde9b" @@ -4864,6 +5120,11 @@ blob-util@^2.0.2: resolved "https://registry.yarnpkg.com/blob-util/-/blob-util-2.0.2.tgz#3b4e3c281111bb7f11128518006cdc60b403a1eb" integrity sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ== +bluebird@3.7.1: + version "3.7.1" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.1.tgz#df70e302b471d7473489acf26a93d63b53f874de" + integrity sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg== + bluebird@3.7.2, bluebird@^3.3.5, bluebird@^3.5.5, bluebird@^3.7.2: version "3.7.2" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" @@ -5234,6 +5495,16 @@ cachedir@^2.3.0: resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8" integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw== +caching-transform@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-4.0.0.tgz#00d297a4206d71e2163c39eaffa8157ac0651f0f" + integrity sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA== + dependencies: + hasha "^5.0.0" + make-dir "^3.0.0" + package-hash "^4.0.0" + write-file-atomic "^3.0.0" + call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" @@ -5349,18 +5620,29 @@ chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4. escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" - integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== +chalk@4.1.2, chalk@^4.0.0, chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0.0, chalk@^4.1.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== +chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" @@ -5395,6 +5677,11 @@ chardet@^0.7.0: resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== +charenc@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA== + check-more-types@2.24.0, check-more-types@^2.24.0: version "2.24.0" resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600" @@ -6111,6 +6398,11 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5: shebang-command "^1.2.0" which "^1.2.9" +crypt@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow== + crypto-browserify@^3.11.0: version "3.12.0" resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" @@ -6400,6 +6692,13 @@ cypress-axe@1.0.0: resolved "https://registry.yarnpkg.com/cypress-axe/-/cypress-axe-1.0.0.tgz#ab4e9486eaa3bb956a90a1ae40d52df42827b4f0" integrity sha512-QBlNMAd5eZoyhG8RGGR/pLtpHGkvgWXm2tkP68scJ+AjYiNNOlJihxoEwH93RT+rWOLrefw4iWwEx8kpEcrvJA== +cypress-fail-fast@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/cypress-fail-fast/-/cypress-fail-fast-5.0.1.tgz#b86803ec2df0292b55f7f2b0d9d9b7eb593fa359" + integrity sha512-8x1RGWki0Vldq3dNUuWnSUiDPBSdDqznSl8S8Z6aK3JBPaqMZOlVYWhCzoyymSpt4Ta8rL+IAuDJ/+5GA2faTA== + dependencies: + chalk "4.1.2" + cypress-file-upload@5.0.8: version "5.0.8" resolved "https://registry.yarnpkg.com/cypress-file-upload/-/cypress-file-upload-5.0.8.tgz#d8824cbeaab798e44be8009769f9a6c9daa1b4a1" @@ -6723,19 +7022,19 @@ date-fns@2.28.0: resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.28.0.tgz#9570d656f5fc13143e50c975a3b6bbeb46cd08b2" integrity sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw== -dayjs@^1.10.4: +dayjs@1.10.7, dayjs@^1.10.4: version "1.10.7" resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.10.7.tgz#2cf5f91add28116748440866a0a1d26f3a6ce468" integrity sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig== -debug@2.6.9, debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9: +debug@2.6.9, debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.8, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" -debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: +debug@4, debug@4.3.4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== @@ -6846,6 +7145,13 @@ default-gateway@^4.2.0: execa "^1.0.0" ip-regex "^2.1.0" +default-require-extensions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-3.0.1.tgz#bfae00feeaeada68c2ae256c62540f60b80625bd" + integrity sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw== + dependencies: + strip-bom "^4.0.0" + defaults@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" @@ -7590,6 +7896,11 @@ es5-shim@^4.5.13: resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.14.tgz#90009e1019d0ea327447cb523deaff8fe45697ef" integrity sha512-7SwlpL+2JpymWTt8sNLuC2zdhhc+wrfe5cMPI2j0o6WsPdfAiPwmFy2f0AocPB4RQVBOZ9kNTgi5YF7TdhkvEg== +es6-error@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" + integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== + es6-shim@^0.35.5: version "0.35.6" resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.6.tgz#d10578301a83af2de58b9eadb7c2c9945f7388a0" @@ -7610,7 +7921,7 @@ escape-string-regexp@2.0.0, escape-string-regexp@^2.0.0: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== -escape-string-regexp@^1.0.5: +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= @@ -8363,7 +8674,7 @@ find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: make-dir "^2.0.0" pkg-dir "^3.0.0" -find-cache-dir@^3.3.1: +find-cache-dir@^3.2.0, find-cache-dir@^3.3.1: version "3.3.2" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== @@ -8476,6 +8787,14 @@ for-in@^1.0.2: resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= +foreground-child@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-2.0.0.tgz#71b32800c9f15aa8f2f83f4a6bd9bff35d861a53" + integrity sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^3.0.2" + forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -8585,7 +8904,12 @@ from@~0: resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" integrity sha1-g8YK/Fi5xWmXAH7Rp2izqzA6RP4= -fs-extra@10.1.0: +fromentries@^1.2.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/fromentries/-/fromentries-1.3.2.tgz#e4bca6808816bf8f93b52750f1127f5a6fd86e3a" + integrity sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg== + +fs-extra@10.1.0, fs-extra@^10.1.0: version "10.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== @@ -8920,6 +9244,11 @@ globals@^12.1.0: dependencies: type-fest "^0.8.1" +globals@^9.18.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== + globalthis@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.1.tgz#40116f5d9c071f9e8fb0037654df1ab3a83b7ef9" @@ -8939,6 +9268,18 @@ globby@11.0.1: merge2 "^1.3.0" slash "^3.0.0" +globby@11.0.4: + version "11.0.4" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" + integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.1.1" + ignore "^5.1.4" + merge2 "^1.3.0" + slash "^3.0.0" + globby@^11.0.1, globby@^11.0.2, globby@^11.0.4: version "11.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" @@ -9051,6 +9392,13 @@ harmony-reflect@^1.4.6: resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.1.tgz#c108d4f2bb451efef7a37861fdbdae72c9bdefa9" integrity sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA== +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg== + dependencies: + ansi-regex "^2.0.0" + has-bigints@^1.0.1, has-bigints@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" @@ -9152,6 +9500,14 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" +hasha@^5.0.0: + version "5.2.2" + resolved "https://registry.yarnpkg.com/hasha/-/hasha-5.2.2.tgz#a48477989b3b327aea3c04f53096d816d97522a1" + integrity sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ== + dependencies: + is-stream "^2.0.0" + type-fest "^0.8.0" + hast-to-hyperscript@^9.0.0: version "9.0.1" resolved "https://registry.yarnpkg.com/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz#9b67fd188e4c81e8ad66f803855334173920218d" @@ -9791,7 +10147,7 @@ intl-messageformat@^7.7.0: intl-format-cache "^4.2.12" intl-messageformat-parser "^3.4.0" -invariant@^2.1.0, invariant@^2.1.1, invariant@^2.2.3, invariant@^2.2.4: +invariant@^2.1.0, invariant@^2.1.1, invariant@^2.2.2, invariant@^2.2.3, invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== @@ -9894,7 +10250,7 @@ is-boolean-object@^1.1.0: call-bind "^1.0.2" has-tostringtag "^1.0.0" -is-buffer@^1.1.5: +is-buffer@^1.1.5, is-buffer@~1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== @@ -10377,11 +10733,23 @@ isstream@~0.1.2: resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= -istanbul-lib-coverage@^3.0.0: +istanbul-lib-coverage@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" + integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== + +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== +istanbul-lib-hook@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz#8f84c9434888cc6b1d0a9d7092a76d239ebf0cc6" + integrity sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ== + dependencies: + append-transform "^2.0.0" + istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" @@ -10392,6 +10760,18 @@ istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: istanbul-lib-coverage "^3.0.0" semver "^6.3.0" +istanbul-lib-processinfo@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz#366d454cd0dcb7eb6e0e419378e60072c8626169" + integrity sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg== + dependencies: + archy "^1.0.0" + cross-spawn "^7.0.3" + istanbul-lib-coverage "^3.2.0" + p-map "^3.0.0" + rimraf "^3.0.0" + uuid "^8.3.2" + istanbul-lib-report@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" @@ -10895,7 +11275,12 @@ js-string-escape@^1.0.1: resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@^3.13.1: +js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + integrity sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg== + +js-yaml@3.14.1, js-yaml@^3.13.1: version "3.14.1" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== @@ -11413,6 +11798,11 @@ lodash.debounce@^4.0.8: resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= +lodash.flattendeep@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" + integrity sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ== + lodash.includes@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" @@ -11649,6 +12039,15 @@ md5.js@^1.3.4: inherits "^2.0.1" safe-buffer "^5.1.2" +md5@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" + integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== + dependencies: + charenc "0.0.2" + crypt "0.0.2" + is-buffer "~1.1.6" + mdast-squeeze-paragraphs@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz#7c4c114679c3bee27ef10b58e2e015be79f1ef97" @@ -12188,6 +12587,13 @@ node-notifier@^8.0.0: uuid "^8.3.0" which "^2.0.2" +node-preload@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/node-preload/-/node-preload-0.2.1.tgz#c03043bb327f417a18fee7ab7ee57b408a144301" + integrity sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ== + dependencies: + process-on-spawn "^1.0.0" + node-releases@^1.1.61: version "1.1.73" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.73.tgz#dd4e81ddd5277ff846b80b52bb40c49edf7a7b20" @@ -12309,6 +12715,39 @@ nwsapi@^2.2.0: resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== +nyc@15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/nyc/-/nyc-15.1.0.tgz#1335dae12ddc87b6e249d5a1994ca4bdaea75f02" + integrity sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A== + dependencies: + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + caching-transform "^4.0.0" + convert-source-map "^1.7.0" + decamelize "^1.2.0" + find-cache-dir "^3.2.0" + find-up "^4.1.0" + foreground-child "^2.0.0" + get-package-type "^0.1.0" + glob "^7.1.6" + istanbul-lib-coverage "^3.0.0" + istanbul-lib-hook "^3.0.0" + istanbul-lib-instrument "^4.0.0" + istanbul-lib-processinfo "^2.0.2" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.0" + istanbul-reports "^3.0.2" + make-dir "^3.0.0" + node-preload "^0.2.1" + p-map "^3.0.0" + process-on-spawn "^1.0.0" + resolve-from "^5.0.0" + rimraf "^3.0.0" + signal-exit "^3.0.2" + spawn-wrap "^2.0.0" + test-exclude "^6.0.0" + yargs "^15.0.2" + oauth-sign@~0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" @@ -12656,6 +13095,16 @@ p-try@^2.0.0: resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== +package-hash@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-4.0.0.tgz#3537f654665ec3cc38827387fc904c163c54f506" + integrity sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ== + dependencies: + graceful-fs "^4.1.15" + hasha "^5.0.0" + lodash.flattendeep "^4.4.0" + release-zalgo "^1.0.0" + pad@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/pad/-/pad-3.2.0.tgz#be7a1d1cb6757049b4ad5b70e71977158fea95d1" @@ -13556,6 +14005,13 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== +process-on-spawn@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/process-on-spawn/-/process-on-spawn-1.0.0.tgz#95b05a23073d30a17acfdc92a440efd2baefdc93" + integrity sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg== + dependencies: + fromentries "^1.2.0" + process@^0.11.10: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" @@ -14956,6 +15412,13 @@ relateurl@^0.2.7: resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= +release-zalgo@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730" + integrity sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA== + dependencies: + es6-error "^4.0.1" + remark-external-links@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/remark-external-links/-/remark-external-links-8.0.0.tgz#308de69482958b5d1cd3692bc9b725ce0240f345" @@ -15922,6 +16385,18 @@ space-separated-tokens@^1.0.0: resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== +spawn-wrap@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-2.0.0.tgz#103685b8b8f9b79771318827aa78650a610d457e" + integrity sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg== + dependencies: + foreground-child "^2.0.0" + is-windows "^1.0.2" + make-dir "^3.0.0" + rimraf "^3.0.0" + signal-exit "^3.0.2" + which "^2.0.1" + spdx-correct@^3.0.0: version "3.1.1" resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" @@ -16482,6 +16957,11 @@ superagent@3.8.2: qs "^6.5.1" readable-stream "^2.0.5" +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g== + supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -16853,6 +17333,11 @@ to-camel-case@^1.0.0: dependencies: to-space-case "^1.0.0" +to-fast-properties@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + integrity sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og== + to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" @@ -17040,7 +17525,7 @@ type-fest@^0.6.0: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== -type-fest@^0.8.1: +type-fest@^0.8.0, type-fest@^0.8.1: version "0.8.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== @@ -17753,6 +18238,11 @@ webpack-virtual-modules@^0.2.2: dependencies: debug "^3.0.0" +webpack-virtual-modules@^0.4.4: + version "0.4.6" + resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45" + integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA== + webpack@4, webpack@4.46.0: version "4.46.0" resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542" @@ -18078,7 +18568,7 @@ yargs@^13.3.2: y18n "^4.0.0" yargs-parser "^13.1.2" -yargs@^15.4.1: +yargs@^15.0.2, yargs@^15.4.1: version "15.4.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==