fix(campaigns/templates): clearer prorata phrasing — "mois restants" / "remaining months"

Iterating on the prorata disclaimer per user feedback. The previous
version ("tu rembourses le prorata non utilisé (20 $/mois)") still
read ambiguously — "non utilisé" could mean "the portion you haven't
spent" which is conceptually confusing for a one-time gift card, and
the hardcoded "$20/month" tied the template to the specific
$60/3-month campaign.

New phrasing makes the math explicit: refund only for the months
you're NOT staying.

FR:
  before — "Si tu résilies avant {{commitment_months}} mois,
            tu rembourses le prorata non utilisé (20 $/mois)."
  after  — "Si tu annules avant {{commitment_months}} mois,
            tu rembourses seulement au prorata des mois restants."

EN:
  before — "If you cancel before {{commitment_months}} months,
            you refund the unused pro-rated amount ($20/month)."
  after  — "If you cancel before {{commitment_months}} months,
            you only refund the prorated amount for the remaining months."

Wins:
  • Subject ("tu" / "you") explicit — no ambiguity on who refunds
  • Logic clarified — refund == months NOT STAYED, not "unused
    portion of money" (which doesn't quite map to a one-time gift)
  • Generic over campaign params — no hardcoded "$20/month" so the
    template works at any gift amount + commitment combination
  • "annules" (more common in QC consumer-facing) instead of
    "résilies" (slightly more formal/legal-sounding)

Applied via direct find/replace on .html + .json (FR + EN). Live
test-send queued to confirm rendering.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
louispaulb 2026-05-22 07:50:51 -04:00
parent f37b1d2803
commit 5327112717
8 changed files with 8 additions and 8 deletions

View File

@ -519,7 +519,7 @@ table, td { color: #1B2E24; } #u_body a { color: #00C853; text-decoration: under
<div
style="font-family:Plus Jakarta Sans, Helvetica, Arial, sans-serif;font-size:14px;line-height:1.5;text-align:left;color:#6b7280;"
>🪂 If you cancel before {{commitment_months}} months, you refund the unused pro-rated amount ($20/month).</div>
>🪂 If you cancel before {{commitment_months}} months, you only refund the prorated amount for the remaining months.</div>
</td>
</tr>

File diff suppressed because one or more lines are too long

View File

@ -519,7 +519,7 @@ table, td { color: #1B2E24; } #u_body a { color: #00C853; text-decoration: under
<div
style="font-family:Plus Jakarta Sans, Helvetica, Arial, sans-serif;font-size:14px;line-height:1.5;text-align:left;color:#6b7280;"
>🪂 Si tu résilies avant {{commitment_months}} mois, tu rembourses le prorata non utilisé (20 $/mois).</div>
>🪂 Si tu annules avant {{commitment_months}} mois, tu rembourses seulement au prorata des mois restants.</div>
</td>
</tr>

File diff suppressed because one or more lines are too long

View File

@ -519,7 +519,7 @@ table, td { color: #1B2E24; } #u_body a { color: #00C853; text-decoration: under
<div
style="font-family:Plus Jakarta Sans, Helvetica, Arial, sans-serif;font-size:14px;line-height:1.5;text-align:left;color:#6b7280;"
>🪂 If you cancel before {{commitment_months}} months, you refund the unused pro-rated amount ($20/month).</div>
>🪂 If you cancel before {{commitment_months}} months, you only refund the prorated amount for the remaining months.</div>
</td>
</tr>

File diff suppressed because one or more lines are too long

View File

@ -519,7 +519,7 @@ table, td { color: #1B2E24; } #u_body a { color: #00C853; text-decoration: under
<div
style="font-family:Plus Jakarta Sans, Helvetica, Arial, sans-serif;font-size:14px;line-height:1.5;text-align:left;color:#6b7280;"
>🪂 Si tu résilies avant {{commitment_months}} mois, tu rembourses le prorata non utilisé (20 $/mois).</div>
>🪂 Si tu annules avant {{commitment_months}} mois, tu rembourses seulement au prorata des mois restants.</div>
</td>
</tr>

File diff suppressed because one or more lines are too long