From 7a47ad3a4df9aefe10c503ef5417ca62b8833d17 Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Thu, 6 Aug 2026 16:41:59 -0700 Subject: [PATCH] Add name and description for beta feature (#11409) --- src/analytics/features/index.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/analytics/features/index.ts b/src/analytics/features/index.ts index b83ac9e33b..6cbafeaa22 100644 --- a/src/analytics/features/index.ts +++ b/src/analytics/features/index.ts @@ -77,19 +77,21 @@ export function getFeatures() { export function getFeatureDescription(feature: Features, i18n: I18n) { switch (feature) { - case Features.PostThreadKnownLikersEnable: + case Features.CanonicalPostNumberingEnable: return { key: feature, name: i18n._( msg({ - message: 'Social proofing on posts', - comment: 'Name for a feature flag', + message: 'Thread numbering', + comment: + 'Name for a feature flag (See numbered badges (1/3, 2/3, etc.) on posts in a thread by the same author.)', }), ), description: i18n._( msg({ - message: 'Spot posts your friends and follows have liked.', - comment: 'Description of a feature flag (Social proofing on posts)', + message: + 'See numbered badges (1/3, 2/3, etc.) on posts in a thread by the same author.', + comment: 'Description of a feature flag (Thread numbering)', }), ), }