Skip to content

Commit

Permalink
Merge pull request #89 from Fam-Story/chore/88-interacetion-in-english
Browse files Browse the repository at this point in the history
chore: 상호작용 영어로 변경 (#88)
  • Loading branch information
synoti21 authored Dec 11, 2023
2 parents 5e9c6f6 + 223a9db commit 696bd2d
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions src/common/util/interactionType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,15 @@ export class InteractionType {
static getInteraction(type: number, source: string, target: string) {
switch (type) {
case 1:
return new InteractionType(
'콕콕!',
`${source}님이 ${target}님을 찔렀어요.`,
);
return new InteractionType('👉Poked!', `${source} poked you!`);
case 2:
return new InteractionType(
'하트!',
`${source}님이 ${target}님에게 하트를 보냈어요.`,
);
return new InteractionType('❤️Heart!', `${source} sent heart to you!`);
case 3:
return new InteractionType(
'우우우~!',
`${source}님이 ${target}에게 야유를 보냈어요.`,
);
return new InteractionType('👎Boo~!', `${source} booed you!`);
case 4:
return new InteractionType(
'칭찬해요!',
`${source}님이 ${target}님을 칭찬해요.`,
'👏Complimented!',
`${source} complimented you!`,
);
}
}
Expand Down

0 comments on commit 696bd2d

Please sign in to comment.