Skip to content

Commit

Permalink
fix: Korean greeting corrected
Browse files Browse the repository at this point in the history
feat: added additional greetings
feat: added additinal check-in questions
  • Loading branch information
jordanh committed Mar 11, 2024
1 parent 88bf97f commit a2eff30
Showing 1 changed file with 42 additions and 2 deletions.
44 changes: 42 additions & 2 deletions packages/client/utils/makeCheckinGreeting.ts
Original file line number Diff line number Diff line change
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 a2eff30

Please sign in to comment.