From 56ccfb4ab0feb79fde988c0a6905b44cd1995825 Mon Sep 17 00:00:00 2001 From: Max Strasinsky <98811342+mstrasinskis@users.noreply.github.com> Date: Thu, 12 Dec 2024 09:05:00 +0100 Subject: [PATCH] Confirming following labels update (#5992) # Motivation Refine the wording for labels related to confirming following. # Changes - Labels. # Tests - Updated. # Todos - [ ] Add entry to changelog (if necessary). Not necessary. --- frontend/src/lib/i18n/en.json | 4 ++-- .../tests/lib/components/neurons/LosingRewardsBanner.spec.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/lib/i18n/en.json b/frontend/src/lib/i18n/en.json index 22235528777..a71bfead3d8 100644 --- a/frontend/src/lib/i18n/en.json +++ b/frontend/src/lib/i18n/en.json @@ -388,7 +388,7 @@ "create_as_public_neuron_failure": "Making your neuron public has failed, so it was created as a private neuron. You can change neuron visibility at any time under \"Advanced Details & Settings\"" }, "losing_rewards": { - "description": "ICP neurons that are inactive for $period start losing voting rewards. In order to avoid losing rewards, vote manually, edit or confirm your following.", + "description": "ICP neurons that are inactive for $period start missing voting rewards. To avoid missing rewards, vote manually, edit, or confirm your following.", "confirming": "Confirming following. This may take a moment.", "confirm": "Confirm Following" }, @@ -400,7 +400,7 @@ "goto_neuron": "Go to neuron details", "title": "Review your following for neurons", "label": "Neurons", - "no_following": "This neuron has no following configured." + "no_following": "This neuron has no following configured. You need to vote manually to earn voting rewards." }, "new_followee": { "title": "Enter New Followee", diff --git a/frontend/src/tests/lib/components/neurons/LosingRewardsBanner.spec.ts b/frontend/src/tests/lib/components/neurons/LosingRewardsBanner.spec.ts index 124e4c460c9..16411d5e0d8 100644 --- a/frontend/src/tests/lib/components/neurons/LosingRewardsBanner.spec.ts +++ b/frontend/src/tests/lib/components/neurons/LosingRewardsBanner.spec.ts @@ -94,7 +94,7 @@ describe("LosingRewardsBanner", () => { const po = await renderComponent(); expect(await po.getText()).toBe( - "ICP neurons that are inactive for 6 months start losing voting rewards. In order to avoid losing rewards, vote manually, edit or confirm your following." + "ICP neurons that are inactive for 6 months start missing voting rewards. To avoid missing rewards, vote manually, edit, or confirm your following." ); });