chore: update 'find your people' copy for courses (#3847)

This commit is contained in:
ggurdin 2025-09-02 16:17:15 -04:00 committed by GitHub
parent e2672b1df6
commit ffe5c22e9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 7 additions and 14 deletions

View file

@ -4978,7 +4978,6 @@
"deleteChatDesc": "Are you sure you want to delete this chat? It will be deleted for all participants and all messages within the chat will no longer be available for practice or learning analytics.",
"deleteSpaceDesc": "The space and any selected chats and/or subspaces will be deleted for all participants and all messages within the chat will no longer be available for practice or learning analytics. This action cannot be undone.",
"chatWithActivities": "Chat with activities",
"findYourPeople": "Find your people",
"launch": "Launch",
"launchActivityToChats": "Launch activity to chats",
"searchChats": "Search chats",
@ -5005,7 +5004,7 @@
"private": "Private",
"cannotBeFoundInSearch": "Cannot be found in search",
"public": "Public",
"visibleToCommunity": "Visible to the broader Pangea Chat community via \"Find your people\"",
"visibleToCommunity": "Visible to the broader Pangea Chat community via \"Find a course\"",
"howSpaceCanBeJoined": "How this space can be joined",
"restricted": "Restricted",
"canBeFoundVia": "Can be found via:",
@ -5265,5 +5264,6 @@
"waitingForOthersToFinish": "Waiting for the rest to finish up...",
"saveToCompletedActivities": "Save to completed activities",
"generatingSummary": "Analyzing chat and generating results",
"instructionsLanguage": "Instructions language"
"instructionsLanguage": "Instructions language",
"findCourse": "Find a course"
}

View file

@ -5583,7 +5583,6 @@
"addEnvironmentOverride": "Agregar anulación de entorno",
"defaultOption": "Predeterminado",
"chatWithActivities": "Charlar con actividades",
"findYourPeople": "Encuentra a tu gente",
"launch": "Lanzar",
"launchActivityToChats": "Lanzar actividad a los chats",
"searchChats": "Buscar chats",

View file

@ -4262,7 +4262,6 @@
"addEnvironmentOverride": "Thêm ghi đè môi trường",
"defaultOption": "Mặc định",
"chatWithActivities": "Trò chuyện với các hoạt động",
"findYourPeople": "Tìm người của bạn",
"launch": "Khởi động",
"launchActivityToChats": "Khởi động hoạt động đến các trò chuyện",
"searchChats": "Tìm kiếm cuộc trò chuyện",
@ -4390,7 +4389,6 @@
"private": "Riêng tư",
"cannotBeFoundInSearch": "Không thể tìm thấy trong tìm kiếm",
"public": "Công khai",
"visibleToCommunity": "Có thể nhìn thấy bởi cộng đồng Pangea Chat rộng lớn hơn qua \"Tìm người của bạn\"",
"howSpaceCanBeJoined": "Cách tham gia không gian này",
"canBeFoundVia": "Có thể tìm thấy qua:",
"canBeFoundViaInvitation": "• lời mời",
@ -4532,10 +4530,6 @@
"type": "String",
"placeholders": {}
},
"@visibleToCommunity": {
"type": "String",
"placeholders": {}
},
"@howSpaceCanBeJoined": {
"type": "String",
"placeholders": {}

View file

@ -90,7 +90,7 @@ class FindYourPeopleView extends StatelessWidget {
horizontal: 12.0,
),
child: Text(
L10n.of(context).findYourPeople,
L10n.of(context).findCourse,
style: const TextStyle(fontSize: 32.0),
),
),
@ -142,7 +142,7 @@ class FindYourPeopleView extends StatelessWidget {
20.0,
0,
),
hintText: L10n.of(context).findYourPeople,
hintText: L10n.of(context).findCourse,
hintStyle: TextStyle(
color:
theme.colorScheme.onPrimaryContainer,

View file

@ -46,7 +46,7 @@ enum OnboardingStepsEnum {
case OnboardingStepsEnum.chatWithBot:
return l10n.getStartedBotChatButton;
case OnboardingStepsEnum.joinSpace:
return l10n.findYourPeople;
return l10n.findCourse;
case OnboardingStepsEnum.inviteFriends:
return l10n.getStartedFriendsButton;
}

View file

@ -159,7 +159,7 @@ class SpacesNavigationRail extends StatelessWidget {
context.go('/rooms/communities');
},
icon: const Icon(Icons.groups),
toolTip: L10n.of(context).findYourPeople,
toolTip: L10n.of(context).findCourse,
// Pangea#
);
}