383 lines
9.9 KiB
C
383 lines
9.9 KiB
C
|
|
static const u8 sEasyChatWord_Excl[] = _("!");
|
|
static const u8 sEasyChatWord_ExclExcl[] = _("!!");
|
|
static const u8 sEasyChatWord_QuesExcl[] = _("?!");
|
|
static const u8 sEasyChatWord_Ques[] = _("?");
|
|
static const u8 sEasyChatWord_Ellipsis[] = _("…");
|
|
static const u8 sEasyChatWord_EllipsisExcl[] = _("…!");
|
|
static const u8 sEasyChatWord_EllipsisEllipsisEllipsis[] = _("………");
|
|
static const u8 sEasyChatWord_Dash[] = _("-");
|
|
static const u8 sEasyChatWord_DashDashDash[] = _("- - -");
|
|
static const u8 sEasyChatWord_UhOh[] = _("UH-OH");
|
|
static const u8 sEasyChatWord_Waaah[] = _("WAAAH");
|
|
static const u8 sEasyChatWord_Ahaha[] = _("AHAHA");
|
|
static const u8 sEasyChatWord_OhQues[] = _("OH?");
|
|
static const u8 sEasyChatWord_Nope[] = _("NOPE");
|
|
static const u8 sEasyChatWord_Urgh[] = _("URGH");
|
|
static const u8 sEasyChatWord_Hmm[] = _("HMM");
|
|
static const u8 sEasyChatWord_Whoah[] = _("WHOAH");
|
|
static const u8 sEasyChatWord_WroooaarExcl[] = _("WROOOAAR!");
|
|
static const u8 sEasyChatWord_Wow[] = _("WOW");
|
|
static const u8 sEasyChatWord_Giggle[] = _("GIGGLE");
|
|
static const u8 sEasyChatWord_Sigh[] = _("SIGH");
|
|
static const u8 sEasyChatWord_Unbelievable[] = _("UNBELIEVABLE");
|
|
static const u8 sEasyChatWord_Cries[] = _("CRIES");
|
|
static const u8 sEasyChatWord_Agree[] = _("AGREE");
|
|
static const u8 sEasyChatWord_EhQues[] = _("EH?");
|
|
static const u8 sEasyChatWord_Cry[] = _("CRY");
|
|
static const u8 sEasyChatWord_Ehehe[] = _("EHEHE");
|
|
static const u8 sEasyChatWord_OiOiOi[] = _("OI, OI, OI");
|
|
static const u8 sEasyChatWord_OhYeah[] = _("OH, YEAH");
|
|
static const u8 sEasyChatWord_Oh[] = _("OH");
|
|
static const u8 sEasyChatWord_Oops[] = _("OOPS");
|
|
static const u8 sEasyChatWord_Shocked[] = _("SHOCKED");
|
|
static const u8 sEasyChatWord_Eek[] = _("EEK");
|
|
static const u8 sEasyChatWord_Graaah[] = _("GRAAAH");
|
|
static const u8 sEasyChatWord_Gwahahaha[] = _("GWAHAHAHA");
|
|
static const u8 sEasyChatWord_Way[] = _("WAY");
|
|
static const u8 sEasyChatWord_Tch[] = _("TCH");
|
|
static const u8 sEasyChatWord_Hehe[] = _("HEHE");
|
|
static const u8 sEasyChatWord_Hah[] = _("HAH");
|
|
static const u8 sEasyChatWord_Yup[] = _("YUP");
|
|
static const u8 sEasyChatWord_Hahaha[] = _("HAHAHA");
|
|
static const u8 sEasyChatWord_Aiyeeh[] = _("AIYEEH");
|
|
static const u8 sEasyChatWord_Hiyah[] = _("HIYAH");
|
|
static const u8 sEasyChatWord_Fufufu[] = _("FUFUFU");
|
|
static const u8 sEasyChatWord_Lol[] = _("LOL");
|
|
static const u8 sEasyChatWord_Snort[] = _("SNORT");
|
|
static const u8 sEasyChatWord_Humph[] = _("HUMPH");
|
|
static const u8 sEasyChatWord_Hehehe[] = _("HEHEHE");
|
|
static const u8 sEasyChatWord_Heh[] = _("HEH");
|
|
static const u8 sEasyChatWord_Hohoho[] = _("HOHOHO");
|
|
static const u8 sEasyChatWord_UhHuh[] = _("UH-HUH");
|
|
static const u8 sEasyChatWord_OhDear[] = _("OH, DEAR");
|
|
static const u8 sEasyChatWord_Arrgh[] = _("ARRGH");
|
|
static const u8 sEasyChatWord_Mufufu[] = _("MUFUFU");
|
|
static const u8 sEasyChatWord_Mmm[] = _("MMM");
|
|
static const u8 sEasyChatWord_OhKay[] = _("OH-KAY");
|
|
static const u8 sEasyChatWord_Okay[] = _("OKAY");
|
|
static const u8 sEasyChatWord_Lalala[] = _("LALALA");
|
|
static const u8 sEasyChatWord_Yay[] = _("YAY");
|
|
static const u8 sEasyChatWord_Aww[] = _("AWW");
|
|
static const u8 sEasyChatWord_Wowee[] = _("WOWEE");
|
|
static const u8 sEasyChatWord_Gwah[] = _("GWAH");
|
|
static const u8 sEasyChatWord_Wahahaha[] = _("WAHAHAHA");
|
|
|
|
static const struct EasyChatWordInfo sEasyChatGroup_Voices[] = {
|
|
{
|
|
.text = sEasyChatWord_Excl,
|
|
.alphabeticalOrder = 0,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_ExclExcl,
|
|
.alphabeticalOrder = 1,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_QuesExcl,
|
|
.alphabeticalOrder = 7,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Ques,
|
|
.alphabeticalOrder = 8,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Ellipsis,
|
|
.alphabeticalOrder = 4,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_EllipsisExcl,
|
|
.alphabeticalOrder = 5,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_EllipsisEllipsisEllipsis,
|
|
.alphabeticalOrder = 6,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Dash,
|
|
.alphabeticalOrder = 3,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_DashDashDash,
|
|
.alphabeticalOrder = 2,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_UhOh,
|
|
.alphabeticalOrder = 23,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Waaah,
|
|
.alphabeticalOrder = 11,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Ahaha,
|
|
.alphabeticalOrder = 41,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_OhQues,
|
|
.alphabeticalOrder = 52,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Nope,
|
|
.alphabeticalOrder = 59,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Urgh,
|
|
.alphabeticalOrder = 22,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Hmm,
|
|
.alphabeticalOrder = 25,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Whoah,
|
|
.alphabeticalOrder = 32,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_WroooaarExcl,
|
|
.alphabeticalOrder = 24,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Wow,
|
|
.alphabeticalOrder = 26,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Giggle,
|
|
.alphabeticalOrder = 43,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Sigh,
|
|
.alphabeticalOrder = 19,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Unbelievable,
|
|
.alphabeticalOrder = 33,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Cries,
|
|
.alphabeticalOrder = 61,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Agree,
|
|
.alphabeticalOrder = 34,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_EhQues,
|
|
.alphabeticalOrder = 38,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Cry,
|
|
.alphabeticalOrder = 40,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Ehehe,
|
|
.alphabeticalOrder = 48,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_OiOiOi,
|
|
.alphabeticalOrder = 37,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_OhYeah,
|
|
.alphabeticalOrder = 47,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Oh,
|
|
.alphabeticalOrder = 42,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Oops,
|
|
.alphabeticalOrder = 15,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Shocked,
|
|
.alphabeticalOrder = 49,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Eek,
|
|
.alphabeticalOrder = 46,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Graaah,
|
|
.alphabeticalOrder = 57,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Gwahahaha,
|
|
.alphabeticalOrder = 44,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Way,
|
|
.alphabeticalOrder = 54,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Tch,
|
|
.alphabeticalOrder = 53,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Hehe,
|
|
.alphabeticalOrder = 13,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Hah,
|
|
.alphabeticalOrder = 29,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Yup,
|
|
.alphabeticalOrder = 51,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Hahaha,
|
|
.alphabeticalOrder = 28,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Aiyeeh,
|
|
.alphabeticalOrder = 55,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Hiyah,
|
|
.alphabeticalOrder = 12,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Fufufu,
|
|
.alphabeticalOrder = 27,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Lol,
|
|
.alphabeticalOrder = 56,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Snort,
|
|
.alphabeticalOrder = 30,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Humph,
|
|
.alphabeticalOrder = 31,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Hehehe,
|
|
.alphabeticalOrder = 20,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Heh,
|
|
.alphabeticalOrder = 45,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Hohoho,
|
|
.alphabeticalOrder = 36,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_UhHuh,
|
|
.alphabeticalOrder = 50,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_OhDear,
|
|
.alphabeticalOrder = 9,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Arrgh,
|
|
.alphabeticalOrder = 21,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Mufufu,
|
|
.alphabeticalOrder = 14,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Mmm,
|
|
.alphabeticalOrder = 10,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_OhKay,
|
|
.alphabeticalOrder = 62,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Okay,
|
|
.alphabeticalOrder = 35,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Lalala,
|
|
.alphabeticalOrder = 16,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Yay,
|
|
.alphabeticalOrder = 18,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Aww,
|
|
.alphabeticalOrder = 60,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Wowee,
|
|
.alphabeticalOrder = 17,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Gwah,
|
|
.alphabeticalOrder = 58,
|
|
.enabled = TRUE
|
|
},
|
|
{
|
|
.text = sEasyChatWord_Wahahaha,
|
|
.alphabeticalOrder = 39,
|
|
.enabled = TRUE
|
|
}
|
|
};
|