chore: update some copy in filter dropdowns (#4140)
This commit is contained in:
parent
f39b632a45
commit
d43f5970fc
5 changed files with 12 additions and 5 deletions
|
|
@ -5286,5 +5286,7 @@
|
|||
"email": "Email",
|
||||
"forgotPassword": "Forgot password?",
|
||||
"writingAnalyticsDesc": "Send messages to practice writing.",
|
||||
"endActivity": "End activity"
|
||||
"endActivity": "End activity",
|
||||
"allLanguages": "All languages",
|
||||
"allCefrLevels": "All CEFR levels"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -41,7 +41,6 @@ import '../../widgets/matrix.dart';
|
|||
import 'package:fluffychat/utils/tor_stub.dart'
|
||||
if (dart.library.html) 'package:tor_detector_web/tor_detector_web.dart';
|
||||
|
||||
|
||||
enum PopupMenuAction {
|
||||
settings,
|
||||
invite,
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ class NewCourseController extends State<NewCourse> with CourseSearchProvider {
|
|||
enableSearch: true,
|
||||
defaultName:
|
||||
L10n.of(context).languageOfInstructionsLabel,
|
||||
shortName: L10n.of(context).instructionsLanguage,
|
||||
shortName: L10n.of(context).allLanguages,
|
||||
),
|
||||
CoursePlanFilter<LanguageModel>(
|
||||
value: targetLanguageFilter,
|
||||
|
|
@ -89,6 +89,7 @@ class NewCourseController extends State<NewCourse> with CourseSearchProvider {
|
|||
v.getDisplayName(context) ?? v.displayName,
|
||||
enableSearch: true,
|
||||
defaultName: L10n.of(context).targetLanguageLabel,
|
||||
shortName: L10n.of(context).allLanguages,
|
||||
),
|
||||
CoursePlanFilter<LanguageLevelTypeEnum>(
|
||||
value: languageLevelFilter,
|
||||
|
|
@ -96,6 +97,7 @@ class NewCourseController extends State<NewCourse> with CourseSearchProvider {
|
|||
items: LanguageLevelTypeEnum.values,
|
||||
displayname: (v) => v.string,
|
||||
defaultName: L10n.of(context).cefrLevelLabel,
|
||||
shortName: L10n.of(context).allCefrLevels,
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ class NewTripPageState extends State<NewTripPage> with CourseSearchProvider {
|
|||
enableSearch: true,
|
||||
defaultName:
|
||||
L10n.of(context).languageOfInstructionsLabel,
|
||||
shortName: L10n.of(context).instructionsLanguage,
|
||||
shortName: L10n.of(context).allLanguages,
|
||||
),
|
||||
CoursePlanFilter<LanguageModel>(
|
||||
value: targetLanguageFilter,
|
||||
|
|
@ -92,6 +92,7 @@ class NewTripPageState extends State<NewTripPage> with CourseSearchProvider {
|
|||
v.getDisplayName(context) ?? v.displayName,
|
||||
enableSearch: true,
|
||||
defaultName: L10n.of(context).targetLanguageLabel,
|
||||
shortName: L10n.of(context).allLanguages,
|
||||
),
|
||||
CoursePlanFilter<LanguageLevelTypeEnum>(
|
||||
value: languageLevelFilter,
|
||||
|
|
@ -99,6 +100,7 @@ class NewTripPageState extends State<NewTripPage> with CourseSearchProvider {
|
|||
items: LanguageLevelTypeEnum.values,
|
||||
displayname: (v) => v.string,
|
||||
defaultName: L10n.of(context).cefrLevelLabel,
|
||||
shortName: L10n.of(context).allCefrLevels,
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
|
|||
|
|
@ -115,7 +115,7 @@ class PublicTripPageState extends State<PublicTripPage> {
|
|||
enableSearch: true,
|
||||
defaultName:
|
||||
L10n.of(context).languageOfInstructionsLabel,
|
||||
shortName: L10n.of(context).instructionsLanguage,
|
||||
shortName: L10n.of(context).allLanguages,
|
||||
),
|
||||
CoursePlanFilter<LanguageModel>(
|
||||
value: targetLanguageFilter,
|
||||
|
|
@ -126,6 +126,7 @@ class PublicTripPageState extends State<PublicTripPage> {
|
|||
v.getDisplayName(context) ?? v.displayName,
|
||||
enableSearch: true,
|
||||
defaultName: L10n.of(context).targetLanguageLabel,
|
||||
shortName: L10n.of(context).allLanguages,
|
||||
),
|
||||
CoursePlanFilter<LanguageLevelTypeEnum>(
|
||||
value: languageLevelFilter,
|
||||
|
|
@ -133,6 +134,7 @@ class PublicTripPageState extends State<PublicTripPage> {
|
|||
items: LanguageLevelTypeEnum.values,
|
||||
displayname: (v) => v.string,
|
||||
defaultName: L10n.of(context).cefrLevelLabel,
|
||||
shortName: L10n.of(context).allCefrLevels,
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue