Skip to content

Commit

Permalink
Merge pull request #7285 from GCTC-NTGC/6174-copy-candidate-count
Browse files Browse the repository at this point in the history
[Copy] Changes message for total estimated matching candidates in pool
  • Loading branch information
mnigh authored Jul 14, 2023
2 parents e011904 + d0a78ed commit b6351fc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/e2e/cypress/e2e/talentsearch/search-workflows.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe("Talent Search Workflow Tests", () => {
cy.findByRole("article", {
name: `Cypress Test Pool EN 1 ${uniqueTestId} (I T 1 Business Line Advisory Services)`,
}).within(() => {
cy.contains("There is 1 matching candidate in this pool");
cy.contains("There is approximately 1 matching candidate in this pool");

cy.findByRole("button", { name: /Request candidates/i })
.should("exist")
Expand Down
8 changes: 4 additions & 4 deletions apps/web/src/lang/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -2898,6 +2898,10 @@
"defaultMessage": "Le bureau de gestion de la collectivité du numérique souhaite vous aider à trouver le bon talent.",
"description": "Text telling users that Digital Community Management can still help them"
},
"JZk4NZ": {
"defaultMessage": "{candidateCount, plural, one {Il y a environ <strong><testId>{candidateCount}</testId></strong> candidat qui répond à vos critères dans ce bassin.} other {Il y a environ <strong><testId>{candidateCount}</testId></strong> candidats qui répondent à vos critères dans ce bassin.}}",
"description": "Message for total estimated matching candidates in pool"
},
"Jc0lds": {
"defaultMessage": "Bassin archivé",
"description": "Button to archive the pool in the archive pool dialog"
Expand Down Expand Up @@ -7220,10 +7224,6 @@
"defaultMessage": "<strong>Préavis!</strong> Avant de vous demander d’aller établir vos justificatifs CléGC, nous vous demandons d’examiner de nouveau les critères d’admissibilité du programme afin de veiller à ce que vous répondiez aux exigences.",
"description": "A request for the user to review the IAP eligibility criteria"
},
"oyFGYC": {
"defaultMessage": "{candidateCount, plural, one {Il y a <strong><testId>{candidateCount}</testId></strong> candidat qui répond à vos critères dans ce bassin.} other {Il y a <strong><testId>{candidateCount}</testId></strong> candidats qui répondent à vos critères dans ce bassin.}}",
"description": "Message for total estimated matching candidates in pool"
},
"p+YRN1": {
"defaultMessage": "Vous êtes sur le point de modifier le statut de cet utilisateur :",
"description": "Première section du texte de la boîte de dialogue Modifier le statut du candidat"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ const SearchResultCard = ({
{intl.formatMessage(
{
defaultMessage: `{candidateCount, plural,
one {There is <strong><testId>{candidateCount}</testId></strong> matching candidate in this pool.}
other {There are <strong><testId>{candidateCount}</testId></strong> matching candidates in this pool.}
one {There is approximately <strong><testId>{candidateCount}</testId></strong> matching candidate in this pool.}
other {There are approximately <strong><testId>{candidateCount}</testId></strong> matching candidates in this pool.}
}`,
id: "oyFGYC",
id: "JZk4NZ",
description:
"Message for total estimated matching candidates in pool",
},
Expand Down

0 comments on commit b6351fc

Please sign in to comment.