diff --git a/game/engines/default/engine/Module.lua b/game/engines/default/engine/Module.lua
index 9b3837993f2a3da1af2a535afadc1fe8cb70575a..78de36e69b58ed773e6aea99f09d59bf6c1464bb 100644
--- a/game/engines/default/engine/Module.lua
+++ b/game/engines/default/engine/Module.lua
@@ -920,7 +920,7 @@ function _M:instanciate(mod, name, new_game, no_reboot, extra_module_info)
 	core.game.resetLocale()
 
 	-- Reset white space breaking
-	core.display.breakTextAllCharacter(false)
+	core.display.breakTextAllCharacter(true)
 
 	-- Turn based by default
 	core.game.setRealtime(0)
@@ -944,6 +944,10 @@ function _M:instanciate(mod, name, new_game, no_reboot, extra_module_info)
 		I18N:setLocale(locale)
 		I18N:loadLocale("/data/i18n/"..locale..".lua")
 	end
+	
+	I18N:loadLocale("/data/locales/zh_CN.lua")
+	I18N:setLocale("zh_CN")
+	config.settings.tome.fonts = {type="chinese", size="normal"} 
 
 	-- Load font packages
 	FontPackage:loadDefinition("/data/font/packages/default.lua")
diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua
index c1da2f7eeb70e85a8652afa61f0ad01b42637336..1c0d8cca1e9ee865d98c16389d2aab39973f6ce3 100644
--- a/game/modules/tome/class/Actor.lua
+++ b/game/modules/tome/class/Actor.lua
@@ -2711,13 +2711,13 @@ function _M:onTakeHit(value, src, death_note)
 		if value / self.max_life >= 0.15 then
 			-- you take a big hit..adds 2 + 2 for each 5% over 15%
 			hateGain = hateGain + 2 + (((value / self.max_life) - 0.15) * 100 * 0.5)
-			hateMessage = "#F53CBE#You fight through the pain!"
+			hatemessage = _t"#F53CBE#You fight through the pain!"
 		end
 
 		if value / self.max_life >= 0.05 and (self.life - value) / self.max_life < 0.25 then
 			-- you take a hit with low health
 			hateGain = hateGain + 4
-			hateMessage = "#F53CBE#Your hatred grows even as your life fades!"
+			hatemessage = _t"#F53CBE#Your hatred grows even as your life fades!"
 		end
 
 		if hateGain >= 1 then
@@ -2735,7 +2735,7 @@ function _M:onTakeHit(value, src, death_note)
 		if value / src.max_life > 0.33 then
 			-- you deliver a big hit
 			hateGain = hateGain + src.hate_per_powerful_hit
-			hateMessage = "#F53CBE#Your powerful attack feeds your madness!"
+			hatemessage = _t"#F53CBE#Your powerful attack feeds your madness!"
 		end
 
 		if hateGain >= 0.1 then
diff --git a/game/modules/tome/class/Game.lua b/game/modules/tome/class/Game.lua
index c42497e54d5061092c8c3e99f32839b0cd5681f1..ac4409b1a68420805b1219df73d28c349eaaa4e2 100644
--- a/game/modules/tome/class/Game.lua
+++ b/game/modules/tome/class/Game.lua
@@ -1626,7 +1626,8 @@ end
 -- #source#|#Source# -> <displayString>..self.name|self.name:capitalize()
 -- #target#|#Target# -> target.name|target.name:capitalize()
 function _M:logMessage(source, srcSeen, target, tgtSeen, style, ...)
-	style = style:format(...)
+	-- I18N
+	style = style:tformat(...)
 	local srcname = "something"
 	local Dstring
 		if source.player then
diff --git a/game/modules/tome/class/interface/PartyDeath.lua b/game/modules/tome/class/interface/PartyDeath.lua
index adb41499ee925539eb0a567d4e09380adeafce7a..26deaf4977d777ecff314ef0f666af0385b470b3 100644
--- a/game/modules/tome/class/interface/PartyDeath.lua
+++ b/game/modules/tome/class/interface/PartyDeath.lua
@@ -133,7 +133,7 @@ function _M:onPartyDeath(src, death_note)
 		end
 
 		game:playSound("actions/death")
-		game.delayed_death_message = "#{bold}#"..msg.."#{normal}#"
+		game.delayed_death_message = _t"#{bold}#"..msg.."#{normal}#"
 		if (not game.player.easy_mode_lifes or game.player.easy_mode_lifes <= 0) and not game.player.infinite_lifes then
 			profile.chat.uc_ext:sendKillerLink(msg, short_msg, src)
 		end
diff --git a/game/modules/tome/data/general/objects/quest-artifacts.lua b/game/modules/tome/data/general/objects/quest-artifacts.lua
index ada1db8b23710989e7f8ce4fc6f82a5b105d6c2f..4556865028a39520f5bcc9369b4824d4fa38f284 100644
--- a/game/modules/tome/data/general/objects/quest-artifacts.lua
+++ b/game/modules/tome/data/general/objects/quest-artifacts.lua
@@ -138,7 +138,7 @@ If used near a portal it could probably activate it.]],
 				who:useOrbPortal{
 					change_level = 1,
 					change_zone = "demon-plane",
-					message = "#VIOLET#The world twists sickeningly around you and you find yourself someplace unexpected! It felt nothing like your previous uses of the Orb of Many Ways. Tannen must have switched the Orb out for a fake!",
+					message = _t"#VIOLET#The world twists sickeningly around you and you find yourself someplace unexpected! It felt nothing like your previous uses of the Orb of Many Ways. Tannen must have switched the Orb out for a fake!",
 					on_use = function(self, who)
 						who:setQuestStatus("east-portal", engine.Quest.COMPLETED, "tricked-demon")
 						local orb = who:findInAllInventoriesBy("define_as", "ORB_MANY_WAYS_DEMON")
diff --git a/game/modules/tome/data/general/objects/world-artifacts.lua b/game/modules/tome/data/general/objects/world-artifacts.lua
index a6f75dc15d6809fa2f45a1cbc84d1031e207ecf4..2a9868ff347892476ba2baf9ba2c6e6582db4c42 100644
--- a/game/modules/tome/data/general/objects/world-artifacts.lua
+++ b/game/modules/tome/data/general/objects/world-artifacts.lua
@@ -3627,7 +3627,7 @@ newEntity{ base = "BASE_LONGSWORD", define_as="MORRIGOR",
 				o.use_talent.power = (target:getTalentCooldown(t, true) or 5)
 				target.talents[t.id] = get_talent
 				o.use_talent.name = ((t.display_entity and t.display_entity:getDisplayString() or "")..t.name):toString()
-				o.use_talent.message = "@Source@ taps the #SALMON#trapped soul#LAST# of "..target.name..", xmanifesting "..o.use_talent.name.."!"
+				o.use_talent.message = _t"@Source@ taps the #SALMON#trapped soul#LAST# of "..target.name..", xmanifesting "..o.use_talent.name.."!"
 				o.power = 1
 				o.max_power = o.use_talent.power
 				o.power_regen = 1
diff --git a/game/modules/tome/data/general/traps/alarm.lua b/game/modules/tome/data/general/traps/alarm.lua
index 54acb4d6532b457b34c00df18f3a1fafdec007dc..9cbd3db549c38ddeb502e8dfc7543799bb3fb20e 100644
--- a/game/modules/tome/data/general/traps/alarm.lua
+++ b/game/modules/tome/data/general/traps/alarm.lua
@@ -31,7 +31,7 @@ newEntity{ base = "TRAP_ALARM",
 	disarm_power = resolvers.clscale(30,25,8,0.5),
 	rarity = 3, level_range = {1, 50},
 	color=colors.UMBER,
-	message = "@Target@ triggers an alarm!",
+	message = _t"@Target@ triggers an alarm!",
 	unided_name = _t"pressure plate",
 	desc = function(self) return (_t"Makes noise, alerting others.") end,
 	pressure_trap = true,
@@ -60,7 +60,7 @@ newEntity{ base = "TRAP_ALARM",
 	rarity = 3, level_range = {10, 50},
 	color=colors.DARK_UMBER,
 	nb_summon = resolvers.mbonus(3, 2),
-	message = "An alarm rings!",
+	message = _t"An alarm rings!",
 	unided_name = _t"ring of faded sigils",
 	desc = function(self) return (_t"Summons creatures.") end,
 	unlock_talent_on_disarm = {tid=Talents.T_AMBUSH_TRAP, chance=8},
diff --git a/game/modules/tome/data/general/traps/annoy.lua b/game/modules/tome/data/general/traps/annoy.lua
index 0c2e82e91e1fc0d86ea119eed2e7608e935fb3a9..dcdefce36b40e667e5ed2f483dcf66f37512b060 100644
--- a/game/modules/tome/data/general/traps/annoy.lua
+++ b/game/modules/tome/data/general/traps/annoy.lua
@@ -29,7 +29,7 @@ newEntity{ base = "TRAP_ANNOY",
 	disarm_power = resolvers.clscale(36,25,10,0.5),
 	rarity = 3, level_range = {5, nil},
 	color=colors.BLUE,
-	message = "@Target@ seems less active.",
+	message = _t"@Target@ seems less active.",
 	unided_name = _t"pattern of glyphs",
 	desc = function(self) return _t"Disrupts activated talents." end,
 	triggered = function(self, x, y, who)
@@ -54,7 +54,7 @@ newEntity{ base = "TRAP_ANNOY",
 	disarm_power = resolvers.clscale(40,30,15,0.5),
 	rarity = 3, level_range = {30, nil},
 	color=colors.ORCHID,
-	message = "@Target@ triggers a burning curse!",
+	message = _t"@Target@ triggers a burning curse!",
 	unided_name = _t"dark pentagram",
 	desc = function(self) return (_t"Afflicts the target with a curse: talents inflict %d fire damage and have increased cooldowns."):tformat(self.dam) end,
 	dam = resolvers.clscale(60, 50, 15, 0.75, 25),
diff --git a/game/modules/tome/data/general/traps/complex.lua b/game/modules/tome/data/general/traps/complex.lua
index 65237ed242d7cec89b68c615328e2f31f5a7bf7b..9e6be47e86d3acea9415f36f113c37887744660f 100644
--- a/game/modules/tome/data/general/traps/complex.lua
+++ b/game/modules/tome/data/general/traps/complex.lua
@@ -35,7 +35,7 @@ newEntity{ base = "TRAP_COMPLEX",
 	disarm_power = resolvers.clscale(35, 25, 8, 0.5),
 	rarity = 3, level_range = {1, nil},
 	color = colors.UMBER,
-	message = "@Target@ walks on a trap, and there is a loud noise.",
+	message = _t"@Target@ walks on a trap, and there is a loud noise.",
 	unided_name = _t"large pressure plate",
 	desc = function(self)
 		local dir = game.level.map:compassDirection(self.spawn_x - self.x, self.spawn_y - self.y)
@@ -85,7 +85,7 @@ newEntity{ base = "TRAP_COMPLEX",
 	disarm_power = resolvers.clscale(40, 35, 8, 0.5),
 	rarity = 3, level_range = {1, nil},
 	color=colors.PURPLE,
-	message = "@Target@ activates a trap, and its magical energies change.",
+	message = _t"@Target@ activates a trap, and its magical energies change.",
 	unided_name = _t"magical emitter",
 	desc = function(self)
 		local dtype = engine.DamageType[self.dammode] and engine.DamageType:get(self.dammode)
@@ -157,7 +157,7 @@ newEntity{ base = "TRAP_COMPLEX",
 	disarm_power = resolvers.clscale(35, 25, 8, 0.5),
 	rarity = 3, level_range = {1, nil},
 	color=colors.GREEN,
-	message = "@Target@ walks on a poison spore.",
+	message = _t"@Target@ walks on a poison spore.",
 	unided_name = _t"spore colony",
 	desc = function(self)
 		return ("Releases a cloud of poison spores (radius %d), poisoning for #LIGHT_GREEN#%d#LAST# damage over 5 turns."):tformat(self.rad, self.dam)
@@ -221,7 +221,7 @@ newEntity{ base = "TRAP_COMPLEX",
 	rarity = 3, level_range = {1, nil},
 	color=colors.RED,
 	pressure_trap = true,
-	message = "Flames start to appear around @target@.",
+	message = _t"Flames start to appear around @target@.",
 	unided_name = _t"hot spot",
 	desc = function(self)
 		return ("Releases up to 4 delayed fuse fireballs within range %d that each explode for #LIGHT_RED#%d#LAST# fire damage after %d turns."):tformat(self.rad, self.dam, 5)
@@ -273,7 +273,7 @@ newEntity{ base = "TRAP_COMPLEX",
 	rarity = 3, level_range = {1, nil},
 	color=colors.BLUE,
 	pressure_trap = true,
-	message = "Cold flames start to appear around @target@.",
+	message = _t"Cold flames start to appear around @target@.",
 	unided_name = _t"cold spot",
 	desc = function(self)
 		local actor = self.actor
diff --git a/game/modules/tome/data/general/traps/elemental.lua b/game/modules/tome/data/general/traps/elemental.lua
index 12926586abc6eff02448df7c425fc162182e7a6b..96666d51de6cc4c801e27d142e025b4f3b0d9d83 100644
--- a/game/modules/tome/data/general/traps/elemental.lua
+++ b/game/modules/tome/data/general/traps/elemental.lua
@@ -54,7 +54,7 @@ newEntity{ base = "TRAP_ELEMENTAL",
 	disarm_power = resolvers.clscale(6,10,4,0.5),
 	rarity = 3, level_range = {1, 30},
 	color_r=40, color_g=220, color_b=0,
-	message = "A stream of acid gushes onto @target@!",
+	message = _t"A stream of acid gushes onto @target@!",
 	unided_name = _t"corroded spot",
 	dam = resolvers.clscale(70, 30, 15, 0.75, 0),
 	damtype = DamageType.ACID,
@@ -66,7 +66,7 @@ newEntity{ base = "TRAP_ELEMENTAL",
 	disarm_power = resolvers.clscale(6,10,4,0.5),
 	rarity = 3, level_range = {1, 30},
 	color_r=220, color_g=0, color_b=0,
-	message = "A bolt of fire blasts onto @target@!",
+	message = _t"A bolt of fire blasts onto @target@!",
 	unided_name = _t"burnt spot",
 	dam = resolvers.clscale(90, 30, 25, 0.75, 0),
 	damtype = DamageType.FIREBURN,
@@ -78,7 +78,7 @@ newEntity{ base = "TRAP_ELEMENTAL",
 	disarm_power = resolvers.clscale(6,10,4,0.5),
 	rarity = 3, level_range = {1, 30},
 	color_r=150, color_g=150, color_b=220,
-	message = "A bolt of ice blasts onto @target@!",
+	message = _t"A bolt of ice blasts onto @target@!",
 	unided_name = _t"frozen spot",
 	dam = resolvers.clscale(70, 30, 15, 0.75, 0),
 	damtype = DamageType.ICE,
@@ -91,7 +91,7 @@ newEntity{ base = "TRAP_ELEMENTAL",
 	disarm_power = resolvers.clscale(6,10,4,0.5),
 	rarity = 3, level_range = {1, 30},
 	color_r=0, color_g=0, color_b=220,
-	message = "A bolt of lightning fires onto @target@!",
+	message = _t"A bolt of lightning fires onto @target@!",
 	unided_name = _t"crackling spot",
 	dam = resolvers.clscale(70, 30, 15, 0.75, 0),
 	damtype = DamageType.LIGHTNING,
@@ -104,7 +104,7 @@ newEntity{ base = "TRAP_ELEMENTAL",
 	disarm_power = resolvers.clscale(6,10,4,0.5),
 	rarity = 3, level_range = {1, 30},
 	color_r=0, color_g=220, color_b=0,
-	message = "A stream of poison gushes onto @target@!",
+	message = _t"A stream of poison gushes onto @target@!",
 	dam = resolvers.clscale(70, 30, 15, 0.75, 0),
 	damtype = DamageType.POISON,
 	combatAttack = function(self) return self.dam end
@@ -121,7 +121,7 @@ newEntity{ base = "TRAP_ELEMENTAL_BLAST",
 	disarm_power = resolvers.clscale(35,25,8,0.5),
 	rarity = 3, level_range = {20, nil},
 	color_r=40, color_g=220, color_b=0,
-	message = "A stream of acid gushes onto @target@!",
+	message = _t"A stream of acid gushes onto @target@!",
 	unided_name = _t"corroded spot",
 	dam = resolvers.clscale(160, 50, 40, 0.75, 60),
 	damtype = DamageType.ACID, radius = 2,
@@ -133,7 +133,7 @@ newEntity{ base = "TRAP_ELEMENTAL_BLAST",
 	disarm_power = resolvers.clscale(35,25,8,0.5),
 	rarity = 3, level_range = {20, nil},
 	color_r=220, color_g=0, color_b=0,
-	message = "A bolt of fire fires onto @target@!",
+	message = _t"A bolt of fire fires onto @target@!",
 	unided_name = _t"burnt spot",
 	dam = resolvers.clscale(200, 50, 50, 0.75, 80),
 	damtype = DamageType.FIREBURN, radius = 2,
@@ -146,7 +146,7 @@ newEntity{ base = "TRAP_ELEMENTAL_BLAST",
 	disarm_power = resolvers.clscale(35,25,8,0.5),
 	rarity = 3, level_range = {20, nil},
 	color_r=150, color_g=150, color_b=220,
-	message = "A bolt of ice blasts onto @target@!",
+	message = _t"A bolt of ice blasts onto @target@!",
 	unided_name = _t"frozen spot",
 	dam = resolvers.clscale(160, 50, 40, 0.75, 60),
 	damtype = DamageType.ICE, radius = 2,
@@ -159,7 +159,7 @@ newEntity{ base = "TRAP_ELEMENTAL_BLAST",
 	disarm_power = resolvers.clscale(35,25,8,0.5),
 	rarity = 3, level_range = {20, nil},
 	color_r=0, color_g=0, color_b=220,
-	message = "A bolt of lightning fires onto @target@!",
+	message = _t"A bolt of lightning fires onto @target@!",
 	unided_name = _t"arcing spot",
 	dam = resolvers.clscale(160, 50, 40, 0.75, 60),
 	damtype = DamageType.LIGHTNING, radius = 2,
@@ -171,7 +171,7 @@ newEntity{ base = "TRAP_ELEMENTAL_BLAST", image = "trap/trap_poison_blast_01.png
 	disarm_power = resolvers.clscale(35,25,8,0.5),
 	rarity = 3, level_range = {20, nil},
 	color_r=0, color_g=220, color_b=0,
-	message = "A stream of poison gushes onto @target@!",
+	message = _t"A stream of poison gushes onto @target@!",
 	dam = resolvers.clscale(160, 50, 40, 0.75, 60),
 	damtype = DamageType.POISON, radius = 2,
 	unlock_talent_on_disarm = {tid = Talents.T_POISON_GAS_TRAP, chance = 25},
@@ -184,7 +184,7 @@ newEntity{ base = "TRAP_ELEMENTAL_BLAST", image = "trap/trap_purging.png",
 	disarm_power = resolvers.clscale(35,25,15,0.5),
 	rarity = 8, level_range = {25, nil},
 	color_r=40, color_g=220, color_b=0,
-	message = "@Target@ is blasted with anti-magic forces!",
+	message = _t"@Target@ is blasted with anti-magic forces!",
 	dam = resolvers.clscale(160, 50, 40, 0.75, 60),
 	damtype = DamageType.MANABURN, radius = 2,
 	unided_name = _t"dull area",
@@ -200,7 +200,7 @@ newEntity{ base = "TRAP_ELEMENTAL_BLAST",
 	disarm_power = resolvers.clscale(40,25,12,0.5),
 	rarity = 8, level_range = {25, nil},
 	color_r=220, color_g=0, color_b=0,
-	message = "A powerful blast of fire impacts @target@!",
+	message = _t"A powerful blast of fire impacts @target@!",
 	unided_name = _t"burned area",
 	dam = resolvers.clscale(200, 50, 50, 0.75, 80),
 	pressure_trap = true,
diff --git a/game/modules/tome/data/general/traps/natural_forest.lua b/game/modules/tome/data/general/traps/natural_forest.lua
index 1fc45427f6ebca1b7466504fa75ceb2d4905587a..fecbf998ae86209a6a6fad2b555703b62c29f014 100644
--- a/game/modules/tome/data/general/traps/natural_forest.lua
+++ b/game/modules/tome/data/general/traps/natural_forest.lua
@@ -35,7 +35,7 @@ newEntity{ base = "TRAP_NATURAL_FOREST",
 	rarity = 3, level_range = {1, 50},
 	color=colors.UMBER,
 	pressure_trap = true,
-	message = "@Target@ slides on a rock!",
+	message = _t"@Target@ slides on a rock!",
 	unided_name = _t"slippery rock",
 	desc = "Stuns for 4 turns.",
 	triggered = function(self, x, y, who)
@@ -54,7 +54,7 @@ newEntity{ base = "TRAP_NATURAL_FOREST",
 	disarm_power = resolvers.clscale(12,10,8,0.5),
 	rarity = 3, level_range = {1, 50},
 	color=colors.GREEN,
-	message = "A poisonous vine strikes at @Target@!",
+	message = _t"A poisonous vine strikes at @Target@!",
 	unided_name = _t"venomous vine",
 	desc = function(self)
 		local dtype = engine.DamageType[self.damtype] and engine.DamageType:get(self.damtype)
diff --git a/game/modules/tome/data/general/traps/teleport.lua b/game/modules/tome/data/general/traps/teleport.lua
index 3ffc80f04f7e2677b388a67ae6f30d54d5b895ec..9a77d9adc102c20190a12cf8ca052aace235b8a8 100644
--- a/game/modules/tome/data/general/traps/teleport.lua
+++ b/game/modules/tome/data/general/traps/teleport.lua
@@ -30,7 +30,7 @@ newEntity{ base = "TRAP_TELEPORT",
 	rarity = 5, level_range = {5, nil},
 	color=colors.UMBER,
 	pressure_trap = true,
-	message = "@Target@ shimmers briefly.",
+	message = _t"@Target@ shimmers briefly.",
 	unided_name = _t"shimmering floor switch",
 	triggered = function(self, x, y, who)
 		if who:canBe("teleport") then
diff --git a/game/modules/tome/data/general/traps/temporal.lua b/game/modules/tome/data/general/traps/temporal.lua
index 0ee8a4ebc32111db3ba3f9189f95ccb9815ad468..cdf7e5126bd74a57b82627ac1e3434029036f135 100644
--- a/game/modules/tome/data/general/traps/temporal.lua
+++ b/game/modules/tome/data/general/traps/temporal.lua
@@ -31,7 +31,7 @@ newEntity{ base = "TRAP_TEMPORAL",
 	disarm_power = resolvers.clscale(25,25,8,0.5),
 	rarity = 3, level_range = {1, 50},
 	color=colors.VIOLET,
-	message = "@Target@ is caught in a distorted pocket of time!",
+	message = _t"@Target@ is caught in a distorted pocket of time!",
 	unided_name = _t"faint distortion",
 	desc = [[Creates a temporal anomaly when triggered.]],
 	triggered = function(self, x, y, who)
@@ -46,7 +46,7 @@ newEntity{ base = "TRAP_TEMPORAL",
 	disarm_power = resolvers.clscale(32,25,8,0.5),
 	rarity = 6, level_range = {10, nil},
 	color=colors.PURPLE,
-	message = "@Target@ is caught in an extremely distorted pocket of time!",
+	message = _t"@Target@ is caught in an extremely distorted pocket of time!",
 	unided_name = _t"distortion",
 	desc = [[Creates a major temporal anomaly when triggered.]],
 	triggered = function(self, x, y, who)
diff --git a/game/modules/tome/data/general/traps/water.lua b/game/modules/tome/data/general/traps/water.lua
index 1858710667983f9720a10591ddca40bd2211b479..ab6350265ffca82a32cfe10a5580b9249c15df06 100644
--- a/game/modules/tome/data/general/traps/water.lua
+++ b/game/modules/tome/data/general/traps/water.lua
@@ -32,7 +32,7 @@ newEntity{ base = "TRAP_WATER",
 	disarm_power = resolvers.clscale(16,10,8,0.5),
 	rarity = 3, level_range = {1, 50},
 	color=colors.LIGHT_BLUE,
-	message = "@Target@ triggers a water jet!",
+	message = _t"@Target@ triggers a water jet!",
 	unided_name = _t"a nozzle",
 	desc = function(self)
 		local dtype = engine.DamageType[self.damtype] and engine.DamageType:get(self.damtype)
@@ -49,7 +49,7 @@ newEntity{ base = "TRAP_WATER",
 	disarm_power = resolvers.clscale(4,10,3,0.5),
 	rarity = 3, level_range = {1, 50},
 	color=colors.BLUE,
-	message = "@Target@ is caught by a water siphon!",
+	message = _t"@Target@ is caught by a water siphon!",
 	unided_name = _t"a drain",
 	desc = function(self)
 		local dtype = engine.DamageType[self.damtype] and engine.DamageType:get(self.damtype)
diff --git a/game/modules/tome/data/talents/chronomancy/anomalies.lua b/game/modules/tome/data/talents/chronomancy/anomalies.lua
index a8547f7b05c0fa02f8bac33e91153794764b2677..b6dfc275655a3bd88da43685d4a514c4b1eec51a 100644
--- a/game/modules/tome/data/talents/chronomancy/anomalies.lua
+++ b/game/modules/tome/data/talents/chronomancy/anomalies.lua
@@ -121,7 +121,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ causes a spacetime hiccup.",
+	message = _t"@Source@ causes a spacetime hiccup.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -167,7 +167,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=10, radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ shifts reality.",
+	message = _t"@Source@ shifts reality.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -213,7 +213,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ swaps places with a nearby target.",
+	message = _t"@Source@ swaps places with a nearby target.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -269,7 +269,7 @@ newTalent{
 	target = function(self, t)
 		return {type="hit", range=self:getTalentRange(t), nowarning=true}
 	end,
-	message = "@Source@ transfers damage to a nearby target.",
+	message = _t"@Source@ transfers damage to a nearby target.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -314,7 +314,7 @@ newTalent{
 	target = function(self, t)
 		return {type="bolt", nowarning=true, range=10, nolock=true, simple_dir_request=true, talent=t}
 	end,
-	message = "@Source@ folds the space between two points.",
+	message = _t"@Source@ folds the space between two points.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -332,7 +332,7 @@ newTalent{
 			type = "annoy", subtype="teleport", id_by_type=true, unided_name = "trap",
 			image = "terrain/wormhole.png",
 			display = '&', color_r=255, color_g=255, color_b=255, back_color=colors.STEEL_BLUE,
-			message = "@Target@ moves onto the wormhole.",
+			message = _t"@Target@ moves onto the wormhole.",
 			temporary = getAnomalyDuration(self, t),
 			x = start_x, y = start_y,
 			canAct = false,
@@ -408,7 +408,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t), nowarning=true}
 	end,
-	message = "@Source@ places several targets out of phase.",
+	message = _t"@Source@ places several targets out of phase.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -452,7 +452,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ makes several targets blink uncontrollably.",
+	message = _t"@Source@ makes several targets blink uncontrollably.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -497,7 +497,7 @@ newTalent{
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
 	getSummonTime = function(self, t) return math.ceil(getAnomalyDuration(self, t)*2) end,
-	message = "Some innocent bystanders have been teleported into the fight.",
+	message = _t"Some innocent bystanders have been teleported into the fight.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -607,7 +607,7 @@ newTalent{
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
 	getSlow = function(self, t) return 1 - 1 / (1 + (getAnomalyEffectPower(self, t)) / 100) end,
-	message = "@Source@ creates a bubble of slow time.",
+	message = _t"@Source@ creates a bubble of slow time.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -652,7 +652,7 @@ newTalent{
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t), nowarning=true}
 	end,
 	getHaste = function(self, t) return 1 - 1 / (1 + (getAnomalyEffectPower(self, t)) / 100) end,
-	message = "@Source@ creates a bubble of fast time.",
+	message = _t"@Source@ creates a bubble of fast time.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -695,7 +695,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ creates a bubble of nul time.",
+	message = _t"@Source@ creates a bubble of nul time.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -740,7 +740,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ removes several targets from time.",
+	message = _t"@Source@ removes several targets from time.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -785,7 +785,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t), nowarning=true}
 	end,
-	message = "@Source@ creates a temporal shield around several targets.",
+	message = _t"@Source@ creates a temporal shield around several targets.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -828,7 +828,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t), nowarning=true}
 	end,
-	message = "@Source@ energizes several targets.",
+	message = _t"@Source@ energizes several targets.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -871,7 +871,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t), nowarning=true}
 	end,
-	message = "@Source@ clones a nearby creature.",
+	message = _t"@Source@ clones a nearby creature.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -918,7 +918,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ creates a temporal storm.",
+	message = _t"@Source@ creates a temporal storm.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -961,7 +961,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ increases local gravity.",
+	message = _t"@Source@ increases local gravity.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -1006,7 +1006,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ turns matter to dust.",
+	message = _t"@Source@ turns matter to dust.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -1039,7 +1039,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t), nowarning=true}
 	end,
-	message = "@Source@ creates a stone wall.",
+	message = _t"@Source@ creates a stone wall.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -1116,7 +1116,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ increases local entropy.",
+	message = _t"@Source@ increases local entropy.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -1177,7 +1177,7 @@ requires_target = true,
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ increases local gravity.",
+	message = _t"@Source@ increases local gravity.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -1222,7 +1222,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ causes an earthquake.",
+	message = _t"@Source@ causes an earthquake.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -1259,7 +1259,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ crumbles the resistances of several targets.",
+	message = _t"@Source@ crumbles the resistances of several targets.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -1301,7 +1301,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ causes a dust storm.",
+	message = _t"@Source@ causes a dust storm.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -1365,7 +1365,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ causes a fire.",
+	message = _t"@Source@ causes a fire.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local tgts = getAnomalyTargets(self, t, self.x, self.y, "ACTOR", self:getTalentRange(t))
@@ -1422,7 +1422,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ calcifies several targets.",
+	message = _t"@Source@ calcifies several targets.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = self:getTarget(tg)
@@ -1464,7 +1464,7 @@ newTalent{
 	target = function(self, t)
 		return {type="hit", range=self:getTalentRange(t), talent=t}
 	end,
-	message = "@Source@ teleports several targets to @Source@'s location.",
+	message = _t"@Source@ teleports several targets to @Source@'s location.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local tgts = getAnomalyTargets(self, t, self.x, self.y, "ACTOR", self:getTalentRange(t), true)
@@ -1507,7 +1507,7 @@ newTalent{
 		return {type="hit", range=self:getTalentRange(t), talent=t}
 	end,
 	getHaste = function(self, t) return 1 - 1 / (1 + (getAnomalyEffectPower(self, t)) / 100) end,
-	message = "The odds have tilted.",
+	message = _t"The odds have tilted.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local tgts = getAnomalyTargets(self, t, self.x, self.y, "ACTOR", self:getTalentRange(t))
@@ -1546,7 +1546,7 @@ newTalent{
 	target = function(self, t)
 		return {type="hit", range=self:getTalentRange(t), talent=t}
 	end,
-	message = "@Source@'s evil twin has come from another timeline.",
+	message = _t"@Source@'s evil twin has come from another timeline.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 
@@ -1586,7 +1586,7 @@ newTalent{
 	target = function(self, t)
 		return {type="hit", range=self:getTalentRange(t), talent=t}
 	end,
-	message = "@Source@ has caused two threads to merge.",
+	message = _t"@Source@ has caused two threads to merge.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local tgts = getAnomalyTargets(self, t, self.x, self.y, "ACTOR", self:getTalentRange(t))
@@ -1633,7 +1633,7 @@ requires_target = true,
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ digs out a huge area.",
+	message = _t"@Source@ digs out a huge area.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		for i = 1, rng.avg(3, 6, 3) do
@@ -1666,7 +1666,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ creates a sphere of destruction.",
+	message = _t"@Source@ creates a sphere of destruction.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local tgts = getAnomalyTargets(self, t, self.x, self.y, "ACTOR", self:getTalentRange(t))
@@ -1723,7 +1723,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ causes a tornado storm.",
+	message = _t"@Source@ causes a tornado storm.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local tgts = getAnomalyTargets(self, t, self.x, self.y, "ACTOR", self:getTalentRange(t))
@@ -1799,7 +1799,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ causes a meteor to fall from the sky.",
+	message = _t"@Source@ causes a meteor to fall from the sky.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local x, y = getAnomalyPosition(self, self:getTalentRange(t))
@@ -1893,7 +1893,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "@Source@ tears a hole in the fabric of spacetime.",
+	message = _t"@Source@ tears a hole in the fabric of spacetime.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local tx, ty = getAnomalyPosition(self, self:getTalentRange(t))
@@ -1974,7 +1974,7 @@ newTalent{
 	target = function(self, t)
 		return {type="ball", range=self:getTalentRange(t), radius=self:getTalentRadius(t)}
 	end,
-	message = "Some Time Elementals have been attracted by @Source@'s meddling.",
+	message = _t"Some Time Elementals have been attracted by @Source@'s meddling.",
 	action = function(self, t)
 		local tg = self:getTalentTarget(t)
 		local tgts = getAnomalyTargets(self, t, self.x, self.y, "ACTOR", self:getTalentRadius(t))
diff --git a/game/modules/tome/data/talents/chronomancy/spacetime-weaving.lua b/game/modules/tome/data/talents/chronomancy/spacetime-weaving.lua
index c76e647fc7a2a33c42787a284e369cb1f755b7a0..8a453d239434ff16dd87bf7594d52938ee39301f 100644
--- a/game/modules/tome/data/talents/chronomancy/spacetime-weaving.lua
+++ b/game/modules/tome/data/talents/chronomancy/spacetime-weaving.lua
@@ -167,7 +167,7 @@ newTalent{
 				type = "annoy", subtype="teleport", id_by_type=true, unided_name = "trap",
 				image = "terrain/wormhole.png",
 				display = '&', color_r=255, color_g=255, color_b=255, back_color=colors.STEEL_BLUE,
-				message = "@Target@ moves onto the wormhole.",
+				message = _t"@Target@ moves onto the wormhole.",
 				temporary = t.getDuration(self, t),
 				x = x, y = y, dest_x = dest_x, dest_y = dest_y,
 				radius = self:getTalentRadius(t),
diff --git a/game/modules/tome/data/talents/corruptions/rot.lua b/game/modules/tome/data/talents/corruptions/rot.lua
index a8e68ac32c21799efcb10013511cf19ed107ce05..0bdc1757434f97bdab3f8aecc7e18fc0261d3917 100644
--- a/game/modules/tome/data/talents/corruptions/rot.lua
+++ b/game/modules/tome/data/talents/corruptions/rot.lua
@@ -21,7 +21,7 @@ newTalent{
 	name = "Infectious Bite",
 	type = {"technique/other", 1},
 	points = 5,
-	message = "@Source@ bites blight poison into @target@.",
+	message = _t"@Source@ bites blight poison into @target@.",
 	cooldown = 3,
 	tactical = { ATTACK = {BLIGHT = 2}, },
 	requires_target = true,
diff --git a/game/modules/tome/data/talents/cunning/traps.lua b/game/modules/tome/data/talents/cunning/traps.lua
index 1dda74dc889efc7f23ebb5ef869a6c65cd95ade8..773f89926e521be522f856ac920c4fe81058c0aa 100644
--- a/game/modules/tome/data/talents/cunning/traps.lua
+++ b/game/modules/tome/data/talents/cunning/traps.lua
@@ -303,7 +303,7 @@ traps_initialize = function()
 				trap_mastery_tids[t.id] = t.trap_mastery_level
 			end
 			if t.message == nil then -- default, vague talent message
-				t.message = "@Source@ activates a prepared device."
+				t.message = _t"@Source@ activates a prepared device."
 			end
 			if t.on_pre_use_ai == nil then t.on_pre_use_ai = traps_on_pre_use_ai end
 		end
@@ -1663,7 +1663,7 @@ newTalent{
 	range = trap_range,
 	speed = trap_speed,
 	no_break_stealth = trap_stealth,
-	message = "@Source@ deploys a warped device.",
+	message = _t"@Source@ deploys a warped device.",
 	getDamage = function(self, t) return 10 + trap_effectiveness(self, t, "mag")*10 end,
 	getDuration = function(self, t) return math.floor(self:combatTalentLimit(self:getTalentLevel(self.T_TRAP_MASTERY), 20/2, 3, 5)) end,
 	target = function(self, t) return {type="ball", range=self:getTalentRange(t), friendlyfire=false, radius=5} end, -- for AI
diff --git a/game/modules/tome/data/talents/gifts/cold-drake.lua b/game/modules/tome/data/talents/gifts/cold-drake.lua
index 6c7e389e86b60dddf58e8f203b9deb5eaec279c9..122c5cd952f2b52f825acacd6f3b0e29666fd1b8 100644
--- a/game/modules/tome/data/talents/gifts/cold-drake.lua
+++ b/game/modules/tome/data/talents/gifts/cold-drake.lua
@@ -214,7 +214,7 @@ newTalent{
 	random_ego = "attack",
 	equilibrium = 20,
 	cooldown = 20,
-	message = "@Source@ breathes ice!",
+	message = _t"@Source@ breathes ice!",
 	tactical = { ATTACKAREA = { COLD = 2 }, DISABLE = { stun = 1 } },
 	range = 0,
 	radius = function(self, t) return math.min(13, math.floor(self:combatTalentScale(t, 5, 9))) end,
diff --git a/game/modules/tome/data/talents/gifts/fire-drake.lua b/game/modules/tome/data/talents/gifts/fire-drake.lua
index d00c3c020a2dac428d1464fe91660fa830729db3..99edada2068e2f85904646c7af50719dd64b8edd 100644
--- a/game/modules/tome/data/talents/gifts/fire-drake.lua
+++ b/game/modules/tome/data/talents/gifts/fire-drake.lua
@@ -89,7 +89,7 @@ newTalent{
 	require = gifts_req2,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ roars!",
+	message = _t"@Source@ roars!",
 	equilibrium = 8,
 	cooldown = 20,
 	range = 0,
@@ -186,7 +186,7 @@ newTalent{
 	random_ego = "attack",
 	equilibrium = 20,
 	cooldown = 20,
-	message = "@Source@ breathes fire!",
+	message = _t"@Source@ breathes fire!",
 	tactical = { ATTACKAREA = { FIRE = 2 }},
 	range = 0,
 	radius = function(self, t) return math.min(13, math.floor(self:combatTalentScale(t, 5, 9))) end,
diff --git a/game/modules/tome/data/talents/gifts/higher-draconic.lua b/game/modules/tome/data/talents/gifts/higher-draconic.lua
index 48395a27dd63fcc958c7894a0b361e483527ce4f..cdd32624310b876385955e1daddb22214e0705aa 100644
--- a/game/modules/tome/data/talents/gifts/higher-draconic.lua
+++ b/game/modules/tome/data/talents/gifts/higher-draconic.lua
@@ -112,7 +112,7 @@ newTalent{
 	random_ego = "attack",
 	equilibrium = 12,
 	cooldown = 12,
-	message = "@Source@ breathes venom!",
+	message = _t"@Source@ breathes venom!",
 	tactical = { ATTACKAREA = { poison = 2 } },
 	range = 0,
 	radius = function(self, t) return math.min(13, math.floor(self:combatTalentScale(t, 5, 9))) end,
diff --git a/game/modules/tome/data/talents/gifts/sand-drake.lua b/game/modules/tome/data/talents/gifts/sand-drake.lua
index bbfa18d3f4e2e5a51b5f478af7aa404bc13b4848..30aa1195beb7e548c112f2ad341aba0574ca0964 100644
--- a/game/modules/tome/data/talents/gifts/sand-drake.lua
+++ b/game/modules/tome/data/talents/gifts/sand-drake.lua
@@ -110,7 +110,7 @@ newTalent{
 	require = gifts_req2,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ shakes the ground!",
+	message = _t"@Source@ shakes the ground!",
 	equilibrium = 4,
 	cooldown = 20,
 	tactical = { ATTACKAREA = { PHYSICAL = 2 }, DISABLE = { knockback = 2 } },
@@ -175,7 +175,7 @@ newTalent{
 	random_ego = "attack",
 	equilibrium = 20,
 	cooldown = 20,
-	message = "@Source@ breathes sand!",
+	message = _t"@Source@ breathes sand!",
 	tactical = { ATTACKAREA = {PHYSICAL = 2}, DISABLE = { blind = 2 } },
 	range = 0,
 	radius = function(self, t) return math.min(13, math.floor(self:combatTalentScale(t, 5, 9))) end,
diff --git a/game/modules/tome/data/talents/gifts/slime.lua b/game/modules/tome/data/talents/gifts/slime.lua
index 0e5be6d38d3b6e13eee0ecccbd479a353adab120..96c369386d274d8b1cbefc540b799c5097cd66db 100644
--- a/game/modules/tome/data/talents/gifts/slime.lua
+++ b/game/modules/tome/data/talents/gifts/slime.lua
@@ -53,7 +53,7 @@ newTalent{
 	require = gifts_req2,
 	random_ego = "attack",
 	points = 5,
-	message = "@Source@ releases poisonous spores at @target@.",
+	message = _t"@Source@ releases poisonous spores at @target@.",
 	equilibrium = 2,
 	cooldown = 10,
 	range = 10,
@@ -97,7 +97,7 @@ newTalent{
 	require = gifts_req3,
 	points = 5,
 	mode = "sustained",
-	message = "The skin of @Source@ starts dripping acid.",
+	message = _t"The skin of @Source@ starts dripping acid.",
 	sustain_equilibrium = 3,
 	cooldown = 30,
 	range = 1,
diff --git a/game/modules/tome/data/talents/gifts/storm-drake.lua b/game/modules/tome/data/talents/gifts/storm-drake.lua
index 35e9163bae680f3b7256b7c27b9dc4a40630448a..dc62ae5e21a0f54a099bf116bc64177d2041c0dc 100644
--- a/game/modules/tome/data/talents/gifts/storm-drake.lua
+++ b/game/modules/tome/data/talents/gifts/storm-drake.lua
@@ -208,7 +208,7 @@ newTalent{
 	random_ego = "attack",
 	equilibrium = 20,
 	cooldown = 20,
-	message = "@Source@ breathes lightning!",
+	message = _t"@Source@ breathes lightning!",
 	tactical = { ATTACKAREA = {LIGHTNING = 2}, DISABLE = { stun = 1 } },
 	range = 0,
 	radius = function(self, t) return math.min(13, math.floor(self:combatTalentScale(t, 5, 9))) end,
diff --git a/game/modules/tome/data/talents/gifts/summon-distance.lua b/game/modules/tome/data/talents/gifts/summon-distance.lua
index 2820716504a94996145b2aa1f8be7f7658228783..f4c9dbcf5a992e6668dc96a391e21329aaba830b 100644
--- a/game/modules/tome/data/talents/gifts/summon-distance.lua
+++ b/game/modules/tome/data/talents/gifts/summon-distance.lua
@@ -22,7 +22,7 @@ newTalent{ short_name = "RITCH_FLAMESPITTER_BOLT",
 	type = {"wild-gift/other",1},
 	points = 5,
 	equilibrium = 2,
-	message = "@Source@ spits flames!",
+	message = _t"@Source@ spits flames!",
 	range = 10,
 	reflectable = true,
 	requires_target = true,
@@ -46,7 +46,7 @@ newTalent{ short_name = "WILD_RITCH_FLAMESPITTER_BOLT",
 	type = {"wild-gift/other",1},
 	points = 5,
 	equilibrium = 2,
-	message = "@Source@ spits flames!",
+	message = _t"@Source@ spits flames!",
 	range = 10,
 	reflectable = true,
 	requires_target = true,
@@ -104,7 +104,7 @@ newTalent{
 	points = 5,
 	equilibrium = 10,
 	cooldown = 8,
-	message = "@Source@ breathes acid!",
+	message = _t"@Source@ breathes acid!",
 	tactical = { ATTACKAREA = { ACID = 2 } },
 	range = 0,
 	radius = 5,
@@ -136,7 +136,7 @@ newTalent{
 	points = 5,
 	equilibrium = 10,
 	cooldown = 8,
-	message = "@Source@ spits acid!",
+	message = _t"@Source@ spits acid!",
 	tactical = { ATTACK = { ACID = 2 } },
 	range = 5,
 	requires_target = true,
@@ -166,7 +166,7 @@ newTalent{
 	points = 5,
 	equilibrium = 10,
 	cooldown = 8,
-	message = "@Source@ breathes lightning!",
+	message = _t"@Source@ breathes lightning!",
 	tactical = { ATTACKAREA = { LIGHTNING = 2 } },
 	range = 0,
 	radius = 5,
@@ -205,7 +205,7 @@ newTalent{
 	points = 5,
 	equilibrium = 10,
 	cooldown = 8,
-	message = "@Source@ spits lightning!",
+	message = _t"@Source@ spits lightning!",
 	tactical = { ATTACK = { LIGHTNING = 2 } },
 	range = 5,
 	requires_target = true,
@@ -240,7 +240,7 @@ newTalent{
 	points = 5,
 	equilibrium = 10,
 	cooldown = 8,
-	message = "@Source@ breathes poison!",
+	message = _t"@Source@ breathes poison!",
 	tactical = { ATTACKAREA = { NATURE = 1, poison = 1 } },
 	range = 0,
 	radius = 5,
@@ -272,7 +272,7 @@ newTalent{
 	points = 5,
 	equilibrium = 10,
 	cooldown = 8,
-	message = "@Source@ spits poison!",
+	message = _t"@Source@ spits poison!",
 	tactical = { ATTACK = { NATURE = 1, poison = 1 } },
 	range = 5,
 	requires_target = true,
@@ -385,7 +385,7 @@ newTalent{
 	require = gifts_req1,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ summons a Ritch Flamespitter!",
+	message = _t"@Source@ summons a Ritch Flamespitter!",
 	equilibrium = 2,
 	cooldown = 10,
 	range = 5,
@@ -502,7 +502,7 @@ newTalent{
 	require = gifts_req2,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ summons a 3-headed hydra!",
+	message = _t"@Source@ summons a 3-headed hydra!",
 	equilibrium = 5,
 	cooldown = 18,
 	range = 5,
@@ -630,7 +630,7 @@ newTalent{
 	require = gifts_req3,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ summons a Rimebark!",
+	message = _t"@Source@ summons a Rimebark!",
 	equilibrium = 8,
 	cooldown = 10,
 	range = 5,
@@ -747,7 +747,7 @@ newTalent{
 	require = gifts_req4,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ summons a Fire Drake!",
+	message = _t"@Source@ summons a Fire Drake!",
 	equilibrium = 15,
 	cooldown = 10,
 	range = 5,
diff --git a/game/modules/tome/data/talents/gifts/summon-melee.lua b/game/modules/tome/data/talents/gifts/summon-melee.lua
index 0d8e51cdbdc60b9e467affc401e8e78fc31056fe..09d1245739e0d29491ebf2c1288681cf9ac08b95 100644
--- a/game/modules/tome/data/talents/gifts/summon-melee.lua
+++ b/game/modules/tome/data/talents/gifts/summon-melee.lua
@@ -22,7 +22,7 @@ newTalent{
 	type = {"wild-gift/other",1},
 	points = 5,
 	equilibrium = 10,
-	message = "@source@ oozes over the ground!!",
+	message = _t"@source@ oozes over the ground!!",
 	cooldown = 15,
 	tactical = { ATTACKAREA = { SLIME = 4} },
 	range = 0,
@@ -78,7 +78,7 @@ newTalent{
 	require = gifts_req1,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ summons a War Hound!",
+	message = _t"@Source@ summons a War Hound!",
 	equilibrium = 3,
 	cooldown = 15,
 	range = 5,
@@ -188,7 +188,7 @@ newTalent{
 	require = gifts_req2,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ summons a Jelly!",
+	message = _t"@Source@ summons a Jelly!",
 	equilibrium = 2,
 	cooldown = 10,
 	range = 5,
@@ -309,7 +309,7 @@ newTalent{
 	require = gifts_req3,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ summons a Minotaur!",
+	message = _t"@Source@ summons a Minotaur!",
 	equilibrium = 10,
 	cooldown = 15,
 	range = 5,
@@ -424,7 +424,7 @@ newTalent{
 	require = gifts_req4,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ summons a Stone Golem!",
+	message = _t"@Source@ summons a Stone Golem!",
 	equilibrium = 15,
 	cooldown = 20,
 	range = 5,
diff --git a/game/modules/tome/data/talents/gifts/summon-utility.lua b/game/modules/tome/data/talents/gifts/summon-utility.lua
index 6fc60ef0829886e81c1443ab2abacdec19d85f93..a887646657e2a2170aadda3f9c781ee200c70f70 100644
--- a/game/modules/tome/data/talents/gifts/summon-utility.lua
+++ b/game/modules/tome/data/talents/gifts/summon-utility.lua
@@ -92,7 +92,7 @@ newTalent{
 	require = gifts_req1,
 	random_ego = "attack",
 	points = 5,
-	message = "@Source@ summons a Turtle!",
+	message = _t"@Source@ summons a Turtle!",
 	equilibrium = 2,
 	cooldown = 10,
 	range = 5,
@@ -221,7 +221,7 @@ newTalent{
 	require = gifts_req2,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ summons a Spider!",
+	message = _t"@Source@ summons a Spider!",
 	equilibrium = 5,
 	cooldown = 10,
 	range = 5,
diff --git a/game/modules/tome/data/talents/gifts/venom-drake.lua b/game/modules/tome/data/talents/gifts/venom-drake.lua
index 4495545908086c7a0425551d8e29a1eea1c91f9f..8def01b0c56ff0ba09b3ce057787c3954d71bfc3 100644
--- a/game/modules/tome/data/talents/gifts/venom-drake.lua
+++ b/game/modules/tome/data/talents/gifts/venom-drake.lua
@@ -23,7 +23,7 @@ newTalent{
 	require = gifts_req1,
 	points = 5,
 	random_ego = "attack",
-	message = "@Source@ spits acid!",
+	message = _t"@Source@ spits acid!",
 	equilibrium = 3,
 	cooldown = function(self, t) return math.ceil(self:combatTalentLimit(t, 3, 6.9, 5.5)) end, -- Limit >=3
 	tactical = { ATTACK = { ACID = 2 } },
@@ -192,7 +192,7 @@ newTalent{
 	random_ego = "attack",
 	equilibrium = 20,
 	cooldown = 20,
-	message = "@Source@ breathes acid!",
+	message = _t"@Source@ breathes acid!",
 	tactical = { ATTACKAREA = { ACID = 2 }, DISABLE = {disarm = 1} },
 	range = 0,
 	radius = function(self, t) return math.min(13, math.floor(self:combatTalentScale(t, 5, 9))) end,
diff --git a/game/modules/tome/data/talents/misc/horrors.lua b/game/modules/tome/data/talents/misc/horrors.lua
index 7544be0937d6d6e4f9a350f315a4409a219e9df5..8d20413f9a0465df184d1d34004d6532566c3aca 100644
--- a/game/modules/tome/data/talents/misc/horrors.lua
+++ b/game/modules/tome/data/talents/misc/horrors.lua
@@ -37,7 +37,7 @@ newTalent{
 	cooldown = 12,
 	stamina = 24,
 	tactical = { ATTACK = { PHYSICAL = 1 }, DISABLE = { cut = 2 } },
-	message = "In a frenzy @Source@ bites at @Target@!",
+	message = _t"In a frenzy @Source@ bites at @Target@!",
 	is_melee = true,
 	range = 1,
 	target = function(self, t) return {type="hit", range=self:getTalentRange(t)} end,
@@ -74,7 +74,7 @@ newTalent{
 	cooldown = 5,
 	tactical = { CLOSEIN = 3 },
 	direct_hit = true,
-	message = "@Source@ leaps forward in a frenzy!",
+	message = _t"@Source@ leaps forward in a frenzy!",
 	range = function(self, t) return math.floor(self:combatTalentScale(t, 2.4, 10)) end,
 	requires_target = true,
 	on_pre_use = function(self, t, silent) if not self:hasEffect(self.EFF_FRENZY) or self:attr("encased_in_ice") or self:attr("never_move") then return false end return true end,
@@ -116,7 +116,7 @@ newTalent{
 	points = 5,
 	cooldown = 3,
 	stamina = 8,
-	message = "@Source@ tries to bite @Target@ with razor sharp teeth!",
+	message = _t"@Source@ tries to bite @Target@ with razor sharp teeth!",
 	requires_target = true,
 	is_melee = true,
 	target = function(self, t) return {type="hit", range=self:getTalentRange(t)} end,
@@ -231,7 +231,7 @@ newTalent{
 	name = "Echoes From The Void",
 	type = {"other/horror", 1},
 	points = 5,
-	message = "@Source@ shows @Target@ the madness of the void.",
+	message = _t"@Source@ shows @Target@ the madness of the void.",
 	cooldown = 10,
 	range = 10,
 	requires_target = true,
@@ -261,7 +261,7 @@ newTalent{
 	name = "Void Shards",
 	type = {"other/horror", 1},
 	points = 5,
-	message = "@Source@ summons void shards.",
+	message = _t"@Source@ summons void shards.",
 	cooldown = 20,
 	range = 10,
 	radius = 5, -- used by the the AI as additional range to the target
@@ -708,7 +708,7 @@ newTalent{
 newTalent{
 	name = "Blood Suckers",
 	type = {"wild-gift/other", 1},
-	message = "@Source@ tries to latch on and suck blood!",
+	message = _t"@Source@ tries to latch on and suck blood!",
 	points = 5,
 	cooldown = 2,
 	tactical = { ATTACK = { weapon = 2 } },
diff --git a/game/modules/tome/data/talents/misc/misc.lua b/game/modules/tome/data/talents/misc/misc.lua
index 1bf5cf37801c6da47291def36cc160f437632db0..1620cad792fb4dfbbab152cd3d23c04877d75ba4 100644
--- a/game/modules/tome/data/talents/misc/misc.lua
+++ b/game/modules/tome/data/talents/misc/misc.lua
@@ -213,17 +213,17 @@ newTalent{
 		if target.level - 2 > self.level then
 			-- level bonus
 			hateGain = hateGain + math.ceil(self:combatTalentScale(target.level - 2 - self.level, 2, 10, "log", 0, 1))
-			hateMessage = "#F53CBE#You have taken the life of an experienced foe!"
+			hatemessage = _t"#F53CBE#You have taken the life of an experienced foe!"
 		end
 
 		if target.rank >= 4 then
 			-- boss bonus
 			hateGain = hateGain * 4
-			hateMessage = "#F53CBE#Your hate has conquered a great adversary!"
+			hatemessage = _t"#F53CBE#Your hate has conquered a great adversary!"
 		elseif target.rank >= 3 then
 			-- elite bonus
 			hateGain = hateGain * 2
-			hateMessage = "#F53CBE#An elite foe has fallen to your hate!"
+			hatemessage = _t"#F53CBE#An elite foe has fallen to your hate!"
 		end
 		hateGain = math.min(hateGain, 100)
 
diff --git a/game/modules/tome/data/talents/misc/npcs.lua b/game/modules/tome/data/talents/misc/npcs.lua
index 92b3d5364087cd8fae845f8822f0b74cd9c64af4..65e0cf814300e3b4d068f812d0c5ee4b33fa8d78 100644
--- a/game/modules/tome/data/talents/misc/npcs.lua
+++ b/game/modules/tome/data/talents/misc/npcs.lua
@@ -78,7 +78,7 @@ newTalent{
 	name = "Poisonous Crawl",
 	type = {"technique/other", 1},
 	points = 5,
-	message = "@Source@ envelops @target@ with poison.",
+	message = _t"@Source@ envelops @target@ with poison.",
 	cooldown = 5,
 	range = 1,
 	requires_target = true,
@@ -106,7 +106,7 @@ newTalent{
 	name = "Acidic Crawl",
 	points = 5,
 	type = {"technique/other", 1},
-	message = "@Source@ envelops @target@ with acid.",
+	message = _t"@Source@ envelops @target@ with acid.",
 	cooldown = 2,
 	range = 1,
 	tactical = { ATTACK = { ACID = 2 } },
@@ -132,7 +132,7 @@ newTalent{
 	name = "Blinding Spores",
 	type = {"technique/other", 1},
 	points = 5,
-	message = "@Source@ releases blinding spores at @target@.",
+	message = _t"@Source@ releases blinding spores at @target@.",
 	cooldown = 2,
 	range = 1,
 	tactical = { DISABLE = { blind = 2 } },
@@ -167,7 +167,7 @@ newTalent{
 	name = "Poisonous Spores",
 	type = {"technique/other", 1},
 	points = 5,
-	message = "@Source@ releases poisonous spores at @target@.",
+	message = _t"@Source@ releases poisonous spores at @target@.",
 	cooldown = 2,
 	range = 1,
 	tactical = { ATTACK = { NATURE = 1, poison = 1} },
@@ -333,7 +333,7 @@ newTalent{
 	name = "Poisonous Bite",
 	type = {"technique/other", 1},
 	points = 5,
-	message = "@Source@ bites poison into @target@.",
+	message = _t"@Source@ bites poison into @target@.",
 	cooldown = 5,
 	range = 1,
 	tactical = { ATTACK = { NATURE = 1, poison = 1} },
@@ -427,7 +427,7 @@ newTalent{
 	type = {"technique/other", 1},
 	points = 5,
 	cooldown = 8,
-	message = "@Source@ performs a diseased attack against @target@.",
+	message = _t"@Source@ performs a diseased attack against @target@.",
 	requires_target = true,
 	tactical = { ATTACK = { weapon=1, BLIGHT = { disease = 2 } }, DISABLE = { disease = 1 } },
 	getDuration = function(self, t) return math.floor(self:combatTalentScale(t, 13, 25)) end,
@@ -463,7 +463,7 @@ newTalent{
 	type = {"technique/other", 1},
 	points = 5,
 	cooldown = 8,
-	message = "@Source@ performs a diseased attack against @target@.",
+	message = _t"@Source@ performs a diseased attack against @target@.",
 	tactical = { ATTACK = { weapon=1, BLIGHT = { disease = 2 } }, DISABLE = { disease = 1 } },
 	requires_target = true,
 	getDuration = function(self, t) return math.floor(self:combatTalentScale(t, 13, 25)) end,
@@ -499,7 +499,7 @@ newTalent{
 	type = {"technique/other", 1},
 	points = 5,
 	cooldown = 8,
-	message = "@Source@ performs a diseased attack against @target@.",
+	message = _t"@Source@ performs a diseased attack against @target@.",
 	requires_target = true,
 	tactical = { ATTACK = { weapon=1, BLIGHT = { disease = 2 } }, DISABLE = { disease = 1 } },
 	getDuration = function(self, t) return math.floor(self:combatTalentScale(t, 13, 25)) end,
@@ -856,7 +856,7 @@ newTalent{
 	points = 5,
 	equilibrium = 12,
 	cooldown = 12,
-	message = "@Source@ projects ink!",
+	message = _t"@Source@ projects ink!",
 	range = 0,
 	radius = function(self, t) return math.floor(self:combatTalentScale(t, 5, 9)) end,
 	direct_hit = true,
@@ -967,7 +967,7 @@ newTalent{
 newTalent{
 	name = "Rushing Claws",
 	type = {"wild-gift/other", 1},
-	message = "@Source@ rushes out, claws sharp and ready!",
+	message = _t"@Source@ rushes out, claws sharp and ready!",
 	points = 5,
 	equilibrium = 10,
 	cooldown = 15,
@@ -1048,7 +1048,7 @@ newTalent{
 	points = 5,
 	equilibrium = 4,
 	cooldown = 6,
-	message = "@Source@ seems to search the ground...",
+	message = _t"@Source@ seems to search the ground...",
 	range = 10,
 	requires_target = true,
 	tactical = { DISABLE = { pin = 1 } },
@@ -1064,7 +1064,7 @@ newTalent{
 			detect_power = t.getDetect(self, t),
 			disarm_power = t.getDisarm(self, t),
 			level_range = {self.level, self.level},
-			message = "@Target@ is caught in a web!",
+			message = _t"@Target@ is caught in a web!",
 			pin_dur = dur,
 			temporary = dur * 5,
 			summoner = self,
@@ -1188,7 +1188,7 @@ newTalent{
 	points = 5,
 	equilibrium = 5,
 	cooldown = 10,
-	message = "@Source@ howls",
+	message = _t"@Source@ howls",
 	range = 10,
 	tactical = { ATTACK = 3 },
 	direct_hit = true,
@@ -1224,7 +1224,7 @@ newTalent{
 	points = 5,
 	equilibrium = 5,
 	cooldown = 10,
-	message = "@Source@ shrieks.",
+	message = _t"@Source@ shrieks.",
 	range = 10,
 	direct_hit = true,
 	no_difficulty_boost = true,
@@ -1448,7 +1448,7 @@ newTalent{
 	name = "Explode",
 	type = {"technique/other", 1},
 	points = 5,
-	message = "@Source@ explodes! @target@ is enveloped in searing light.",
+	message = _t"@Source@ explodes! @target@ is enveloped in searing light.",
 	cooldown = 1,
 	range = 1,
 	requires_target = true,
@@ -1475,7 +1475,7 @@ newTalent{
 	name = "Will o' the Wisp Explode",
 	type = {"technique/other", 1},
 	points = 5,
-	message = "@Source@ explodes! @target@ is enveloped in frost.",
+	message = _t"@Source@ explodes! @target@ is enveloped in frost.",
 	cooldown = 1,
 	range = 1,
 	requires_target = true,
@@ -1501,7 +1501,7 @@ newTalent{
 	type = {"spell/other", 1},
 	points = 5,
 	mana = 10,
-	message = "@Source@ casts Elemental Bolt!",
+	message = _t"@Source@ casts Elemental Bolt!",
 	cooldown = 3,
 	range = 20,
 	proj_speed = 2,
@@ -1540,7 +1540,7 @@ newTalent{
 	type = {"spell/other", 1},
 	points = 5,
 	mana = 10,
-	message = "A volcano erupts!",
+	message = _t"A volcano erupts!",
 	cooldown = 20,
 	range = 10,
 	proj_speed = 2,
@@ -2111,7 +2111,7 @@ newTalent{
 	equi = 4,
 	cooldown = 3,
 	tactical = { ATTACK = {LIGHTNING = 2} },
-	message = "@Source@ hurls lightning at @target@!",
+	message = _t"@Source@ hurls lightning at @target@!",
 	range = 10,
 	direct_hit = true,
 	reflectable = true,
@@ -2288,7 +2288,7 @@ newTalent{
 	points = 5,
 	cooldown = 10,
 	stamina = 10,
-	message = "@Source@ throws a body shot.",
+	message = _t"@Source@ throws a body shot.",
 	tactical = { ATTACK = { weapon = 2 }, DISABLE = { stun = 2 } },
 	requires_target = true,
 	--on_pre_use = function(self, t, silent) if not self:hasEffect(self.EFF_COMBO) then if not silent then game.logPlayer(self, "You must have a combo going to use this ability.") end return false end return true end,
@@ -3032,7 +3032,7 @@ newTalent{
 newTalent{
 	name = "Nimble Movements",
 	type = {"other/other",1},
-	message = "@Source@ dashes quickly!",
+	message = _t"@Source@ dashes quickly!",
 	no_break_stealth = true,
 --	require = cuns_req3,
 	points = 5,
diff --git a/game/modules/tome/data/talents/psionic/augmented-mobility.lua b/game/modules/tome/data/talents/psionic/augmented-mobility.lua
index 41b54ede79e684365df44bb63029b8d48fa1cf38..b1a445c45816bba749f5714c710b944a21e1f0ff 100644
--- a/game/modules/tome/data/talents/psionic/augmented-mobility.lua
+++ b/game/modules/tome/data/talents/psionic/augmented-mobility.lua
@@ -126,7 +126,7 @@ newTalent{
 	range = function(self, t)
 		return math.floor(math.max(1, self:combatTalentLimit(t, 10, 2, 7.5))) -- Limit < 10
 	end,
-	message = "@Source@ performs a telekinetically enhanced leap!",
+	message = _t"@Source@ performs a telekinetically enhanced leap!",
 	target = function(self, t)
 		local range=self:getTalentRange(t)
 		local tg = {talent=t, type="hit", nolock=true, pass_terrain=false, nowarning=true, range=range}
diff --git a/game/modules/tome/data/talents/spells/golem.lua b/game/modules/tome/data/talents/spells/golem.lua
index ff6b06a1ad06c9c3c7ad4dec74dda46e41feb088..b24ae47e4ee5eee93c3f106c9b86e72eba18c9cf 100644
--- a/game/modules/tome/data/talents/spells/golem.lua
+++ b/game/modules/tome/data/talents/spells/golem.lua
@@ -487,7 +487,7 @@ newTalent{
 	points = 5,
 	mana = 25,
 	cooldown = 8,
-	message = "@Source@ breathes poison!",
+	message = _t"@Source@ breathes poison!",
 	tactical = { ATTACKAREA = { NATURE = {1, poison = 1 } }},
 	range = 0,
 	radius = 5,
diff --git a/game/modules/tome/data/talents/techniques/archery.lua b/game/modules/tome/data/talents/techniques/archery.lua
index 74e37af0ab29c451dee60ced08b38c00a77bb109..8a4d7820acfebe54eaaa8e13ec5bc1b996ea452c 100644
--- a/game/modules/tome/data/talents/techniques/archery.lua
+++ b/game/modules/tome/data/talents/techniques/archery.lua
@@ -41,7 +41,7 @@ newTalent{
 		return b.shot_stamina(self, b)
 	end,
 	range = archery_range,
-	message = "@Source@ shoots!",
+	message = _t"@Source@ shoots!",
 	requires_target = true,
 	tactical = { ATTACK = { weapon = 1 } },
 	on_pre_use = function(self, t, silent) return wardenPreUse(self, t, silent) end,
diff --git a/game/modules/tome/data/talents/techniques/combat-techniques.lua b/game/modules/tome/data/talents/techniques/combat-techniques.lua
index 584a5e264a00f66fce281b4dd704975fca17c0ad..a93829126d5d3d8251d923d26fb35b8a32597b82 100644
--- a/game/modules/tome/data/talents/techniques/combat-techniques.lua
+++ b/game/modules/tome/data/talents/techniques/combat-techniques.lua
@@ -23,7 +23,7 @@
 newTalent{
 	name = "Rush",
 	type = {"technique/combat-techniques-active", 1},
-	message = "@Source@ rushes out!",
+	message = _t"@Source@ rushes out!",
 	require = techs_strdex_req1,
 	points = 5,
 	random_ego = "attack",
diff --git a/game/modules/tome/data/talents/techniques/finishing-moves.lua b/game/modules/tome/data/talents/techniques/finishing-moves.lua
index ad2c6b9969e4429dde85b607220f875ef5ee4aee..872a8135b966aff97d474afad350d31c57c3efa0 100644
--- a/game/modules/tome/data/talents/techniques/finishing-moves.lua
+++ b/game/modules/tome/data/talents/techniques/finishing-moves.lua
@@ -25,7 +25,7 @@ newTalent{
 	random_ego = "attack",
 	cooldown = 10,
 	stamina = 12,
-	message = "@Source@ throws a finishing uppercut.",
+	message = _t"@Source@ throws a finishing uppercut.",
 	tactical = { ATTACK = { weapon = 2 }, DISABLE = { stun = 2 } },
 	requires_target = true,
 	target = function(self, t) return {type="hit", range=self:getTalentRange(t)} end,
@@ -82,7 +82,7 @@ newTalent{
 	random_ego = "attack",
 	cooldown = 4,
 	stamina = 12,
-	message = "@Source@ throws a concussive punch.",
+	message = _t"@Source@ throws a concussive punch.",
 	tactical = { ATTACK = { weapon = 2 }, },
 	requires_target = true,
 	target = function(self, t) return {type="hit", range=self:getTalentRange(t)} end,
@@ -205,7 +205,7 @@ newTalent{
 	random_ego = "attack",
 	cooldown = 8,
 	stamina = 12,
-	message = "@Source@ throws a wild haymaker!",
+	message = _t"@Source@ throws a wild haymaker!",
 	tactical = { ATTACK = { weapon = 2 } },
 	requires_target = true,
 	range = 1,
diff --git a/game/modules/tome/data/talents/techniques/pugilism.lua b/game/modules/tome/data/talents/techniques/pugilism.lua
index 609b3330085267ae4631dd5aaec51a68a75ab309..fe6e245d2be46e8fa975a7412496020a24e25a1b 100644
--- a/game/modules/tome/data/talents/techniques/pugilism.lua
+++ b/game/modules/tome/data/talents/techniques/pugilism.lua
@@ -77,7 +77,7 @@ newTalent{
 	random_ego = "attack",
 	--cooldown = function(self, t) return math.ceil(3 * getRelentless(self, cd)) end,
 	cooldown = 3,
-	message = "@Source@ throws two quick punches.",
+	message = _t"@Source@ throws two quick punches.",
 	tactical = { ATTACK = { weapon = 2 } },
 	requires_target = true,
 	is_melee = true,
@@ -166,7 +166,7 @@ newTalent{
 	target = function(self, t) return {type="bolt", range=self:getTalentRange(t)} end,
 	range = function(self, t) return math.ceil(2 + self:combatTalentScale(t, 2.2, 4.3)) end, -- being able to use this over rush without massive investment is much more fun
 	chargeBonus = function(self, t, dist) return self:combatScale(dist, 0.15, 1, 0.50, 5) end,
-	message = "@Source@ lashes out with a spinning backhand.",
+	message = _t"@Source@ lashes out with a spinning backhand.",
 	tactical = { ATTACKAREA = { weapon = 2 }, CLOSEIN = 1 },
 	requires_target = true,
 	getDamage = function(self, t) return self:combatTalentWeaponDamage(t, 1.0, 1.7) + getStrikingStyle(self, dam) end,
@@ -279,7 +279,7 @@ newTalent{
 	is_melee = true,
 	target = function(self, t) return {type="hit", range=self:getTalentRange(t)} end,
 	range = 1,
-	message = "@Source@ raises their leg and snaps it downward in a devastating axe kick.",
+	message = _t"@Source@ raises their leg and snaps it downward in a devastating axe kick.",
 	tactical = { ATTACK = { weapon = 2 } },
 	requires_target = true,
 	getDamage = function(self, t) return self:combatTalentWeaponDamage(t, 0.8, 2) + getStrikingStyle(self, dam) end, -- low damage scaling, investment gets the extra CP
@@ -328,7 +328,7 @@ newTalent{
 	random_ego = "attack",
 	cooldown = 16,
 	stamina = 15,
-	message = "@Source@ lashes out with a flurry of fists.",
+	message = _t"@Source@ lashes out with a flurry of fists.",
 	tactical = { ATTACK = { weapon = 2 } },
 	requires_target = true,
 	is_melee = true,
diff --git a/game/modules/tome/data/talents/techniques/unarmed-discipline.lua b/game/modules/tome/data/talents/techniques/unarmed-discipline.lua
index a4e1076baf75f1bd2e6cc67b03e160d5339c5940..bd496bed43d4ea59394e2e0023941bc6aeb2afba 100644
--- a/game/modules/tome/data/talents/techniques/unarmed-discipline.lua
+++ b/game/modules/tome/data/talents/techniques/unarmed-discipline.lua
@@ -28,7 +28,7 @@ newTalent{
 	random_ego = "attack",
 	cooldown = 20,
 	stamina = 40,
-	message = "@Source@ unleashes a flurry of disrupting kicks.",
+	message = _t"@Source@ unleashes a flurry of disrupting kicks.",
 	tactical = { ATTACK = { weapon = 2 }, },
 	is_melee = true,
 	range = 1,
@@ -132,7 +132,7 @@ newTalent{
 	random_ego = "attack",
 	cooldown = 6,
 	stamina = 5,
-	message = "@Source@ prepares to block incoming attacks.",
+	message = _t"@Source@ prepares to block incoming attacks.",
 	tactical = { ATTACK = 3, DEFEND = 3 },
 	requires_target = true,
 	getBlock = function(self, t) return self:combatTalentPhysicalDamage(t, 30, 200) end,
@@ -167,7 +167,7 @@ newTalent{
 	is_melee = true,
 	target = function(self, t) return {type="hit", range=self:getTalentRange(t)} end,
 	range = 1,
-	message = "@Source@ strikes a deadly pressure point on the target.",
+	message = _t"@Source@ strikes a deadly pressure point on the target.",
 	tactical = { DISABLE = 3, ATTACK = { weapon = 3 } },
 	requires_target = true,
 	radius = function(self,t) return self:combatTalentScale(t, 1, 3) end,
diff --git a/game/modules/tome/data/zones/charred-scar/grids.lua b/game/modules/tome/data/zones/charred-scar/grids.lua
index 57183b9fe368f67de85b025138d60c26596a746b..64ec4cca28162e774d502e3821ac0b1d74dc2607 100644
--- a/game/modules/tome/data/zones/charred-scar/grids.lua
+++ b/game/modules/tome/data/zones/charred-scar/grids.lua
@@ -39,7 +39,7 @@ newEntity{
 		change_wilderness = {
 			spot = {type="farportal-end", subtype="fareast"},
 		},
-		message = "#VIOLET#You enter the swirling portal and in the blink of an eye you are back to the far east.",
+		message = _t"#VIOLET#You enter the swirling portal and in the blink of an eye you are back to the far east.",
 	},
 }
 
diff --git a/game/modules/tome/data/zones/eruan/grids.lua b/game/modules/tome/data/zones/eruan/grids.lua
index 22fbbcb7088b0c8e30a93ba1f37945b9061386a4..a6ec09883c0a3f0417787829230fcd4c923e2eb6 100644
--- a/game/modules/tome/data/zones/eruan/grids.lua
+++ b/game/modules/tome/data/zones/eruan/grids.lua
@@ -38,7 +38,7 @@ This one seems to go to the west, to Charred Scar. A fiery volcano that can only
 	orb_portal = {
 		change_level = 1,
 		change_zone = "charred-scar",
-		message = "#VIOLET#You enter the swirling portal while it fades away and in the blink of an eye you set foot on hellish land, the heart of a volcano...",
+		message = _t"#VIOLET#You enter the swirling portal while it fades away and in the blink of an eye you set foot on hellish land, the heart of a volcano...",
 		on_preuse = function(self, who)
 			-- Find all portals and deactivate them
 			for i = -4, 4 do for j = -4, 4 do if game.level.map:isBound(who.x + i, who.y + j) then
diff --git a/game/modules/tome/data/zones/high-peak/grids.lua b/game/modules/tome/data/zones/high-peak/grids.lua
index f6a6e199d4f8a4d4ec697412e8c89a07e236c552..ff1959501a146e0ae09316d0a159f888ee6417c6 100644
--- a/game/modules/tome/data/zones/high-peak/grids.lua
+++ b/game/modules/tome/data/zones/high-peak/grids.lua
@@ -39,7 +39,7 @@ This one seems to go to the Far East.]],
 		change_wilderness = {
 			spot = {type="farportal-end", subtype="fareast"},
 		},
-		message = "#VIOLET#You enter the swirling portal and in the blink of an eye you set foot on the Far East, with no trace of the portal...",
+		message = _t"#VIOLET#You enter the swirling portal and in the blink of an eye you set foot on the Far East, with no trace of the portal...",
 		on_use = function(self, who)
 		end,
 	},
@@ -71,7 +71,7 @@ This one seems to go to the Iron Throne in the West.]],
 		change_wilderness = {
 			spot = {type="farportal-end", subtype="iron-throne"},
 		},
-		message = "#VIOLET#You enter the swirling portal and in the blink of an eye you set foot on the slopes of the Iron Throne, with no trace of the portal...",
+		message = _t"#VIOLET#You enter the swirling portal and in the blink of an eye you set foot on the slopes of the Iron Throne, with no trace of the portal...",
 		on_use = function(self, who)
 		end,
 	},
@@ -193,7 +193,7 @@ newEntity{
 	change_level = 1,
 	orb_portal = {
 		nothing = true,
-		message = "#VIOLET#You enter the swirling portal and appear in a large room with other portals and the two wizards.",
+		message = _t"#VIOLET#You enter the swirling portal and appear in a large room with other portals and the two wizards.",
 		on_use = function()
 			game:changeLevel(11, nil, {direct_switch=true}) -- Special level, can not get to it any other way
 			if game.player:hasQuest("high-peak"):isCompleted("sanctum-chat") then return end
diff --git a/game/modules/tome/data/zones/keepsake-meadow/traps.lua b/game/modules/tome/data/zones/keepsake-meadow/traps.lua
index d39010cdf2c2f4dfdd10ff8fc199756ca6831518..d3818d640d328d968fe03d7b68e74fd6ab3dea81 100644
--- a/game/modules/tome/data/zones/keepsake-meadow/traps.lua
+++ b/game/modules/tome/data/zones/keepsake-meadow/traps.lua
@@ -24,7 +24,7 @@ newEntity{
 	detect_power = 99999, disarm_power = 99999,
 	rarity = 3, level_range = {1, nil},
 	pressure_trap = false,
-	message = "A creeping darkness spreads through the air!",
+	message = _t"A creeping darkness spreads through the air!",
 	triggered = function(self, x, y, who)
 		local NPC = require "mod.class.NPC"
 		local m = NPC.new{
@@ -47,7 +47,7 @@ newEntity{
 	detect_power = 99999, disarm_power = 99999,
 	rarity = 3, level_range = {1, nil},
 	pressure_trap = false,
-	message = "A shadow traces across the floor.",
+	message = _t"A shadow traces across the floor.",
 	triggered = function(self, x, y, who)
 		if (game.level.remaining_summons or 5) <= 0 then return false end
 	
diff --git a/game/modules/tome/data/zones/reknor/grids.lua b/game/modules/tome/data/zones/reknor/grids.lua
index 188a3791f86ad22be8b665d6cd7e4547e92bd1cf..ea0dc2c11414717107e6a3d8a1152fb3733b5add 100644
--- a/game/modules/tome/data/zones/reknor/grids.lua
+++ b/game/modules/tome/data/zones/reknor/grids.lua
@@ -39,7 +39,7 @@ This one seems to go to the Far East, a continent of which only rumours are know
 		after_zone_teleport = {
 			x = 98, y = 25,
 		},
-		message = "#VIOLET#You enter the swirling portal and in the blink of an eye you set foot on an unfamiliar cave, with no trace of the portal...",
+		message = _t"#VIOLET#You enter the swirling portal and in the blink of an eye you set foot on an unfamiliar cave, with no trace of the portal...",
 		on_use = function(self, who)
 			game.state:goneEast()
 			who:setQuestStatus("wild-wild-east", engine.Quest.DONE)
diff --git a/game/modules/tome/data/zones/town-gates-of-morning/grids.lua b/game/modules/tome/data/zones/town-gates-of-morning/grids.lua
index e85ef8356f7632a59da65837fff4b042ad4c9feb..d534bb492a7716e3f96aa9d4ccfb347774e82208 100644
--- a/game/modules/tome/data/zones/town-gates-of-morning/grids.lua
+++ b/game/modules/tome/data/zones/town-gates-of-morning/grids.lua
@@ -48,7 +48,7 @@ This one seems to go near the town of Last Hope in Maj'Eyal.]],
 		change_wilderness = {
 			spot = {type="farportal-end", subtype="last-hope"},
 		},
-		message = "#VIOLET#You enter the swirling portal and in the blink of an eye you set foot on the outskirts of Last Hope, with no trace of the portal...",
+		message = _t"#VIOLET#You enter the swirling portal and in the blink of an eye you set foot on the outskirts of Last Hope, with no trace of the portal...",
 		on_use = function(self, who)
 		end,
 	},
diff --git a/game/modules/tome/data/zones/town-last-hope/grids.lua b/game/modules/tome/data/zones/town-last-hope/grids.lua
index c3d30ab3846311e4ad286866ae1f198dbfe7dc99..454a9511d2cbc7a20c4b8f07255f4dcfd49a8833 100644
--- a/game/modules/tome/data/zones/town-last-hope/grids.lua
+++ b/game/modules/tome/data/zones/town-last-hope/grids.lua
@@ -46,7 +46,7 @@ This one seems to go near the Gates of Morning in the Far East.]],
 		change_wilderness = {
 			spot = {type="farportal-end", subtype="gates-of-morning"},
 		},
-		message = "#VIOLET#You enter the swirling portal and in the blink of an eye you set foot in sight of the Gates of Morning, with no trace of the portal...",
+		message = _t"#VIOLET#You enter the swirling portal and in the blink of an eye you set foot in sight of the Gates of Morning, with no trace of the portal...",
 		on_use = function(self, who)
 		end,
 	},