String problem on other language

https://developer.roblox.com/en-us/resources/developer-modules/social-interactions

i editing SocialInteractions.ReplicatedStorage.SocialInteractions.Modules.ChatEmotes.emotesList
adding other language for this.

local emotesList = {
	wave = {
		animationId = "rbxassetid://3344650532",
		triggerWords = {
			"Hi+",
			"안녕+",
			"こんにちは+",
		},
	},
}

on this situation,
“Hi” and “Hiiiiiiii” working well but
“안녕녕” and “こんにちはは” not working.

Hi, can you send the complete code of you setting the emote list?

"안녕[녕]*",
"こんにちは[は]*",

ok this working.

local emotesList = {
	wave = {
		animationId = "rbxassetid://3344650532",
		triggerWords = {
			"hell+o+",
			"h+i+o*",
			"wa+[sz]+u+p+",
			"y+o+",
			"greetings*",
			"salutations*",
			"goo+d+%smorning+",
			"he+y+o*",
			"howdy+",
			"what'?s*%s*up+", -- %s matches a whitespace
			"안녕+",
			"안녕하세요+",
			"안뇽+",
			"안냥+",
			"こんにちは+",
		},
	},
	applaud = {
		animationId = "rbxassetid://5911729486",
		triggerWords = {
			"ya+y+",
			"h[ou]+r+a+y+",
			"woo+t*",
			"woo+h+oo+",
			"bravo+",
			"congratulations+",
			"congrats+",
			"gg",
			"pog+",
			"poggers+",
			"야호+",
			"앗싸+",
		},
	},
	agree = {
		animationId = "rbxassetid://4841397952",
		--requiresOwnershipOf = 4849487550,
		triggerWords = {
			"ye+s*",
			"ye+a+h*",
			"y[eu]+p+",
			"o+k+",
			"o+k+a+y+",
			"응+",
			"웅+",
		},
	},
	disagree = {
		animationId = "rbxassetid://4841401869",
		--requiresOwnershipOf = 4849495710,
		triggerWords = {
			"no+",
			"no+pe+",
			"yi+ke+s+",
			"아니+",
			"아닝+,"
		},
	},
	shrug = {
		animationId = "rbxassetid://3334392772",
		triggerWords = {
			"not+%s+sure+",
			"idk+",
			"don't%s+know+",
			"I%s+don't%s+know+",
			"who+%s+knows+",
			"몰라+",
			"몰?*루+",
		},
	},
	laugh = {
		animationId = "rbxassetid://3337966527",
		--requiresOwnershipOf = 4102315500,
		triggerWords = {
			"lo+l+",
			"rof+l+",
			"ha[ha]*",
			"he[he]+",
			"XD",
			"ㅋ[ㅋ]*",
		},
	},
	sleep = {
		animationId = "rbxassetid://4686925579",
		--requiresOwnershipOf = 4689362868,
		triggerWords = {
			"zzz+",
			"yawn+",
		},
	},
}

return emotesList

i solved the topic’s “안녕녕” and “こんにちはは”
can you teach me make this possible?

“안녕abcd”
“こんにちはabcd”

the abcd is random word.

I’m not sure, I haven’t edited SocialInteractions before. Sorry!