chore: add copy to describe writing analytics (#4123)

This commit is contained in:
ggurdin 2025-09-25 09:34:02 -04:00 committed by GitHub
parent 533ebc991e
commit e2be29d211
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -5257,5 +5257,6 @@
"readingAnalyticsDesc": "Click practice on each message for reading activities.",
"speakingAnalyticsDesc": "Record voice messages for speaking practice.",
"audioAnalyticsDesc": "Click practice on each message for listening activities.",
"writingAnalyticsDesc": "Send messages to practice writing.",
"endActivity": "End activity"
}

View file

@ -42,6 +42,8 @@ enum LearningSkillsEnum {
return L10n.of(context).audioAnalyticsDesc;
case LearningSkillsEnum.speaking:
return L10n.of(context).speakingAnalyticsDesc;
case LearningSkillsEnum.writing:
return L10n.of(context).writingAnalyticsDesc;
default:
return null;
}