Skip to content

Commit

Permalink
MAJ du wording pour la duplication d'audit (#899)
Browse files Browse the repository at this point in the history
* update wording for audit duplication

* update duplicate modal main content wording

* update duplicate modal main content wording (2)
  • Loading branch information
bellangerq authored Dec 11, 2024
1 parent d37ff34 commit 6ef469f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
10 changes: 4 additions & 6 deletions confiture-web-app/src/components/account/dashboard/AuditRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ function duplicateAudit(name: string) {
.then((newAuditId) => {
duplicateModal.value?.hide();

notify("success", undefined, `Audit ${name} copié avec succès`, {
notify("success", undefined, `Audit ${name} dupliqué avec succès`, {
action: {
label: "Annuler",
cb() {
console.log("Cancelled" + newAuditId);
auditStore
.deleteAudit(newAuditId)
.then(() => {
notify("success", undefined, "Copie annulée.");
notify("success", undefined, "Duplication de l’audit annulée.");
})
.catch((error) => {
notify(
Expand Down Expand Up @@ -340,10 +340,8 @@ function copyStatementLink(uniqueId: string) {
@click="duplicateModal?.show()"
>
<CopyIcon class="fr-mr-2v" />
Créer une copie
<span class="fr-sr-only"
>de l’audit {{ audit.procedureName }}</span
>
Dupliquer l’audit
<span class="fr-sr-only"> {{ audit.procedureName }}</span>
</button>
</li>
<li class="dropdown-item">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ onMounted(() => {
@click="duplicateModal?.show()"
>
<CopyIcon class="fr-mr-2v" />
Créer une copie
Dupliquer l’audit
</button>
</li>
<li class="fr-p-0 settings-item mobile-dropdown-item">
Expand Down
13 changes: 7 additions & 6 deletions confiture-web-app/src/components/audit/DuplicateModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,16 @@ function handleClose() {
</div>
<div class="fr-modal__content">
<h1 :id="`duplicate-modal-title-${id}`" class="fr-modal__title">
Créer une copie de l’audit
Dupliquer l’audit
<template v-if="originalAuditName">
{{ originalAuditName }}
« {{ originalAuditName }} »
</template>
</h1>
<p>
La copie de votre audit reprend l’intégralité des éléments de
l’audit initial : échantillon, état de conformité,
commentaires et recommandations, etc.
La copie de votre audit reprendra l’intégralité des éléments
de l’audit initial : l’échantillon des pages à auditer, l’état
de conformité des critères, la description des erreurs et
recommandations, etc.
</p>
<DsfrField
:id="`duplicate-audit-name-${id}`"
Expand Down Expand Up @@ -100,7 +101,7 @@ function handleClose() {
</li>
<li>
<button class="fr-btn" :disabled="isLoading" type="submit">
Créer une copie
Dupliquer l’audit
</button>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion confiture-web-app/src/pages/audit/AuditOverviewPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function focusPageHeading() {

<!-- Duplicated audit alert -->
<div v-if="showDuplicatedAlert" class="fr-alert fr-alert--success fr-mb-3w">
<p class="fr-alert__title">Audit copié avec succès</p>
<p class="fr-alert__title">Audit dupliqué avec succès</p>
<p>
Un lien pour accéder à cette page vient de vous être envoyé par mail.
</p>
Expand Down

0 comments on commit 6ef469f

Please sign in to comment.