const en = {
streamerbotconnected: 'Streamer.bot Online!',
streamerbotdisconnected: 'Streamer.bot Disconnected!',
twitch : {
follow : () => ` followed the channel.`,
announcement : () => `
📢 Announcement
`,
channelpoints : ({ title }) => ` Channel Points - ${title}
`,
bits : ({ bits, message }) => ` cheered ${bits} bits${message ? ' - '+message : ''}`,
sub : ({ months, isPrime, tier }) => ` subscribed for
${isPrime == true ? '' : ''}
${months || 1 } ${months == 1 ? 'month' : 'months'}
(${isPrime == true ? 'Prime' : 'Tier '+tier.toString().charAt(0)})`,
resub : ({ months, isPrime, tier }) => ` subscribed for
${isPrime == true ? '' : ''}
${months || 1 } ${months == 1 ? 'month' : 'months'}
(${isPrime == true ? 'Prime' : 'Tier '+tier.toString().charAt(0)})`,
gifted : ({ gifted, months, tier, total }) => ` gifted
${months || 1 } ${months == 1 ? 'month' : 'months'}
of Tier ${tier.toString().charAt(0)} sub
to ${gifted}`,
giftedbomb : ({ count, total, tier }) => ` gifted ${count} Tier ${tier.toString().charAt(0)} subs to the Community, ${total || 1} ${total == 1 ? 'gift' : 'gifts'} in total.`,
raid : ({ viewers }) => ` raided the channel with ${viewers} viewers`
},
youtube : {
superchat : ({ money, message }) => ` superchatted ${money}
${message ? ' - '+message : ''}
`,
supersticker : ({ money, message }) => ` sent a supersticker of ${money}
${message ? ' - '+message : ''}
`,
member : ({ months, tier }) => ` became a member for
${months || 1 } ${months == 1 ? 'month' : 'months'}
(Tier ${tier})`,
giftedmembers : ({ total, tier }) => ` gifted ${total} Tier ${tier} memberships`,
giftedtrainmembers : ({ gifted, tier }) => ` gifted a membership
(${tier})
to ${gifted}`,
},
streamlabs : {
tip : ({ money, message }) => ` donated 🪙 ${money}`,
},
streamelements : {
tip : ({ money, message }) => ` donated 🪙 ${money}`,
},
tiktok : {
follow : () => ` followed the channel.`,
sub : ({ months }) => ` subscribed for ${months || 1 } ${months == 1 ? 'month' : 'months'}.`,
gift : ({ gift, count, coins }) => ` gifted ${gift} x${count} (🪙 ${coins} ${coins == 1 ? 'coin' : 'coins'}).`,
}
}