diff --git a/game/modules/tome/data/zones/demon-plane/npcs.lua b/game/modules/tome/data/zones/demon-plane/npcs.lua index cbc98c8024070ecfa246ffc7784fc143df3d6c4d..f801379692b6431381854804172237a2a2006c66 100644 --- a/game/modules/tome/data/zones/demon-plane/npcs.lua +++ b/game/modules/tome/data/zones/demon-plane/npcs.lua @@ -79,7 +79,7 @@ newEntity{ define_as = "DRAEBOR", resolvers.inscriptions(1, {"manasurge rune"}), on_die = function(self, who) - require("engine.ui.Dialog"):simplePopup("Back and there again", "As the annoying imp falls a portal appears under its corpse.") + require("engine.ui.Dialog"):simplePopup(_t"Back and there again", _t"As the annoying imp falls a portal appears under its corpse.") local g = game.zone:makeEntityByName(game.level, "terrain", "PORTAL_BACK") local oe = game.level.map(self.x, self.y, engine.Map.TERRAIN) if oe:attr("temporary") and oe.old_feat then diff --git a/game/modules/tome/data/zones/unhallowed-morass/npcs.lua b/game/modules/tome/data/zones/unhallowed-morass/npcs.lua index 5da373753c5129338cc39d8baf86e6e55b3da2af..7e5be17dca655229358ea899811e1046ac203a7c 100644 --- a/game/modules/tome/data/zones/unhallowed-morass/npcs.lua +++ b/game/modules/tome/data/zones/unhallowed-morass/npcs.lua @@ -162,7 +162,7 @@ newEntity{ base = "BASE_NPC_SPIDER", define_as = "WEAVER_QUEEN", on_die = function(self, who) game.player:resolveSource():setQuestStatus("start-point-zero", engine.Quest.COMPLETED, "morass") - require("engine.ui.Dialog"):simplePopup("Weaver Queen", "As you vanquish the queen you notice a temporal thread that seems to have been controlling her. It seems to go through a rift.") + require("engine.ui.Dialog"):simplePopup(_t"Weaver Queen", _t"As you vanquish the queen you notice a temporal thread that seems to have been controlling her. It seems to go through a rift.") local g = game.zone:makeEntityByName(game.level, "terrain", "RIFT_HOME") local oe = game.level.map(npc.x, npc.y, engine.Map.TERRAIN)