const en = {
streamerbotconnected: 'Streamer.bot Online!',
streamerbotdisconnected: 'Streamer.bot Disconnected!',
twitch : {
firstMessage : () => `First chatter`,
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, message }) => ` subscribed for
${isPrime == true ? '' : ''}
${months || 1 } ${months == 1 ? 'month' : 'months'}
(${isPrime == true ? 'Prime' : 'Tier '+tier.toString().charAt(0)})
${message ? '
'+message : '' }`,
gifted : ({ gifted, months, tier }) => ` gifted
${months || 1 } ${months == 1 ? 'month' : 'months'}
of Tier ${tier.toString().charAt(0)} ${months == 1 ? 'sub' : 'subs'}
to ${gifted}`,
giftedbomb : ({ count, total, tier }) => ` gifted ${count} subs (Tier ${tier.toString().charAt(0)}) 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, sticker }) => `
${sticker ? '
': ''}
sent a supersticker of ${money}
${sticker ? '
': ''}
`,
member : ({ months, tier, message }) => ` became a member for
${months || 1 } ${months && months > 1 ? 'months' : 'month'}
(Tier ${tier})
${message ? '
'+message : ''}`,
giftedmembers : ({ total, tier }) => ` gifted ${total} ${total == 1 ? 'membership' : 'memberships'} (Tier ${tier}) to the channel`,
giftedtrainmembers : ({ gifted, tier }) => ` gifted a membership
(${tier})
to ${gifted}`,
},
streamlabs : {
tip : ({ money, message }) => ` donated 🪙 ${money}${message ? '
'+message : ''}`,
},
streamelements : {
tip : ({ money, message }) => ` donated 🪙 ${money}${message ? '
'+message : ''}`,
},
tiktok : {
follow : () => ` followed the channel`,
sub : ({ months }) => ` subscribed for ${months || 1 } ${(months && months > 1) ? 'months' : 'month'}`,
gift : ({ gift, count, coins }) => ` gifted ${gift} x${count} (🪙 ${coins} ${(coins && coins > 1) ? 'coins' : 'coin'})`,
}
}