Skip to content

Commit

Permalink
fix: Korean greeting corrected (#9525)
Browse files Browse the repository at this point in the history
eat: added additional greetings
feat: added additinal check-in questions
  • Loading branch information
jordanh committed Mar 12, 2024
1 parent 37bd20c commit 10c6f69
Showing 1 changed file with 42 additions and 2 deletions.
44 changes: 42 additions & 2 deletions packages/client/utils/makeCheckinGreeting.ts
Expand Up @@ -40,7 +40,7 @@ const greetings = [
language: 'Chinese'
},
{
content: 'Yeoboseyo',
content: 'Annyeong',
language: 'Korean'
},
{
Expand Down Expand Up @@ -70,6 +70,42 @@ const greetings = [
{
content: 'Lei Ho',
language: 'Cantonese'
},
{
content: 'Salaam',
language: 'Arabic'
},
{
content: 'Filipino',
language: 'Kumusta'
},
{
content: 'Pryvit',
language: 'Ukranian'
},
{
content: 'Habari',
language: 'Swahili'
},
{
content: 'Vanakkam',
language: 'Tamil'
},
{
content: 'Chào',
language: 'Vietnamese'
},
{
content: 'Gamardjoba',
language: 'Georgian'
},
{
content: 'Selam',
language: 'Amharic'
},
{
content: 'Iska warran',
language: 'Somalian'
}
]

Expand Down Expand Up @@ -294,7 +330,11 @@ const questions = [
'If buying groceries were a game, what would be one of the loading screen tips?',
'What’s one of your recent pet peeves?',
'How would your best friend describe you?',
'Congratulations! You’ve been chosen to represent your country in a global competition. What sport or activity are you doing?'
'Congratulations! You’ve been chosen to represent your country in a global competition. What sport or activity are you doing?',
'What’s a small victory you had this week that might seem trivial but was important to you?',
'If you could have any author, living or dead, write the story of your life, who would it be and why?',
'Imagine you could teleport to any place in the world for your next meal. Where would you go and what would you eat?',
'What’s one song that always boosts your mood, no matter how many times you hear it?'
]

export const makeCheckinGreeting = (meetingCount: number, seedId = '') => {
Expand Down

0 comments on commit 10c6f69

Please sign in to comment.